/* =========================================================
   Old Florida Structures — main stylesheet
   Palette drawn from the brand logo: leafy green + sandy cream
   ========================================================= */

:root {
  /* Brand color */
  --green:      #759E56;
  --green-d:    #5B8140;
  --green-xd:   #445F2F;
  --ink:        #232D1B;
  --ink-soft:   #3A4530;
  --cream:      #DBD2B3;
  --cream-d:    #C3B78F;
  --paper:      #FAF8F1;
  --paper-2:    #F1EDDE;
  --white:      #FFFFFF;
  --sun:        #D9A441;
  --line:       #E4DFCC;

  /* Type */
  --f-script: 'Pacifico', cursive;
  --f-block:  'Graduate', serif;
  --f-head:   'Oswald', sans-serif;
  --f-body:   'Source Sans 3', system-ui, sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 10px 30px -12px rgba(35, 45, 27, .22);
  --shadow-lg: 0 24px 60px -20px rgba(35, 45, 27, .32);
  --container: 1160px;

  /* Corrugated-metal texture, used on tinted bands */
  --corrugation: repeating-linear-gradient(90deg,
      rgba(255,255,255,.05) 0 2px, transparent 2px 26px);
  --corrugation-dark: repeating-linear-gradient(90deg,
      rgba(35,45,27,.035) 0 2px, transparent 2px 26px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-d); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul, ol.quote-progress { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: var(--white); padding: .5rem 1rem; border-radius: 6px;
}
.skip-link:focus { left: 8px; }

/* ---------- Headings ---------- */
h1, h2 {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .03em; font-size: 1.25rem; }

.script-eyebrow {
  font-family: var(--f-script);
  color: var(--green);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-bottom: .35rem;
  display: block;
  transform: rotate(-1.5deg);
}
.script-eyebrow-light { color: var(--cream); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head .lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .8rem 1.9rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(91, 129, 64, .6);
}
.btn-primary:hover { background: var(--green-d); box-shadow: 0 12px 26px -8px rgba(91, 129, 64, .7); }

.btn-outline {
  background: transparent;
  color: var(--green-xd);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-cream {
  background: var(--cream);
  color: var(--green-xd);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.35);
}
.btn-cream:hover { background: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.08rem; }
.btn-sm { padding: .55rem 1.3rem; font-size: .88rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .84rem;
  letter-spacing: .02em;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 640px) { .topbar-item:not(.topbar-right) { display: none; } .topbar-inner { justify-content: center; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 241, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(35,45,27,.25); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}

/* Logo lockup (HTML/CSS recreation of the brand mark) */
.logo { text-decoration: none; display: inline-block; line-height: 1; }
.logo-script {
  display: block;
  font-family: var(--f-script);
  color: var(--green);
  font-size: 1.75rem;
  transform: rotate(-2deg);
}
.logo-block {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--f-block);
  color: var(--cream-d);
  font-size: .68rem;
  letter-spacing: .38em;
  text-indent: .38em;
  margin-top: .18rem;
}
.logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cream-d); flex: none; }

.site-nav ul { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1rem); }
.site-nav a {
  display: block;
  font-family: var(--f-head);
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  text-decoration: none;
  padding: .5rem .55rem;
  border-radius: 6px;
}
.site-nav a:hover { color: var(--green-d); }
.site-nav a.active { color: var(--green-d); box-shadow: inset 0 -3px 0 var(--green); border-radius: 0; }
.site-nav .nav-cta-item { margin-left: .5rem; }
.site-nav .btn { box-shadow: none; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: .5rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; border-radius: 2px;
  background: var(--ink); margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .75rem 1.25rem 1.25rem; }
  .site-nav a { padding: .8rem .5rem; border-bottom: 1px solid var(--line); }
  .site-nav a.active { box-shadow: none; }
  .site-nav .nav-cta-item { margin: .9rem 0 0; }
  .site-nav .btn { display: block; }
}

