/* ==========================================================================
   DR. AMY ALDERMAN · NORTH ATLANTA PLASTIC SURGERY
   Design system: "The Surgeon's Atelier"
   Champagne Cream · Fashion Black · Deep Rose · Champagne Gold · Editorial
   ========================================================================== */

:root {
  /* Palette — Luxe Fashion-Editorial: Blush · Black · Champagne */
  --bone: #FAF6F0;
  --bone-warm: #F3EAE2;
  --ivory: #FEFCFA;
  --ink: #080608;
  --ink-soft: #1A1618;
  --paper: #FFFFFF;
  --sage: #C9A4A4;
  --sage-deep: #8B5A65;
  --sage-pale: #EDD9D8;
  --gold: #C8A96E;
  --gold-deep: #9B7B45;
  --gold-pale: #EAD8B0;
  --rust: #A85B3C;
  --line: rgba(8, 6, 8, 0.10);
  --line-soft: rgba(8, 6, 8, 0.05);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;

  /* Scale */
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --pad-section: clamp(4rem, 9vw, 9rem);
  --max: 1320px;
  --max-narrow: 920px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 13% 27%, rgba(8,6,8,0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 67% 81%, rgba(8,6,8,0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 89% 13%, rgba(8,6,8,0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 31% 91%, rgba(8,6,8,0.5) 0.5px, transparent 1px);
  background-size: 140px 140px, 200px 200px, 170px 170px, 220px 220px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.serif { font-family: var(--serif); }
.serif-italic { font-family: var(--serif); font-style: italic; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}

.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--ink { color: var(--ink-soft); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h-display {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 300;
}

.h-section {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
}

.h-sub {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.15;
  font-weight: 400;
}

em, .italic {
  font-style: italic;
  color: var(--sage-deep);
}

.h-display em, .h-section em, .h-sub em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

p { max-width: 60ch; }
.lead {
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
  z-index: 2;
}

.container--narrow { max-width: var(--max-narrow); }

section { position: relative; z-index: 2; }

.section { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.section--tight { padding-top: clamp(2.5rem, 5vw, 5rem); padding-bottom: clamp(2.5rem, 5vw, 5rem); }

.section--ivory { background: var(--ivory); }
.section--bone-warm { background: var(--bone-warm); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--ivory); }
.section--ink em, .section--ink .italic { color: var(--sage-pale); }
.section--ink .eyebrow { color: var(--gold-pale); }
.section--ink .quote__text { color: var(--ivory); }
.section--ink .quote__text::before, .section--ink .quote__text::after { color: var(--gold-pale); }
.section--ink .quote__attr { color: var(--sage-pale); }
.section--ink p { color: var(--ivory); }
.section--ink .lead { color: var(--sage-pale); }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--pad);
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav__brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav__brand-mark em { color: var(--sage-deep); font-style: italic; font-weight: 300; }

.nav__brand-sub {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 0.32rem;
}

.nav__links {
  display: flex;
  gap: 1.85rem;
  align-items: center;
}

.nav__link {
  font-family: var(--mono);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav__link:hover { color: var(--sage-deep); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
}

.nav__cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bone);
    padding: 1.5rem var(--pad);
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 1.7rem;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

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

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--ink);
  color: var(--gold-pale);
}

.btn--ghost {
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

.btn .arr { transition: transform 0.3s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ==========================================================================
   ORNAMENTS
   ========================================================================== */

.rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.rule__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.rule__diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.plate-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.plate-num span:first-child { color: var(--gold-deep); }

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

.hero {
  min-height: 100vh;
  padding: 7rem var(--pad) 4rem;
  position: relative;
  background: var(--bone);
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  min-height: calc(100vh - 11rem);
}

.hero__type { position: relative; z-index: 3; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.027em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

.hero__sub {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__meta {
  position: absolute;
  left: var(--pad);
  bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.hero__meta span { display: flex; align-items: center; gap: 0.4rem; }
.hero__meta span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sage-pale);
  overflow: hidden;
  border-radius: 4px;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero__cap {
  position: absolute;
  right: -1.5rem;
  bottom: 2.5rem;
  background: var(--ivory);
  padding: 1.1rem 1.3rem;
  max-width: 220px;
  border-left: 1px solid var(--gold);
  box-shadow: 0 18px 40px rgba(8,6,8,0.08);
}

.hero__cap-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.hero__cap-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ink);
}

.hero__seal {
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  z-index: 4;
}

.hero__seal svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__seal-center {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  .hero__visual { order: 2; }
  .hero__photo { aspect-ratio: 3/4; }
  .hero__cap { right: 0.5rem; max-width: 200px; }
  .hero__seal { width: 92px; height: 92px; left: -0.5rem; top: -0.5rem; }
  .hero__meta {
    position: static;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    margin-top: 2.5rem;
  }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.6rem var(--pad);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gold);
}

.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.trust__cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trust__cell .mark {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.trust__cell em {
  font-style: normal;
  color: var(--gold-pale);
}

@media (max-width: 880px) {
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; gap: 0.7rem; }
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head--narrow {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head__meta { display: flex; flex-direction: column; gap: 0.7rem; }

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ==========================================================================
   STORY SPLIT (ABOUT DR. AMY)
   ========================================================================== */

.story {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.story__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sage-pale);
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }

.story__photo-cap {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--ivory);
  padding: 0.65rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-left: 1px solid var(--gold);
}

.story__body { padding-top: 0.5rem; }

.story__dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 5em;
  float: left;
  line-height: 0.82;
  margin: 0.05em 0.15em 0 -0.05em;
  color: var(--gold-deep);
}

.story__sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
  font-size: 1.4rem;
  margin-top: 2rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred-cell {
  padding: 1.4rem 1rem 1.4rem 0;
  border-right: 1px solid var(--line);
}
.cred-cell:last-child { border-right: none; padding-right: 0; }
.cred-cell__abbr {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.cred-cell__full {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-cell { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; }
  .cred-cell:last-child { border-bottom: none; }
}

/* ==========================================================================
   PROCEDURE CARDS
   ========================================================================== */

.trt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trt-card {
  background: var(--bone);
  padding: 2rem 1.7rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: background 0.35s ease;
  min-height: 380px;
}

.trt-card:hover { background: var(--ivory); }

.trt-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.85rem;
}

.trt-card__num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}

