/* ============================================================
   LUXE HAUS — Consultation Booking
   Design tokens first, components after.
   ============================================================ */

:root {
  /* color · warm neutral, clinical-luxe */
  --bg:          #faf7f2;   /* page · warm off-white */
  --bg-elev:    #f1ebe1;    /* cards / quiet bands */
  --bg-deep:    #2a2520;    /* footer / inverse */
  --ink:        #1a1714;    /* primary text */
  --ink-soft:   #5b524a;    /* secondary text */
  --ink-mute:   #8a8079;    /* tertiary text */
  --rule:       #e4dccf;    /* hairlines */
  --accent:     #9a7b56;    /* muted bronze */
  --accent-deep:#7a5f3f;
  --accent-soft:#d8c5ab;
  --field-bg:   #ffffff;
  --field-bd:   #d9d0c1;
  --error:      #8c3a2f;

  /* type */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* scale (modular, 1.25) */
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1rem;
  --t-lg: 1.125rem;
  --t-xl: 1.375rem;
  --t-2xl: 1.875rem;
  --t-3xl: 2.5rem;
  --t-4xl: 3.5rem;
  --t-5xl: 5rem;

  /* space */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 7rem;
  --s-10: 10rem;

  /* shape & motion */
  --radius: 2px;
  --radius-lg: 6px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-quick: 180ms;
  --t-slow: 600ms;

  /* layout */
  --max: 1180px;
  --max-text: 64ch;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================================
   BASE
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3 { font-family: var(--f-display); font-weight: 400; letter-spacing: -.01em; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color var(--t-quick) var(--ease); }
a:hover { color: var(--accent-deep); }

img { display: block; max-width: 100%; }
figure { margin: 0; }   /* UA default is `1em 40px` — the 40px side margin on .media figures overflows the page */

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

.eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 var(--s-4);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-9) var(--pad-x);
}

.section__title {
  font-size: clamp(2rem, 4vw, var(--t-3xl));
  margin-bottom: var(--s-5);
}

/* reveal-on-scroll baseline */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: var(--s-4) var(--s-6);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-quick) var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn--solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--text {
  background: transparent;
  color: var(--ink);
  padding: var(--s-3) 0;
  letter-spacing: .14em;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--text:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-quick) var(--ease), background var(--t-quick) var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--rule); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-4) var(--pad-x);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-display);
  font-size: var(--t-lg);
  letter-spacing: .02em;
}
.nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 1px;
}
.nav__brand-dot { color: var(--accent-deep); margin: 0 1px; }
.nav__brand-word { font-weight: 400; }

.nav__links {
  margin-left: auto;
  display: flex;
  gap: var(--s-6);
  font-size: var(--t-sm);
  letter-spacing: .04em;
}
.nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--ink); }

.nav__cta { padding: var(--s-3) var(--s-5); font-size: var(--t-xs); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
}

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

.hero {
  position: relative;
  min-height: 78vh;
  padding: var(--s-9) var(--pad-x);
  background: var(--bg);
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
  z-index: 3;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;   /* anchor toward the subject so she stays in frame on wide screens */
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* heavier cream on the left where text sits, fades to lighter on the right where she is */
    linear-gradient(90deg,
      rgba(250,247,242,.92) 0%,
      rgba(250,247,242,.82) 30%,
      rgba(250,247,242,.55) 55%,
      rgba(250,247,242,.32) 100%),
    /* soft top-and-bottom darkening for depth */
    linear-gradient(180deg,
      rgba(250,247,242,.10) 0%,
      transparent 30%,
      transparent 70%,
      rgba(250,247,242,.18) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
.hero__inner > * { max-width: 56ch; }

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
}
.hero__title em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 300;
}
.hero__title-locator {
  display: block;
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--s-4);
  line-height: 1.4;
  max-width: 48ch;
}

.hero__lede {
  margin: 0 0 var(--s-6);
  color: var(--ink-soft);
  font-size: var(--t-lg);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
}

