/* ============================================================
   Ouly's African Hair Braiding — "The Crown Room"
   Hand-built demo · burgundy & gold · Playfair Display + Jost
   ============================================================ */

/* ---- fonts (variable, self-hosted) ---- */
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-italic.woff2") format("woff2");
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/jost.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---- tokens ---- */
:root {
  --ink:        #2a1114;
  --ink-soft:   #55383c;
  --burgundy:   #571015;
  --burgundy-2: #6e1a1e;
  --wine:       #3d0c10;
  --gold:       #c99733;
  --gold-soft:  #e3c27c;
  --gold-deep:  #7a5915;   /* gold-family text on cream/cream-2 — ≥4.5:1 both */
  --cream:      #faf4e9;
  --cream-2:    #f3eada;
  --copper:     #a8562b;
  --on-dark:    #f4e9d8;
  --on-dark-mut:#d9c4ab;
  --line:       #e6d9c2;
  --line-dark:  rgba(227, 194, 124, .25);
  --shadow:     0 18px 50px -18px rgba(42, 17, 20, .35);
  --r-card: 18px;
  --arch: 999px 999px var(--r-card) var(--r-card);
  --wrap: 1180px;
  --dur: .55s;
  --ease: cubic-bezier(.22, .75, .35, 1);
}

/* ---- reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: clip; }   /* clip, not hidden — hidden kills sticky */
body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.65; font-weight: 400;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; margin: 0 0 .45em; font-weight: 600; letter-spacing: .01em; }
h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 650; }
h2 { font-size: clamp(30px, 3.6vw, 44px); }
h3 { font-size: 21px; }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; white-space: nowrap; }
.hide-s { }
.show-s { display: none; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 10px 18px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* focus — two-tone ring: burgundy core (visible on cream/white/gold) with a
   gold-soft halo (visible on wine/burgundy bands). ≥3:1 on every background. */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--burgundy); outline-offset: 2px; border-radius: 4px;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 6px var(--gold-soft);
}

/* ---- eyebrow / rules ---- */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-soft); }
.braid-rule { width: 108px; color: var(--gold); margin: 4px 0 18px; }
.braid-rule svg { width: 100%; height: 11px; display: block; }
.braid-rule.center { margin-left: auto; margin-right: auto; }
.braid-rule.gold { color: var(--gold-soft); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; border: 1.6px solid transparent;
  font-family: inherit; font-size: 15.5px; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s, color .18s, border-color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 15px 30px; font-size: 16.5px; }
.btn--gold { background: var(--gold); color: #241009; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); box-shadow: 0 12px 28px -12px rgba(201, 151, 51, .7); }
.btn--wine { background: var(--burgundy); color: var(--on-dark); border-color: var(--burgundy); }
.btn--wine:hover { background: var(--burgundy-2); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(244, 233, 216, .5); }
.btn--ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn--ghost-wine { background: transparent; color: var(--burgundy); border-color: rgba(87, 16, 21, .35); }
.btn--ghost-wine:hover { border-color: var(--burgundy); background: rgba(87, 16, 21, .05); }
.btn--ghost-ink { background: transparent; color: #241009; border-color: rgba(36, 16, 9, .4); }
.btn--ghost-ink:hover { border-color: #241009; background: rgba(36, 16, 9, .06); }

/* ---- topbar ---- */
.topbar {
  background: var(--wine); color: var(--on-dark-mut); font-size: 13.5px;
  border-bottom: 1px solid rgba(227, 194, 124, .14);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar svg { vertical-align: -2px; margin-right: 4px; color: var(--gold); }
.tb-links { display: flex; gap: 18px; align-items: center; }
.tb-walk { color: var(--gold-soft); font-weight: 500; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--burgundy); color: var(--on-dark);
  box-shadow: 0 1px 0 rgba(227, 194, 124, .18);
}
.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(20, 5, 7, .6); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--on-dark); }
.brand svg { color: var(--gold); flex: none; }
.brand .bt { display: flex; flex-direction: column; line-height: 1.05; }
.brand .b1 { font-family: "Playfair Display", serif; font-size: 27px; font-weight: 700; letter-spacing: .02em; }
.brand .b2 { font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }
.mainnav { display: flex; align-items: center; gap: 28px; }
.mainnav > a {
  text-decoration: none; font-size: 15.5px; font-weight: 500; color: var(--on-dark);
  padding: 6px 0; position: relative;
}
.mainnav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold); transition: right .22s var(--ease);
}
.mainnav > a:hover::after, .mainnav > a[aria-current]::after { right: 0; }
.mainnav > a[aria-current] { color: var(--gold-soft); }
.nav-call { display: none; }
.nav-close { display: none; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.hdr-call { padding: 11px 20px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--on-dark); padding: 8px; cursor: pointer; }

