/* =========================================================
   A&K Building Co. — brand tokens pulled from the logo
   ========================================================= */
:root {
  /* Brand */
  --navy-900: #061a2e;
  --navy: #0a2744;          /* logo navy */
  --navy-700: #163a5f;
  --gold: #bc9a6a;          /* logo gold */
  --gold-300: #d6bd94;
  --gold-ink: #86662f;      /* gold dark enough for text on light bg (AA) */
  --cream: #eadfca;         /* logo background */
  --cream-100: #f7f2e8;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --surface-alt: var(--cream-100);
  --text: #1b2533;
  --text-muted: #4f5b69;
  --heading: var(--navy);
  --border: #e4dccb;
  --error: #b42318;
  --success: #1f7a4d;

  /* Type */
  --font-display: "Zilla Slab", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space & shape */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 120px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(10, 39, 68, .06);
  --shadow: 0 12px 32px rgba(10, 39, 68, .10);
  --shadow-lg: 0 24px 60px rgba(10, 39, 68, .18);

  /* Motion */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 700ms;

  /* Layers */
  --z-header: 100;
  --z-menu: 200;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); color: var(--heading); line-height: 1.1; margin: 0 0 .5em; font-weight: 700; text-wrap: balance; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 999; background: var(--navy); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); }
.skip-link:focus { top: 16px; }
@media (max-width: 639px) { .hide-sm { display: none !important; } }

/* ---------- Type helpers ---------- */
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.01em; }
.lead { font-size: 1.125rem; color: var(--text); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: .9rem;
}
.eyebrow svg { width: 12px; height: 12px; fill: currentColor; }
.eyebrow--light { color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: var(--white); --btn-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .75rem 1.5rem;
  font-weight: 700; font-size: .98rem; text-decoration: none; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid var(--btn-bd); border-radius: var(--radius-sm);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}