.hero__trust {
  list-style: none;
  padding: var(--s-6) 0 0;
  margin: var(--s-7) 0 0;
  border-top: 1px solid rgba(154,123,86,.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  max-width: 56ch;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__trust-num {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}
.hero__trust-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.3;
}
.hero__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(154,123,86,.28);
  list-style: none;
}
@media (max-width: 540px) {
  .hero__trust-divider { display: none; }
  .hero__trust { gap: var(--s-4); }
}

@media (max-width: 900px) {
  .hero { min-height: 70vh; }
  .hero__bg { object-position: 60% center; }
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(250,247,242,.62) 0%,
        rgba(250,247,242,.78) 45%,
        rgba(250,247,242,.90) 100%);
  }
  .hero__inner { text-align: center; }
  .hero__inner > * { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
}

/* ============================================================
   MEDIA · image placeholder system
   Reserves aspect-ratio so the image slot is visible before
   Midjourney drops arrive. When <img> is added inside, it
   covers the gradient automatically.
   ============================================================ */

.media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--bg-elev) 0%, var(--accent-soft) 100%);
  border-radius: var(--radius-lg);
  isolation: isolate;
  width: 100%;
  /* height comes from padding-top per modifier; no explicit height */
}
.media::before {
  /* subtle grain to suggest a photo's tonal range */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(122,95,63,.10), transparent 60%);
  z-index: 0;
}
.media__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  opacity: .55;
  z-index: 1;
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.media--service { padding-top: 75%; }    /* 4:3 */
.media--about   { padding-top: 125%; }   /* 4:5 */
.media--hero    { padding-top: 56.25%; } /* 16:9 */

/* ============================================================
   SERVICES · air-traffic-controller grid
   ============================================================ */

.services { background: var(--bg); }
.services__head {
  max-width: 720px;
  margin-bottom: var(--s-7);
}
.services__lede {
  color: var(--ink-soft);
  font-size: var(--t-lg);
  margin: 0;
  max-width: 60ch;
}

.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1000px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .service-grid { grid-template-columns: 1fr; } }

.service {
  position: relative;
}
.service__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--field-bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-quick) var(--ease),
              border-color var(--t-quick) var(--ease),
              box-shadow var(--t-quick) var(--ease);
}
.service__link:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 40px -20px rgba(42,37,32,.20);
}
.service__link:hover .service__cta { color: var(--accent-deep); }

.service__body {
  padding: var(--s-5) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.service__body--guide {
  padding: var(--s-7) var(--s-6);
  justify-content: center;
  text-align: center;
  background: var(--bg-elev);
}
.service__pillar {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0;
}
.service__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  margin: 0;
  line-height: 1.2;
}
.service__desc {
  color: var(--ink-soft);
  font-size: var(--t-sm);
  margin: 0;
  flex: 1;
}
.service__cta {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: var(--s-2);
  transition: color var(--t-quick) var(--ease);
}

.service--guide .service__link {
  background: var(--bg-elev);
  border-style: dashed;
  border-color: var(--accent-soft);
}
.service--guide .service__link:hover {
  border-style: solid;
  background: var(--field-bg);
}

/* ============================================================
   WHY LUXE HAUS · differentiators
   ============================================================ */

.why { background: var(--bg-elev); border-top: 1px solid var(--rule); }
.why__head { max-width: 760px; margin-bottom: var(--s-7); }
.why__lede { color: var(--ink-soft); font-size: var(--t-lg); margin: 0; max-width: 60ch; }

.why__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1000px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .why__grid { grid-template-columns: 1fr; } }

.why__card {
  background: var(--field-bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.why__num {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--accent-deep);
  line-height: 1;
}
.why__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  margin: 0;
  line-height: 1.2;
}
.why__card p {
  color: var(--ink-soft);
  font-size: var(--t-sm);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   WHAT WE TREAT · long-form services
   ============================================================ */

.treat { background: var(--bg); }
.treat__head { max-width: 760px; margin-bottom: var(--s-7); }
.treat__lede { color: var(--ink-soft); font-size: var(--t-lg); margin: 0; max-width: 64ch; }

.treat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7) var(--s-8);
}
@media (max-width: 800px) { .treat__list { grid-template-columns: 1fr; gap: var(--s-6); } }

