
/*
  CLIENT: Evan Hampton Photography — Jacksonville FL
  TYPE: Wedding & Disney Photographer Portfolio
  ART DIRECTION: Moody film editorial. Warm-black darkroom ground, aged-grain cream
                 text, warm taupe accent (the colour of 4pm Florida light). No
                 postcard motif — replaced with cinematic stillness. No cold palettes.
  PALETTE: Darkroom near-black (warm undertone), film-grain cream, warm taupe highlight.
  TYPOGRAPHY: Instrument Serif (editorial display, close to Editorial New) +
              Inter Tight (clean body) + JetBrains Mono (micro-labels).
  MOOD: Still, editorial, film-camera warmth, professional photographer who hates fuss.
*/

/* ======== TOKENS ======== */
:root {
  /* Darkroom — near-black with amber/brown warmth (NOT cold cinema-blue) */
  --color-bg:         #0B0907;
  --color-bg-deeper:  #070605;
  --color-surface:    #141210;
  --color-surface-2:  #1E1B17;
  --color-line:       #2D2820;

  /* Film grain cream — aged paper, not pure white */
  --color-text:       #F2EDE6;
  --color-text-muted: #A89A8C;
  --color-text-soft:  #7A6E65;

  /* Warm taupe — photographic warmth, "the light at 4pm in Florida" */
  --color-accent:       #C8AE96;
  --color-accent-hover: #D8BEA8;
  --color-accent-deep:  #9A8472;

  /* Cream-exposure — for special editorial moments */
  --color-cream: #EDE6DC;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body:    "Inter Tight", -apple-system, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "Courier New", monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
  --shadow-md: 0 8px 24px rgba(0,0,0,.55);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.65);

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --container: 1400px;
}

