/* ==========================================================================
   Izquierdo's Hardwood Floors — Alexandria, VA
   Palette + type refined up from their real brand (Divi child theme:
   sage #9BB090 / #59764F, walnut #1e170a / #36281f, oak #c39b88, bone #fcfffc)
   ========================================================================== */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
/* === end defensive base === */

:root {
  --ink:        #191410;
  --walnut:     #2C2018;
  --walnut-2:   #3C2C21;
  --sage:       #9CAF91;
  --sage-dk:    #4E6A46;
  --sage-deep:  #3A5135;
  --oak:        #C7A184;
  --brick:      #A8452A;
  --brick-dk:   #8B3620;
  --paper:      #F6F1E8;
  --paper-2:    #EFE7D9;
  --paper-3:    #E5DACA;
  --muted:      #6B5B4C;

  --line:       rgba(25, 20, 16, .14);
  --line-soft:  rgba(25, 20, 16, .08);
  --line-dark:  rgba(246, 241, 232, .16);

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:    "Archivo", "Helvetica Neue", system-ui, sans-serif;

  --nav-h: 76px;
  --wrap: 1220px;
  --pad: clamp(1.15rem, 4vw, 2.75rem);
  --r: 4px;
  --r-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(25,20,16,.06), 0 6px 18px -10px rgba(25,20,16,.22);
  --shadow:    0 2px 4px rgba(25,20,16,.05), 0 22px 48px -24px rgba(25,20,16,.38);
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (max-width: 780px) { :root { --nav-h: 64px; } }

/* ---------- base ---------- */

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 12, "WONK" 1;
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--sage); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--brick);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* wood-grain texture, used on dark bands */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background:
    repeating-linear-gradient(94deg,
      rgba(255,255,255,.028) 0 1px,
      transparent 1px 4px,
      rgba(0,0,0,.05) 4px 5px,
      transparent 5px 11px),
    repeating-linear-gradient(91deg,
      rgba(255,255,255,.016) 0 2px,
      transparent 2px 23px);
}

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--body);
  font-size: .705rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--sage-dk);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  flex: none;
}
.eyebrow.on-dark { color: var(--sage); }
.eyebrow.centered { justify-content: center; }

.section {
  position: relative;
  padding-block: clamp(3.75rem, 8vw, 7rem);
}