.treat__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-2) var(--s-5);
  align-items: start;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}
.treat__rank {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: .04em;
  grid-row: span 2;
  align-self: center;
}
.treat__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  margin: 0;
  line-height: 1.2;
}
.treat__item p {
  color: var(--ink-soft);
  font-size: var(--t-sm);
  margin: var(--s-2) 0 0;
  line-height: 1.65;
  grid-column: 2;
  max-width: 56ch;
}

.treat__cta { margin-top: var(--s-7); text-align: center; }

/* ============================================================
   REVIEWS · testimonials
   ============================================================ */

.reviews { background: var(--bg-elev); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.reviews__head { max-width: 720px; margin-bottom: var(--s-6); }

.reviews__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.review {
  background: var(--field-bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-soft);
  z-index: 0;
}
.review__body {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.review__author {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.review__author strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   VISIT · areas served (inline within visit section)
   ============================================================ */

.visit__areas {
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}
.visit__areas-copy {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.7;
}
.visit__area {
  white-space: nowrap;
  color: var(--ink);
}

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

.trust {
  background: var(--bg-elev);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-7) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--s-5);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-2);
}
.trust__num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, var(--t-3xl));
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}
.trust__label {
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.trust__divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
}
@media (max-width: 640px) {
  .trust__inner { flex-direction: column; }
  .trust__divider { width: 40px; height: 1px; }
}

/* ============================================================
   EXPECT (3 steps)
   ============================================================ */

.expect { background: var(--bg); }
.steps {
  list-style: none;
  margin: var(--s-7) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
.step {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-5);
}
.step__num {
  display: block;
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--accent-deep);
  letter-spacing: .04em;
  margin-bottom: var(--s-4);
}
.step h3 {
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
}
.step p {
  color: var(--ink-soft);
  max-width: 32ch;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ============================================================
   ABOUT
   ============================================================ */

.about { background: var(--bg-elev); }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.about__copy p { color: var(--ink-soft); max-width: var(--max-text); }
.about__quote {
  margin: var(--s-6) 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--t-xl);
  line-height: 1.4;
  color: var(--ink);
  padding-left: var(--s-5);
  border-left: 1px solid var(--accent);
}
.about__quote p { margin: 0; max-width: 38ch; }
.about__quote span {
  display: block;
  margin-top: var(--s-4);
  font-family: var(--f-body);
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.media--about { box-shadow: 0 30px 60px -40px rgba(42,37,32,.25); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .media--about { padding-top: 75%; max-width: 520px; } /* 4:3 on mobile */
}

/* ============================================================
   BOOKING
   ============================================================ */

.book {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 70%, var(--bg-elev) 70%, var(--bg-elev) 100%);
}
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: start;
  position: relative;
}
.book__intro { padding-top: var(--s-3); }
.book__intro p { color: var(--ink-soft); }
.book__assurances {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-soft);
}
.book__assurances li {
  padding-left: var(--s-5);
  position: relative;
}
.book__assurances li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 12px; height: 1px;
  background: var(--accent);
}

@media (max-width: 900px) {
  .book__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* form */
.form {
  background: var(--field-bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  box-shadow: 0 30px 60px -40px rgba(42,37,32,.18);
}

.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field__opt { text-transform: none; letter-spacing: .04em; color: var(--ink-mute); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--field-bd);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  color: var(--ink);
  transition: border-color var(--t-quick) var(--ease), box-shadow var(--t-quick) var(--ease), background var(--t-quick) var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; font-family: var(--f-body); }
.field select { appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237a5f3f' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--s-5) center;
  padding-right: calc(var(--s-5) * 2 + 12px);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154,123,86,.18);
  background: #fff;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(140,58,47,.12);
}
.field__error {
  font-size: var(--t-xs);
  color: var(--error);
  min-height: 1em;
  letter-spacing: .04em;
}

.form__submit {
  grid-column: 1 / -1;
  margin-top: var(--s-3);
  width: 100%;
  padding: var(--s-5);
  position: relative;
}
.form__submit[disabled] { opacity: .7; cursor: progress; }

