/* ==========================================================================
   Moe's Beauty Co. — Minimal Mono Design System
   Palette: bone + espresso. Type: condensed serif display + italic + sans labels.
   ========================================================================== */

@import url("https://api.fontshare.com/v2/css?f[]=fraunces@300,400,500,700,900,300i,400i,500i,700i,900i&f[]=satoshi@400,500,700&f[]=boska@500,700,900&display=swap");

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Tokens ---------- */
:root {
  /* Palette — pure white + near-black */
  --bone:        #ffffff;     /* pure white */
  --bone-soft:   #f6f5f2;     /* faint warm white for alt sections */
  --bone-dark:   #ececea;
  --espresso:    #0f0e0d;     /* near-black */
  --espresso-2:  #1f1d1b;
  --ink:         #050504;
  --stone:       #5a5754;     /* muted neutral grey */
  --stone-light: #8b8884;
  --line:        rgba(15, 14, 13, 0.10);
  --line-strong: rgba(15, 14, 13, 0.22);
  --accent:      #2a2826;     /* near-black accent — true mono */

  /* Surfaces */
  --bg:        var(--bone);
  --bg-alt:    var(--bone-soft);
  --bg-deep:   var(--espresso);
  --text:      var(--espresso);
  --text-muted: var(--stone);
  --text-on-deep: var(--bone);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans:    "Satoshi", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Type scale — informational hero on the high end */
  --t-eyebrow: 0.75rem;        /* 12 */
  --t-xs:      0.8125rem;      /* 13 */
  --t-sm:      0.9375rem;      /* 15 */
  --t-base:    1.0625rem;      /* 17 */
  --t-lg:      1.25rem;        /* 20 */
  --t-xl:      1.625rem;       /* 26 */
  --t-2xl:     2.25rem;        /* 36 */
  --t-3xl:     3.25rem;        /* 52 */
  --t-4xl:     4.5rem;         /* 72 */
  --t-hero:    clamp(3.5rem, 11vw, 9rem); /* huge editorial hero */
  --t-mega:    clamp(4rem, 16vw, 13rem);  /* split-hero word */

  /* Spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;
  --s-11: 192px;

  /* Layout */
  --container:  1320px;
  --container-narrow: 880px;
  --gutter:     clamp(20px, 4vw, 56px);
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;

  /* Motion */
  --ease:      cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-1: 200ms;
  --dur-2: 400ms;
  --dur-3: 700ms;
}

/* Dark mode — true black + white. Triggered by .theme-dark on root */
:root.theme-dark {
  --bg:        #050504;
  --bg-alt:    #111110;
  --bg-deep:   #000000;
  --text:      #ffffff;
  --text-muted: #a8a6a3;
  --line:      rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent:    #f6f5f2;
}

@media (prefers-color-scheme: dark) {
  :root:not(.theme-light) {
    --bg:        #050504;
    --bg-alt:    #111110;
    --bg-deep:   #000000;
    --text:      #ffffff;
    --text-muted: #a8a6a3;
    --line:      rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.22);
    --accent:    #f6f5f2;
  }
}

/* ---------- Body ---------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.55;
  letter-spacing: -0.005em;
  transition: background-color var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(72px, 12vw, 160px); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }
.section--deep { background: var(--bg-deep); color: var(--text-on-deep); }
.section--alt { background: var(--bg-alt); }
.divider { height: 1px; background: var(--line); }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display em, h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 350;
}
h1, .h1 { font-size: var(--t-4xl); }
h2, .h2 { font-size: var(--t-3xl); }
h3, .h3 { font-size: var(--t-xl); line-height: 1.1; letter-spacing: -0.01em; }
.hero-display { font-size: var(--t-hero); line-height: 0.88; letter-spacing: -0.04em; }
.mega { font-size: var(--t-mega); line-height: 0.84; letter-spacing: -0.05em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--t-lg); line-height: 1.45; color: var(--text-muted); max-width: 56ch; }
.muted { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.label {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--text); color: var(--bg); }
.btn--solid {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--solid:hover { background: transparent; color: var(--text); }
.btn--ghost { border-color: var(--line-strong); color: var(--text-muted); }
.btn--ghost:hover { background: transparent; color: var(--text); border-color: var(--text); }
.btn--small { padding: 11px 18px; font-size: 11px; letter-spacing: 0.12em; }
.btn--lg    { padding: 20px 36px; font-size: var(--t-xs); }
.btn--block { display: flex; width: 100%; }

/* On dark sections, invert */
.section--deep .btn { color: var(--bone); }
.section--deep .btn:hover { background: var(--bone); color: var(--espresso); }
.section--deep .btn--solid { background: var(--bone); color: var(--espresso); border-color: var(--bone); }
.section--deep .btn--solid:hover { background: transparent; color: var(--bone); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease), background-color var(--dur-2) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--text); }