/* ---------- Hero (full-bleed photo) ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg,
      rgba(20, 26, 13, .93) 0%,
      rgba(20, 26, 13, .78) 42%,
      rgba(28, 36, 18, .38) 75%,
      rgba(28, 36, 18, .25) 100%),
    url('/assets/img/photos/field.jpg') center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  padding-block: clamp(4.5rem, 11vw, 8.5rem);
}
.hero-copy { max-width: 680px; }
.hero h1 { margin-bottom: .4em; color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero h1 .accent { color: var(--cream); }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 32em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-note { margin-top: 1.2rem; font-size: .95rem; color: rgba(255,255,255,.82); max-width: 30em; }
.hero-note strong { color: var(--cream); }

.hero-badge {
  position: absolute; top: clamp(2rem, 6vw, 4rem); right: clamp(1rem, 4vw, 3rem);
  background: var(--green);
  color: var(--white);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .82rem;
  line-height: 1.25;
  text-align: center;
  width: 116px; height: 116px;
  border-radius: 50%;
  display: grid; place-content: center;
  transform: rotate(8deg);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.45);
  border: 3px solid rgba(255,255,255,.25);
}
.hero-badge b { font-size: 1.55rem; display: block; }
@media (max-width: 720px) { .hero-badge { display: none; } }

/* ---------- Photo bands (parallax) ---------- */
.photo-band {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding-block: clamp(4rem, 9vw, 6.5rem);
}
.photo-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(22, 29, 14, .78), rgba(22, 29, 14, .78));
}
.photo-band > .container { position: relative; }
.photo-band h2 { color: var(--white); }
.band-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.band-stats b {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--cream);
  line-height: 1.1;
}
.band-stats span { font-size: .95rem; opacity: .9; }
@media (max-width: 760px) { .band-stats { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .parallax { background-attachment: fixed; }
}

/* ---------- Framed photos ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  margin: 14px 0 0 14px;
}
.photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  transform: translate(-14px, 14px) rotate(-1.6deg);
  background: var(--cream);
  border-radius: inherit;
  z-index: 0;
}
.photo-frame img {
  position: relative;
  width: 100%;
  border-radius: inherit;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.photo-frame figcaption {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(22, 29, 14, .82);
  color: var(--cream);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22,29,14,.55));
  pointer-events: none;
}
.g-item figcaption {
  position: absolute; left: .9rem; bottom: .8rem; z-index: 2;
  color: var(--white);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .8rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.g-item.tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 900px) { .g-item.tall { grid-row: auto; aspect-ratio: 4 / 3; } }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--green-xd) var(--corrugation);
  color: var(--white);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
  text-align: center;
}
.trust-item b {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--cream);
}
.trust-item span { font-size: .9rem; opacity: .9; }
@media (max-width: 760px) { .trust-bar-inner { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.section-tint { background: var(--paper-2) var(--corrugation-dark); }
.section-white { background: var(--white); }

/* ---------- Building cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.b-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.b-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.b-card-art {
  background: var(--paper-2) var(--corrugation-dark);
  padding: 1.75rem 2rem 0;
}
.b-card-art img { width: 100%; height: 160px; object-fit: contain; object-position: bottom; }
.b-card-body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.b-card h3 { margin-bottom: .35rem; }
.b-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.b-card .card-link {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-d);
}
.b-card:hover .card-link { text-decoration: underline; }

/* ---------- Feature list (why steel / why us) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-art img { width: 100%; height: auto; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-block: 1rem;
}
.feature-list li + li { border-top: 1px dashed var(--line); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--cream-d);
  display: grid; place-content: center;
  color: var(--green-d);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-list h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem 1.8rem;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -24px; left: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--f-block);
  font-size: 1.2rem;
  display: grid; place-content: center;
  box-shadow: 0 8px 18px -6px rgba(91,129,64,.55);
}
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.t-stars { color: var(--sun); letter-spacing: .15em; font-size: 1.05rem; margin-bottom: .7rem; }
.t-card blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; color: var(--ink-soft); flex: 1; }
.t-card cite {
  font-style: normal;
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9rem;
  color: var(--green-xd);
}
.t-card cite span { display: block; font-family: var(--f-body); text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-size: .85rem; }

/* ---------- Service area ---------- */
.state-card h3 {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.15rem; margin-bottom: .5rem;
}
.state-card .abbr {
  background: var(--green);
  color: var(--white);
  font-family: var(--f-block);
  font-size: .72rem;
  border-radius: 999px;
  padding: .32rem .6rem;
  flex: none;
}
.state-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

.states-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .states-wrap { grid-template-columns: 1fr; } }
.state-chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.state-chip {
  display: inline-flex; align-items: baseline; gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.1rem .5rem .6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.state-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green); }