.btn .icon { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--gold  { --btn-bg: var(--gold); --btn-fg: var(--navy-900); --btn-bd: var(--gold); }
.btn--gold:hover { --btn-bg: var(--gold-300); --btn-bd: var(--gold-300); box-shadow: 0 8px 20px rgba(188,154,106,.35); }
.btn--navy:hover { --btn-bg: var(--navy-700); --btn-bd: var(--navy-700); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(255,255,255,.6); }
.btn--ghost:hover { --btn-bg: var(--white); --btn-fg: var(--navy); --btn-bd: var(--white); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--navy); }
.btn--outline:hover { --btn-bg: var(--navy); --btn-fg: var(--white); }
.btn--lg { min-height: 56px; padding: .9rem 1.9rem; font-size: 1.05rem; }
.btn--sm { min-height: 44px; padding: .55rem 1.1rem; font-size: .92rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover .icon { transform: translateX(3px); }
.link-arrow .icon { transition: transform var(--dur-fast) var(--ease-out); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #d9dfe7; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar__social { display: flex; gap: .25rem; }
.topbar__social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #d9dfe7; transition: color var(--dur-fast), background-color var(--dur-fast); }
.topbar__social a:hover { color: var(--gold-300); background: rgba(255,255,255,.06); }
.topbar__social .icon { width: 16px; height: 16px; }
.topbar__info { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: flex-end; margin-left: auto; }
.topbar__info li, .topbar__info a { display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; }
.topbar__info a:hover { color: var(--gold-300); }
.topbar__info .icon { width: 15px; height: 15px; color: var(--gold); }
@media (max-width: 639px) { .topbar__social { display: none; } .topbar__info { width: 100%; justify-content: space-between; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }
.header__logo img { width: auto; height: 64px; transition: height var(--dur) var(--ease-out); }
.header.is-scrolled .header__logo img { height: 54px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: .25rem; }
.nav__list a {
  position: relative; display: block; padding: .6rem .8rem; font-weight: 500; color: var(--navy); text-decoration: none;
}
.nav__list a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .35rem; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; }

@media (max-width: 1023px) {
  /* backdrop-filter would make the fixed menu position relative to the header */
  .header { backdrop-filter: none; background: var(--white); }
  .nav-toggle {
    display: grid; place-items: center; width: 48px; height: 48px;
    background: var(--navy); color: var(--white); border: 0; border-radius: var(--radius-sm);
    position: relative; z-index: calc(var(--z-menu) + 1);
  }
  .nav-toggle .icon { width: 24px; height: 24px; }
  .nav-toggle .icon--close, .nav-toggle[aria-expanded="true"] .icon--open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon--close { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: var(--z-menu);
    flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--navy); padding: 96px var(--gutter) 48px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility 0s linear var(--dur);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav__list { flex-direction: column; align-items: center; gap: .25rem; }
  .nav__list a { color: var(--cream); font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; padding: .5rem 1rem; }
  .nav__list a::after { bottom: .2rem; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 639px) { .header__inner { min-height: 72px; } .header__logo img { height: 52px; } }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: min(88vh, 820px); display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,26,46,.92) 0%, rgba(10,39,68,.78) 45%, rgba(10,39,68,.25) 100%),
    linear-gradient(0deg, rgba(6,26,46,.55), transparent 40%);
}
.hero__inner { padding-block: clamp(80px, 12vw, 140px); }
.hero__title { color: var(--white); font-size: clamp(2.8rem, 7.2vw, 5.4rem); line-height: 1; max-width: 12ch; margin-bottom: 1.5rem; }
.hero__title span { color: var(--gold-300); }
.hero__lead { max-width: 54ch; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #e5eaf0; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .75rem 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.18); max-width: 640px; }
.hero__trust li { display: inline-flex; align-items: center; gap: .55rem; font-weight: 500; color: #eef1f5; }
.hero__trust .icon { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--cream { background: var(--surface-alt); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.section-head--split .h2 { max-width: 16ch; margin-bottom: 0; }
.section-head__aside { max-width: 42ch; color: var(--text-muted); margin: 0; }

/* ---------- About ---------- */
.about__grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr); }
.about__head .h2 { max-width: 14ch; }
.about__media { position: relative; padding-right: 18%; padding-bottom: 12%; }
.about__img-main { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--radius-lg); }
.about__img-accent {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.about__body p { color: var(--text-muted); }
.about__body .lead { color: var(--text); }
.owners { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem; }
.owner { display: flex; align-items: center; gap: .8rem; }
.owner__avatar { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold-300); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; border: 3px solid var(--cream); }
.owner strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); line-height: 1.2; }
.owner small { color: var(--gold-ink); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0 2.25rem; padding: 1.5rem 0; border-block: 1px solid var(--border); }
.stats__item { display: flex; flex-direction: column-reverse; }
.stats dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.75rem); color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.stats dt { font-size: .88rem; color: var(--text-muted); margin-top: .4rem; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.05fr 1fr; grid-template-areas: "media head" "media body"; grid-template-rows: auto 1fr; column-gap: 4.5rem; row-gap: 0; }
  .about__head { grid-area: head; align-self: end; }
  .about__head .h2 { max-width: 16ch; margin-bottom: 1.25rem; }
  .about__media { grid-area: media; }
  .about__body { grid-area: body; }
}

/* ---------- Services ---------- */
.services__grid { display: grid; gap: 2.5rem; }
.services__list { display: flex; flex-direction: column; }
.service-tab {
  display: flex; align-items: center; gap: 1.25rem; width: 100%; min-height: 64px; padding: 1.1rem 1.25rem;
  background: transparent; border: 0; border-bottom: 1px solid var(--border); text-align: left;
  color: var(--navy); border-radius: var(--radius-sm);
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.service-tab__num { font-family: var(--font-display); font-weight: 700; color: var(--gold-ink); font-size: 1rem; min-width: 2ch; }
.service-tab__label { flex: 1; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
.service-tab .icon { opacity: 0; transform: translateX(-8px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.service-tab:hover { background: rgba(188,154,106,.12); }
.service-tab[aria-selected="true"] { background: var(--navy); color: var(--white); border-color: transparent; }
.service-tab[aria-selected="true"] .service-tab__num { color: var(--gold-300); }
.service-tab[aria-selected="true"] .icon, .service-tab:hover .icon { opacity: 1; transform: none; }
.services__callout {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; padding: 1.1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
}
.services__callout p { margin: 0; color: var(--text-muted); font-size: .95rem; line-height: 1.5; }
.services__callout a { color: var(--navy); font-weight: 700; }
.services__callout .icon { color: var(--gold-ink); width: 28px; height: 28px; }
.services__panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); min-height: 420px; }
.services__panel img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transition: opacity var(--dur) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.services__panel img.is-swapping { opacity: 0; transform: scale(1.03); }
.services__caption {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,.97); border-radius: var(--radius); box-shadow: var(--shadow);
}
.services__caption h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.services__caption p { color: var(--text-muted); margin-bottom: .8rem; }
@media (max-width: 899px) {
  .services__panel { order: -1; min-height: 0; }
  .services__panel img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .services__caption { position: static; box-shadow: none; border-radius: 0; }
}
@media (min-width: 900px) { .services__grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: stretch; } .services__caption { max-width: 440px; } }