/* Brand wordmark — stacked chunky serif "moes / beauty / co." */
.brand-wordmark {
  font-family: "Boska", "Fraunces", "Times New Roman", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 11px;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}
.brand-wordmark span { display: block; }
.brand-wordmark .bw-1 { font-size: 1.65em; }
.brand-wordmark .bw-2 { font-size: 1.65em; margin-top: -0.05em; }
.brand-wordmark .bw-3 { font-size: 1.65em; margin-top: -0.05em; }
.brand-large .brand-wordmark { font-size: 18px; }
.footer-brand .brand-wordmark { font-size: 13px; }
@media (max-width: 700px) {
  .brand-wordmark { font-size: 10px; }
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 36px);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-primary a {
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-1) var(--ease);
}
.nav-primary a:hover { color: var(--text); }
.nav-primary a.is-active { color: var(--text); }
.nav-primary a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--line-strong); }
.theme-toggle::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset -5px -2px 0 var(--bg);
  transition: box-shadow var(--dur-1) var(--ease);
}
:root.theme-dark .theme-toggle::before {
  box-shadow: inset -5px -2px 0 var(--text);
  background: var(--bg);
  border: 1px solid currentColor;
}
@media (prefers-color-scheme: dark) {
  :root:not(.theme-light) .theme-toggle::before {
    box-shadow: inset -5px -2px 0 var(--text);
    background: var(--bg);
    border: 1px solid currentColor;
  }
}

.menu-toggle { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; }
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 1px; background: currentColor; position: relative;
  transition: transform var(--dur-1) var(--ease);
}
.menu-toggle span::before { content: ""; position: absolute; top: -5px; left: 0; right: 0; }
.menu-toggle span::after  { content: ""; position: absolute; top:  5px; left: 0; right: 0; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span::after  { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px var(--gutter) 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: var(--t-xl);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header.is-open .mobile-menu { display: flex; }
  .header-actions .btn--small { display: none; }
}

/* ---------- Split hero (Palm Sunday-inspired) ---------- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
  position: relative;
}
.split-hero__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-hero__panel--media { background: var(--bg-alt); }
.split-hero__panel--media img,
.split-hero__panel--media picture {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.split-hero__panel--text {
  background: var(--bg);
  padding: clamp(40px, 6vw, 96px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.split-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.25rem, 8.4vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  word-break: break-word;
  hyphens: auto;
}
.split-hero__title em { font-style: italic; font-weight: 300; }

.split-hero__sub {
  font-family: var(--font-sans);
  font-size: var(--t-lg);
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 38ch;
}

.split-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.split-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mega-word link panel — overlays large word over image (Palm Sunday SHOP/BOOK) */
.megaword {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.megaword__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform var(--dur-3) var(--ease);
}
.megaword:hover .megaword__img { transform: scale(1.04); }
.megaword__word {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-mega);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bone);
  mix-blend-mode: difference;
  font-variation-settings: "opsz" 144;
}

@media (max-width: 880px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero__panel--media { aspect-ratio: 4 / 5; }
  .split-hero__panel--text { padding: 56px var(--gutter) 80px; gap: 40px; min-height: 70vh; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-3xl);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.section-head__title em { font-style: italic; }
.section-head__intro { color: var(--text-muted); font-size: var(--t-base); line-height: 1.55; max-width: 56ch; }
@media (max-width: 700px) {
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 24px; }
}

/* ---------- Two-column feature ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature-row--reverse > :first-child { order: 2; }
.feature-row__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse > :first-child { order: 0; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 22px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-2xl);
  letter-spacing: -0.02em;
  color: var(--text);
}
.marquee__track > span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track > span::after { content: "✺"; opacity: 0.4; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Image grid (portfolio) ---------- */
.portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1vw, 16px);
}
.portfolio__item {
  overflow: hidden;
  position: relative;
}
.portfolio__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-3) var(--ease);
}
.portfolio__item:hover img { transform: scale(1.04); }