.state-chip .abbr {
  background: var(--green);
  color: var(--white);
  font-family: var(--f-block);
  font-size: .72rem;
  border-radius: 999px;
  padding: .3rem .55rem;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .35rem;
}
.field label .req { color: var(--green-d); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(117, 158, 86, .18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-fine { font-size: .85rem; color: var(--ink-soft); margin-top: .9rem; }

/* Honeypot — hidden from humans */
.hp-field { position: absolute; left: -5000px; top: -5000px; opacity: 0; pointer-events: none; }

/* ---------- Multi-step quote form ---------- */
.quote-progress {
  display: flex; justify-content: space-between; gap: .5rem;
  margin-bottom: 2rem;
  counter-reset: qstep;
}
.quote-progress li {
  flex: 1;
  text-align: center;
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  color: var(--ink-soft);
  position: relative;
  padding-top: 2.4rem;
}
.quote-progress li::before {
  counter-increment: qstep;
  content: counter(qstep);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--f-block);
  font-size: .85rem;
  display: grid; place-content: center;
  transition: all .2s ease;
}
.quote-progress li.current { color: var(--green-xd); }
.quote-progress li.current::before { background: var(--green); border-color: var(--green); color: var(--white); }
.quote-progress li.done::before { background: var(--cream); border-color: var(--cream-d); color: var(--green-xd); content: "\2713"; }

.q-step { display: none; }
.q-step.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.type-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .type-picker { grid-template-columns: repeat(2, 1fr); } }
.type-option input { position: absolute; opacity: 0; }
.type-option {
  position: relative;
  display: block;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem .9rem 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.type-option:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.type-option img { height: 74px; margin: 0 auto .6rem; object-fit: contain; }
.type-option .t-name {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .92rem;
  font-weight: 600;
}
.type-option:has(input:checked) {
  border-color: var(--green);
  background: #f2f6ec;
  box-shadow: 0 0 0 4px rgba(117,158,86,.16);
}
.type-option:has(input:focus-visible) { outline: 2px solid var(--green-d); outline-offset: 2px; }

.q-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.q-nav .btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.q-error { color: #a33a2a; font-weight: 600; margin-top: .8rem; display: none; }
.q-error.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--green-xd) url('/assets/img/photos/hero.jpg') center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(45, 61, 28, .82), rgba(30, 41, 18, .88));
}
.cta-band .container { position: relative; z-index: 1; }
.rib-edge { z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.9rem); }
.cta-band-sub { max-width: 34em; margin-inline: auto; opacity: .92; font-size: 1.1rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.8rem; }

.rib-edge {
  position: absolute; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg,
    var(--cream) 0 22px, var(--cream-d) 22px 26px);
}
.rib-edge-top { top: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink) var(--corrugation);
  color: var(--white);
  padding-block: clamp(3rem, 6.5vw, 5rem);
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute; inset: 0;
  background-image: var(--ph);
  background-size: cover;
  background-position: center;
  opacity: .32;
}
.page-hero .ph-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(35,45,27,.85) 0%, rgba(35,45,27,.25) 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: .2em; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.page-hero .lead { color: var(--cream); font-size: 1.15rem; max-width: 40em; margin: 0; }

/* ---------- Buildings page sections ---------- */
.building-detail { scroll-margin-top: 110px; }
.building-detail + .building-detail { border-top: 1px dashed var(--line); }
.spec-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.4rem; }
.spec-chips span {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-xd);
  padding: .3rem .9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink) var(--corrugation);
  color: #cfd4c6;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.logo-footer .logo-script { font-size: 1.6rem; }
.logo-mark {
  height: 96px;
  width: auto;
  margin-bottom: .75rem;
}
.footer-brand p { margin-top: 1rem; max-width: 30em; }
.footer-contact a { color: var(--cream); font-weight: 700; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col h3 {
  color: var(--cream);
  font-size: .95rem;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #cfd4c6; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-states { columns: 2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }
.footer-fine { opacity: .7; }

/* ---------- Floating CTA (mobile) ---------- */
.floating-cta {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  background: var(--green);
  color: var(--white);
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px -8px rgba(35,45,27,.5);
  display: none;
}
@media (max-width: 720px) {
  .floating-cta.visible { display: block; animation: floatUp .3s ease; }
  body { padding-bottom: 4.5rem; }
}
@keyframes floatUp { from { transform: translateY(80px); } to { transform: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Thank-you page ---------- */
.thanks-hero { text-align: center; padding-block: clamp(4rem, 9vw, 7rem); }
.thanks-check {
  width: 92px; height: 92px; margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid; place-content: center;
  font-size: 2.6rem;
  box-shadow: 0 16px 40px -12px rgba(91,129,64,.6);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--ink) var(--corrugation);
  color: #cfd4c6;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.5rem);
}
.contact-info-card h3 { color: var(--cream); }
.contact-info-card a { color: var(--white); font-weight: 700; text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-info-card li { padding-block: .7rem; }
.contact-info-card li + li { border-top: 1px solid rgba(255,255,255,.12); }
.contact-label {
  display: block;
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--cream-d);
}
