:root {
  --navy: #0B1F33;
  --slate: #172B3A;
  --terracotta: #C7663B;
  --terracotta-hover: #AE4F2B;
  --sand: #F5F0E8;
  --offwhite: #FCFAF7;
  --muted: #5D6873;
  --border: #DDD5C9;
  --white: #FFFFFF;
  --green: #557A63;
  --text: #20313f;
  --shadow-sm: 0 10px 28px rgba(11, 31, 51, .08);
  --shadow-md: 0 22px 55px rgba(11, 31, 51, .14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max: 1180px;
  --header-h: 82px;
  --ease: 180ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { max-width: 100%; }

a { color: inherit; }

a:hover { color: var(--terracotta); }

:focus-visible {
  outline: 3px solid rgba(199, 102, 59, .55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  padding: .75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease);
}

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

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

.section { padding: clamp(4rem, 7vw, 6.5rem) 0; }

.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .85rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.04em;
}

h1 { font-size: clamp(2.65rem, 6.5vw, 5.25rem); max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -.025em; }

p { margin: 0 0 1rem; }

.lead {
  color: #3d4a55;
  font-size: clamp(1.06rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.max-copy { max-width: 740px; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.18rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(199, 102, 59, .24);
}

.btn-primary:hover { background: var(--terracotta-hover); color: var(--white); }

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
}

.btn-secondary:hover { border-color: rgba(255, 255, 255, .58); color: var(--white); }

.btn-light {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
}

.btn-light:hover { border-color: var(--terracotta); color: var(--navy); }

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
}

.topbar a { color: var(--white); font-weight: 750; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(252, 250, 247, .96);
  border-bottom: 1px solid rgba(221, 213, 201, .8);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .2), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 12px),
    var(--terracotta);
  box-shadow: inset 0 -10px 18px rgba(86, 31, 17, .24);
}

.brand-name {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link, .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 820;
  padding: .6rem .75rem;
  text-decoration: none;
}

.nav-link:hover, .dropdown-toggle:hover,
.nav-link[aria-current="page"], .dropdown-toggle[aria-current="page"],
.nav-item.is-open > .dropdown-toggle {
  color: var(--terracotta);
  background: #f7ece4;
}

.dropdown-toggle::after {
  content: "";
  width: .44rem;
  height: .44rem;
  margin-left: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-item { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 306px;
  display: grid;
  gap: .1rem;
  margin: 0;
  padding: .6rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  border-radius: 12px;
  color: var(--slate);
  font-weight: 760;
  padding: .7rem .78rem;
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a[aria-current="page"] {
  background: #f7ece4;
  color: var(--terracotta-hover);
}

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

.header-call {
  color: var(--slate);
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(199, 102, 59, .25), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(245, 240, 232, .16), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--slate));
  color: rgba(255, 255, 255, .86);
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -18vw auto;
  width: 48vw;
  height: 48vw;
  background: repeating-radial-gradient(circle, rgba(245, 240, 232, .11) 0 2px, transparent 2px 22px);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 { color: var(--white); }

.hero .lead { color: rgba(255, 255, 255, .84); max-width: 680px; }

.hero p:not(.eyebrow):not(.lead) { color: rgba(255, 255, 255, .76); max-width: 650px; }

.hero-actions { margin: 1.75rem 0 1.45rem; }

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  font-weight: 760;
  padding: .4rem .75rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -4% -5% 9%;
  z-index: -1;
  border-radius: inherit;
  background: var(--terracotta);
  opacity: .82;
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border: 10px solid rgba(252, 250, 247, .92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 240ms ease;
}

.hero-media:hover .hero-image { transform: scale(1.015); }

.float-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 280px;
  border: 1px solid rgba(221, 213, 201, .78);
  border-radius: 20px;
  background: rgba(252, 250, 247, .95);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.float-card strong {
  display: block;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: .3rem;
}

.info-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.icon-badge {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: #f4dfd3;
  color: var(--terracotta);
  flex: 0 0 auto;
}

.icon-badge svg { width: 26px; height: 26px; }

.section-head {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow { justify-content: center; }

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: grid;
  gap: .75rem;
  min-height: 100%;
  border: 1px solid var(--border);
  border-top: 4px solid rgba(199, 102, 59, .6);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 1px 0 rgba(11, 31, 51, .04);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card.featured {
  padding: 1.55rem;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, .75), rgba(255, 255, 255, .94)),
    var(--white);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(199, 102, 59, .45);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--terracotta-hover);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform var(--ease);
}

.text-link:hover::after { transform: translateX(4px); }

.types-section { background: var(--sand); }

.type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.type-card {
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--offwhite);
  padding: 1.15rem;
  overflow: hidden;
}

.tile-pattern {
  height: 72px;
  border-radius: 15px;
  margin-bottom: 1rem;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #b45433, #d37b52);
}