/* ======== 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-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--color-accent); color: var(--color-bg-deeper); }

/* ======== TYPOGRAPHY ======== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.6s var(--ease-out);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.h-display {
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.h-section {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.h-sub {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

p { color: var(--color-text-muted); }
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ======== LAYOUT ======== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left:  clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}
.section          { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section--tight   { padding: clamp(60px, 7vw, 120px) 0; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-deeper) !important;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,174,150,.3);
  color: var(--color-bg-deeper) !important;
}
.btn--ghost {
  background: rgba(242,237,230,.06) !important;
  border: 1.5px solid rgba(242,237,230,.42) !important;
  color: var(--color-text) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-bg-deeper) !important;
}
.btn--lg  { padding: 22px 40px; font-size: 13px; }
.btn .icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

/* ======== NAV ======== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(11,9,7,.8);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 36px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-display);
  color: var(--color-accent);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  list-style: none;
  flex-shrink: 1;
  min-width: 0;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color .3s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--color-text); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--color-bg-deeper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2; overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% center;
  transform: scale(1.05);
  filter: brightness(.65) saturate(.9);
}
@media (max-width: 768px) {
  .hero__bg img { object-position: 35% center; transform: scale(1.02); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(7,6,5,.94) 0%, rgba(7,6,5,.68) 30%, rgba(7,6,5,.18) 65%, transparent 85%),
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(7,6,5,.68) 100%),
    radial-gradient(ellipse at 90% 20%, rgba(200,174,150,.08) 0%, transparent 50%);
  z-index: -1;
}
@media (max-width: 1024px) {
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(11,9,7,.25) 0%, rgba(11,9,7,.12) 25%, rgba(6,5,4,.97) 100%),
      radial-gradient(ellipse at 80% 18%, rgba(200,174,150,.08) 0%, transparent 55%);
  }
}
.hero__content {
  padding: clamp(110px, 13vw, 150px) 0 clamp(60px, 8vw, 100px);
  position: relative; z-index: 2;
  margin-left: auto;
  max-width: 620px;
  text-align: left;
}
@media (min-width: 1280px) {
  .hero__content { max-width: 580px; margin-right: clamp(20px, 4vw, 80px); }
}
@media (max-width: 1024px) {
  .hero__content { margin-left: 0; margin-right: 0; max-width: 100%; padding-left: 0; padding-right: 0; }
}
@media (max-width: 768px) {
  .hero__content { padding-top: clamp(120px, 22vw, 160px); padding-bottom: clamp(40px, 8vw, 70px); }
  .hero .container { padding-left: 24px; padding-right: 24px; }
  .hero__sub { font-size: 16px; line-height: 1.55; }
  .hero__meta { gap: 12px 18px; font-size: 11px; }
  .hero__meta span { font-size: 11px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero__cta-row .btn { width: 100%; padding: 16px 20px; justify-content: center; }
  .hero__scroll { display: none; }
}

.hero__title.h-display {
  font-size: clamp(48px, 7.2vw, 116px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
  padding-bottom: 0.14em !important;
  overflow: visible !important;
}
.hero__title .word { display: inline-block; overflow: hidden; padding-bottom: 0.14em; line-height: 1.04; }
.hero__title .word > span { display: inline-block; }
@media (max-width: 1024px) { .hero__title.h-display { font-size: clamp(40px, 8.6vw, 64px) !important; } }
@media (max-width: 768px)  { .hero__title.h-display { font-size: clamp(36px, 11vw, 52px) !important; } }

.hero__title { color: #f2ede6; margin-bottom: var(--space-5); }
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(242,237,230,.85);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: var(--space-7);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  margin-bottom: var(--space-7);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,230,.72);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__meta svg  { width: 13px; height: 13px; color: var(--color-accent); }
.hero__cta-row   { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero__scroll {
  position: absolute; bottom: 32px; right: clamp(20px, 4vw, 60px);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,237,230,.65);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--color-accent));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -30px; left: 0; right: 0; height: 30px;
  background: var(--color-accent);
  animation: scrollDot 2.4s var(--ease-out) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); } 100% { transform: translateY(90px); } }

/* Hero entry animations — CSS only */
@keyframes hero-word-rise { from { transform: translate3d(0,110%,0); } to { transform: translate3d(0,0,0); } }
@keyframes hero-fade-up   { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform: translateY(0); } }
.hero__title .word > span { display: inline-block; animation: hero-word-rise 1s cubic-bezier(.16,1,.3,1) both; }
.hero__title .word:nth-child(1) > span { animation-delay: .10s; }
.hero__title .word:nth-child(2) > span { animation-delay: .18s; }
.hero__title .word:nth-child(3) > span { animation-delay: .26s; }
.hero__title .word:nth-child(4) > span { animation-delay: .34s; }
.hero__sub     { animation: hero-fade-up .8s ease-out .6s both; }
.hero__meta    { animation: hero-fade-up .7s ease-out .85s both; }
.hero__cta-row { animation: hero-fade-up .7s ease-out 1.05s both; }
.hero__scroll  { animation: hero-fade-up .8s ease-out 1.3s both; }
@media (prefers-reduced-motion: reduce) {
  .hero__title .word > span, .hero__sub, .hero__meta, .hero__cta-row, .hero__scroll {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}

/* ======== HOOK RIBBON ======== */
.hook-ribbon {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.hook-ribbon::before, .hook-ribbon::after {
  content: '';
  position: absolute; top: 50%;
  width: 28%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,174,150,.2) 50%, transparent);
}
.hook-ribbon::before { left: 0; }
.hook-ribbon::after  { right: 0; }
.hook-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
}
.hook-ribbon__frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 86px; height: 96px;
  border: 1.5px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(200,174,150,.10), transparent);
  padding: 8px;
  transform: rotate(-3deg);
  flex-shrink: 0;
}
.hook-ribbon__since {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hook-ribbon__label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 4px;
  font-weight: 600;
}
.hook-ribbon__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--color-text);
  line-height: 1.38;
  max-width: 56ch;
}
.hook-ribbon__quote em { font-style: italic; color: var(--color-accent); }
.hook-ribbon__badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-direction: column;
  width: 86px; height: 96px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 8px;
  text-align: center;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  transform: rotate(3deg);
  flex-shrink: 0;
}
.hook-ribbon__badge-sub  { font-size: 11px; color: var(--color-text); margin: 4px 0 2px; font-family: var(--font-display); font-style: italic; font-size: 16px; text-transform: none; letter-spacing: 0; }
.hook-ribbon__badge-line { font-size: 7px; letter-spacing: 0.16em; color: var(--color-text-soft); }

