/* ============================================================
   Serendipity Healing Massage — spec preview
   Woodcrest Marketing
   ============================================================ */

:root {
  /* brand */
  --plum-900: #241a34;
  --plum-800: #2f2246;
  --plum-700: #3d2d5c;
  --amethyst: #6d4f9c;
  --amethyst-400: #8a6cbb;
  --amethyst-200: #c9b8e2;
  --gold: #c69a5b;
  --gold-600: #a67c3f;
  --cream: #f5efe6;
  --cream-200: #efe6d7;
  --ivory: #fbf8f2;
  --ink: #2b2333;
  --ink-soft: #55495f;
  --line: rgba(45, 32, 66, 0.12);
  --white: #ffffff;

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

  /* fluid scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.75vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.7rem + 1.25vw, 3rem);
  --step-4: clamp(2.5rem, 2rem + 2.5vw, 4.4rem);
  --step-5: clamp(2.9rem, 2.2rem + 3.4vw, 5.2rem);

  /* space */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.25rem;
  --sp-5: 3.5rem;
  --sp-6: 5.5rem;
  --sp-7: 8rem;

  --wrap: 1200px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--plum-800);
}

p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.kicker {
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow-center { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--amethyst);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(45, 26, 82, 0.55);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(45, 26, 82, 0.6); }
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #2b2010; box-shadow: 0 10px 24px -12px rgba(120, 84, 20, 0.55); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--amethyst);
  border-color: var(--amethyst-200);
  box-shadow: none;
}
.btn--outline:hover { background: rgba(109, 79, 156, 0.06); }

a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 1.1rem;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.65rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.4s var(--ease);
}
.scrolled .brand { color: var(--plum-800); }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.brand-name { font-family: var(--display); font-size: 1.32rem; font-weight: 600; line-height: 1; letter-spacing: 0.01em; }
.brand-sub { display: block; font-family: var(--body); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav a.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.scrolled .nav a.nav-link { color: var(--ink-soft); }
.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a.nav-link:hover::after { transform: scaleX(1); }
.nav .btn { padding: 0.6em 1.2em; font-size: 0.9rem; }
.nav-cta .cta-short { display: none; }

@media (max-width: 860px) {
  .nav .nav-link { display: none; }
}
@media (max-width: 560px) {
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 960px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  padding-bottom: clamp(3rem, 7vh, 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: 62% 32%;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
/* plum duotone tint that unifies the photo into the brand */
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,45,92,0.4), rgba(36,26,52,0.22));
  mix-blend-mode: multiply;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* top band: guarantees header/nav legibility on any photo */
    linear-gradient(180deg, rgba(20,12,32,0.62) 0%, rgba(20,12,32,0.1) 16%, rgba(20,12,32,0) 28%),
    /* bottom anchor for the headline */
    linear-gradient(180deg, rgba(30,20,46,0) 36%, rgba(30,20,46,0.5) 66%, rgba(23,15,34,0.94) 100%),
    /* directional plum wash from the copy side, lighter so the photo reads */
    linear-gradient(105deg, rgba(45,26,82,0.74) 0%, rgba(45,26,82,0.26) 50%, rgba(45,26,82,0) 78%);
}
/* fine film grain for a couture, non-flat surface */
.hero-scrim::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 640px); gap: var(--sp-3); }
.hero h1 {
  color: #fff;
  font-size: var(--step-5);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: break-word;
  text-shadow: 0 2px 34px rgba(20, 10, 40, 0.45);
  margin-top: 0.15em;
}
.hero-sub {
  font-size: var(--step-1);
  max-width: 44ch;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  padding-left: 1.1rem;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--gold) 0%, rgba(198,154,91,0.15) 100%) 1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.hero .kicker { color: var(--gold); }
@media (max-width: 560px) {
  .hero { padding-top: 5.8rem; }
  .hero h1 { font-size: clamp(2.05rem, 8.4vw, 3.1rem); line-height: 1.06; }
  .hero-sub { max-width: 100%; font-size: var(--step-0); padding-left: 0.95rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* floating meta card */
.hero-meta {
  position: absolute;
  right: clamp(1.25rem, 5vw, 3rem);
  bottom: clamp(3rem, 7vh, 6rem);
  z-index: 1;
  max-width: 256px;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(36, 26, 52, 0.4);
  backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 56px -22px rgba(0,0,0,0.6);
}
.hero-meta::before {
  content: "";
  position: absolute; left: 1.6rem; top: -0.55rem;
  width: 1.1rem; height: 1.1rem;
  transform: translateY(0) rotate(45deg);
  background: var(--gold);
  border-radius: 3px;
  box-shadow: 0 6px 14px -6px rgba(120,84,20,0.7);
  animation: heroBob 5.5s ease-in-out 1.8s infinite;
}
@keyframes heroBob {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-0.3rem) rotate(45deg); }
}
.hero-meta .word {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-meta p { font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.45; }
@media (max-width: 900px) { .hero-meta { display: none; } }

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: cueSlide 2.2s ease-in-out infinite; }
@keyframes cueSlide { 0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding-block: var(--sp-7); position: relative; }
.section--tight { padding-block: var(--sp-6); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: var(--step-3); margin-top: 0.8rem; }
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; margin-top: 1rem; }