.portfolio__item--a { grid-column: span 6; aspect-ratio: 4/5; }
.portfolio__item--b { grid-column: span 3; aspect-ratio: 3/4; }
.portfolio__item--c { grid-column: span 3; aspect-ratio: 3/4; }
.portfolio__item--d { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio__item--e { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio__item--f { grid-column: span 4; aspect-ratio: 1/1; }
@media (max-width: 700px) {
  .portfolio { grid-template-columns: repeat(2, 1fr); }
  .portfolio__item--a { grid-column: span 2; }
  .portfolio__item--b,
  .portfolio__item--c,
  .portfolio__item--d,
  .portfolio__item--e,
  .portfolio__item--f { grid-column: span 1; aspect-ratio: 4/5; }
}

/* ---------- Pricing list (services page) ---------- */
.price-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-strong); }
.price-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: clamp(20px, 4vw, 56px);
  row-gap: 12px;
  padding: clamp(28px, 5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.price-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-lg);
  color: var(--text-muted);
  width: 36px;
}
.price-item__main { display: flex; flex-direction: column; gap: 8px; }
.price-item__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.price-item__name em { font-style: italic; }
.price-item__meta {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.price-item__meta span { display: inline-flex; align-items: center; gap: 8px; }
.price-item__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  opacity: 0.6;
}
.price-item__desc {
  margin-top: 6px;
  max-width: 72ch;
  color: var(--text-muted);
  font-size: var(--t-sm);
  line-height: 1.6;
}
.price-item__price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-xl);
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--text);
}
@media (max-width: 700px) {
  .price-item {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num main"
      "num price"
      "num desc";
  }
  .price-item__num   { grid-area: num; }
  .price-item__main  { grid-area: main; }
  .price-item__price { grid-area: price; font-size: var(--t-lg); }
  .price-item__desc  { grid-area: desc; }
  .price-item__name  { font-size: var(--t-xl); }
}

/* ---------- Testimonials ---------- */
.quote-block {
  display: grid;
  gap: 16px;
  padding-block: 8px;
}
.quote-block__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  color: var(--text);
}
.reviews-badge strong {
  font-weight: 600;
}
.reviews-badge__stars {
  letter-spacing: 1px;
  color: #f5b500;
}
.reviews-badge__sep {
  width: 1px;
  height: 14px;
  background: var(--line-strong);
}
.quote-block__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: var(--t-xl);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 38ch;
}
.quote-block__cite {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 700px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ---------- Press list ---------- */
.press-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.press-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(28px, 5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-inline var(--dur-2) var(--ease), background-color var(--dur-2) var(--ease);
  cursor: pointer;
}
.press-item:hover { padding-inline: 12px; background: var(--bg-alt); }
.press-item__date {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.press-item__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-xl);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.press-item__title em { font-style: italic; }
.press-item__pub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-sm);
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.press-item__arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}
.press-item:hover .press-item__arrow { transform: translateX(8px); color: var(--text); }
@media (max-width: 700px) {
  .press-item { grid-template-columns: 1fr; gap: 12px; }
  .press-item__arrow { display: none; }
}