/* ======== MARQUEE ======== */
.marquee {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
  padding: 24px 0;
}
.marquee__track {
  display: flex;
  gap: var(--space-9);
  animation: marquee 42s linear infinite;
  white-space: nowrap;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
}
.marquee__item .dot { color: var(--color-accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ======== CREDENTIALS BAR ======== */
.creds { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--color-line); }
.creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-7);
}
.cred {
  border-left: 1px solid var(--color-line);
  padding-left: var(--space-5);
}
.cred__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.cred__num .accent { color: var(--color-accent); }
.cred__num--text {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  color: var(--color-text);
}
.cred__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ======== ABOUT ======== */
.about { position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,6,5,.5) 100%);
}
.about__visual-badge {
  position: absolute; bottom: 24px; left: 24px;
  padding: 12px 18px;
  background: rgba(7,6,5,.8);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(200,174,150,.35);
}
.about__content .h-section { margin-bottom: var(--space-6); }
.about__content p {
  margin-bottom: var(--space-5);
  font-size: 17px; line-height: 1.65;
}
.about__content p:first-of-type {
  font-size: 19px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -0.005em;
  line-height: 1.45;
}
.about__sig {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

/* ======== SESSION STRIP (replaces "behind the camera") ======== */
.session-strip { background: var(--color-bg-deeper); border-top: 1px solid var(--color-line); }
.session-strip__head { text-align: center; margin-bottom: clamp(50px, 7vw, 90px); }
.session-strip__head .eyebrow { justify-content: center; }
.session-strip__head .h-section em { font-style: italic; color: var(--color-accent); }

.behind__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.behind__card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/5; background: var(--color-surface);
}
.behind__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.behind__card:hover img { transform: scale(1.04); }
.behind__card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,6,5,.88) 100%);
  pointer-events: none;
}
.behind__caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--color-cream);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.behind__caption .place {
  font-family: var(--font-body);
  font-style: normal;
  display: block;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600; margin-top: 6px;
}
.behind__card--lg   { grid-column: span 6; grid-row: span 2; aspect-ratio: 4/5; }
.behind__card--md   { grid-column: span 3; }
.behind__card--wide { grid-column: span 6; aspect-ratio: 4/3; }

.behind__quote {
  margin-top: clamp(40px, 6vw, 80px);
  text-align: center; max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.behind__quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  line-height: 1.45;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.behind__quote-text::before, .behind__quote-text::after {
  content: '"'; color: var(--color-accent); font-size: 1.3em;
  line-height: 0; vertical-align: -0.1em; margin: 0 .15em;
}

/* ======== WORK / GALLERY ======== */
.work__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.work__head .h-section { max-width: 14ch; }
.work__head p { max-width: 42ch; font-size: 16px; }

.filters {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-7);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-5) 0;
}
.filter {
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted); border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.filter:hover { color: var(--color-text); }
.filter.active { color: var(--color-bg-deeper); background: var(--color-accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: var(--space-3);
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; background: var(--color-surface);
  transition: box-shadow .4s var(--ease);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover { box-shadow: 0 18px 50px rgba(7,6,5,.6); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,6,5,.88) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  z-index: 2; opacity: 0;
  transform: translateY(10px); transition: all .4s var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }
.gallery__caption-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px; color: #f2ede6; margin-bottom: 4px; letter-spacing: -0.01em;
}
.gallery__caption-meta {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent);
}
/* gallery layout */
.g-1 { grid-column: span 7; grid-row: span 5; }
.g-2 { grid-column: span 5; grid-row: span 5; }
.g-3 { grid-column: span 4; grid-row: span 4; }
.g-4 { grid-column: span 4; grid-row: span 4; }
.g-5 { grid-column: span 4; grid-row: span 4; }
.g-6 { grid-column: span 6; grid-row: span 5; }
.g-7 { grid-column: span 6; grid-row: span 5; }
.g-8 { grid-column: span 5; grid-row: span 4; }
.g-9 { grid-column: span 7; grid-row: span 4; }