.type-card:nth-child(2) .tile-pattern { background: repeating-linear-gradient(135deg, #a6a098 0 16px, #c6beb2 16px 32px); }
.type-card:nth-child(3) .tile-pattern { background: repeating-radial-gradient(ellipse at center, #c7663b 0 10px, #a9492a 10px 24px); }
.type-card:nth-child(4) .tile-pattern { background: linear-gradient(90deg, #4d5b64 0 20%, #d8d0c5 20% 40%, #4d5b64 40% 60%, #d8d0c5 60% 80%, #4d5b64 80%); }
.type-card:nth-child(5) .tile-pattern { background: linear-gradient(135deg, #557a63, #d8d0c5); }

.approach {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
}

.approach h2, .approach h3 { color: var(--white); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.inspection-visual,
.care-visual {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, .48), rgba(11, 31, 51, .16)),
    repeating-linear-gradient(120deg, #9e4328 0 22px, #c7663b 22px 44px, #b55231 44px 66px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.inspection-visual::before,
.care-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 150px;
  background: var(--offwhite);
  clip-path: polygon(0 48%, 50% 0, 100% 48%, 100% 100%, 0 100%);
  border-radius: 18px;
}

.check-list, .warning-list {
  display: grid;
  gap: .85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li, .warning-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.check-list svg, .warning-list svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  margin-top: .25rem;
  color: var(--terracotta);
}

.approach .check-list li {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  padding: .8rem;
}

.signs-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.safety-note {
  border-left: 5px solid var(--terracotta);
  border-radius: 0 14px 14px 0;
  background: #fff0e8;
  color: var(--slate);
  font-weight: 760;
  padding: 1rem;
  margin-top: 1.25rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card,
.weather-card,
.form-card,
.placeholder-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 1px 0 rgba(11, 31, 51, .04);
}

.comparison-card h3 {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.process {
  background: linear-gradient(180deg, var(--offwhite), var(--sand));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  counter-reset: process;
}

.step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.2rem;
}

.step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: .8rem;
}

.areas-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 28%, rgba(199, 102, 59, .16), transparent 22%),
    radial-gradient(circle at 75% 20%, rgba(85, 122, 99, .13), transparent 24%),
    linear-gradient(135deg, var(--white), var(--sand));
  border: 1px solid var(--border);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.35rem 0;
  padding: 0;
  list-style: none;
}

.area-chips li {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(252, 250, 247, .86);
  color: var(--slate);
  font-weight: 820;
  padding: .48rem .82rem;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.care-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--sand);
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.care-visual { min-height: 300px; box-shadow: none; }

.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  padding: 1rem 1.15rem;
}

.faq-question::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.4rem;
  font-weight: 900;
}

.faq-question[aria-expanded="true"]::after { content: "–"; }

.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--ease);
}

.faq-panel[hidden] { display: none; }

.faq-panel-inner {
  overflow: hidden;
  padding: 0 1.15rem 1rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, .04) 0 16px, transparent 16px 32px),
    linear-gradient(135deg, var(--navy), var(--slate));
  color: rgba(255, 255, 255, .84);
}

.final-cta h2, .final-cta h3 { color: var(--white); }
.final-cta .lead { color: rgba(255, 255, 255, .84); }

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .8fr);
  gap: 2rem;
  align-items: start;
}

.damage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.damage-list li {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: .45rem .7rem;
  font-weight: 760;
}

.estimate-form {
  display: grid;
  gap: .9rem;
}

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

.field label, .checkbox-field {
  color: var(--slate);
  font-weight: 800;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfc5b7;
  border-radius: 12px;
  background: var(--offwhite);
  color: var(--text);
  font: inherit;
  padding: .72rem .82rem;
}

.field textarea { min-height: 112px; resize: vertical; }

.field-error {
  min-height: 1.1rem;
  color: #9b3425;
  font-size: .88rem;
  font-weight: 750;
}

.checkbox-field {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .22rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  background: #071723;
  color: rgba(255, 255, 255, .72);
  padding: 4rem 0 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, .85fr));
  gap: 2rem;
}

.site-footer h2, .site-footer h3 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer .brand-tagline { color: rgba(255, 255, 255, .58); }

.footer-links {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: .9rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  background: rgba(252, 250, 247, .96);
  border-top: 1px solid var(--border);
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 30px rgba(11, 31, 51, .1);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: rgba(255, 255, 255, .82);
  padding: 4rem 0;
}

.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255, 255, 255, .82); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 760;
}

.breadcrumb a { color: var(--white); text-decoration: none; }

.placeholder-page { padding: 4rem 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-call { display: none; }
  .nav-link, .dropdown-toggle { padding-inline: .55rem; }
}

@media (max-width: 1020px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + 33px) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-h) - 33px);
    overflow-y: auto;
    background: var(--offwhite);
    border-top: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    width: 100%;
  }

  .nav-link, .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: .35rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-item.is-open .dropdown-menu { display: grid; }

  .header-actions { justify-content: start; }
  .hero-grid, .split-grid, .care-block, .cta-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weather-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 22px, var(--max)); }
  .topbar-inner { display: grid; gap: .15rem; text-align: center; }
  .header-inner { min-height: 74px; }
  :root { --header-h: 74px; }
  .primary-nav { inset: calc(var(--header-h) + 54px) 0 auto; max-height: calc(100dvh - var(--header-h) - 54px); }
  .brand-tagline { display: none; }
  .hero { padding-top: 2.7rem; }
  .hero-image { border-width: 7px; }
  .float-card { position: static; margin: -1.25rem .75rem 0; max-width: none; }
  .button-row, .btn { width: 100%; }
  .trust-points { display: grid; }
  .info-panel, .services-grid, .type-grid, .comparison-grid, .weather-grid, .timeline, .damage-list, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.35rem 0; }
  .footer-bottom { display: grid; }
  .mobile-cta { display: grid; }
}

@media (max-width: 370px) {
  .brand-name { font-size: .93rem; }
  .brand-mark { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