/* ---------- Numbered list (offerings/principles) ---------- */
.numbered-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 56px); }
.numbered-list__item { padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.numbered-list__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-2xl);
  color: var(--text-muted);
  line-height: 1;
}
.numbered-list__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: var(--t-xl);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.numbered-list__title em { font-style: italic; }
.numbered-list__desc { color: var(--text-muted); font-size: var(--t-sm); line-height: 1.6; max-width: 48ch; }
.numbered-list__price {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--text);
  line-height: 1.2;
  margin-top: 4px;
}
.numbered-list__price small {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.numbered-list__inquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.numbered-list__inquire:hover { color: var(--text-muted); border-color: var(--text-muted); }
@media (max-width: 700px) {
  .numbered-list { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Start-here panel (new client questionnaire) ---------- */
.start-here {
  border: 1px solid var(--line-strong);
  background: var(--bg-alt);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.start-here__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text);
  -webkit-text-stroke: 1px var(--text);
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 144;
}
.start-here__body { display: flex; flex-direction: column; gap: 12px; }
.start-here__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.start-here__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.start-here__title em { font-style: italic; }
.start-here__desc {
  color: var(--text-muted);
  font-size: var(--t-base);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}
.start-here__steps {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
}
.start-here__steps b { color: var(--text); font-weight: 500; }
.start-here__cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
@media (max-width: 820px) {
  .start-here { grid-template-columns: 1fr; gap: 20px; }
  .start-here__num { font-size: 72px; }
  .start-here__cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-deep);
  color: var(--text-on-deep);
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
  padding-inline: var(--gutter);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.cta-banner__title em { font-style: italic; }
.cta-banner .btn { color: var(--bone); border-color: var(--bone); }
.cta-banner .btn:hover { background: var(--bone); color: var(--espresso); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col__head {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a { color: var(--text); transition: color var(--dur-1) var(--ease); }
.footer-col a:hover { color: var(--text-muted); }
.footer-brand {
  margin-bottom: 16px;
  font-size: 13px;
  --footer-brand-fs: 13px;
}
.footer-bottom {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: var(--t-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
html.has-js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-soft), transform 800ms var(--ease-soft); }
html.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.has-js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc ---------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--dur-1) var(--ease);
}
.text-link:hover { gap: 12px; }

.media-block { aspect-ratio: 4/5; overflow: hidden; }
.media-block img { width: 100%; height: 100%; object-fit: cover; }
.media-block--landscape { aspect-ratio: 16/10; }
.media-block--square { aspect-ratio: 1/1; }

/* Page hero (non-split) */
.page-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  max-width: 14ch;
  margin: 16px 0 24px;
}
.page-hero__title em { font-style: italic; }
.page-hero__sub { font-size: var(--t-lg); line-height: 1.5; color: var(--text-muted); max-width: 56ch; }

/* ===== New-client form page ===== */
.form-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  margin-top: 8px;
}
.form-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: var(--t-xl);
  color: var(--ink);
  line-height: 1;
}
.form-step__label {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 700px) {
  .form-steps { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
}

.form-frame-wrap {
  position: relative;
  background: var(--bone-soft, #f6f5f2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.form-frame {
  width: 100%;
  min-height: 1400px;
  border: 0;
  display: block;
  background: #fff;
}
.form-fallback {
  text-align: center;
  font-size: var(--t-sm);
  padding: 16px;
  margin: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .form-frame { min-height: 1800px; }
}

/* ------------------------------------------------------------------ */
/* Journal — index grid                                               */
/* ------------------------------------------------------------------ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 40px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 2px;
}
.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.journal-card:hover .journal-card__media img { transform: scale(1.03); }
.journal-card__date {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.journal-card__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 1.15;
  font-weight: 500;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.journal-card__excerpt {
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.journal-card__more {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--t-sm);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.journal-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}
.journal-card--featured .journal-card__media { aspect-ratio: 5/4; }
.journal-card--featured .journal-card__title { font-size: var(--t-2xl); }
@media (max-width: 800px) {
  .journal-grid { grid-template-columns: 1fr; gap: 48px; }
  .journal-card--featured { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
}

/* ------------------------------------------------------------------ */
/* Post pages                                                         */
/* ------------------------------------------------------------------ */
.post { padding-top: 48px; }
.post-back {
  display: inline-block;
  font-size: var(--t-sm);
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}
.post-back:hover { color: var(--ink); }
.post-header {
  text-align: center;
  margin-bottom: 56px;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
}
.post-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--muted);
  font-weight: 400;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.4;
}
.post-cover {
  margin: 0 auto 64px;
  max-width: 1100px;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--surface-2);
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-body {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}
.post-body p {
  margin: 0 0 1.4em;
}
.post-body p.numbered-tip {
  font-family: var(--font-sans);
  font-size: 17px;
  padding-left: 0;
  font-weight: 500;
}
.post-body p.callout {
  font-family: var(--font-sans);
  font-size: 17px;
  background: var(--surface-2);
  padding: 20px 24px;
  margin: 32px 0;
  border-left: 2px solid var(--ink);
}
.post-signoff {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--muted);
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  padding: 16px 0;
}
.post-nav__link--prev { text-align: left; }
.post-nav__link--next { text-align: right; grid-column: 2; }
.post-nav__link:only-child { grid-column: 1 / -1; }
.post-nav__label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-nav__title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  line-height: 1.25;
}
@media (max-width: 700px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__link--next { grid-column: 1; text-align: left; }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; gap: 28px; }
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.shop-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f3f0;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.03); }
.shop-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,14,13,0.85);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
}
.shop-card--soon .shop-card__media img { opacity: 0.6; }
.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  flex: 1;
}
.shop-card__brand {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted, #888);
}
.shop-card__title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.shop-card__copy {
  font-size: var(--t-sm);
  color: var(--text-muted, #555);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.shop-card .btn { align-self: flex-start; margin-top: 8px; }
.btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/* Shop page — section jump nav */
.shop-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.shop-jumpnav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(15,14,13,0.15);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  background: #fff;
}
.shop-jumpnav a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
