/* =========================================================
   Idylwild Therapy — spec preview
   Design system: warm Old Town apothecary / candlelit clay
   ========================================================= */

:root {
  /* brand palette (from their site theme-color #ba715d) */
  --clay:        #ba715d;
  --clay-deep:   #7a4533;
  --clay-soft:   #d29a87;
  --amber:       #d98a52;   /* salt-lamp glow */
  --cream:       #f7efe4;
  --cream-2:     #f1e5d6;
  --sand:        #e7d6c2;
  --espresso:    #2f2620;
  --ink:         #3c322b;
  --ink-soft:    #6a5b50;
  --line:        rgba(60, 50, 43, 0.14);
  --white:       #fffaf3;

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.28vw, 1.12rem);
  --fs-lead:    clamp(1.12rem, 1rem + 0.7vw, 1.42rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  --fs-h2:      clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  --fs-h1:      clamp(2.35rem, 1.2rem + 5vw, 5rem);

  /* spacing rhythm */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 0.8rem + 3vw, 3rem);

  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 24px 60px -28px rgba(74, 45, 33, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(120% 60% at 100% -10%, rgba(217,138,82,0.10), transparent 60%),
    radial-gradient(80% 50% at -10% 5%, rgba(186,113,93,0.07), transparent 55%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* fine grain — adds film/paper texture, self-contained SVG noise */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; margin: 0; letter-spacing: -0.012em; text-wrap: balance; }
p { margin: 0 0 1rem; max-width: 62ch; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
main { counter-reset: sect; }
.section { padding-block: var(--space-section); counter-increment: sect; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--espresso); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- shared bits ---------- */
.eyebrow, .kicker {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--clay-deep);
  margin: 0 0 1rem;
}
.kicker { display: inline-flex; align-items: center; gap: 0.7rem; }
.kicker::before {
  content: counter(sect, decimal-leading-zero);
  font-family: var(--serif); font-weight: 600; font-size: 1.04em;
  letter-spacing: 0.02em; color: var(--clay);
  padding-right: 0.7rem; border-right: 1px solid var(--line);
}
.kicker-light { color: var(--clay-soft); }
.kicker-light::before { color: var(--clay-soft); border-right-color: rgba(247,239,228,0.28); }

.section-title { font-size: var(--fs-h2); max-width: 18ch; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--clay-deep);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.5em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn-solid {
  background: var(--clay-deep);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(122, 69, 51, 0.85);
}
.btn-solid:hover { background: var(--espresso); transform: translateY(-3px); box-shadow: 0 20px 38px -16px rgba(47, 38, 32, 0.8); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 250, 243, 0.6);
}
.btn-ghost:hover { background: rgba(255, 250, 243, 0.12); transform: translateY(-3px); border-color: var(--white); }
.btn-block { width: 100%; }