/* ---------- Process ---------- */
.process .section-head { text-align: left; }
.steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; padding: 2rem 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.step__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--navy); color: var(--gold-300); margin-bottom: 1.25rem; }
.step__icon .icon { width: 26px; height: 26px; }
.step__num { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .35rem; }
.step h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.step p { color: var(--text-muted); margin: 0; font-size: .97rem; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 58px; right: -1.5rem; width: 1.5rem; border-top: 2px dashed var(--gold);
  }
}

/* ---------- Why ---------- */
.why__grid { display: grid; gap: 3rem; align-items: center; }
.why__body .lead { color: var(--text-muted); }
.checklist { display: grid; gap: 1rem; margin: 1.75rem 0 2.25rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; }
.checklist .icon { width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--gold); color: var(--navy-900); stroke-width: 3; margin-top: 1px; }
.checklist strong { color: var(--navy); }
.why__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why__media img { width: 100%; aspect-ratio: 4 / 5.2; object-fit: cover; border-radius: var(--radius-lg); }
.why__img-b { margin-top: 3rem; }
.badge-spin {
  position: absolute; left: 50%; top: 50%; width: 148px; height: 148px; transform: translate(-50%, -40%);
  border-radius: 50%; background: var(--navy); box-shadow: var(--shadow-lg); border: 5px solid var(--cream-100);
  display: grid; place-items: center;
}
.badge-spin svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.badge-spin text { fill: var(--gold-300); font-family: var(--font-body); font-weight: 700; font-size: 10px; }
.badge-spin img { position: relative; width: 74px; height: auto; margin-top: -4px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (min-width: 900px) { .why__grid { grid-template-columns: 1fr 1.05fr; gap: 5rem; } }

/* ---------- Banner ---------- */
.banner { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(96px, 14vw, 180px); color: var(--white); text-align: center; }
.banner__bg { position: absolute; inset: -10% 0; z-index: -2; background-size: cover; background-position: center; will-change: transform; }
.banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,26,46,.72), rgba(10,39,68,.85)); }
.banner__spark { width: 28px; height: 28px; fill: var(--gold); margin: 0 auto 1.5rem; display: block; }
.banner__quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.15; max-width: 22ch; margin: 0 auto 1.25rem; text-wrap: balance; }
.banner__cite { color: var(--gold-300); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; margin: 0; }