/* ---- hero ---- */
.hero { position: relative; background: var(--wine); color: var(--on-dark); overflow: clip; }
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--wine) 26%, rgba(61, 12, 16, .82) 44%, rgba(61, 12, 16, .12) 78%),
              linear-gradient(0deg, rgba(61, 12, 16, .55), transparent 34%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 590px; padding: clamp(64px, 10vw, 130px) 0; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { font-size: 18.5px; color: var(--on-dark); max-width: 54ch; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 26px 0 30px; }
.hero-chips span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500; letter-spacing: .04em; color: var(--gold-soft);
}
.hero-chips svg { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- info strip ---- */
.info-strip { background: var(--gold); color: #241009; }
.info-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 18px; padding-bottom: 18px; }
.is-item {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
  font-size: 14.5px; line-height: 1.35; padding: 4px 10px; border-radius: 12px;
  transition: background .18s;
}
.is-item:hover { background: rgba(36, 16, 9, .08); }
.is-item svg { flex: none; }
.is-item b { font-size: 15.5px; }

/* ---- sections ---- */
.sec { padding: clamp(64px, 8vw, 104px) 0; }
.sec--alt { background: var(--cream-2); }
.sec-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.sec-head .lead { font-size: 18px; color: var(--ink-soft); }
.sec-cta { text-align: center; margin-top: 44px; }

/* woven dark band — strand-weave texture, CSS only */
.sec--woven, .about-teaser {
  background:
    repeating-linear-gradient(45deg, rgba(227, 194, 124, .05) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(-45deg, rgba(227, 194, 124, .05) 0 2px, transparent 2px 14px),
    var(--burgundy);
  color: var(--on-dark);
}
.sec--woven .sec-head .lead { color: var(--on-dark-mut); }
.sec--wine { background: var(--wine); color: var(--on-dark); }

/* ---- arch cards ---- */
.arch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px;
}
.arch-card {
  text-decoration: none; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: transform .28s var(--ease);
}
.arch-card:hover { transform: translateY(-6px); }
.arch-media {
  position: relative; width: 100%; max-width: 320px;
  border-radius: var(--arch); overflow: hidden;
  box-shadow: var(--shadow);
}
.arch-media::after {
  content: ""; position: absolute; inset: 10px;
  border: 1.4px solid rgba(227, 194, 124, .8);
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .28s;
}
.arch-card:hover .arch-media::after { opacity: 1; }
.arch-media img { aspect-ratio: 2 / 3; object-fit: cover; width: 100%; }
.arch-media--lg { max-width: 400px; }
.arch-media--lg::after { opacity: 1; }
.arch-card h3 { margin: 20px 0 8px; }
.arch-card p { font-size: 15.5px; color: var(--ink-soft); max-width: 34ch; margin-bottom: 12px; }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-deep);
}
.arch-card:hover .card-link { color: var(--burgundy); }