.btn-pill {
  background: var(--clay-deep); color: var(--white);
  padding: 0.62em 1.2em; font-size: 0.88rem;
}
.btn-pill:hover { background: var(--espresso); transform: translateY(-2px); }
.btn-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--clay-soft);
  box-shadow: 0 0 0 0 rgba(210, 154, 135, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(210, 154, 135, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(210, 154, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(210, 154, 135, 0); }
}
@media (prefers-reduced-motion: reduce) { .btn-pill .dot { animation: none; } }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: clamp(0.8rem, 0.5rem + 1vw, 1.25rem);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--white); margin-right: auto; }
.brand-mark { display: grid; place-items: center; color: currentColor; transition: transform 0.6s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-12deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-sub { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.26em; margin-top: 0.32rem; opacity: 0.82; }

.site-nav { display: flex; gap: 1.8rem; }
.site-nav a {
  text-decoration: none; color: var(--white);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  position: relative; padding-block: 0.3rem;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* scrolled state (toggled by JS) */
.site-header.scrolled {
  background: rgba(247, 239, 228, 0.92);
  backdrop-filter: saturate(1.3) blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(47,38,32,0.5);
}
.site-header.scrolled .brand,
.site-header.scrolled .site-nav a { color: var(--ink); }
.site-header.scrolled .brand-sub { opacity: 0.65; }

@media (max-width: 860px) {
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  /* keep the brand + booking pill on one line at 390px */
  .header-inner { gap: 0.8rem; }
  .brand-sub { letter-spacing: 0.16em; font-size: 0.56rem; }
  .header-cta { padding: 0.6em 1em; font-size: 0.82rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(94svh, 920px);
  display: flex; align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  padding-bottom: clamp(2.5rem, 1rem + 6vw, 6rem);
  padding-top: 7rem;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 54% 52%;
  transform: scale(1.08);
  animation: heroDrift 22s ease-out forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; transform: none; } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(34,22,16,0.58) 0%, rgba(34,22,16,0.10) 24%, rgba(30,19,13,0.38) 56%, rgba(22,14,9,0.96) 100%),
    linear-gradient(74deg, rgba(28,16,10,0.92) 0%, rgba(30,18,11,0.64) 40%, rgba(30,18,11,0.22) 70%, rgba(30,18,11,0.08) 100%),
    radial-gradient(150% 120% at 42% 122%, rgba(16,9,5,0.7), transparent 56%);
}
/* soft vignette so the corners hold the eye */
.hero-scrim::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 220px 40px rgba(16,9,5,0.55);
}
.hero-content { position: relative; min-width: 0; }
.eyebrow {
  color: #f6d6c2;
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-shadow: 0 1px 16px rgba(20,12,8,0.7);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--clay-soft));
}
.hero-title {
  font-size: var(--fs-h1);
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(20,12,8,0.55);
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-lead {
  font-size: var(--fs-lead);
  font-family: var(--sans);
  font-weight: 400;
  max-width: 46ch;
  color: rgba(255, 250, 243, 0.92);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-offer {
  font-size: 0.96rem; color: rgba(255,250,243,0.9);
  display: inline-flex; align-items: center; gap: 0.7rem; margin: 0;
}
.offer-tag {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  background: var(--clay); color: var(--white);
  padding: 0.35em 0.7em; border-radius: 999px;
}

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2.5rem, 1rem + 6vw, 6rem);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: rgba(255,250,243,0.78); text-decoration: none;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.hero-scroll-text { writing-mode: vertical-rl; }
.hero-scroll:hover { color: var(--white); }
.hero-scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(180deg, rgba(255,250,243,0.7), transparent);
  position: relative; overflow: hidden;
  order: -1;
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--white);
  animation: scrollPulse 2.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(160%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll-line::after { animation: none; } }
@media (max-width: 860px) { .hero-scroll { display: none; } }

/* mobile hero: text spans full width onto the bright bedding, so swap the
   side-anchored scrim for a strong bottom panel and steer the crop toward the
   darker salt-lamp side of the room */
@media (max-width: 760px) {
  .hero-media img { object-position: 38% 50%; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(26,16,11,0.50) 0%, rgba(26,16,11,0.20) 30%, rgba(22,13,9,0.74) 66%, rgba(16,10,6,0.97) 100%),
      radial-gradient(130% 80% at 30% 116%, rgba(14,8,4,0.6), transparent 60%);
  }
  .hero-lead { max-width: 100%; }
}
@media (max-width: 560px) {
  .eyebrow { letter-spacing: 0.14em; font-size: 0.7rem; }
  .hero-title { margin-bottom: 1.1rem; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative; background: var(--cream);
  background-image: radial-gradient(80% 70% at 88% 12%, rgba(217,138,82,0.10), transparent 60%);
  /* trim the bottom so the cream void before Section 02 doesn't read as a gap */
  padding-bottom: clamp(3rem, 2rem + 3.5vw, 5.5rem);
}
/* hairline seam pulling the eye from the hero into the page */
.about::before {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), var(--wrap)); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 1rem + 5vw, 5.5rem);
  align-items: center;
}
.about-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.4deg);
  isolation: isolate;
}
/* offset accent frame behind the photo */
.about-figure::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,250,243,0.18);
  background: linear-gradient(180deg, transparent 55%, rgba(40,24,17,0.42) 100%);
}
/* intimate detail crop tight on the three glowing salt lamps so this reads
   as its own photograph, not the same wide room shown elsewhere */
