/* ====================================================================
   EMINENCE PHOTOGRAPHY — v2
   Editorial fashion-luxury wedding photography
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Tiro+Gurmukhi:ital@0;1&display=swap');

:root {
  /* Palette — linen + warm black */
  --bg:        #F4EFE7;     /* soft linen */
  --bg-2:      #EBE5DA;     /* slightly deeper linen */
  --bg-3:      #DFD7C8;
  --ink:       #1B1814;     /* warm near-black */
  --ink-2:     #2E2A24;
  --ink-soft:  #6E665B;     /* warm taupe gray */
  --ink-mute:  #94897B;
  --line:      #D8CFBE;     /* hairline */
  --line-2:    #C8BDA9;
  --accent:    #4A3E2F;     /* deep warm brown — used very sparingly */

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:    "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { position: relative; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ====================================================================
   LAYOUT PRIMITIVES
   ==================================================================== */

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section   { padding: clamp(80px, 12vw, 180px) 0; }

/* ====================================================================
   TYPOGRAPHY UTILITIES
   ==================================================================== */

.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.04;
}
.display em {
  font-style: italic;
  font-weight: 300;
}

.label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

/* ====================================================================
   NAV
   ==================================================================== */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 231, 0.85);
  backdrop-filter: blur(18px) saturate(120%);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px var(--gutter);
}
.nav-left, .nav-right { display: flex; gap: 32px; }
.nav-right { justify-content: flex-end; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--ink);
  transition: color .25s ease;
  position: relative;
}
.nav a:hover { color: var(--ink-soft); }
.nav a.active { color: var(--ink-soft); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 0;
}
.brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: filter .3s ease, opacity .3s ease;
}
.brand:hover img { opacity: 0.72; }

/* Over the dark hero photo, invert the dark logo so it appears light */
body.has-hero-full:not(.scrolled) .brand img {
  filter: invert(100%) brightness(2);
}

/* ====================================================================
   MOBILE MENU — full-screen overlay with burger trigger
   ==================================================================== */
.nav-burger {
  display: none;
  width: 32px; height: 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  justify-self: end;
  z-index: 60;
}
.nav-burger span {
  display: block;
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, background-color .25s ease;
}
.nav-burger span:nth-child(1) { top: 5px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 5px; }

/* Open state — burger morphs to X */
body.menu-open .nav-burger span { background: #000000; }
body.menu-open .nav-burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
body.menu-open .nav-burger span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Light burger over dark hero photos */
body.has-hero-full:not(.scrolled):not(.menu-open) .nav-burger span {
  background: var(--bg);
  box-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Full-screen menu overlay — white bg, black text, Helvetica */
.mobile-menu {
  position: fixed; inset: 0;
  background: #ffffff;
  color: #000000;
  z-index: 55;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 32px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.4,0,.2,1);
  font-family: var(--sans);
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }

.mobile-menu-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 22px;
  text-align: center;
}
.mobile-menu-nav a {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #000000;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  transform: translateY(20px);
}
body.menu-open .mobile-menu-nav a {
  transform: translateY(0);
  opacity: 1;
}
body.menu-open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu-nav a:hover { opacity: 1; }
.mobile-menu-nav a.active {
  opacity: 1;
  font-weight: 700;
}
.mobile-menu-nav a.active::after {
  content: " ·";
  font-size: 1em;
  color: rgba(0,0,0,0.4);
  margin-left: 4px;
}

.mobile-menu-reach {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  width: 80%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  transition-delay: 0.45s;
  font-family: var(--sans);
}
body.menu-open .mobile-menu-reach { opacity: 1; transform: translateY(0); }
.mobile-menu-reach a {
  color: #000000;
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu-reach .label {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 4px;
}
.mobile-menu-foot {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  text-align: center;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: lowercase;
  color: rgba(0,0,0,0.35);
  font-family: var(--sans);
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 20px; }
  .nav-left, .nav-right { display: none; }
  .nav .brand { grid-column: 1; justify-self: start; }
  .nav-burger { display: block; grid-column: 3; justify-self: end; }
}

/* Explicit close (X) button inside the mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  border-radius: 50%;
  transition: background .2s ease;
}
.mobile-menu-close:hover { background: rgba(0,0,0,0.06); }
.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  top: 50%; left: 10px; right: 10px;
  height: 2px;
  background: #000000;
  border-radius: 1px;
  transform-origin: center;
}
.mobile-menu-close::before { transform: translateY(-50%) rotate(45deg); }
.mobile-menu-close::after  { transform: translateY(-50%) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */

.hero { padding: clamp(40px, 6vw, 96px) 0 clamp(60px, 8vw, 120px); }