/* ---- values ---- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 30px; }
.value-grid--3 { grid-template-columns: repeat(3, 1fr); }
.value { text-align: center; }
.v-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 50%;
  border: 1.5px solid var(--line-dark); color: var(--gold-soft);
  margin-bottom: 18px; background: rgba(61, 12, 16, .45);
}
.value h3 { color: var(--gold-soft); font-size: 20px; }
.value p { font-size: 15.5px; color: var(--on-dark-mut); max-width: 34ch; margin: 0 auto; }

/* ---- quotes ---- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 30px 28px 24px;
  box-shadow: 0 10px 34px -22px rgba(42, 17, 20, .35);
  display: flex; flex-direction: column;
}
.quote blockquote { margin: 0 0 16px; flex: 1; }
.quote blockquote p {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 17.5px; line-height: 1.55; color: var(--ink); margin: 0;
}
.quote blockquote p::before { content: "\201C"; color: var(--gold); font-size: 1.4em; line-height: 0; margin-right: 2px; }
.quote blockquote p::after { content: "\201D"; color: var(--gold); font-size: 1.4em; line-height: 0; margin-left: 2px; }
.quote figcaption { font-size: 14px; font-weight: 600; color: var(--burgundy); }
.quote figcaption span { font-weight: 400; color: var(--ink-soft); }
.quote-more { text-align: center; margin: 34px 0 0; font-size: 14px; color: var(--ink-soft); }
.quote-more a { color: var(--gold-deep); font-weight: 600; }
.quote-inline {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 17px;
  color: var(--ink-soft); border-left: 3px solid var(--gold); padding-left: 16px; margin: 20px 0 24px;
}
.quote-inline span { display: block; font-family: "Jost", sans-serif; font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--burgundy); margin-top: 8px; }

/* ---- splits ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split-img { border-radius: var(--r-card); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-media { position: relative; }
.split .arch-media { margin: 0 auto; }
.split-copy .lead { color: var(--ink-soft); }
.about-teaser .split-copy p { color: var(--on-dark); font-size: 17.5px; }
.about-teaser .split-copy p:first-of-type {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 21px; line-height: 1.5;
}
.about-teaser .sig { color: var(--gold-soft); font-weight: 500; font-family: "Jost", sans-serif; font-size: 15px; margin-bottom: 26px; }

/* ---- visit ---- */
.visit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.visit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px 28px;
  box-shadow: 0 10px 34px -22px rgba(42, 17, 20, .35);
}
.visit-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: "Jost", sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.visit-card h3 svg { color: var(--gold); }
.visit-card .big { font-family: "Playfair Display", serif; font-size: 21px; line-height: 1.35; color: var(--ink); margin-bottom: 10px; }
.visit-card p { font-size: 15.5px; color: var(--ink-soft); }
.visit-card a { color: inherit; text-decoration: none; }
.visit-card p a:hover { color: var(--burgundy); text-decoration: underline; }
.visit-card .btn { margin-top: 4px; }

/* ---- cta band ---- */
.cta-band {
  background:
    repeating-linear-gradient(45deg, rgba(61, 12, 16, .045) 0 2px, transparent 2px 13px),
    repeating-linear-gradient(-45deg, rgba(61, 12, 16, .045) 0 2px, transparent 2px 13px),
    var(--gold);
  color: #241009;
}
.cta-band .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding-top: clamp(44px, 6vw, 64px); padding-bottom: clamp(44px, 6vw, 64px);
}
.cta-band h2 { margin-bottom: 6px; }
.cta-band .sub { margin: 0; font-size: 16.5px; opacity: .85; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }

/* ---- footer ---- */
.site-footer { background: var(--wine); color: var(--on-dark-mut); }
.footer-top {
  max-width: var(--wrap); margin: 0 auto; padding: 64px 24px 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px;
}
.f-brand svg { color: var(--gold); margin-bottom: 10px; }
.f-brand .b1 { display: block; font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; color: var(--on-dark); }
.f-brand .b2 { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin: 4px 0 14px; }
.f-brand p { font-size: 14.5px; line-height: 1.7; }
.f-head { font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-soft); margin: 4px 0 16px; }
.site-footer .col a { display: block; color: var(--on-dark-mut); text-decoration: none; font-size: 15px; padding: 5px 0; }
.site-footer .col a:hover { color: var(--gold-soft); }
.f-contact { list-style: none; margin: 0; padding: 0; }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 15px; }
.f-contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.f-contact a { color: var(--on-dark); text-decoration: none; }
.f-contact a:hover { color: var(--gold-soft); }
.f-sub { font-size: 13.5px; color: var(--on-dark-mut); }
.footer-bot { border-top: 1px solid rgba(227, 194, 124, .16); }
.footer-bot .wrap { display: flex; justify-content: space-between; gap: 14px; padding-top: 18px; padding-bottom: 18px; font-size: 13.5px; }