/* ======== SERIES / FEATURED WEDDINGS ======== */
.series {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.series__head { text-align: center; margin-bottom: var(--space-9); }
.series__head .eyebrow { justify-content: center; margin-bottom: var(--space-4); }
.series__head .eyebrow::before { display: inline-block; }
.series__list { display: grid; gap: clamp(80px, 10vw, 140px); }
.series__item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px); align-items: center;
}
.series__item:nth-child(even) .series__visual { order: 2; }
.series__visual {
  aspect-ratio: 4/5; position: relative;
  overflow: hidden; border-radius: var(--radius-md);
}
.series__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.series__visual:hover img { transform: scale(1.04); }
.series__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  color: var(--color-accent); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: var(--space-5); font-weight: 400; font-style: italic;
}
.series__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: var(--space-5); color: var(--color-text);
}
.series__location {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: var(--space-5);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.series__location svg { width: 13px; height: 13px; }
.series__desc { font-size: 17px; line-height: 1.65; margin-bottom: var(--space-6); max-width: 50ch; }
.series__tags { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.series__tag {
  padding: 6px 14px;
  border: 1px solid var(--color-line); border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ======== COVERAGE / BRANDS GRID ======== */
.coverage {}
.brands__head { text-align: center; margin-bottom: var(--space-8); }
.brands__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--color-line);
  border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden;
}
.brand {
  padding: var(--space-6) var(--space-4);
  background: var(--color-bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  transition: all .35s var(--ease);
  text-align: center;
}
.brand:hover { color: var(--color-accent); background: var(--color-surface); }
.brand small {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 4px; color: var(--color-text-soft); font-weight: 500;
}

/* ======== SERVICES ======== */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--color-line);
  border: 1px solid var(--color-line); border-radius: var(--radius-md);
  overflow: hidden; margin-top: var(--space-7);
}
.service {
  background: var(--color-bg);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.service::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(200,174,150,.05));
  opacity: 0; transition: opacity .4s var(--ease);
}
.service:hover { background: var(--color-surface); }
.service:hover::before { opacity: 1; }
.service__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; color: var(--color-accent);
  font-weight: 500; text-transform: uppercase;
}
.service__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em; color: var(--color-text); line-height: 1.05;
}
.service__desc { font-size: 16px; line-height: 1.6; color: var(--color-text-muted); }
.service__list {
  list-style: none; display: flex; flex-direction: column;
  gap: var(--space-3); margin-top: var(--space-3);
}
.service__list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 14px; color: var(--color-text-muted);
}
.service__list svg { width: 13px; height: 13px; color: var(--color-accent); flex-shrink: 0; }
.service__cta {
  margin-top: auto; padding-top: var(--space-5);
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent); transition: gap .3s var(--ease);
}
.service:hover .service__cta { gap: var(--space-4); }
.service__cta svg { width: 13px; height: 13px; }

/* ======== PROCESS ======== */
.process-section { background: var(--color-bg-deeper); border-top: 1px solid var(--color-line); }
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5); margin-top: var(--space-7);
}
.process__step { border-top: 1px solid var(--color-accent); padding-top: var(--space-5); }
.process__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--color-accent); line-height: 1; margin-bottom: var(--space-3);
}
.process__title {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.015em; margin-bottom: var(--space-3);
}
.process__desc { font-size: 14px; line-height: 1.6; color: var(--color-text-muted); }

/* ======== TESTIMONIALS ======== */
.testimonials { position: relative; overflow: hidden; }
.testimonials__bg { position: absolute; inset: 0; z-index: -1; opacity: .12; }
.testimonials__bg img { width: 100%; height: 100%; object-fit: cover; }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.t-card {
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: all .4s var(--ease);
}
.t-card:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.t-card__quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5; letter-spacing: -0.01em;
  color: var(--color-text); font-style: italic;
}
.t-card__quote::before {
  content: '"'; font-size: 44px; line-height: 0;
  color: var(--color-accent); margin-right: 5px; vertical-align: -10px;
}
.t-card__author {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: auto; padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}
.t-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  display: grid; place-items: center;
  font-weight: 600; font-size: 13px; color: var(--color-bg-deeper);
}
.t-card__name  { font-weight: 600; font-size: 14px; color: var(--color-text); }
.t-card__role  { font-size: 12px; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* ======== INSTAGRAM FEED ======== */
.feed__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-7);
}
.feed__head a {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--color-accent);
}
.feed__head a:hover { text-decoration: underline; }
.feed__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.feed__item { aspect-ratio: 1/1; overflow: hidden; position: relative; border-radius: var(--radius-sm); }
.feed__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.feed__item:hover img { transform: scale(1.08); }
.feed__item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(200,174,150,0); transition: background .4s var(--ease);
}
.feed__item:hover::after { background: rgba(200,174,150,.12); }

/* ======== CTA BLOCK ======== */
.cta-block { position: relative; padding: clamp(80px, 12vw, 200px) 0; overflow: hidden; }
.cta-block__bg { position: absolute; inset: 0; z-index: -1; }
.cta-block__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.8); }
.cta-block__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(7,6,5,.72) 70%);
}
.cta-block__content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-block__title {
  font-size: clamp(40px, 7vw, 96px); line-height: .95;
  letter-spacing: -0.03em; margin-bottom: var(--space-6); color: #f2ede6;
}
.cta-block__title em { font-style: italic; color: var(--color-accent); font-weight: 400; }
.cta-block__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(242,237,230,.85); margin-bottom: var(--space-7);
  max-width: 56ch; margin-left: auto; margin-right: auto;
}