/* === Full-bleed cinematic hero === */
.hero-full {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(640px, 92vh, 1100px);
  overflow: hidden;
  background: var(--ink);
  margin: 0;
  padding: 0;
}
/* Slide stack — each slide layered, only one visible at a time */
.hero-slides { position: absolute; inset: 0; }
.hero-slide  { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s cubic-bezier(.4, 0, .2, 1); }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
.hero-slide.active .img { animation: heroKenBurns 9s ease-out forwards; }
@keyframes heroKenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Pure-image fallback for non-slider layouts */
.hero-full > .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  animation: heroBreathe 14s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
.hero-full::after {
  content: ""; position: absolute; inset: 0;
  background:
    /* Strong wash at bottom-left where the title block sits */
    radial-gradient(ellipse 1400px 900px at 18% 90%,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.42) 30%,
      rgba(0,0,0,0.15) 55%,
      transparent 75%),
    /* Softer wash at top-right where the corner caption sits */
    radial-gradient(ellipse 700px 400px at 100% 0%,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.2) 50%,
      transparent 75%),
    /* Overall light vignette for global cohesion */
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 25%, transparent 65%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}
/* Corner caption stack — one visible at a time, fades with slide */
.hero-corner-stack {
  position: absolute; top: 28px; right: var(--gutter);
  z-index: 3;
  pointer-events: none;
}
.hero-corner,
.hero-full .corner {
  position: absolute; top: 0; right: 0;
  color: rgba(244, 239, 231, 0.96);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  display: flex; align-items: center; gap: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.35);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-corner-stack .hero-corner.active { opacity: 1; }
.hero-full > .corner { position: absolute; opacity: 1; } /* legacy single-image hero */
.hero-full .corner::before {
  content: ""; width: 28px; height: 1px; background: rgba(244,239,231,0.5);
}
/* Per-slide title block — each slide carries its own text, fades with the slide */
.hero-full .title-block {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: clamp(56px, 8vw, 110px);
  color: var(--bg);
  z-index: 3;
  max-width: 1100px;
  pointer-events: none;
}
.hero-full .title-block .reveal,
.hero-full .title-block .reveal-block { pointer-events: auto; }

.hero-full .title-block .eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  font-family: var(--sans);
}
.hero-full .title-block .eyebrow-wrap { display: block; margin-bottom: 28px; }

.hero-full .title-block h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8.6vw, 132px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.012em;
  max-width: 16ch;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}
.hero-full .title-block h1 em { font-style: italic; }

.hero-full .title-block .cta-row {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.hero-full .title-block .cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  color: var(--bg);
  border-bottom: 1px solid var(--bg);
  padding-bottom: 6px;
  transition: opacity .25s ease;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  font-family: var(--sans);
}
.hero-full .title-block .cta:hover { opacity: 0.7; }
.hero-full .title-block .ghost-cta {
  color: rgba(244,239,231,0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  transition: color .25s ease;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  font-family: var(--sans);
}
.hero-full .title-block .ghost-cta:hover { color: var(--bg); }

/* ---- Dew Company-style line-mask reveal ----
   Each line wrapped in .reveal (overflow:hidden); inner span slides
   from translateY(110%) → 0 when its parent slide is active.
   .r1..r5 are stagger steps. */
.hero-full .reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
  max-width: 100%;
}
.hero-full .reveal > * {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1.15s cubic-bezier(.16,.77,.3,1);
  will-change: transform;
}
.hero-full .hero-slide.active .reveal > * { transform: translateY(0); }

/* Stagger — only animates when slide becomes active */
.hero-full .hero-slide.active .reveal.r1 > * { transition-delay: 0.20s; }
.hero-full .hero-slide.active .reveal.r2 > * { transition-delay: 0.40s; }
.hero-full .hero-slide.active .reveal.r3 > * { transition-delay: 0.60s; }
.hero-full .hero-slide.active .reveal.r4 > * { transition-delay: 0.95s; }
.hero-full .hero-slide.active .reveal.r5 > * { transition-delay: 1.10s; }

/* Fade-up reveal for inline CTAs (so the underline doesn't peek out) */
.hero-full .reveal-fade { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,.77,.3,1); }
.hero-full .hero-slide.active .reveal-fade { opacity: 1; transform: translateY(0); }
.hero-full .hero-slide.active .reveal-fade.r4 { transition-delay: 1.05s; }
.hero-full .hero-slide.active .reveal-fade.r5 { transition-delay: 1.20s; }

