/* =========================================================
   ILLUMINAÉ BY BESS — Design System
   Soft luxury minimalist · modern apothecary · wellness
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --cream:        #F7F2EA;
  --cream-soft:   #FBF7F1;
  --sand:         #E8DDCB;
  --sand-deep:    #D6C4A8;
  --sage:         #9BB37D;   /* brand sage — from logo */
  --sage-soft:    #D5DFC8;   /* brand soft sage — from logo */
  --sage-deep:    #6F7F66;
  --eucalyptus:   #9BB37D;
  --terracotta:   #C68863;
  --terracotta-soft: #E0B89A;
  --clay:         #4A3B2E;
  --clay-soft:    #6B5A4A;
  --bone:         #F4EFE6;
  --white:        #FFFFFF;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Italiana', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  /* Layout */
  --max-width: 1280px;
  --content-width: 960px;
  --reading-width: 680px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
  --transition-slow: 0.8s var(--ease-out);

  /* Misc */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(74, 59, 46, 0.06);
  --shadow:    0 8px 32px rgba(74, 59, 46, 0.08);
  --shadow-lg: 0 24px 64px rgba(74, 59, 46, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--clay);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition), color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--clay);
}
h1, h2, h3, h4 em, h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 400; }
h4 { font-size: 1.375rem; font-weight: 400; }
h5 { font-size: 1.0625rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }

p { margin-bottom: 1rem; max-width: 60ch; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.25rem;
  display: inline-block;
}
/* .script class retired from headings - kept for small accents only */
.script {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
}
.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--clay-soft);
  max-width: 50ch;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container-reading { max-width: var(--reading-width); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }

section { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-lg { padding: var(--space-2xl) 0; }

.bg-cream    { background: var(--cream); }
.bg-bone     { background: var(--bone); }
.bg-sand     { background: var(--sand); }
.bg-sage      { background: var(--sage); color: var(--cream); }
.bg-sage-soft { background: var(--sage-soft); color: var(--clay); }
.bg-clay      { background: var(--clay); color: var(--cream); }
.bg-clay h1, .bg-clay h2, .bg-clay h3, .bg-sage h1, .bg-sage h2, .bg-sage h3 { color: var(--cream); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clay);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}
.btn-outline:hover {
  background: var(--clay);
  color: var(--cream);
}
.btn-ghost {
  padding: 0.75rem 0;
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--terracotta); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1rem 0;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav.scrolled {
  padding: 0.6rem 0;
  border-bottom-color: rgba(74, 59, 46, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo .accent {
  color: var(--terracotta);
  font-style: italic;
}
.nav-logo-img {
  height: 130px;
  width: auto;
  display: block;
  transition: height var(--transition);
  /* Hide broken image icon — show nothing instead */
  color: transparent;
}
/* Fallback: if image fails, show text logo */
.nav-logo-img::after {
  content: 'illuminaé';
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--clay);
  display: block;
}
.nav.scrolled .nav-logo-img { height: 90px; }
@media (max-width: 720px) {
  .nav-logo-img { height: 80px; }
  .nav.scrolled .nav-logo-img { height: 60px; }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-soft);
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a.active {
  color: var(--clay);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 20px;
  height: 1px;
  background: var(--sage);
}
.nav-cta {
  background: var(--clay);
  color: var(--cream) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 999px;
  font-size: 0.75rem !important;
}
.nav-cta:hover { background: var(--terracotta); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1px;
  background: var(--clay);
  transition: all var(--transition);
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 13rem 0 5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  color: var(--clay);
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--clay-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74, 59, 46, 0.15));
}
.hero-decoration {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terracotta-soft) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}
.hero-decoration.top-right { top: 10%; right: -100px; }
.hero-decoration.bottom-left { bottom: 5%; left: -100px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}
.section-header h2 { margin-bottom: 1.25rem; }
.section-header p {
  color: var(--clay-soft);
  font-size: 1.0625rem;
  margin: 0 auto;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--sage);
  margin: 0 auto 2rem;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-body { padding: 2rem 1.75rem; }
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--clay-soft);
  margin-bottom: 1.25rem;
}
.service-card .price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--terracotta);
}
.service-card .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--sage-soft);
  color: var(--sage-deep);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

/* ---------- About Strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about-strip-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.about-strip-image img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.gallery-grid.masonry {
  grid-auto-rows: 280px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 59, 46, 0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(74, 59, 46, 0.1); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--cream-soft);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  position: relative;
  border-top: 2px solid var(--sage-soft);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta-soft);
  opacity: 0.5;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--clay);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author-info .name {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--clay);
}
.testimonial-author-info .meta {
  font-size: 0.8125rem;
  color: var(--clay-soft);
}
.stars {
  color: var(--terracotta);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* ---------- CTA ---------- */
.cta-band {
  text-align: center;
  padding: var(--space-xl) 0;
}
.cta-band h2 { margin-bottom: 1.25rem; }
.cta-band p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}