.trt-card__tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.trt-card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.trt-card__name em { font-style: italic; color: var(--sage-deep); font-weight: 300; }

.trt-card__desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}

.trt-card__meta {
  display: flex;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-top: auto;
}
.trt-card__meta-cell { display: flex; flex-direction: column; gap: 0.2rem; }
.trt-card__meta-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.trt-card__meta-val {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
}

@media (max-width: 980px) {
  .trt-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .trt-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BEFORE & AFTER GALLERY
   ========================================================================== */

.ba {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ba__cell {
  background: var(--bone-warm);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--sage);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.ba__cell:hover { border-color: var(--gold); }

.ba__cell-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--gold-deep);
  line-height: 1;
}
.ba__cell-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.ba__cell-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.ba__notice {
  background: var(--ivory);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 1.7rem;
  margin-top: 3rem;
  max-width: 600px;
}

@media (max-width: 760px) {
  .ba { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ba__cell { padding: 1.5rem 1rem; }
}
@media (max-width: 460px) {
  .ba { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EXPERIENCE TIMELINE
   ========================================================================== */

.exp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exp-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.exp-step:last-child { border-right: none; }

.exp-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 1rem;
}

.exp-step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.exp-step__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 920px) {
  .exp-strip { grid-template-columns: 1fr 1fr; }
  .exp-step:nth-child(2n) { border-right: none; }
  .exp-step:nth-child(1), .exp-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .exp-strip { grid-template-columns: 1fr; }
  .exp-step { border-right: none; border-bottom: 1px solid var(--line); }
  .exp-step:last-child { border-bottom: none; }
}

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

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.visit-info { display: flex; flex-direction: column; gap: 1.8rem; }

.visit-card {
  padding: 1.5rem 1.6rem;
  background: var(--ivory);
  border-left: 2px solid var(--gold);
}
.visit-card__label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.6rem;
}
.visit-card__val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
}
.visit-card__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.hours-list li span:last-child { color: var(--sage-deep); }
.hours-list li:last-child { border-bottom: none; }