/* Mobile: stack hero CTAs as proper buttons */
@media (max-width: 720px) {
  .hero-full .title-block { bottom: clamp(80px, 14vw, 140px); }
  .hero-full .title-block h1 { font-size: clamp(40px, 11vw, 64px); max-width: 100%; }
  .hero-full .title-block .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: clamp(32px, 6vw, 48px);
    max-width: 360px;
  }
  .hero-full .title-block .cta,
  .hero-full .title-block .ghost-cta {
    display: block;
    text-align: center;
    padding: 16px 22px;
    border: 1px solid var(--bg);
    border-bottom: 1px solid var(--bg);
    border-radius: 2px;
    background: rgba(244,239,231,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 12px;
    letter-spacing: 0.22em;
  }
  .hero-full .title-block .ghost-cta {
    background: transparent;
    color: var(--bg);
  }
  .hero-full .title-block .cta { background: var(--bg); color: var(--ink); text-shadow: none; border-color: var(--bg); }
  .hero-full .title-block .cta:hover { background: rgba(244,239,231,0.85); }
}
.hero-full .scroll-hint {
  position: absolute; left: 50%; bottom: 22px;
  transform: translateX(-50%);
  color: rgba(244,239,231,0.85);
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: lowercase;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* Pagination dots */
.hero-pagination {
  position: absolute;
  bottom: 72px;
  left: var(--gutter);
  z-index: 4;
  display: flex; gap: 14px;
  pointer-events: auto;
}
.hero-dot {
  width: 36px; height: 2px;
  background: rgba(244,239,231,0.32);
  border: 0;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.hero-dot:hover { background: rgba(244,239,231,0.6); }
.hero-dot.active { background: rgba(244,239,231,0.32); }
.hero-dot.active::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(244,239,231,0.95);
  transform-origin: left;
  animation: dotFill 7s linear forwards;
}
@keyframes dotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Staggered text reveal on initial load */
.hero-full .title-block .eyebrow,
.hero-full .title-block h1,
.hero-full .title-block .cta-row {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-full .title-block .eyebrow { animation-delay: 0.4s; }
.hero-full .title-block h1       { animation-delay: 0.7s; }
.hero-full .title-block .cta-row { animation-delay: 1.3s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Per-word stagger on the main headline */
.hero-full .title-block h1 span,
.hero-full .title-block h1 em {
  display: inline-block;
}

@media (max-width: 700px) {
  .hero-pagination { bottom: 64px; left: var(--gutter); }
  .hero-dot { width: 28px; }
}
.hero-full .scroll-hint .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(244,239,231,0.6), transparent);
  position: relative; overflow: hidden;
}
.hero-full .scroll-hint .line::after {
  content: ""; position: absolute; top: -36px; left: 0; right: 0; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(244,239,231,0.85));
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -36px; }
  100% { top: 100%; }
}

/* On the hero-full page: lift the nav OVER the photo (absolute → fixed on scroll) */
body.has-hero-full .nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}
body.has-hero-full .nav .brand,
body.has-hero-full .nav a { color: var(--bg); }
body.has-hero-full .nav a:hover { color: rgba(244,239,231,0.72); }

/* Strong text-shadow on nav over the hero so links stay legible on bright photos */
body.has-hero-full:not(.scrolled) .nav a {
  text-shadow: 0 2px 14px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.4);
  font-weight: 600;
}
body.has-hero-full:not(.scrolled) .nav .brand img {
  filter: invert(100%) brightness(2) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

body.has-hero-full.scrolled .nav {
  position: fixed;
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(18px) saturate(120%);
  animation: navDrop .35s ease;
  border-bottom: 1px solid rgba(26,20,16,0.06);
}
body.has-hero-full.scrolled .nav .brand,
body.has-hero-full.scrolled .nav a { color: var(--ink); }
body.has-hero-full.scrolled .nav a:hover { color: var(--ink-soft); }
@keyframes navDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}


.hero-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  margin-bottom: clamp(60px, 9vw, 110px);
}
.hero-grid .frame {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.hero-grid .frame .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.hero-grid .frame:hover .img { transform: scale(1.04); filter: brightness(0.94); }

.hero-grid .frame.tall { aspect-ratio: 3/5; grid-row: span 1; margin-top: clamp(20px, 4vw, 56px); }
.hero-grid .frame.short { aspect-ratio: 4/3; }
.hero-grid .frame.mid { margin-top: clamp(40px, 6vw, 80px); }

.hero-title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-title h1 {
  font-family: var(--display);
  font-size: clamp(38px, 6.4vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-title h1 em { font-style: italic; }
.hero-title .lede {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--ink-soft);
}
.hero-title .cta {
  margin-top: 44px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  transition: color .25s ease, border-color .25s ease;
}
.hero-title .cta:hover { color: var(--ink-soft); border-color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid .frame.tall, .hero-grid .frame.mid { margin-top: 0; }
}

/* ====================================================================
   APPROACH / EDITORIAL BLOCK
   ==================================================================== */

.approach {
  padding: clamp(70px, 11vw, 160px) 0;
  text-align: center;
}
.approach .eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.approach h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}
.approach h2 .em { font-style: normal; color: var(--ink); }
.approach .quote-meta {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--ink-soft);
}
.approach .quote-meta a { border-bottom: 1px solid var(--ink-soft); padding-bottom: 2px; }

