/* ============================================================
   Allum Beauty — Editorial Luxury Design System
   ============================================================ */

:root {
  /* Palette — derived from the logo's blush + warm neutral world */
  --blush:        #F3E3DD;   /* soft pink, primary background */
  --cream:        #F8F1EC;   /* warmer cream alt */
  --shell:        #EDDDD5;   /* deeper blush accent */
  --ink:          #1F1A18;   /* near-black, body text */
  --char:         #2B2421;   /* charcoal */
  --taupe:        #7A6A60;   /* muted taupe */
  --stone:        #B8A89C;   /* warm stone */
  --line:         #D8C5BB;   /* hairline divider */
  --gold:         #9C7C5C;   /* understated bronze accent */
  --white:        #FFFEFC;

  /* Type */
  --f-display:    "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-body:       "Inter Tight", "Inter", "Helvetica Neue", sans-serif;
  --f-mono:       "JetBrains Mono", ui-monospace, monospace;

  /* Sizing scale (fluid) */
  --fs-xs:    clamp(0.72rem, 0.68rem + 0.2vw, 0.78rem);
  --fs-sm:    clamp(0.82rem, 0.78rem + 0.2vw, 0.9rem);
  --fs-base:  clamp(0.96rem, 0.92rem + 0.2vw, 1.05rem);
  --fs-lg:    clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
  --fs-xl:    clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  --fs-2xl:   clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem);
  --fs-3xl:   clamp(3.2rem, 2.2rem + 4.5vw, 6.2rem);
  --fs-4xl:   clamp(4.5rem, 2.5rem + 8vw, 11rem);

  /* Spacing rhythm */
  --gutter:   clamp(1.5rem, 3vw, 3rem);
  --section:  clamp(4rem, 8vw, 9rem);

  /* Misc */
  --max:      1480px;
  --ease:     cubic-bezier(.2,.7,.2,1);
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--blush);
  font-weight: 380;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease); }
a:hover { opacity: 0.6; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ink); color: var(--blush); }

/* Display type */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--char);
}

.display-italic { font-style: italic; font-weight: 400; }

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); line-height: 1; }
h3 { font-size: var(--fs-xl); line-height: 1.1; }

/* Eyebrow label — small caps marker used across pages */
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.numeral {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  color: var(--taupe);
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section) 0; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(243, 227, 221, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  padding: 0.85rem var(--gutter);
  border-bottom-color: var(--line);
}
/* Fallback for browsers without backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background: rgba(243, 227, 221, 0.96); }
}

.brand {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--char);
  line-height: 1;
}
.brand span { font-style: normal; font-weight: 400; }

.nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav a {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--char);
  position: relative;
  padding: 0.3rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--char);
  transition: width .35s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after { background: var(--gold); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  border-radius: 50%;
  transition: background .25s var(--ease);
}
.menu-toggle:hover { background: rgba(31, 26, 24, 0.06); }
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--char);
  border-radius: 2px;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }

/* Drawer close button — only visible inside the open mobile menu */
.menu-close {
  display: none;
  position: absolute;
  top: 1.25rem;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
  transition: background .25s var(--ease);
}
.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--char);
  border-radius: 2px;
  transform-origin: center;
}
.menu-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.menu-close:hover { background: rgba(31, 26, 24, 0.06); }

@media (max-width: 880px) {
  /* Show hamburger trigger in header */
  .menu-toggle { display: block; }

  /* Default state: nav drawer is completely removed from the DOM flow.
     This guarantees no text can bleed through into the page. */
  .nav {
    display: none;
  }

  /* Open state: full-screen overlay with vertically stacked links + a × in the top-right.
     When opened, JS portals .nav to <body> so it isn't trapped by the
     header's containing block (backdrop-filter creates one on iOS Safari). */
  .nav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* iOS-correct viewport height */
    background: var(--blush);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999; /* always on top of everything */
    animation: navFadeIn .35s var(--ease);
  }
  .nav.is-open a {
    font-size: var(--fs-base);
    letter-spacing: 0.18em;
    color: var(--char);
  }

  /* Reveal close × inside the open drawer */
  .nav.is-open .menu-close { display: block; }
}

@keyframes navFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--char);
  color: var(--char);
  background: transparent;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--char);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--blush); opacity: 1; }
.btn:hover::before { transform: translateY(0); }
.btn-filled {
  background: var(--char);
  color: var(--blush);
}
.btn-filled:hover { background: transparent; color: var(--char); }
.btn-filled::before { background: var(--blush); }

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