/* editorial two-column header: title left, lead right — fills the void
   beside a lonely heading and breaks the repetitive stacked rhythm */
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
}
.section-head.split .sh-title { max-width: 23rem; }
.section-head.split .sh-title h2 { margin-top: 0.7rem; }
.section-head.split .lead {
  margin-top: 0;
  max-width: 46ch;
  padding-bottom: 0.35rem;
  padding-left: clamp(0rem, 2vw, 1.6rem);
  border-left: 1px solid var(--line);
}
@media (max-width: 820px) {
  .section-head.split { grid-template-columns: 1fr; gap: 1.4rem; align-items: start; }
  .section-head.split .sh-title { max-width: none; }
  .section-head.split .lead { border-left: none; padding-left: 0; }
}

/* ---------- Intro / philosophy ---------- */
.intro {
  background:
    radial-gradient(115% 85% at 100% -10%, rgba(198,154,91,0.07), transparent 55%),
    var(--ivory);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.intro-copy h2 { font-size: var(--step-3); }
.intro-copy p + p { margin-top: 1.1rem; }
.intro-copy .body-lg { font-size: var(--step-1); color: var(--ink); line-height: 1.55; }
.intro-copy .muted { color: var(--ink-soft); }
.intro-facts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
}
.intro-facts li {
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--plum-800);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.55em 1.05em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.intro-facts li::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  transform: rotate(45deg);
  background: var(--gold);
  border-radius: 1px;
}
.intro-figure { position: relative; }
.intro-figure .frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(45, 26, 82, 0.45);
}
.intro-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure .tag {
  position: absolute;
  left: -1.5rem; bottom: 2rem;
  background: var(--plum-800);
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px -18px rgba(45,26,82,0.6);
  max-width: 230px;
}
.intro-figure .tag strong { font-family: var(--display); font-size: 1.7rem; display: block; color: var(--gold); }
.intro-figure .tag span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-figure .frame { aspect-ratio: 3 / 4; max-width: 480px; }
  .intro-figure .tag { left: 1rem; }
}