/* ====================================================================
   FEATURED IMAGE — full-bleed editorial
   ==================================================================== */

.feature-image {
  width: 100%;
  height: clamp(420px, 75vh, 760px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-image::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1200px 700px at 12% 95%,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 30%,
      transparent 65%);
  pointer-events: none;
}
.feature-image .caption {
  position: absolute;
  left: var(--gutter); bottom: 28px;
  color: rgba(244, 239, 231, 0.96);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
  z-index: 2;
}
.feature-image .caption small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  margin-bottom: 10px;
  opacity: 0.88;
}

/* ====================================================================
   SECTION HEAD — minimal centered
   ==================================================================== */

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.section-head h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.section-head h3 em { font-style: italic; }
.section-head .sub {
  margin-top: 22px;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ====================================================================
   GALLERIES — editorial grid
   ==================================================================== */

.galleries-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
  grid-auto-rows: 80px;
}
.gallery-card {
  position: relative; overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.gallery-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.gallery-card:hover .img { transform: scale(1.04); filter: brightness(0.92); }
.gallery-card .meta {
  position: absolute; left: 22px; bottom: 22px;
  color: var(--bg);
  z-index: 2;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.gallery-card .meta .place {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  opacity: 0.95;
  margin-bottom: 6px;
}
.gallery-card .meta .who {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.01em;
}
.gallery-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.42));
  pointer-events: none;
}

.gc1 { grid-column: 1 / 7;  grid-row: 1 / 7; }
.gc2 { grid-column: 7 / 13; grid-row: 1 / 5; }
.gc3 { grid-column: 7 / 10; grid-row: 5 / 9; }
.gc4 { grid-column: 10 / 13; grid-row: 5 / 9; }
.gc5 { grid-column: 1 / 5;  grid-row: 7 / 11; }
.gc6 { grid-column: 5 / 10; grid-row: 7 / 11; }
.gc7 { grid-column: 10 / 13; grid-row: 9 / 13; }
.gc8 { grid-column: 1 / 5;  grid-row: 11 / 14; }
.gc9 { grid-column: 5 / 10; grid-row: 11 / 14; }

@media (max-width: 1000px) {
  .galleries-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .galleries-grid .gallery-card { aspect-ratio: 4/5; }
  .galleries-grid .gallery-card[class] { grid-column: auto; grid-row: auto; }
}

/* ====================================================================
   PRESS / AS FEATURED IN
   ==================================================================== */

.press {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
}
.press-row .item {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .3s ease;
}
.press-row .item:hover { opacity: 1; }
.press-row .item.italic { font-style: italic; letter-spacing: 0.12em; text-transform: lowercase; font-size: 22px; }
.press-row .item.serif-cap { font-family: var(--display); font-weight: 400; letter-spacing: 0.18em; }

/* ====================================================================
   TRAVEL / DESTINATIONS
   ==================================================================== */

.travel-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.travel-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 90px;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 38px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.travel-row:hover { padding-left: 16px; padding-right: 16px; background: rgba(217, 208, 188, 0.12); }
.travel-row .city {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1;
  text-transform: lowercase;
}
.travel-row .city em { font-style: italic; font-weight: 300; }
.travel-row .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.travel-row .detail {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.travel-row .arrow {
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--ink);
  opacity: 0.8;
  transition: opacity .25s ease, transform .25s ease;
}
.travel-row:hover .arrow { opacity: 1; transform: translateX(4px); }

@media (max-width: 800px) {
  .travel-row { grid-template-columns: 1fr auto; }
  .travel-row .n, .travel-row .detail { display: none; }
}

/* ====================================================================
   INSTAGRAM
   ==================================================================== */