/* ---------- Craftsmanship ---------- */
.craft__grid { display: grid; gap: 3rem; align-items: center; }
.craft__media img { width: 100%; aspect-ratio: 5 / 5.5; object-fit: cover; border-radius: var(--radius-lg); }
.craft__body > p { color: var(--text-muted); }
.craft__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.craft__features .icon { width: 30px; height: 30px; color: var(--gold-ink); margin-bottom: .6rem; }
.craft__features h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.craft__features p { color: var(--text-muted); font-size: .94rem; margin: 0; }
.area { padding: 1.5rem; background: var(--surface-alt); border-radius: var(--radius); margin-bottom: 1.75rem; }
.area__title { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; margin-bottom: 1rem; }
.area__title .icon { color: var(--gold-ink); }
.area__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.area__list li { padding: .35rem .85rem; background: var(--white); border: 1px solid var(--border); border-radius: 999px; font-size: .88rem; font-weight: 500; color: var(--navy); }
.call-card { display: inline-flex; align-items: center; gap: 1rem; text-decoration: none; }
.call-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--navy-900); transition: transform var(--dur-fast); }
.call-card:hover .call-card__icon { transform: rotate(-12deg); }
.call-card small { display: block; color: var(--text-muted); font-size: .85rem; }
.call-card strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }
@media (min-width: 900px) { .craft__grid { grid-template-columns: 1fr 1.05fr; gap: 5rem; } }
@media (max-width: 479px) { .craft__features { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 2.5rem; }
.faq__head p { color: var(--text-muted); }
.faq__list { display: grid; gap: .75rem; }
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--dur), box-shadow var(--dur); }
.faq details[open] { border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 64px; padding: 1.1rem 1.4rem;
  font-weight: 700; color: var(--navy); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { width: 32px; height: 32px; padding: 7px; border-radius: 50%; background: var(--surface-alt); color: var(--navy); transition: transform var(--dur) var(--ease-out), background-color var(--dur); }
.faq details[open] summary .icon { transform: rotate(45deg); background: var(--gold); }
.faq details p { padding: 0 1.4rem 1.3rem; margin: 0; color: var(--text-muted); }
@media (min-width: 900px) { .faq__grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; } .faq__head { position: sticky; top: 120px; align-self: start; } }

/* ---------- Estimate ---------- */
.estimate { background: var(--navy); color: #dfe5ec; position: relative; overflow: hidden; }
.estimate::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%;
  border: 60px solid rgba(188,154,106,.08); pointer-events: none;
}
.estimate__grid { display: grid; gap: 3rem; position: relative; }
.estimate .h2 { color: var(--white); }
.estimate__contact { display: grid; gap: 1rem; margin-top: 2rem; }
.estimate__contact li { display: flex; align-items: center; gap: .8rem; font-weight: 500; }
.estimate__contact a { color: var(--white); text-decoration: none; }
.estimate__contact a:hover { color: var(--gold-300); }
.estimate__contact .icon { width: 40px; height: 40px; padding: 10px; border-radius: 50%; background: rgba(188,154,106,.16); color: var(--gold-300); }
.form { background: var(--white); color: var(--text); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg); }
.form__row { display: grid; gap: 0 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; }
.field label span { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem .95rem; font: inherit; font-size: 1rem; color: var(--text);
  background: var(--white); border: 1.5px solid #cfd6de; border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(188,154,106,.45); }
.field.has-error input, .field.has-error select { border-color: var(--error); }
.field__error { color: var(--error); font-size: .86rem; margin: .35rem 0 0; min-height: 0; }
.field__error:empty { display: none; }
.form__status { margin: 1rem 0 0; font-weight: 500; text-align: center; }
.form__status.is-success { color: var(--success); }
.btn.is-loading { opacity: .7; pointer-events: none; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .estimate__grid { grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: center; } }

/* ---------- Call bar & Footer ---------- */
.callbar { background: var(--gold); text-align: center; }
.callbar a { display: inline-flex; align-items: center; gap: .6rem; min-height: 64px; color: var(--navy-900); font-weight: 500; font-size: 1.1rem; text-decoration: none; }
.callbar strong { font-weight: 700; }
.callbar a:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.footer { background: var(--navy-900); color: #b9c3cf; padding-top: clamp(56px, 8vw, 88px); font-size: .95rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; padding-bottom: 3rem; }
.footer__brand { grid-column: 1 / -1; }
.footer__brand img { width: 150px; margin-bottom: 1.25rem; }
.footer__brand p { max-width: 34ch; }
.footer__title { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1.1rem; }
.footer ul li { margin-bottom: .6rem; }
.footer a { text-decoration: none; transition: color var(--dur-fast); }
.footer a:not(.btn):hover { color: var(--white); }
.footer__social { display: flex; gap: .5rem; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold-300) !important; }
.footer__social .icon { width: 18px; height: 18px; }
.footer__contact li { display: flex; align-items: center; gap: .6rem; }
.footer__contact .icon { color: var(--gold); width: 18px; height: 18px; }
.footer__contact + .btn { margin-top: .75rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer__bottom p { margin: 0; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } .footer__brand { grid-column: auto; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .badge-spin svg { animation: none; }
}