.about-figure img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 19% 45%; transform: scale(1.92);
  transition: transform 1.2s var(--ease);
}
.about-figure:hover img { transform: scale(2); }
/* warm amber lift so the lamp glow carries this frame */
.about-figure::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(70% 55% at 32% 52%, rgba(217,138,82,0.28), transparent 62%);
  mix-blend-mode: screen;
}
.about-figure-note {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: rgba(33,23,17,0.5); backdrop-filter: blur(5px);
  padding: 0.5em 0.95em; border-radius: 999px;
  border: 1px solid rgba(255,250,243,0.16);
}
.about-copy p { color: var(--ink-soft); }
.about-copy > p:nth-of-type(2)::first-letter {
  font-family: var(--serif); font-weight: 600;
  float: left; font-size: 3.3em; line-height: 0.72;
  padding: 0.04em 0.12em 0 0; color: var(--clay-deep);
}

.about-marks {
  list-style: none; padding: 0; margin: 2.4rem 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); padding-top: 1.8rem;
}
.about-marks li { display: flex; flex-direction: column; gap: 0.35rem; padding-inline: 1.4rem; }
.about-marks li:first-child { padding-left: 0; }
.about-marks li + li { border-left: 1px solid var(--line); }
.about-marks strong { font-family: var(--serif); font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem); color: var(--clay-deep); line-height: 1; letter-spacing: -0.01em; }
.about-marks span { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.45; }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-figure { transform: none; max-width: 440px; }
  .about-marks { grid-template-columns: 1fr; gap: 0; padding-top: 1.2rem; }
  .about-marks li { flex-direction: row; align-items: baseline; gap: 0.7rem; padding: 0.9rem 0; }
  .about-marks li + li { border-left: none; border-top: 1px solid var(--line); }
  .about-marks strong { min-width: 4.5rem; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.services-head {
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: end;
}
.services-head .kicker { grid-column: 1 / -1; }
.services-head .section-title { max-width: 17ch; margin: 0; }
.services-intro {
  color: var(--ink-soft); font-size: var(--fs-lead); font-family: var(--sans);
  line-height: 1.5; max-width: 42ch; margin: 0;
  padding-bottom: 0.35rem; border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
  .services-head { grid-template-columns: 1fr; row-gap: 1.4rem; }
  .services-head .section-title { max-width: 22ch; }
  .services-intro { border-bottom: none; padding-bottom: 0; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
}
.svc {
  position: relative;
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1vw, 2.1rem);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--clay), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.svc p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; max-width: 40ch; }
.svc-price {
  font-family: var(--sans); font-weight: 600; font-size: 0.85rem;
  color: var(--clay-deep); letter-spacing: 0.02em;
  margin-bottom: 0.9rem !important;
}

/* feature card spans full top row with photo */
.svc-feature {
  grid-column: span 6;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
.svc-feature-media { position: relative; flex: 0 0 44%; overflow: hidden; }
.svc-feature-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(122,69,51,0.40), rgba(122,69,51,0.04) 60%),
              linear-gradient(0deg, rgba(40,24,17,0.30), transparent 48%);
  mix-blend-mode: multiply;
}
/* crop high-right into the round mirror + apothecary shelves so the feature
   card reads as a distinct detail, not a third full copy of the room */
.svc-feature-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; object-position: 88% 17%; transform: scale(1.46); transition: transform 1.2s var(--ease); }
.svc-feature:hover .svc-feature-media img { transform: scale(1.4); }
.svc-feature-body { padding: clamp(1.6rem, 1.2rem + 2vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.svc-feature-body h3 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); }
.svc-feature-body p { font-size: 1.04rem; max-width: 46ch; }