.form__fineprint {
  grid-column: 1 / -1;
  font-size: var(--t-xs);
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: .02em;
  margin: 0;
}

@media (max-width: 600px) {
  .form { grid-template-columns: 1fr; }
}

/* success */
.form__success {
  grid-column: 2;
  background: var(--field-bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 0 30px 60px -40px rgba(42,37,32,.18);
  animation: rise var(--t-slow) var(--ease);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.form__success h3 {
  font-size: var(--t-2xl);
  margin: var(--s-3) 0 var(--s-4);
}
.form__success p { color: var(--ink-soft); margin-bottom: var(--s-5); }

@media (max-width: 900px) {
  .form__success { grid-column: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--bg); }
.faq__list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  max-width: 820px;
}
.faq__item { border-top: 1px solid var(--rule); }
.faq__item:last-child { border-bottom: 1px solid var(--rule); }

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--s-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-quick) var(--ease);
}
.faq__q:hover { color: var(--accent-deep); }
.faq__icon {
  font-family: var(--f-body);
  font-size: var(--t-xl);
  color: var(--accent-deep);
  transition: transform var(--t-quick) var(--ease);
  display: inline-block;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}
.faq__a p {
  padding: 0 0 var(--s-5);
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ============================================================
   VISIT · NAP + hours + Google Map
   ============================================================ */

.visit { background: var(--bg-elev); border-top: 1px solid var(--rule); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  align-items: center;
}
.visit__info { display: flex; flex-direction: column; gap: var(--s-5); }
.visit__city { color: var(--accent-deep); font-style: italic; font-weight: 300; }

.visit__nap {
  font-style: normal;
  color: var(--ink-soft);
  font-size: var(--t-base);
  line-height: 1.65;
}
.visit__nap p { margin: 0 0 var(--s-3); }
.visit__nap p:last-child { margin-bottom: 0; }
.visit__line--name { color: var(--ink); font-size: var(--t-lg); }
.visit__phone {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.visit__phone:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

.visit__hours { padding-top: var(--s-4); border-top: 1px solid var(--rule); }
.eyebrow--sm { margin-bottom: var(--s-3); font-size: 10px; letter-spacing: .18em; }

.hours { margin: 0; display: grid; gap: var(--s-2); font-size: var(--t-sm); }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-1) 0;
  border-bottom: 1px dashed var(--rule);
}
.hours__row:last-child { border-bottom: 0; }
.hours dt { color: var(--ink-soft); letter-spacing: .04em; }
.hours dd { color: var(--ink); margin: 0; font-variant-numeric: tabular-nums; }

.visit__cta { align-self: flex-start; margin-top: var(--s-3); }

.visit__map {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -40px rgba(42,37,32,.20);
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.12) contrast(.95);
}

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .visit__cta { align-self: center; }
  .visit__map { aspect-ratio: 16 / 10; }
}

/* ============================================================
   CLOSER
   ============================================================ */

.closer { background: var(--bg-elev); border-top: 1px solid var(--rule); }
.closer__inner { text-align: center; padding-block: var(--s-9); }
.closer h2 {
  font-size: clamp(2rem, 5vw, var(--t-4xl));
  margin-bottom: var(--s-6);
  font-weight: 300;
}

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

.foot {
  background: var(--bg-deep);
  color: #d8cfc3;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-7) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  text-align: center;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: #f0e8da;
}
.foot__brand .nav__brand-mark { border-color: #f0e8da; color: #f0e8da; }
.foot__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--t-lg);
  color: #c9bfb1;
}
.foot__nap {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-style: normal;
  font-size: var(--t-sm);
  color: #c9bfb1;
  line-height: 1.6;
  margin-top: var(--s-3);
}
.foot__nap a { color: #f0e8da; text-decoration: none; border-bottom: 1px solid rgba(240,232,218,.3); }
.foot__nap a:hover { color: #fff; border-bottom-color: #fff; }
.foot__nap strong { color: #f0e8da; font-weight: 500; }
.foot__nap-line { display: block; }
.foot__meta {
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8d8378;
  margin-top: var(--s-3);
}