.insta {
  padding: clamp(80px, 11vw, 160px) 0;
  text-align: center;
}
.insta .handle {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-top: 12px;
  color: var(--ink);
  transition: color .25s ease;
}
.insta .handle:hover { color: var(--ink-soft); }
.insta .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 14px);
  margin-top: 56px;
}
.insta .cell {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.insta .cell .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.insta .cell:hover .img { transform: scale(1.06); filter: brightness(0.92); }
.insta .live-note {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.insta .live-note::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #6E8B5A;
  box-shadow: 0 0 0 0 rgba(110, 139, 90, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(110, 139, 90, 0); } 100% { box-shadow: 0 0 0 0 rgba(110, 139, 90, 0); } }

@media (max-width: 700px) { .insta .grid { grid-template-columns: repeat(3, 1fr); } }

/* ====================================================================
   FILMS — restrained, no theatrics
   ==================================================================== */

.films-section { padding: clamp(80px, 11vw, 160px) 0; border-top: 1px solid var(--line); }
.films-section .section-head { text-align: left; margin-bottom: 56px; }
.films-section .section-head h3 { font-size: clamp(38px, 5vw, 68px); }
.films-section .section-head .sub { margin-left: 0; max-width: 580px; }

.films-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px);
}
.film-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--ink);
}
.film-tile.feature { aspect-ratio: 4/5; }
.film-tile .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.film-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.film-tile:hover .img { transform: scale(1.03); filter: brightness(0.88); }
.film-tile .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border: 1px solid rgba(244, 239, 231, 0.5);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bg);
  font-size: 18px;
  padding-left: 4px;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.18);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  z-index: 2;
}
.film-tile:hover .play { background: rgba(244, 239, 231, 0.95); color: var(--ink); border-color: transparent; transform: translate(-50%,-50%) scale(1.06); }
.film-tile .meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: var(--bg);
  z-index: 2;
}
.film-tile .meta .label { color: rgba(244,239,231,0.82); font-size: 12px; font-weight: 500; letter-spacing: 0.26em; }
.film-tile .meta .t {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  margin-top: 8px;
}
.film-tile .meta .runtime { margin-top: 6px; font-size: 13px; font-weight: 500; letter-spacing: 0.2em; opacity: 0.78; text-transform: lowercase; }

@media (max-width: 800px) { .films-row { grid-template-columns: 1fr; } }

/* ====================================================================
   INQUIRY (clean inline form, not theatrical)
   ==================================================================== */

.inquiry { padding: clamp(80px, 11vw, 160px) 0; background: var(--bg-2); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.inquiry .lead .eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: lowercase; color: var(--ink-soft); margin-bottom: 24px; }
.inquiry .lead h3 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.inquiry .lead h3 em { font-style: italic; }
.inquiry .lead p {
  margin-top: 26px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 46ch;
}
.inquiry .lead .reach {
  margin-top: 38px;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.inquiry .lead .reach a:hover { color: var(--ink-soft); }
.inquiry .lead .reach small { font-family: var(--sans); font-style: normal; font-size: 12px; font-weight: 500; letter-spacing: 0.24em; text-transform: lowercase; color: var(--ink-mute); display: block; margin-top: 4px; }

.inquiry form { display: grid; gap: 22px; }
.inquiry form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.inquiry label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}
.inquiry input, .inquiry select, .inquiry textarea {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color .25s ease;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus { border-bottom-color: var(--ink); }
.inquiry textarea { resize: vertical; min-height: 80px; }
.inquiry button {
  margin-top: 12px;
  align-self: start;
  padding: 16px 32px;
  background: var(--ink); color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  font-weight: 600;
  transition: background .25s ease;
}
.inquiry button:hover { background: var(--accent); }

@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: 1fr; }
  .inquiry form .row { grid-template-columns: 1fr; }
}

/* ====================================================================
   FOOTER
   ==================================================================== */

.foot {
  padding: clamp(70px, 9vw, 120px) 0 28px;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.foot-brand .mark { line-height: 0; }
.foot-brand .mark img { height: 48px; width: auto; display: block; }
.foot-brand p {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 38ch;
}
.foot-col h5 {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
  font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; font-size: 15px; font-weight: 400; }
.foot-col li:empty { display: none; }
.foot-col li em { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--ink); }
.foot-col a { color: var(--ink); transition: color .25s ease; }
.foot-col a:hover { color: var(--ink-soft); }