.svc-quiet { background: transparent; border-style: dashed; }
.svc-quiet:hover { transform: none; box-shadow: none; border-color: var(--clay); }

@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc { grid-column: span 1; }
  .svc-feature { grid-column: span 2; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc, .svc-feature { grid-column: span 1; }
  .svc-feature { flex-direction: column; }
  .svc-feature-media { flex-basis: auto; }
  .svc-feature-media img { min-height: 220px; aspect-ratio: 16/10; }
}

/* =========================================================
   APPROACH / OFFER
   ========================================================= */
.approach {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(217,138,82,0.22), transparent 55%),
    linear-gradient(160deg, var(--espresso) 0%, #3c2a20 55%, var(--clay-deep) 130%);
  color: var(--cream);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
  align-items: center;
}
.approach-copy p { color: rgba(247,239,228,0.82); }
.approach .section-title { color: var(--cream); max-width: 20ch; }
.approach-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.2rem; }
.perk { border-top: 1px solid rgba(247,239,228,0.22); padding-top: 1rem; }
.perk h4 { font-family: var(--sans); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clay-soft); margin-bottom: 0.5rem; }
.perk p { font-size: 0.92rem; margin: 0; color: rgba(247,239,228,0.78); }

.approach-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 1.4rem + 2vw, 2.6rem);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
  text-align: left;
}
.card-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; color: var(--clay-deep); margin-bottom: 0.4rem; }
.card-amount {
  font-family: var(--serif); font-size: clamp(2.6rem, 2rem + 3vw, 3.6rem); color: var(--clay-deep);
  line-height: 1; margin: 0 0 1rem; display: flex; align-items: baseline; gap: 0.5rem;
}
.card-amount span { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
.card-body { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.card-foot { font-size: 0.78rem; color: var(--ink-soft); margin: 1rem 0 0; opacity: 0.85; }

@media (max-width: 820px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-perks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .approach-perks { grid-template-columns: 1fr; }
}

/* =========================================================
   VISIT
   ========================================================= */
.visit {
  background: var(--cream-2);
  background-image: radial-gradient(70% 60% at 12% 18%, rgba(186,113,93,0.08), transparent 58%);
}
.visit-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem); align-items: center;
}
.visit-copy p { color: var(--ink-soft); }
.visit-details { margin: 2rem 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.visit-details > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.visit-details dt { font-family: var(--sans); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clay-deep); margin: 0; }
.visit-details dd { margin: 0; font-size: 1.05rem; }
.visit-details a { color: var(--clay-deep); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.visit-details a:hover { border-color: currentColor; }

.visit-figure {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 3 / 4; transform: rotate(1.4deg);
  isolation: isolate;
}
.visit-figure::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,250,243,0.16);
  background: linear-gradient(200deg, rgba(217,138,82,0.18), transparent 50%);
}
/* low, wide crop down into the draped table, wood floor and rug so the visit
   photo differs clearly from the lamp + mirror details above */
.visit-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 92%; transform: scale(1.18); transition: transform 1.2s var(--ease); }
.visit-figure:hover img { transform: scale(1.1); }

@media (max-width: 760px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-figure { transform: none; max-width: 440px; }
  .visit-details > div { grid-template-columns: 110px 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--espresso); color: var(--cream); padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer-brand .brand-name { font-size: 1.5rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(247,239,228,0.7); margin: 0.6rem 0 0; max-width: 36ch; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.footer-contact a { font-family: var(--serif); font-size: 1.5rem; text-decoration: none; color: var(--clay-soft); }
.footer-contact span { font-size: 0.84rem; color: rgba(247,239,228,0.65); }
@media (max-width: 560px) { .footer-contact { text-align: left; } }

.spec-footer {
  background: #211a15; color: rgba(247,239,228,0.62);
  text-align: center; font-size: 0.8rem; padding: 1.1rem var(--gutter); line-height: 1.6;
}
.spec-footer a { color: var(--clay-soft); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .about-figure, .visit-figure { transform: none; }
  * { scroll-behavior: auto; }
}