.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  margin-top: .85rem;
}
.section-head p {
  margin-top: 1.05rem;
  color: var(--muted);
  font-size: 1.045rem;
  max-width: 62ch;
}
.on-dark .section-head p, .band-dark .section-head p { color: rgba(246,241,232,.72); }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--brick);
  --btn-fg: #FFF8F1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  min-height: 52px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--r);
  font-family: var(--body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .28s var(--ease), border-color .28s var(--ease),
              color .28s var(--ease), transform .28s var(--ease),
              box-shadow .28s var(--ease);
}
.btn:hover {
  --btn-bg: var(--brick-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(139,54,32,.85);
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn-ghost.on-dark {
  --btn-fg: var(--paper);
  border-color: var(--line-dark);
}
.btn-ghost.on-dark:hover { --btn-fg: var(--ink); --btn-bg: var(--paper); border-color: var(--paper); }

.btn-sage { --btn-bg: var(--sage-dk); }
.btn-sage:hover { --btn-bg: var(--sage-deep); box-shadow: 0 12px 26px -14px rgba(58,81,53,.8); }

.btn-sm { min-height: 44px; padding: .6rem 1.15rem; font-size: .77rem; }

/* ============================ NAV ============================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  background: rgba(246, 241, 232, .88);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-stuck {
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -26px rgba(25,20,16,.6);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 2rem);
}

.brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.brand img {
  height: clamp(36px, 4.4vw, 46px);
  width: auto;
  display: block;
}
.brand .wordmark {
  display: grid;
  gap: 0;
  line-height: 1;
}
.brand .wm-1 {
  font-family: var(--display);
  font-size: clamp(.95rem, 1.5vw, 1.16rem);
  font-weight: 700;
  font-variation-settings: "SOFT" 8, "WONK" 0;
  letter-spacing: -.015em;
  color: var(--ink);
}
.brand .wm-2 {
  font-family: var(--body);
  font-size: clamp(.53rem, .78vw, .625rem);
  font-weight: 700;
  letter-spacing: .225em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin-top: .18rem;
}
@media (max-width: 380px) { .brand .wordmark { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.85rem);
  margin-left: auto;
}
.nav-links a {
  font-size: .795rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-block: .35rem;
  white-space: nowrap;
  transition: color .22s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-phone {
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .22s var(--ease);
}
.nav-phone:hover { color: var(--brick); }

.nav-cta { flex: none; }

.nav-toggle {
  display: none;
  flex: none;
  margin-left: auto;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 19px; height: 1.8px;
  background: currentColor;
  transition: background .2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px; height: 1.8px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer — hidden by default via display:none, not just [hidden] */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 89;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem var(--pad) 1.6rem;
  max-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
}
.nav-drawer.is-open { display: block; }
.nav-drawer a.drawer-link {
  display: block;
  padding: .82rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-drawer .drawer-foot {
  display: grid;
  gap: .7rem;
  margin-top: 1.25rem;
}
.nav-drawer .drawer-foot .btn { width: 100%; }

@media (max-width: 1180px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================ HERO ============================ */

.hero {
  position: relative;
  container-type: inline-size;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 88% 6%, rgba(199,161,132,.30) 0%, transparent 58%),
    radial-gradient(90% 70% at 4% 96%, rgba(156,175,145,.30) 0%, transparent 60%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background: repeating-linear-gradient(
    92deg,
    rgba(60, 44, 33, .05) 0 1px,
    transparent 1px 6px,
    rgba(60, 44, 33, .028) 6px 7px,
    transparent 7px 17px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(1.75rem, 4.5cqi, 4rem);
  padding-block: clamp(1.75rem, 5cqi, 4.25rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(.85rem, 1.9cqi, 1.5rem);
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.05rem, 6.3cqi, 4.3rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 14, "WONK" 1;
  line-height: 1.02;
  letter-spacing: -.026em;
  margin: 0;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  color: var(--sage-dk);
}

.hero-sub {
  font-size: clamp(1rem, 1.65cqi, 1.16rem);
  line-height: 1.58;
  color: var(--muted);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: clamp(.1rem, .5cqi, .4rem);
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .95rem;
  padding-top: clamp(.6rem, 1.4cqi, 1.1rem);
  border-top: 1px solid var(--line);
  font-size: .81rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-proof strong { color: var(--ink); font-weight: 700; }
/* separators lead each item, so a wrap never leaves a dot dangling at line end */
.hero-proof .pf { display: inline-flex; align-items: center; gap: .5rem; }
.hero-proof .pf + .pf::before {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(25,20,16,.3);
  flex: none;
}

.stars {
  display: inline-flex;
  gap: 1.5px;
  color: var(--brick);
  font-size: .82rem;
  letter-spacing: .04em;
}

/* hero image plate */
.hero-plate {
  position: relative;
  min-width: 0;
  align-self: center;
}
.hero-plate .plate-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow);
}
.hero-plate .plate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-plate .plate-frame {
  position: absolute;
  inset: -14px -14px 26px 26px;
  border: 1.5px solid var(--sage);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: .65;
}

.plate-chip {
  position: absolute;
  left: -18px;
  bottom: -20px;
  background: var(--walnut);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: .85rem 1.15rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: .1rem;
  max-width: 62%;
}
.plate-chip .chip-n {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: var(--sage);
}
.plate-chip .chip-l {
  font-size: .655rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246,241,232,.68);
}

@container (max-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-plate { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-plate { display: none; }
  .hero h1 { font-size: clamp(2.05rem, 9.4cqi, 3.1rem); }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ============================ TRUST STRIP ============================ */

.trust {
  position: relative;
  background: var(--walnut);
  color: var(--paper);
  border-block: 1px solid var(--walnut-2);
  overflow: hidden;
}
.trust-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border-inline: 1px solid var(--line-dark);
}
.trust-item {
  background: var(--walnut);
  padding: clamp(1.3rem, 2.6vw, 2rem) clamp(1rem, 2vw, 1.6rem);
  display: grid;
  gap: .25rem;
  align-content: center;
}
.trust-item .t-n {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
  color: var(--sage);
  letter-spacing: -.02em;
}
.trust-item .t-l {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(246,241,232,.62);
}
@media (max-width: 760px) {
  .trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================ SERVICES ============================ */

.services { background: var(--paper); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 720px) { .svc-grid { grid-template-columns: minmax(0, 1fr); } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: clamp(1.4rem, 2.4vw, 1.95rem);
  background: #FBF8F2;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  min-width: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(78,106,70,.34);
  box-shadow: var(--shadow);
}
.svc-num {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--oak);
  letter-spacing: .02em;
}
.svc h3 {
  font-size: 1.32rem;
  letter-spacing: -.015em;
}
.svc p {
  font-size: .935rem;
  line-height: 1.62;
  color: var(--muted);
}
.svc .svc-link {
  margin-top: auto;
  padding-top: .5rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .28s var(--ease);
}
.svc .svc-link:hover { gap: .75rem; }

.svc-also {
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
  padding-top: clamp(1.4rem, 2.6vw, 2rem);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .75rem;
}
.svc-also .also-label {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: .35rem;
}
@media (max-width: 620px) { .svc-also .also-label { flex: 1 0 100%; margin: 0 0 .2rem; } }
.chip {
  display: inline-flex;
  align-items: center;
  padding: .48rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #FBF8F2;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
}

.price-note {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--sage-dk);
  border-radius: var(--r-lg);
}
.price-note p { font-size: .96rem; color: var(--muted); max-width: 62ch; }
.price-note strong { color: var(--ink); font-weight: 700; }

/* ============================ WORK / GALLERY ============================ */

.work {
  position: relative;
  background: var(--walnut);
  color: var(--paper);
  overflow: hidden;
}
.work .section-head h2 { color: var(--paper); }
.work .wrap { position: relative; z-index: 1; }

.gal {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.6rem, 1.4vw, 1rem);
}
.gal figure {
  position: relative;
  margin: 0;
  min-width: 0;
  grid-column: span 2;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--walnut-2);
}
.gal figure:first-child img { object-position: 62% center; }
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gal figure:hover img { transform: scale(1.045); }
.gal figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem .95rem .85rem;
  font-size: .755rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(to top, rgba(20,15,11,.86), rgba(20,15,11,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gal figure:hover figcaption,
.gal figure:focus-within figcaption { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .gal { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gal figcaption { opacity: 1; transform: none; padding: 2rem .7rem .7rem; font-size: .7rem; }
}

.work-foot {
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: rgba(246,241,232,.68);
  font-size: .88rem;
}

/* ============================ PROCESS ============================ */

.process { background: var(--paper-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.25rem);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.step {
  position: relative;
  padding-top: 1.35rem;
  border-top: 2px solid var(--line);
  min-width: 0;
  transition: border-color .35s var(--ease);
}
.step:hover { border-top-color: var(--sage-dk); }
.step .s-n {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sage-dk);
  display: block;
  margin-bottom: .45rem;
}
.step p { font-size: .96rem; line-height: 1.55; }

/* ============================ REVIEWS ============================ */

.reviews { background: var(--paper); }

.rev-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.rev-score {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #FBF8F2;
}
.rev-score .rs-n {
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}
.rev-score .rs-m { display: grid; gap: .15rem; }
.rev-score .rs-m span:last-child {
  font-size: .715rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.rev {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  background: #FBF8F2;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  min-width: 0;
}
.rev h3 {
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.rev blockquote {
  margin: 0;
  font-size: .935rem;
  line-height: 1.65;
  color: var(--muted);
}
.rev .rev-by {
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .81rem;
}
.rev .rev-by .who { font-weight: 700; }
.rev .rev-by .when { color: var(--muted); }

/* ============================ AREAS ============================ */

.areas {
  position: relative;
  background: var(--sage-deep);
  color: var(--paper);
  overflow: hidden;
}
.areas .wrap { position: relative; z-index: 1; }
.areas .section-head h2 { color: var(--paper); }
.areas .section-head p { color: rgba(246,241,232,.76); }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .55rem;
}
.area-list li {
  padding: .45rem .85rem;
  border: 1px solid rgba(246,241,232,.24);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(246,241,232,.92);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.area-list li:hover { background: rgba(246,241,232,.1); border-color: rgba(246,241,232,.5); }

/* ============================ VISIT ============================ */

.visit { background: var(--paper); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.info-card {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: #FBF8F2;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  min-width: 0;
}
.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.05rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}

.hours { display: grid; gap: .1rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .42rem 0;
  font-size: .91rem;
  border-bottom: 1px dashed var(--line-soft);
}
.hours li:last-child { border-bottom: 0; }
.hours .d { font-weight: 600; }
.hours .t { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours li.today { color: var(--sage-dk); }
.hours li.today .t { color: var(--sage-dk); font-weight: 600; }

.detail-list { display: grid; gap: 1.05rem; }
.detail-list .dl-k {
  font-size: .675rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .2rem;
}
.detail-list .dl-v {
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.detail-list a.dl-v:hover { color: var(--brick); }

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .35rem;
}
.pay span {
  font-size: .735rem;
  font-weight: 600;
  padding: .3rem .6rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
}

/* ============================ CTA BAND ============================ */

.cta-band {
  position: relative;
  background: var(--walnut);
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  color: var(--paper);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  margin: 1.15rem auto 0;
  max-width: 54ch;
  color: rgba(246,241,232,.74);
  font-size: 1.03rem;
}
.cta-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

/* ============================ FOOTER ============================ */

.footer {
  background: var(--ink);
  color: rgba(246,241,232,.62);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.75rem;
  font-size: .875rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: minmax(0, 1fr); } }

.foot-brand { min-width: 0; }
.foot-plate {
  display: inline-flex;
  padding: .55rem .8rem;
  background: var(--paper);
  border-radius: var(--r);
  margin-bottom: 1.05rem;
}
.foot-plate img { height: 46px; width: auto; display: block; }
.foot-brand p { max-width: 40ch; line-height: 1.6; }

.footer h4 {
  font-family: var(--body);
  font-size: .675rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.foot-list { display: grid; gap: .55rem; }
.foot-list a:hover, .foot-brand a:hover { color: var(--paper); }
.foot-list a { transition: color .22s var(--ease); }

.foot-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .795rem;
  color: rgba(246,241,232,.44);
}
.foot-bottom a:hover { color: var(--paper); }

/* ============================ CONTACT PAGE ============================ */

.page-head {
  position: relative;
  background: var(--walnut);
  color: var(--paper);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(2.1rem, 5.6vw, 3.75rem);
  color: var(--paper);
  margin-top: .9rem;
  max-width: 18ch;
}
.page-head p {
  margin-top: 1.15rem;
  max-width: 56ch;
  color: rgba(246,241,232,.76);
  font-size: 1.045rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

.form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #FBF8F2;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; min-width: 0; }
.field label {
  font-size: .705rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--brick); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: .82rem .95rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-dk);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(78,106,70,.14);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(107,91,76,.55); }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 0 1.1rem;
}

.turnstile-box { margin: .35rem 0 1.1rem; min-height: 65px; }

.form-actions { display: grid; gap: .75rem; }
.form-actions .btn { width: 100%; }
.form-hint { font-size: .8rem; color: var(--muted); text-align: center; }

.form-status {
  margin-top: 1.1rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--r-lg);
  font-size: .95rem;
  line-height: 1.55;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.form-status.is-ok {
  border-color: rgba(78,106,70,.45);
  background: rgba(156,175,145,.2);
  color: var(--sage-deep);
}
.form-status.is-ok strong { display: block; font-size: 1.05rem; margin-bottom: .25rem; color: var(--sage-deep); }
.form-status.is-err {
  border-color: rgba(168,69,42,.42);
  background: rgba(168,69,42,.1);
  color: var(--brick-dk);
}
.form-status.is-err a { text-decoration: underline; font-weight: 700; }

.btn[disabled] { opacity: 1; pointer-events: none; }
.btn.is-sent { --btn-bg: var(--sage-dk); --btn-fg: #FFF8F1; }

.aside-stack { display: grid; gap: clamp(1rem, 2vw, 1.5rem); min-width: 0; }

.reach { display: grid; gap: .8rem; }
.reach a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.1rem;
  background: #FBF8F2;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  min-width: 0;
}
.reach a:hover { border-color: var(--sage-dk); transform: translateX(3px); }
.reach .r-ic {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 1rem;
}
.reach .r-t { display: grid; gap: .1rem; min-width: 0; }
.reach .r-k {
  font-size: .655rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.reach .r-v {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* ---------- scroll reveal (BELOW THE FOLD ONLY) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

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