.foot-script {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.foot-script .big { line-height: 0; }
.foot-script .big img {
  width: clamp(220px, 38vw, 540px);
  height: auto;
  display: inline-block;
  opacity: 0.92;
}
.foot-script .gurmukhi {
  display: inline-block;
  margin-top: 22px;
  font-family: "Tiro Gurmukhi", "Tiro Devanagari Hindi", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  opacity: 0.7;
}
.foot-script .sub {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

.foot-bar {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.foot-bar .socials { display: flex; gap: 22px; }
.foot-bar a { color: var(--ink-soft); }
.foot-bar a:hover { color: var(--ink); }

@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-top { grid-template-columns: 1fr; } }

/* ====================================================================
   INNER PAGE HERO (used on weddings, portfolio, etc.)
   ==================================================================== */

.page-hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
}
.page-hero .crumbs {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.page-hero .crumbs a { color: var(--ink-soft); }
.page-hero .crumbs .sep { margin: 0 10px; color: var(--ink-mute); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 124px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.005em;
}
.page-hero h1 em { font-style: italic; }
.page-hero .lede {
  margin-top: 30px;
  max-width: 660px;
  margin-left: auto; margin-right: auto;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ====================================================================
   FADE-IN
   ==================================================================== */

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ====================================================================
   PIC-TIME EMBED — live portfolio iframe
   ==================================================================== */
.pictime-wrap {
  width: 100%;
  position: relative;
  background: var(--bg-2);
  min-height: 80vh;
}
.pictime-wrap #pictimeIntegration {
  display: block;
  width: 100%;
  min-height: 80vh;
  border: 0;
}
.pictime-loading {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  font-family: var(--display); font-style: italic;
  font-size: 18px; color: var(--ink-soft);
  letter-spacing: 0.02em;
  z-index: 0;
}
.pictime-loading::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--ink-soft);
  margin-right: 14px; vertical-align: middle;
  animation: pictimeLine 1.6s ease-in-out infinite;
}
@keyframes pictimeLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Once iframe has loaded, the script resizes it — hide loader */
.pictime-wrap.loaded .pictime-loading { display: none; }

/* ====================================================================
   INNER PAGE — services detail (weddings page)
   ==================================================================== */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(50px, 7vw, 100px) 0;
  align-items: start;
  border-top: 1px solid var(--line);
}
.svc-detail:first-of-type { border-top: none; padding-top: 0; }
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
.svc-detail .photo {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  background-color: var(--bg-2);
}
.svc-detail .text .num {
  font-family: var(--display); font-style: italic;
  color: var(--ink-soft); font-size: 17px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.svc-detail .text h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.svc-detail .text h3 em { font-style: italic; }
.svc-detail .text p {
  margin-top: 22px;
  font-size: 17px; line-height: 1.75;
  color: var(--ink-soft);
}
.svc-detail .text ul {
  margin-top: 28px; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px;
}
.svc-detail .text li {
  font-size: 14px; padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  letter-spacing: 0.01em;
}
.svc-detail .text .from {
  margin-top: 32px;
  font-family: var(--display); font-style: italic;
  font-size: 22px;
}
.svc-detail .text .from b { color: var(--ink); font-style: normal; font-family: var(--sans); font-weight: 500; }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail.reverse { direction: ltr; }
  .svc-detail .text ul { grid-template-columns: 1fr; }
}

/* ====================================================================
   PROCESS — quiet four-step strip
   ==================================================================== */
.process { padding: clamp(80px, 11vw, 150px) 0; border-top: 1px solid var(--line); }
.process-head { max-width: 760px; margin-bottom: 56px; }
.process-head .eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.28em; text-transform: lowercase; color: var(--ink-soft); }
.process-head h3 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.005em;
}
.process-head h3 em { font-style: italic; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: none; }
.step .n {
  font-family: var(--display); font-style: italic;
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 20px; display: block;
  letter-spacing: 0.02em;
}
.step h4 {
  font-family: var(--display);
  font-size: 24px; font-weight: 300; line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line); }
  .step:nth-child(2) { border-right: none; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding-right: 0; }
}

/* ====================================================================
   ABOUT — split layouts + long-form
   ==================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(40px, 6vw, 100px) 0;
  align-items: start;
}
.about-grid .photo {
  aspect-ratio: 3/4; background-size: cover; background-position: center;
  background-color: var(--bg-2);
}
.about-grid .text h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.005em;
}
.about-grid .text h3 em { font-style: italic; }
.about-grid .text p {
  margin-top: 22px;
  font-size: 18px; line-height: 1.78;
  color: var(--ink-soft);
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-grid .text blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 1px solid var(--ink);
  font-family: var(--display); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: var(--ink);
}
@media (max-width: 900px) { .about-grid, .about-grid.reverse { grid-template-columns: 1fr; direction: ltr; } }

.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); color: var(--bg);
  padding: 72px clamp(32px, 5vw, 72px);
  margin: clamp(40px, 6vw, 80px) 0;
  gap: clamp(20px, 3vw, 40px);
}
.stat-strip .item { border-right: 1px solid rgba(244,239,231,0.18); padding-right: clamp(16px, 2.4vw, 28px); }
.stat-strip .item:last-child { border-right: none; }
.stat-strip .n {
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bg);
  display: block;
}
.stat-strip .n sup {
  font-size: 0.42em !important;
  vertical-align: 0.55em;
  font-weight: 400;
  color: rgba(244,239,231,0.65);
  margin-left: 3px;
  font-style: italic;
}
.stat-strip .l {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(244,239,231,0.78);
  margin-top: 22px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 40px 28px; }
  .stat-strip .item:nth-child(2) { border-right: none; }
}

.long-form { max-width: 720px; margin: 0 auto; padding: clamp(40px, 5vw, 80px) 0; }
.long-form p { font-size: 18px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 26px; }
.long-form p:first-of-type::first-letter {
  font-family: var(--display); font-style: italic;
  font-size: 64px; float: left;
  line-height: 0.9; padding: 6px 14px 0 0;
  color: var(--ink); font-weight: 300;
}
.long-form h3 {
  font-family: var(--display);
  font-size: 30px; font-weight: 300;
  margin: 44px 0 18px;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.long-form h3 em { font-style: italic; }
.long-form blockquote {
  border-left: 1px solid var(--ink);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--display); font-style: italic;
  font-size: 22px; line-height: 1.5;
  color: var(--ink);
}

/* ====================================================================
   PORTFOLIO — filter bar + larger gallery
   ==================================================================== */