/* ======== CONTACT FORM ======== */
.contact { background: var(--color-bg-deeper); border-top: 1px solid var(--color-line); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px); align-items: start;
}
.contact__info p { font-size: 17px; line-height: 1.65; margin-bottom: var(--space-6); }
.contact__detail {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) 0; border-bottom: 1px solid var(--color-line);
}
.contact__detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-line);
  display: grid; place-items: center; color: var(--color-accent); flex-shrink: 0;
}
.contact__detail-icon svg { width: 15px; height: 15px; }
.contact__detail-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 2px;
}
.contact__detail-value { font-size: 15px; color: var(--color-text); font-weight: 500; }

.form { display: grid; gap: var(--space-5); grid-auto-rows: min-content; align-content: start; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form__field { display: flex; flex-direction: column; gap: var(--space-2); }
.form__label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.form__input, .form__textarea, .form__select {
  background: transparent; border: none; border-bottom: 1px solid var(--color-line);
  padding: var(--space-4) 0; font-size: 16px; color: var(--color-text);
  transition: border-color .3s var(--ease); outline: none;
}
.form__input:focus, .form__textarea:focus, .form__select:focus { border-color: var(--color-accent); }
.form__input::placeholder, .form__textarea::placeholder { color: var(--color-text-soft); }
.form__textarea { resize: vertical; min-height: 100px; }
.form__select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8AE96'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .5rem center; background-size: 16px;
  padding-right: 28px;
}
.form__select option { background: var(--color-bg); color: var(--color-text); }
.form__submit { margin-top: var(--space-3); justify-self: start; align-self: start; }

/* ======== FOOTER ======== */
.footer {
  background: var(--color-bg-deeper); border-top: 1px solid var(--color-line);
  padding: clamp(60px, 8vw, 100px) 0 var(--space-6);
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-7); margin-bottom: var(--space-9);
  padding-bottom: var(--space-7); border-bottom: 1px solid var(--color-line);
}
.footer__brand .nav__logo { margin-bottom: var(--space-4); }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 32ch; margin-bottom: var(--space-5); }
.footer__col-title {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: var(--space-5); font-weight: 600;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a {
  font-size: 14px; color: var(--color-text); transition: color .3s var(--ease);
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .4s var(--ease), color .3s var(--ease);
}
.footer__col a:hover { color: var(--color-accent); background-size: 100% 1px; }
.socials { display: flex; gap: var(--space-3); }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-line); display: grid; place-items: center;
  transition: all .3s var(--ease); color: var(--color-text-muted);
}
.socials a:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-3px); }
.socials svg { width: 15px; height: 15px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: var(--space-4); font-size: 11px; color: var(--color-text-soft); letter-spacing: 0.04em;
}
.footer__bigname {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(48px, 11.6vw, 180px); line-height: 1; letter-spacing: -0.05em;
  color: var(--color-text); text-align: center; white-space: nowrap;
  margin: var(--space-7) 0; font-weight: 400; width: 100%; display: block;
  background: linear-gradient(180deg, var(--color-text) 30%, transparent 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  user-select: none;
}
.footer__credit a {
  color: var(--color-accent); font-weight: 500; position: relative;
  transition: color .2s var(--ease);
}
.footer__credit a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--color-accent); opacity: .35; transition: opacity .25s var(--ease);
}
.footer__credit a:hover::after { opacity: 1; }