/* ---------- Services ---------- */
.services {
  background:
    radial-gradient(90% 70% at 0% 0%, rgba(109,79,156,0.06), transparent 52%),
    var(--cream);
}
.services .section-head { margin-bottom: var(--sp-5); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
  box-shadow: 0 24px 48px -30px rgba(45,26,82,0.5);
}
.svc-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(36,26,52,0) 25%, rgba(36,26,52,0.35) 55%, rgba(36,26,52,0.9) 100%);
  transition: background 0.5s var(--ease);
}
.svc-card:hover img { transform: scale(1.07); }
.svc-card:hover::after { background: linear-gradient(180deg, rgba(45,26,82,0.15) 20%, rgba(45,26,82,0.55) 55%, rgba(36,26,52,0.95) 100%); }
.svc-card .svc-body { padding: 1.6rem; }
.svc-card h3 { color: #fff; font-size: var(--step-1); }
.svc-card p { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-top: 0.5rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease); }
.svc-card:hover p, .svc-card:focus-visible p { max-height: 8rem; opacity: 1; }
.svc-card .svc-more { margin-top: 0.9rem; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.svc-card.is-lg { grid-column: span 3; grid-row: span 2; min-height: 480px; }
.svc-card.is-md { grid-column: span 3; }
.svc-card.is-sm { grid-column: span 3; }

/* text-only offering list */
.svc-list {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}
.svc-list .item {
  padding: 1.5rem 1.6rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.svc-list .item:hover { background: rgba(109, 79, 156, 0.05); }
.svc-list .item:nth-child(3n) { border-right: none; }
.svc-list .item h4 { font-size: 1.15rem; color: var(--plum-800); display: flex; align-items: baseline; gap: 0.6rem; }
.svc-list .item h4 .num { font-family: var(--body); font-size: 0.72rem; color: var(--gold-600); font-weight: 700; letter-spacing: 0.1em; }
.svc-list .item p { margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 820px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.is-lg, .svc-card.is-md, .svc-card.is-sm { grid-column: span 2; grid-row: auto; min-height: 320px; }
  .svc-card p { max-height: 8rem; opacity: 1; } /* touch: always show */
  .svc-list { grid-column: span 2; }
  .svc-list .item { border-right: none; padding-right: 0; }
}

/* ---------- Signature / infrared band ---------- */
.signature {
  background: radial-gradient(120% 120% at 15% 0%, var(--plum-700) 0%, var(--plum-900) 65%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.signature::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 85% 20%, rgba(198,154,91,0.22), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-blend-mode: normal, overlay;
  opacity: 0.9;
  pointer-events: none;
}
/* amethyst-diamond watermark echoing the logo */
.signature::after {
  content: "";
  position: absolute;
  right: -6rem; top: 50%;
  width: 26rem; height: 26rem;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(198,154,91,0.14);
  border-radius: 42px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}
.sig-grid, .sig-copy, .sig-figure { position: relative; z-index: 1; }
.sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.sig-copy .kicker { color: var(--gold); }
.sig-copy h2 { color: #fff; font-size: var(--step-3); margin-top: 0.8rem; }
.sig-copy p { color: rgba(255,255,255,0.82); margin-top: 1.1rem; font-size: var(--step-1); line-height: 1.55; }
.sig-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.9rem; }
.sig-list li { display: flex; gap: 0.9rem; align-items: flex-start; color: rgba(255,255,255,0.9); }
.sig-list li svg { flex: none; width: 22px; height: 22px; margin-top: 3px; color: var(--gold); }
.sig-figure { position: relative; }
.sig-figure .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 6; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
.sig-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .sig-grid { grid-template-columns: 1fr; gap: 2.5rem; } .sig-figure .frame { max-width: 460px; } }

/* ---------- About ---------- */
.about {
  background:
    radial-gradient(100% 80% at 0% 100%, rgba(198,154,91,0.06), transparent 55%),
    var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-figure { position: relative; }
.about-figure .frame { border-radius: 260px 260px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 40px 80px -40px rgba(45,26,82,0.4); }
.about-figure .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-figure .badge {
  position: absolute; right: -0.5rem; bottom: 1.5rem;
  width: 118px; height: 118px;
  background: #fff; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -16px rgba(45,26,82,0.45);
  padding: 12px;
}
.about-figure .badge img { width: 100%; height: 100%; object-fit: contain; }
.about-copy h2 { font-size: var(--step-3); }
.about-copy .signoff { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--amethyst); margin-top: 1.6rem; }
.about-copy .role { display: block; font-family: var(--body); font-style: normal; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); margin-top: 0.4rem; }
.about-copy p + p { margin-top: 1.1rem; color: var(--ink-soft); }
.about-copy .body-lg { color: var(--ink); font-size: var(--step-1); line-height: 1.55; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .about-figure .frame { max-width: 420px; } }

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    radial-gradient(90% 75% at 100% 0%, rgba(109,79,156,0.06), transparent 52%),
    var(--cream);
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: var(--sp-5);
}
.tst-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -36px rgba(45,26,82,0.35);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tst-card::before {
  content: "\201C";
  position: absolute;
  top: 0.7rem; right: 1.4rem;
  font-family: var(--display);
  font-size: 5rem; line-height: 1;
  color: var(--amethyst-200);
  opacity: 0.45;
  pointer-events: none;
}
.tst-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(45,26,82,0.45); }
.tst-card .stars { position: relative; color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.tst-card blockquote { position: relative; margin: 1rem 0 0; font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.tst-card .who { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 0.8rem; }
.tst-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--amethyst); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem; }
.tst-card .who .name { font-weight: 600; color: var(--plum-800); font-size: 0.98rem; }
.tst-card .who .src { font-size: 0.78rem; color: var(--ink-soft); }
.tst-card.is-feature { grid-column: span 1; }

/* ---------- Contact ---------- */
.contact { background: radial-gradient(120% 120% at 80% 10%, var(--plum-700), var(--plum-900) 70%); color: #fff; position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  left: -7rem; bottom: -7rem;
  width: 24rem; height: 24rem;
  transform: rotate(45deg);
  border: 1px solid rgba(198,154,91,0.14);
  border-radius: 40px;
  pointer-events: none;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.contact h2 { color: #fff; font-size: var(--step-4); }
.contact .lead { color: rgba(255,255,255,0.82); }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 2.2rem;
  backdrop-filter: blur(6px);
}
.contact-card .row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }
.contact-card .row .k { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.contact-card .row a, .contact-card .row .v { color: #fff; text-decoration: none; font-size: 1.05rem; display: block; }
.contact-card .row a:hover { color: var(--gold); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--plum-900); color: rgba(255,255,255,0.72); padding-block: var(--sp-5) var(--sp-3); }
.footer-top { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; color: #fff; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand .brand-name { font-family: var(--display); font-size: 1.4rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.spec-footer {
  background: #17101f;
  color: rgba(255,255,255,0.62);
  text-align: center;
  font-size: 0.82rem;
  padding: 1.2rem 1.5rem;
  line-height: 1.6;
}
.spec-footer a { color: var(--gold); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* hero staggered load */
.hero-anim { opacity: 0; transform: translateY(24px); animation: heroIn 1s var(--ease) forwards; }
.hero-anim.a1 { animation-delay: 0.25s; }
.hero-anim.a2 { animation-delay: 0.42s; }
.hero-anim.a3 { animation-delay: 0.58s; }
.hero-anim.a4 { animation-delay: 0.74s; }
.hero-anim.a5 { animation-delay: 0.9s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-anim { opacity: 1 !important; transform: none !important; }
  .hero-media img { transform: none; }
}

/* no-JS safety: if JS never toggles .in, content still shows */
.no-js .reveal { opacity: 1; transform: none; filter: none; }