.filter-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  margin: 0 0 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  justify-content: center;
}
.filter-bar button, .filter-bar a {
  padding: 11px 22px;
  border: none; background: transparent;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500; letter-spacing: 0.18em; text-transform: lowercase;
  color: var(--ink-soft);
  transition: color .25s ease;
  position: relative;
}
.filter-bar button:hover, .filter-bar a:hover { color: var(--ink); }
.filter-bar .active {
  color: var(--ink);
}
.filter-bar .active::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: -22px;
  height: 1px; background: var(--ink);
}

/* The new portfolio gallery uses a simple 3-column masonry feel */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.portfolio-grid .item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-2);
}
.portfolio-grid .item.tall { aspect-ratio: 3/5; }
.portfolio-grid .item.wide { grid-column: span 2; aspect-ratio: 8/5; }
.portfolio-grid .item .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.portfolio-grid .item:hover .img { transform: scale(1.04); filter: brightness(0.92); }
.portfolio-grid .item .cap {
  position: absolute; left: 18px; bottom: 16px;
  color: var(--bg);
  z-index: 2;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.portfolio-grid .item .cap .place {
  font-size: 12px; font-weight: 500; letter-spacing: 0.26em; text-transform: lowercase;
  opacity: 0.92; margin-bottom: 6px;
}
.portfolio-grid .item .cap .who {
  font-family: var(--display); font-style: italic;
  font-size: 22px; font-weight: 300;
}
.portfolio-grid .item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45));
  pointer-events: none;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid .item.wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .item.wide, .portfolio-grid .item.tall { grid-column: span 1; aspect-ratio: 4/5; }
}

/* ====================================================================
   PRICING — quiet plan cards
   ==================================================================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.plan {
  background: transparent;
  border: 1px solid var(--line);
  padding: 44px 36px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .3s ease, background .3s ease;
}
.plan:hover { border-color: var(--ink); background: var(--bg-2); }
.plan.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.plan.featured .price-meta, .plan.featured li, .plan.featured .sub { color: rgba(244,239,231,0.72); }
.plan.featured .price { color: var(--bg); }
.plan.featured li { border-color: rgba(244,239,231,0.16); }
.plan.featured .ribbon { display: inline-flex; }
.ribbon {
  display: none;
  position: absolute; top: -10px; left: 36px;
  background: var(--bg); color: var(--ink);
  padding: 5px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase;
  border: 1px solid var(--ink);
}
.plan h4 {
  font-family: var(--display);
  font-size: 30px; font-weight: 300; line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.plan h4 em { font-style: italic; }
.plan .sub {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 28px;
}
.plan .price-block { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan .price-cur { font-family: var(--display); font-size: 18px; color: var(--ink-soft); }
.plan .price {
  font-family: var(--display);
  font-size: 52px; font-weight: 300; line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.plan .price-meta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: lowercase;
  color: var(--ink-soft); margin-bottom: 32px;
}
.plan ul { list-style: none; flex: 1; }
.plan li {
  font-size: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}
.plan .btn {
  margin-top: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 22px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase;
  transition: opacity .25s ease;
}
.plan .btn:hover { opacity: 0.78; }
.plan.featured .btn { background: var(--bg); color: var(--ink); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px; font-weight: 300;
  letter-spacing: -0.005em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .toggle { color: var(--ink-soft); font-family: var(--sans); font-weight: 300; transition: transform .3s ease; }
.faq[open] summary .toggle { transform: rotate(45deg); }
.faq p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px; line-height: 1.75;
}

/* ====================================================================
   JOURNAL — featured + list
   ==================================================================== */