/* Sticky floating Book Now */
.book-fab {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 95;
  background: var(--char);
  color: var(--blush);
  padding: 1.1rem 1.6rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 12px 40px -10px rgba(31, 26, 24, 0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s var(--ease);
}
.book-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -12px rgba(31, 26, 24, 0.45);
  opacity: 1;
}
.book-fab .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ============================================================
   Hero (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 8rem var(--gutter) 4rem;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-text { position: relative; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--taupe);
}
.hero h1 {
  font-size: var(--fs-4xl);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-lede {
  font-size: var(--fs-lg);
  max-width: 38ch;
  color: var(--char);
  margin-bottom: 2.5rem;
  font-weight: 320;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  transform: translate(20px, 20px);
  z-index: -1;
}
.hero-meta {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--blush);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--line);
}
.hero-meta .numeral { color: var(--gold); }
.hero-meta strong {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--char);
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding-top: 7rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-meta { left: 0; bottom: -1rem; }
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--blush);
}
.marquee-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--char);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-track span::after {
  content: "✦";
  font-size: 0.7em;
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section Header
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.sec-head h2 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.02em;
}
.sec-head h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.sec-head .sec-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}
@media (max-width: 700px) {
  .sec-head { grid-template-columns: 1fr; gap: 0.8rem; }
  .sec-head .sec-meta { text-align: left; }
}

/* ============================================================
   Philosophy / Value Prop
   ============================================================ */
