:root {
  --ink: #111827;
  --ink-strong: #0b1220;
  --panel: #ffffff;
  --panel-soft: #f3f6f9;
  --panel-warm: #fff7e8;
  --line: #d8dde5;
  --muted: #5f6b7a;
  --silver: #c8d0d8;
  --amber: #e6a51f;
  --amber-dark: #9b6407;
  --blue: #17324d;
  --blue-bright: #235d85;
  --steel: #e7edf2;
  --green: #176d55;
  --green-soft: #e9f6f1;
  --rust: #a84f2a;
  --rust-soft: #fff0e8;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 72px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 154, 33, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--amber);
  color: var(--ink-strong);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.container > *,
.cta-strip > *,
.quote-layout > *,
.split-section > *,
.hero-content > * {
  min-width: 0;
}

.narrow {
  width: calc(100% - 32px);
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 50, 77, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--blue-bright), var(--green));
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--ink-strong), var(--blue));
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid rgba(217, 154, 33, 0.45);
}

.brand-name,
.brand-note {
  display: block;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.site-nav {
  display: none;
}

.header-actions,
.header-call,
.header-text {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #ffffff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.95), rgba(14, 41, 64, 0.82) 48%, rgba(157, 102, 8, 0.34)),
    linear-gradient(0deg, rgba(8, 13, 23, 0.45), rgba(23, 109, 85, 0.14));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  z-index: -1;
  background: linear-gradient(90deg, var(--amber), var(--green), var(--blue-bright));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding-block: 2.6rem 3.35rem;
}

.hero-copy-block {
  max-width: 690px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 670px;
  margin: 0.85rem 0 0;
  color: #e8edf3;
  font-size: 0.98rem;
}

.button-row,
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

button.button,
button.header-text,
button.footer-copy,
.mobile-cta button {
  font: inherit;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #f0b534, var(--amber));
  color: var(--ink-strong);
  border-color: var(--amber);
  box-shadow: 0 10px 18px rgba(154, 101, 11, 0.18);
}

.button-primary:hover {
  background: #e6a93a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: linear-gradient(180deg, var(--blue), var(--ink-strong));
  color: #ffffff;
}

.button-outline {
  background: #ffffff;
  color: var(--ink-strong);
  border-color: #c7d1dc;
}

.button-outline:hover {
  border-color: var(--blue-bright);
  background: #f7fbff;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin: 0.95rem 0 0;
  padding: 0;
  color: #f2f5f8;
  font-size: 0.93rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.2rem;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.phone-card,
.contact-card {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(230, 165, 31, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(11, 18, 32, 0.86), rgba(23, 50, 77, 0.74));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.phone-card span,
.contact-card span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-card strong,
.contact-card strong {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.phone-card .copy-phone {
  justify-self: start;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.inline-phone {
  display: inline-flex;
  margin-top: 0.85rem !important;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink-strong) !important;
  border: 1px solid #e9c16c;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(154, 101, 11, 0.09);
}

.quick-quote-card {
  display: none;
  width: min(100%, 420px);
  padding: 1rem;
  border: 1px solid rgba(230, 165, 31, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(11, 18, 32, 0.88), rgba(23, 50, 77, 0.78));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.card-kicker {
  margin: 0 0 0.35rem;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-quote-card h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.quick-quote-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.9rem 0 1rem;
  padding-left: 1.2rem;
  color: #edf2f7;
}

.quick-quote-card .button {
  width: 100%;
}

.small-note {
  margin: 0.85rem 0 0;
  color: #d8e0ea;
  font-size: 0.92rem;
}

.section {
  padding-block: 4rem;
}

.intro-band {
  padding-block: 2rem;
  background: linear-gradient(180deg, var(--panel-warm), #f7fafc);
  border-bottom: 1px solid #ead8b8;
}

.cta-strip {
  display: grid;
  gap: 1.25rem;
}

.cta-strip p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.quote-detail-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: #344153;
}

.quote-detail-list li::marker {
  color: var(--amber-dark);
}

.cta-strip h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.7rem;
  min-width: 0;
}

.section-heading p,
.split-section p,
.quote-section p,
.hero-copy,
.trust-list,
.quote-detail-list {
  overflow-wrap: break-word;
}

.section-heading h2,
.split-section h2,
.quote-section h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-heading h2::after,
.split-section h2::after,
.quote-section h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 0.75rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--amber), var(--green));
}

.section-heading p,
.split-section p,
.quote-section p {
  color: var(--muted);
}

.quote-section .contact-note {
  padding: 0.8rem;
  border-radius: var(--radius);
  background: #fff8eb;
  color: #473414;
  border: 1px solid rgba(217, 154, 33, 0.3);
}

.contact-card {
  margin: 1rem 0;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  color: var(--ink-strong);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.contact-card span {
  color: var(--amber-dark);
}

.contact-card .button {
  width: 100%;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  min-height: 190px;
  padding: 1.15rem;
  border: 1px solid #d7e0e8;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue-bright);
}

.service-card:nth-child(2)::before,
.service-card:nth-child(6)::before {
  background: var(--rust);
}

.service-card:nth-child(3)::before,
.service-card:nth-child(5)::before {
  background: var(--green);
}

.service-card:nth-child(4)::before,
.service-card:nth-child(7)::before {
  background: var(--amber);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  background: #e9f3fa;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-tag,
.service-card:nth-child(6) .service-tag {
  background: var(--rust-soft);
  color: var(--rust);
}

.service-card:nth-child(3) .service-tag,
.service-card:nth-child(5) .service-tag {
  background: var(--green-soft);
  color: var(--green);
}

.service-card:nth-child(4) .service-tag,
.service-card:nth-child(7) .service-tag {
  background: #fff4d8;
  color: var(--amber-dark);
}

.service-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink-strong);
  font-size: 1.12rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.notice {
  margin-top: 1.1rem;
  padding: 1rem;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff8eb, #ffffff);
  color: #473414;
}

.section-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink-strong), var(--blue));
  color: #ffffff;
}