/* ======== SCROLL ANIMATION HELPERS ======== */
.fade-up { will-change: opacity, transform; }
.fade-up.is-hidden { opacity: 0; transform: translateY(28px); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  .nav__cta .btn { display: none; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 1024px) {
  .creds__grid    { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .about__grid    { grid-template-columns: 1fr; }
  .about__visual  { max-width: 540px; aspect-ratio: 4/5; }
  .series__item   { grid-template-columns: 1fr; }
  .series__item:nth-child(even) .series__visual { order: 0; }
  .brands__grid   { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .t-grid         { grid-template-columns: 1fr; }
  .feed__grid     { grid-template-columns: repeat(3, 1fr); }
  .footer__top    { grid-template-columns: 1fr 1fr; }
  .contact__grid  { grid-template-columns: 1fr; }
  .behind__grid   { grid-template-columns: repeat(6, 1fr); }
  .behind__card--lg  { grid-column: span 6; aspect-ratio: 4/3; grid-row: auto; }
  .behind__card--md  { grid-column: span 3; }
  .behind__card--wide{ grid-column: span 6; }
  .process        { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .creds__grid { grid-template-columns: 1fr; }
  .cred { border-left: none; border-top: 1px solid var(--color-line); padding-left: 0; padding-top: var(--space-5); }
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
  }
  .g-1 { grid-column: span 6; grid-row: span 4; }
  .g-2 { grid-column: span 6; grid-row: span 4; }
  .g-3 { grid-column: span 3; grid-row: span 3; }
  .g-4 { grid-column: span 3; grid-row: span 3; }
  .g-5 { grid-column: span 6; grid-row: span 3; }
  .g-6 { grid-column: span 6; grid-row: span 4; }
  .g-7 { grid-column: span 6; grid-row: span 4; }
  .g-8 { grid-column: span 3; grid-row: span 3; }
  .g-9 { grid-column: span 3; grid-row: span 3; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .feed__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding: var(--space-4) 0; }
  .behind__grid { grid-template-columns: repeat(2, 1fr); }
  .behind__card--lg, .behind__card--md, .behind__card--wide { grid-column: span 2; aspect-ratio: 4/5; }
  .hook-ribbon__inner { gap: 24px; }
  .hook-ribbon__quote { font-size: 17px; line-height: 1.5; }
  .hook-ribbon__frame, .hook-ribbon__badge { transform: rotate(-1.5deg) scale(.9); }
  .process { grid-template-columns: 1fr; }
  /* Mobile hero: image on top, dark text panel below */
  .hero { min-height: auto; height: auto; }
  .hero__bg { position: relative; height: 56vh; height: 56dvh; inset: auto; z-index: 0; }
  .hero__bg img { object-position: 35% 30%; transform: scale(1.0); filter: brightness(0.82) saturate(.9); }
  .hero__overlay {
    background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(6,5,4,.58) 78%, rgba(6,5,4,1) 100%);
    height: 56vh; height: 56dvh; inset: auto; position: absolute; top: 0; left: 0; right: 0;
  }
  .hero__content {
    background: rgba(6,5,4,1);
    padding: 32px 24px clamp(48px, 8vw, 72px) !important;
    margin: 0 !important; max-width: 100% !important; position: relative; z-index: 2;
  }
  .hero .container { padding-left: 0; padding-right: 0; width: 100%; max-width: 100%; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero__cta-row .btn { width: 100%; padding: 18px 24px !important; justify-content: center; }
  .hero__scroll { display: none !important; }
}

/* ======== FILM GRAIN OVERLAY ======== */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  z-index: 9998; pointer-events: none; opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(2) infinite;
  will-change: transform;
}
@keyframes grain-shift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-3%,2%); }
  50%  { transform: translate(2%,-3%); }
  75%  { transform: translate(-2%,-2%); }
  100% { transform: translate(2%,3%); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ======== CLIP-PATH IMAGE REVEALS ======== */
.reveal-mask > img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s cubic-bezier(.16,1,.3,1);
}
.reveal-mask.is-revealed > img { clip-path: inset(0 0 0% 0); }
@media (prefers-reduced-motion: reduce) { .reveal-mask > img { clip-path: none !important; } }

/* ======== VIEW CURSOR ======== */
.view-cursor {
  position: fixed; top: 0; left: 0;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-bg-deeper);
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%) scale(0);
  transition: transform .35s var(--ease-out), opacity .3s ease;
  opacity: 0;
}
.view-cursor.is-active { transform: translate(-50%,-50%) scale(1); opacity: 1; }
@media (hover: none) { .view-cursor { display: none; } }

/* ======== CURTAIN ======== */
.curtain {
  position: fixed; inset: 0; background: var(--color-bg-deeper);
  z-index: 10000; display: grid; place-items: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.curtain.is-gone { opacity: 0; visibility: hidden; }
.curtain__mark {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 400; letter-spacing: -0.03em;
  color: var(--color-text); overflow: hidden; display: flex;
}
.curtain__mark span {
  display: inline-block; transform: translateY(110%);
  animation: curtain-rise .8s cubic-bezier(.16,1,.3,1) forwards;
}
.curtain__mark span:nth-child(2) { animation-delay: .06s; }
.curtain__mark span:nth-child(3) { animation-delay: .12s; }
.curtain__mark span:nth-child(4) { animation-delay: .18s; }
.curtain__mark span:nth-child(5) { animation-delay: .24s; }
@keyframes curtain-rise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .curtain { display: none; } }