.philosophy {
  background: var(--cream);
}
.phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.phil-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.phil-card .numeral { color: var(--gold); }
.phil-card h3 {
  font-size: var(--fs-xl);
  font-style: italic;
}
.phil-card p {
  color: var(--taupe);
  font-size: var(--fs-base);
  line-height: 1.6;
}
@media (max-width: 780px) {
  .phil-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Featured Work — asymmetric editorial grid
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.work-item { position: relative; overflow: hidden; }
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.work-item:hover img { transform: scale(1.04); }
.work-item .work-caption {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  background: var(--blush);
  padding: 0.5rem 0.9rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--char);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.work-item:hover .work-caption { opacity: 1; transform: translateY(0); }

.work-a { grid-column: span 7; aspect-ratio: 4/5; }
.work-b { grid-column: span 5; aspect-ratio: 4/5; margin-top: clamp(2rem, 6vw, 5rem); }
.work-c { grid-column: span 4; aspect-ratio: 3/4; }
.work-d { grid-column: span 4; aspect-ratio: 3/4; margin-top: clamp(1rem, 3vw, 2.5rem); }
.work-e { grid-column: span 4; aspect-ratio: 3/4; }
@media (max-width: 780px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-a, .work-b, .work-c, .work-d, .work-e { grid-column: span 1; margin-top: 0; aspect-ratio: 3/4; }
}

/* ============================================================
   Makeup Portfolio Grid — always-visible captions on each tile
   ============================================================ */
.makeup-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.mp-item {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.mp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.mp-item:hover img { transform: scale(1.03); }

/* Caption chip — visible by default, sits over the bottom-left of the image */
.mp-caption {
  position: absolute;
  left: clamp(0.9rem, 1.6vw, 1.4rem);
  bottom: clamp(0.9rem, 1.6vw, 1.4rem);
  background: var(--blush);
  color: var(--char);
  padding: 0.65rem 1rem;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  max-width: calc(100% - 2 * clamp(0.9rem, 1.6vw, 1.4rem));
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 18px -8px rgba(31, 26, 24, 0.18);
}

/* Placeholder tile — for the upcoming Full Glam image */
.mp-item-placeholder { background: var(--cream); }
.mp-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px dashed var(--line);
  color: var(--taupe);
}
.mp-placeholder-mark {
  font-size: 2.2rem;
  color: var(--gold);
  font-family: var(--f-display);
  line-height: 1;
}
.mp-placeholder-note {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

@media (max-width: 1100px) {
  .makeup-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .makeup-portfolio-grid { grid-template-columns: 1fr; }
  .mp-item { aspect-ratio: 4/5; }
}
/* Long caption wraps on narrow screens so it doesn't get clipped */
@media (max-width: 700px) {
  .mp-caption {
    white-space: normal;
    line-height: 1.25;
    letter-spacing: 0.18em;
  }
}

/* ============================================================
   Services list (Home services preview)
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-left: 1rem; padding-right: 1rem; background: var(--cream); }
.service-row .numeral { color: var(--taupe); }
.service-row h3 {
  font-size: var(--fs-2xl);
  font-style: italic;
  font-weight: 400;
}
.service-row .desc {
  color: var(--taupe);
  font-size: var(--fs-base);
  max-width: 36ch;
}
.service-row .arrow-link {
  width: 3rem; height: 3rem;
  border: 1px solid var(--char);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .35s var(--ease);
}
.service-row:hover .arrow-link { background: var(--char); color: var(--blush); }
@media (max-width: 780px) {
  .service-row { grid-template-columns: 3rem 1fr auto; }
  .service-row .desc { grid-column: 2 / -1; }
}

/* ============================================================
   Instagram preview strip
   ============================================================ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ig-item { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig-item:hover img { transform: scale(1.05); }
.ig-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(31, 26, 24, 0);
  transition: background .3s var(--ease);
}
.ig-item:hover::after { background: rgba(31, 26, 24, 0.15); }
@media (max-width: 700px) { .ig-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--char);
  color: var(--blush);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter) 2rem;
  margin-top: var(--section);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(243, 227, 221, 0.18);
}
.foot-brand {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.foot-brand small {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 1rem;
}
.foot-col h4 {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col a { font-size: var(--fs-sm); color: var(--blush); }
.foot-meta {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--stone);
  letter-spacing: 0.05em;
}
@media (max-width: 780px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ============================================================
   Page Headers (interior pages)
   ============================================================ */
.page-head {
  padding: 9rem var(--gutter) 4rem;
  border-bottom: 1px solid var(--line);
}
.page-head-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: end;
}
.page-head h1 {
  font-size: var(--fs-4xl);
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.page-head h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.page-head .crumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.page-head .crumbs .numeral { color: var(--gold); }
@media (max-width: 700px) {
  .page-head-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   About page
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  transform: translate(-18px, -18px);
  z-index: -1;
}
.about-copy h2 {
  font-size: var(--fs-3xl);
  margin-bottom: 2rem;
  line-height: 0.95;
}
.about-copy h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.about-copy p {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--char);
  margin-bottom: 1.4rem;
  max-width: 52ch;
  font-weight: 320;
}
.about-copy p.lede { font-size: calc(var(--fs-lg) * 1.15); color: var(--char); font-style: italic; font-family: var(--f-display); line-height: 1.4; }
.credentials {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}
.credentials .cred {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.credentials .cred strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--char);
  margin-bottom: 0.3rem;
}
.credentials .cred span { color: var(--taupe); font-size: var(--fs-sm); }
@media (max-width: 820px) {
  .about-intro { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
}

.studio-feature {
  background: var(--char);
  color: var(--blush);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  margin-top: var(--section);
}
.studio-feature .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.studio-feature h2 {
  color: var(--blush);
  font-size: var(--fs-2xl);
  margin-bottom: 1.5rem;
}
.studio-feature h2 em { color: var(--stone); font-style: italic; }
.studio-feature p { color: var(--stone); font-size: var(--fs-base); margin-bottom: 1rem; max-width: 48ch; }
@media (max-width: 820px) {
  .studio-feature .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   Services pages
   ============================================================ */
.service-cat {
  padding: var(--section) 0;
}
.service-cat:not(:last-child) { border-bottom: 1px solid var(--line); }

.service-cat-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.service-cat-head h2 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.service-cat-head h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.service-cat-head .intro {
  color: var(--taupe);
  font-size: var(--fs-base);
  max-width: 42ch;
  justify-self: end;
}
@media (max-width: 780px) {
  .service-cat-head { grid-template-columns: 1fr; }
  .service-cat-head .intro { justify-self: start; }
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.5rem;
  position: relative;
}
.service-item:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
.service-item:nth-child(even) { padding-left: 2rem; }
.service-item .numeral { color: var(--gold); grid-column: 1; }
.service-item h3 {
  grid-column: 2;
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.service-item p {
  grid-column: 2;
  color: var(--taupe);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  max-width: 38ch;
}
.service-item .price-row {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}
.service-item .price {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  color: var(--char);
}
.service-item .price small {
  font-family: var(--f-body);
  color: var(--taupe);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-item .book-link {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--char);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--char);
  padding-bottom: 2px;
}
@media (max-width: 780px) {
  .service-items { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .service-item:nth-child(even) { padding-left: 0; }
}

/* Service hero strip (image header on each service page) */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: var(--section);
}
.service-hero .copy {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.service-hero .copy h2 {
  font-size: var(--fs-2xl);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-hero .copy h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.service-hero .copy p {
  font-size: var(--fs-lg);
  color: var(--char);
  max-width: 38ch;
  font-weight: 320;
  line-height: 1.5;
}
.service-hero .img-side {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.service-hero .img-side img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) {
  .service-hero { grid-template-columns: 1fr; }
  .service-hero .img-side { aspect-ratio: 4/5; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.contact-info h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 2rem;
  line-height: 1;
}
.contact-info h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block .eyebrow { display: block; margin-bottom: 0.6rem; }
.contact-block p { color: var(--char); font-size: var(--fs-base); line-height: 1.55; }
.contact-block a { color: var(--char); border-bottom: 1px solid var(--line); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  color: var(--char);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--char);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: var(--section);
  padding-top: var(--section);
  border-top: 1px solid var(--line);
}
.policy h3 {
  font-size: var(--fs-lg);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.policy p { color: var(--taupe); font-size: var(--fs-sm); line-height: 1.55; }
@media (max-width: 780px) { .policies-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Animations on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .36s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .60s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* Util */
.center-text { text-align: center; }
.mt-section { margin-top: var(--section); }