/* ---- page hero (inner pages) ---- */
.page-hero { background: var(--wine); color: var(--on-dark); padding: clamp(56px, 8vw, 96px) 0; position: relative; overflow: clip; }
.page-hero .lead { font-size: 18.5px; max-width: 60ch; color: var(--on-dark-mut); }
.page-hero--slim { padding: clamp(44px, 6vw, 72px) 0; }
.page-hero--img { padding: clamp(90px, 14vw, 170px) 0; }
.ph-media { position: absolute; inset: 0; }
.ph-img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.ph-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(61, 12, 16, .93) 22%, rgba(61, 12, 16, .55) 55%, rgba(61, 12, 16, .2));
}
.page-hero--img .wrap { position: relative; z-index: 1; }
.page-hero .hero-actions { margin-top: 26px; }

/* ---- styles page rows ---- */
.style-list { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 88px); }
.style-row { display: grid; grid-template-columns: 420px 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.style-row--rev { grid-template-columns: 1fr 420px; }
.style-row--rev .style-media { order: 2; }
.style-row--rev .style-copy { order: 1; }
.style-media { display: flex; justify-content: center; }
.style-copy h2 { margin-bottom: 4px; }
.style-copy > p { color: var(--ink-soft); max-width: 56ch; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 26px; }
.chip {
  font-size: 13.5px; font-weight: 600; letter-spacing: .05em;
  color: var(--burgundy); background: rgba(87, 16, 21, .07);
  border: 1px solid rgba(87, 16, 21, .18);
  padding: 6px 14px; border-radius: 999px;
}
.style-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* scroll offset for anchored sections under sticky header */
.style-row[id] { scroll-margin-top: 96px; }

/* ---- ticks ---- */
.ticks { list-style: none; margin: 0 0 26px; padding: 0; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 16px; color: var(--ink-soft); }
.ticks svg { color: var(--gold-deep); flex: none; margin-top: 4px; }

/* ---- note card ---- */
.note-card {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 40px clamp(24px, 5vw, 56px);
  box-shadow: 0 10px 34px -22px rgba(42, 17, 20, .35);
}
.note-card h2 { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 26px; }
.note-card h2 svg { color: var(--gold); }
.note-card p { color: var(--ink-soft); margin: 0; }
.note-card a { color: var(--burgundy); font-weight: 600; }

/* ---- letter / sig ---- */
.letter p { font-size: 17px; }
.sig-block { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.sig-block img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.sig-block b { font-family: "Playfair Display", serif; font-size: 19px; display: block; }
.sig-block span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
.form-card, .info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 36px 32px; box-shadow: 0 10px 34px -22px rgba(42, 17, 20, .35);
}
.form-card h2, .info-card h2 { font-size: 27px; }
.form-card .sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; }
.form-card .sub a { color: var(--burgundy); font-weight: 600; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.field .opt { color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold-deep); background: #fff; box-shadow: 0 0 0 3px rgba(201, 151, 51, .18); }
.field input::placeholder, .field textarea::placeholder { color: #75634f; opacity: 1; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #8c2318; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.form-alt { font-size: 13.5px; color: var(--ink-soft); max-width: 32ch; }
.form-msg { margin: 18px 0 0; font-weight: 500; padding: 13px 16px; border-radius: 10px; font-size: 15px; }
.form-msg.ok { background: #eef6e9; color: #2c5a1e; border: 1px solid #cfe5c2; }
.form-msg.err { background: #fbeeec; color: #8c2318; border: 1px solid #efd2cc; }
.info-card .row { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 15.5px; }
.info-card .row:first-of-type { border-top: 0; }
.info-card .row > svg { color: var(--gold-deep); flex: none; margin-top: 3px; }
.info-card .row a { color: var(--ink); text-decoration: none; font-weight: 500; }
.info-card .row a:hover { color: var(--burgundy); text-decoration: underline; }
.info-card .mut { color: var(--ink-soft); font-size: 13.5px; }
.row--map { display: block; }
.map-embed { width: 100%; height: 230px; border: 0; border-radius: 12px; margin-top: 4px; }

/* ---- directions ---- */
.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
.dir {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 28px 22px; box-shadow: 0 10px 34px -22px rgba(42, 17, 20, .35);
}
.dir h3 { display: flex; align-items: center; gap: 11px; font-size: 20px; margin-bottom: 10px; }
.dir h3 svg { color: var(--gold-deep); flex: none; }
.dir p { font-size: 15.5px; color: var(--ink-soft); margin: 0 0 8px; }
.dir a { color: var(--burgundy); text-decoration: none; }
.dir a:hover { text-decoration: underline; }
.dir-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ---- prose (privacy) ---- */
.prose { max-width: 720px; }
.prose h2 { font-size: 24px; margin-top: 1.4em; }
.prose a { color: var(--burgundy); font-weight: 600; }

/* ---- reveal ---- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  /* failsafe: if site.js never loads/runs, everything still reveals itself */
  animation: reveal-failsafe 0s 2.8s forwards;
}
html.js [data-reveal].in { opacity: 1; transform: none; animation: none; }
@keyframes reveal-failsafe { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; animation: none; }
  .btn, .arch-card { transition: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1020px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
  /* three visit cards can't fit the nowrap phone lines at tablet widths */
  .visit-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .style-row, .style-row--rev { grid-template-columns: 1fr; gap: 30px; }
  .style-row--rev .style-media { order: 0; }
  .style-row--rev .style-copy { order: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* nav drawer */
  .nav-toggle { display: block; }
  .mainnav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 360px);
    background: var(--wine); flex-direction: column; align-items: flex-start;
    gap: 6px; padding: 84px 34px 34px; z-index: 120;
    transform: translateX(105%);
    /* visibility flip removes the closed drawer from tab order + a11y tree */
    visibility: hidden;
    transition: transform .3s var(--ease), visibility 0s .3s;
    box-shadow: -24px 0 60px -20px rgba(0, 0, 0, .5);
    overflow-y: auto;
  }
  .mainnav.open { transform: none; visibility: visible; transition: transform .3s var(--ease); }
  /* dim + click-catch backdrop behind the open drawer — must stay BELOW the
     header's z-index:100 stacking context, which the fixed drawer lives inside */
  body.nav-open::after {
    content: ""; position: fixed; inset: 0; z-index: 90;
    background: rgba(20, 5, 7, .55);
  }
  .mainnav > a { font-size: 19px; padding: 10px 0; width: 100%; }
  .nav-call { display: inline-flex; margin-top: 18px; }
  .nav-close { display: block; position: absolute; top: 20px; right: 20px; background: none; border: 0; color: var(--on-dark); padding: 8px; cursor: pointer; }
  .hdr-call span.hide-s { display: none; }
  .show-s { display: inline; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hide-s { display: none !important; }
  .topbar .wrap { justify-content: center; }
  .brand .b1 { font-size: 23px; }
  .brand .b2 { letter-spacing: .18em; font-size: 9.5px; }
  .hero-scrim {
    background: linear-gradient(0deg, var(--wine) 30%, rgba(61, 12, 16, .78) 55%, rgba(61, 12, 16, .18));
  }
  .hero-copy { padding: 340px 0 56px; max-width: none; }
  .hero-img { object-position: 68% 18%; }
  .info-strip .wrap { grid-template-columns: 1fr; gap: 2px; }
  .arch-grid { grid-template-columns: 1fr; gap: 44px; }
  .value-grid, .value-grid--3 { grid-template-columns: 1fr; gap: 38px; }
  .visit-grid { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
  .footer-bot .wrap { justify-content: center; text-align: center; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .page-hero--img .ph-scrim {
    background: linear-gradient(0deg, rgba(61, 12, 16, .95) 25%, rgba(61, 12, 16, .5));
  }
}

/* print */
@media print {
  .topbar, .site-header, .cta-band, .site-footer, .btn,
  .hero-media, .ph-media, .map-embed { display: none !important; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero, .page-hero, .sec--woven, .sec--wine, .about-teaser, .info-strip,
  .hero-copy, .split-copy { background: #fff !important; color: #000 !important; }
  .hero-copy { padding: 20px 0 !important; }
  .eyebrow--gold, .value h3, .about-teaser .sig { color: #000 !important; }
  .value p, .value .v-icon, .page-hero .lead { color: #333 !important; }
  h1 em, h2 em { color: #000; }
}