.section-cta h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.section-cta p {
  margin: 0.35rem 0 0;
  color: #d8e0ea;
}

.section-muted {
  background: linear-gradient(180deg, #eef4f8, #f8fafc);
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue-bright), var(--blue));
  color: #ffffff;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  gap: 1.5rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue), var(--ink-strong));
  color: #ffffff;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
}

.service-area {
  background:
    linear-gradient(135deg, rgba(18, 26, 39, 0.98), rgba(23, 50, 77, 0.95)),
    #121a27;
  color: #ffffff;
}

.service-area .section-heading h2,
.service-area .section-heading p {
  color: #ffffff;
}

.service-area .section-heading p {
  color: #d8e0ea;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
}

.area-tags span:nth-child(2n) {
  border-color: rgba(230, 165, 31, 0.34);
}

.area-tags span:nth-child(3n) {
  border-color: rgba(37, 137, 106, 0.42);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid #d7e0e8;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 800;
  color: var(--ink-strong);
  border-left: 4px solid var(--amber);
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.quote-section {
  background: linear-gradient(180deg, #f1f6f9, #fff7e8);
}

.quote-layout {
  display: grid;
  gap: 1.5rem;
}

.quote-form {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #d7e0e8;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--amber);
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 800;
  color: var(--ink-strong);
}

input,
textarea {
  width: 100%;
  border: 1px solid #b8c5d1;
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(35, 93, 133, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 0.7rem;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-submit {
  width: 100%;
}

.form-message {
  margin: 0;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #edf8f4;
  color: #143d32;
  border: 1px solid rgba(23, 109, 85, 0.24);
}

.site-footer {
  padding: 2rem 0 6rem;
  background: linear-gradient(135deg, var(--ink-strong), var(--blue));
  color: #ffffff;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: var(--silver);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.footer-copy {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(17, 24, 39, 0.12);
}

.mobile-cta a,
.mobile-cta button {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 0.45rem 0.25rem;
  border: 0;
  text-decoration: none;
  color: var(--ink-strong);
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1.1;
  text-align: center;
  background: #ffffff;
  cursor: pointer;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-cta a:nth-child(2),
.mobile-cta button:nth-child(2) {
  background: var(--blue);
  color: #ffffff;
}

.mobile-cta a:nth-child(3),
.mobile-cta button:nth-child(3) {
  background: var(--amber);
}

@media (min-width: 560px) {
  .button-row,
  .contact-actions {
    flex-direction: row;
    align-items: center;
    width: auto;
  }

  .button {
    min-width: 160px;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    width: fit-content;
    min-width: min(100%, 430px);
  }

  .phone-card span {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .container,
  .narrow {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 1.82rem;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .split-section h2,
  .quote-section h2,
  .cta-strip h2 {
    font-size: 1.32rem;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .trust-list,
  .section-heading p,
  .split-section p,
  .quote-section p,
  .cta-strip p {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .phone-card strong,
  .contact-card strong {
    font-size: 1.55rem;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
  }

  .site-nav a:hover {
    color: var(--ink-strong);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius);
    background: var(--ink-strong);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    min-height: 640px;
    padding-block: 4rem 4.5rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy {
    font-size: 1.14rem;
  }

  .section {
    padding-block: 5rem;
  }

  .intro-band {
    padding-block: 2.25rem;
  }

  .cta-strip,
  .split-section,
  .quote-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .cta-strip {
    align-items: center;
  }

  .section-cta {
    grid-template-columns: 1fr auto;
    padding: 1.15rem 1.25rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form {
    padding: 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 980px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    align-items: center;
  }

  .quick-quote-card {
    display: block;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .header-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink-strong);
    border: 1px solid var(--line);
    font-weight: 800;
    cursor: pointer;
  }

  .hero-image {
    object-position: center right;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