/* ---------- Forms ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 540px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  color: var(--clay);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--clay);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer h5 { color: var(--terracotta-soft); margin-bottom: 1.25rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { color: var(--cream); font-size: 2rem; margin-bottom: 1rem; display: inline-block; }
.footer-brand p {
  color: rgba(247, 242, 234, 0.65);
  font-size: 0.9375rem;
  max-width: 320px;
}
.footer ul li {
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  color: rgba(247, 242, 234, 0.7);
  font-family: var(--font-sans);
}
.footer ul a {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.9375rem;
}
.footer ul a:hover { color: var(--cream); }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(247, 242, 234, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(247, 242, 234, 0.5);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 16rem 0 var(--space-lg);
  text-align: center;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p {
  color: var(--clay-soft);
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 540px;
}

/* ---------- Service Detail List ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-row h3 {
  font-size: 1.625rem;
  margin-bottom: 0.25rem;
}
.service-row .duration {
  font-size: 0.875rem;
  color: var(--clay-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-row .description {
  color: var(--clay-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.service-row .price-block {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--terracotta);
}

/* ---------- Journal / Blog Cards ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.journal-card { cursor: pointer; }
.journal-card-image {
  aspect-ratio: 5/4;
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.journal-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.journal-card:hover .journal-card-image img { transform: scale(1.05); }
.journal-card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.journal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.journal-card:hover h3 { color: var(--terracotta); }
.journal-card p {
  font-size: 0.9375rem;
  color: var(--clay-soft);
}

/* ---------- Instagram Strip ---------- */
.instagram-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.instagram-strip a {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.instagram-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.instagram-strip a:hover img { transform: scale(1.08); }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Image Placeholder ---------- */
.placeholder-img {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  width: 100%; height: 100%;
  min-height: 200px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-strip { grid-template-columns: 1fr; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .service-row .price-block { text-align: left; }
  .instagram-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  /* Nav */
  .nav { padding: 0.75rem 0; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.375rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
  }
  .nav-toggle { display: block; z-index: 300; position: relative; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-image { display: none; }
  .hero-decoration { display: none; }

  /* Layout */
  .hero-grid,
  .about-strip { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-row .price-block { text-align: left; }
  .instagram-strip { grid-template-columns: repeat(3, 1fr); }

  /* Typography */
  .lede { font-size: 1.125rem; }
  section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
  .page-header { padding: 10rem 0 2.5rem; }
  .testimonial::before { font-size: 4rem; }

  /* Booking bar */
  .acuity-booking-bar {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 1rem !important;
    font-size: 0.75rem !important;
  }
}

/* ---------- Credentials ---------- */
.credentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.credentials-col p {
  font-size: 0.9375rem;
  color: var(--clay-soft);
  line-height: 1.5;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--sand);
  margin: 0;
  max-width: 100%;
}
.credentials-col p:last-child { border-bottom: none; }
@media (max-width: 720px) {
  .credentials-list { grid-template-columns: 1fr; gap: 0; }
  .credentials-col:first-child p:last-child { border-bottom: 1px solid var(--sand); }
}

/* ---------- Journal Article ---------- */
.journal-article {
  max-width: var(--reading-width);
  margin: 0 auto;
}
.journal-article-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.meta-author {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-soft);
}
.journal-article-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand);
}
.journal-article-body h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 2.5rem 0 1rem;
}
.journal-article-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--clay-soft);
  margin-bottom: 1.25rem;
  max-width: 100%;
}
.journal-article-cta {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.journal-article-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--clay);
  margin: 0;
}
@media (max-width: 720px) {
  .journal-article-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Philosophy Essay ---------- */
.philosophy-essay {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--sage-soft);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.philosophy-pull {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--terracotta);
  max-width: 100%;
  position: sticky;
  top: 10rem;
}
.philosophy-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clay-soft);
  max-width: 100%;
  margin-bottom: 1.25rem;
}
@media (max-width: 720px) {
  .philosophy-essay { grid-template-columns: 1fr; }
  .philosophy-pull { position: static; }
}

/* ---------- Acuity Booking Bar Override ---------- */
.acuity-booking-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  background: var(--clay) !important;
  color: var(--cream) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  padding: 0.85rem 1.5rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.9375rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  font-style: italic !important;
}
.acuity-booking-bar .acuity-embed-button {
  background: var(--terracotta) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 999px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: background 0.3s ease !important;
}
.acuity-booking-bar .acuity-embed-button:hover {
  background: var(--clay-soft) !important;
}

/* ---------- Brand Name — subtly weighted "i" in illuminaé ---------- */
.il {
  font-weight: 400;
  color: inherit;
  font-style: inherit;
  filter: brightness(0.82);
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Results Page (Before & After) ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}
.result-card {
  display: flex;
  flex-direction: column;
}
.result-image {
  background: var(--bone);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(60, 42, 42, 0.08);
}
.result-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.result-caption {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}
.result-caption h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 0.5rem 0 0.75rem;
}
.result-caption p {
  font-size: 0.9375rem;
  color: var(--clay-soft);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .results-grid { grid-template-columns: 1fr; gap: 3rem; }
}