.featured-entry {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.featured-entry .photo {
  aspect-ratio: 5/4; background-size: cover; background-position: center;
  background-color: var(--bg-2);
}
.featured-entry .meta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.24em; text-transform: lowercase;
  color: var(--ink-soft); margin-bottom: 22px;
}
.featured-entry h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.005em;
}
.featured-entry h2 em { font-style: italic; }
.featured-entry p {
  margin-top: 22px;
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}
.featured-entry .more {
  margin-top: 28px; display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.26em; text-transform: lowercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 5px;
}
@media (max-width: 800px) { .featured-entry { grid-template-columns: 1fr; } }

.journal-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.entry {
  display: grid; grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .3s ease;
}
.entry:hover { padding-left: 12px; }
.entry .thumb {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: var(--bg-2);
}
.entry .body .meta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.24em; text-transform: lowercase;
  color: var(--ink-soft); margin-bottom: 16px;
}
.entry .body h4 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.005em;
}
.entry .body h4 em { font-style: italic; }
.entry .body p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px; max-width: 56ch; line-height: 1.7;
}
.entry .body .more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.26em; text-transform: lowercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}
@media (max-width: 700px) { .entry { grid-template-columns: 1fr; } }

/* Newsletter strip */
.newsletter {
  background: var(--ink); color: var(--bg);
  padding: clamp(70px, 10vw, 130px) 0;
  text-align: center;
}
.newsletter .eyebrow {
  color: rgba(244,239,231,0.7);
  font-size: 13px; font-weight: 500; letter-spacing: 0.28em; text-transform: lowercase;
}
.newsletter h3 {
  margin: 20px 0 22px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px); font-weight: 300; line-height: 1.04;
  letter-spacing: -0.005em;
}
.newsletter h3 em { font-style: italic; }
.newsletter p {
  color: rgba(244,239,231,0.75);
  font-size: 17px; line-height: 1.7;
  max-width: 52ch; margin: 0 auto 36px;
}
.newsletter form {
  max-width: 500px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
}
.newsletter input {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,239,231,0.4);
  color: var(--bg);
  font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(244,239,231,0.5); }
.newsletter button {
  padding: 14px 22px;
  background: var(--bg); color: var(--ink);
  font-size: 13px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase;
}

/* ====================================================================
   CONTACT — info + form
   ==================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(40px, 6vw, 90px) 0;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 56px); font-weight: 300;
  line-height: 1.04; letter-spacing: -0.005em;
  margin-bottom: 36px;
}
.contact-info h3 em { font-style: italic; }
.channel {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.channel .icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic;
  color: var(--ink);
}
.channel .label { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase; color: var(--ink-soft); }
.channel .value {
  font-family: var(--display); font-style: italic;
  font-size: 20px; margin-top: 4px;
}
.channel .value a:hover { color: var(--ink-soft); }

.contact-info .address {
  margin-top: 32px;
}
.contact-info .address .label { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase; color: var(--ink-soft); margin-bottom: 14px; }
.contact-info .address p {
  font-family: var(--display); font-style: italic;
  font-size: 20px; line-height: 1.4;
}

.map {
  height: 280px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin-top: 32px;
  position: relative; overflow: hidden;
}
.map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(27,24,20,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(27,24,20,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map .pin {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 16px; border-radius: 50% 50% 50% 0;
  background: var(--ink);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(27,24,20,0.1);
}
.map .pin-label {
  position: absolute; left: 50%; top: calc(50% + 14px);
  transform: translateX(-50%);
  background: var(--ink); color: var(--bg);
  padding: 9px 16px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.24em; text-transform: lowercase;
  white-space: nowrap;
}

.contact-form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-card h4 {
  font-family: var(--display);
  font-size: 28px; font-weight: 300;
  letter-spacing: -0.005em;
}
.contact-form-card h4 em { font-style: italic; }
.contact-form-card .sub {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--ink-soft);
  margin: 6px 0 30px;
}
.contact-form-card label {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: lowercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
  width: 100%; padding: 13px 0;
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--sans); font-size: 16px; font-weight: 400;
  margin-bottom: 24px; outline: none;
  transition: border-color .25s ease;
}
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { border-bottom-color: var(--ink); }
.contact-form-card textarea { resize: vertical; min-height: 90px; }
.contact-form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form-card button {
  margin-top: 10px;
  padding: 16px 28px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 600; letter-spacing: 0.24em; text-transform: lowercase;
  width: 100%;
}
.contact-form-card .footnote {
  margin-top: 18px;
  text-align: center;
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: lowercase;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card .row { grid-template-columns: 1fr; gap: 0; }
}