.visit-map {
  aspect-ratio: 4/5;
  background: var(--sage-pale);
  position: relative;
  overflow: hidden;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 5/4; }
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 2.2rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 0.7rem;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

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

.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gold);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer__brand-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  color: var(--ivory);
}
.footer__brand-mark em { color: var(--gold-pale); font-style: italic; font-weight: 300; }

.footer__brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--sage-pale);
  max-width: 30ch;
  line-height: 1.4;
}

.footer__col-title {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.1rem;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__list a {
  color: var(--ivory);
  opacity: 0.78;
  font-size: 0.9rem;
  transition: opacity 0.25s, color 0.25s;
}
.footer__list a:hover { opacity: 1; color: var(--gold-pale); }

.footer__bottom {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(254, 252, 250, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254, 252, 250, 0.55);
}
.footer__bottom a { color: var(--gold-pale); }

@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ==========================================================================
   REVEAL ANIMATIONS — fail-open
   ========================================================================== */

.reveal {
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal--hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 4rem; }
.text-center { text-align: center; }
.text-sage { color: var(--sage-deep); }
.text-gold { color: var(--gold-deep); }

/* ==========================================================================
   PREMIUM MOTION & COMPONENTS
   ========================================================================== */

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

/* Image reveal mask */
.img-wipe { position: relative; overflow: hidden; }
.img-wipe img { transform: scale(1.08); transition: transform 1.4s cubic-bezier(.19,1,.22,1); }
.img-wipe::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bone);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 1.1s cubic-bezier(.76,0,.24,1);
  z-index: 2;
}
.img-wipe.is-in::after { transform: scaleY(0); }
.img-wipe.is-in img { transform: scale(1); }

/* Line-by-line word rise */
.rise { display: inline-block; overflow: hidden; vertical-align: top; }
.rise > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(.19,1,.22,1);
}
.rise.is-in > span { transform: translateY(0); }

/* Magnetic CTA */
.magnetic { display: inline-block; will-change: transform; }

/* Heading underline draw */
.uline { position: relative; display: inline; background-image: linear-gradient(var(--gold), var(--gold)); background-repeat: no-repeat; background-position: 0 90%; background-size: 0% 2px; transition: background-size 0.9s cubic-bezier(.19,1,.22,1); }
.uline.is-in { background-size: 100% 2px; }

/* Marquee ticker */
.ticker {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
  position: relative; z-index: 2;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.ticker__track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 34s linear infinite;
}
.ticker__track span {
  font-family: var(--mono);
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0 1.4rem;
}
.ticker__track span::after { content: '◆'; margin-left: 1.4rem; color: var(--gold-deep); font-size: 0.6rem; vertical-align: middle; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* Scroll progress hairline */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold);
  z-index: 200;
  transition: width 0.1s linear;
}

/* Product proof tray */
.proof {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.proof__media { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; background: var(--bone-warm); }
.proof__media img { width: 100%; height: 100%; object-fit: cover; }
.proof__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ivory);
  font-family: var(--mono);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.5rem 0.8rem;
  border-left: 1px solid var(--gold);
}
.proof__brands {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.6rem;
}
.proof__brands span {
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}
@media (max-width: 800px) {
  .proof { grid-template-columns: 1fr; }
  .proof__media { aspect-ratio: 3/2; order: -1; }
}

/* Image hover transition */
.trt-deep__media img, .bio-photo img, .story__photo img { transition: transform 1.2s cubic-bezier(.19,1,.22,1); }
.trt-deep:hover .trt-deep__media img { transform: scale(1.04); }
