/* ============================================================
   Home page + shared section styles
   ============================================================ */

/* ---------- Placeholder extras ---------- */
.ph-cap-bottom {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  font-family: 'Courier New', monospace; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.3); padding: 5px 9px;
  background: rgba(0,0,0,.18); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.ph.cinematic .play {
  border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.12);
}
.ph.cinematic .play::before { border-left-color: #fff; }

/* ---------- Shared section heads ---------- */
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.sec-head-center { text-align: center; max-width: 760px; margin-inline: auto; }
.sec-head-action { padding-bottom: 10px; }

/* ============================================================
   HERO — full-bleed
   ============================================================ */
.hero { position: relative; }
.hero-full {
  min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 50%, rgba(0,0,0,.62) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(64px, 11vh, 132px); padding-top: 120px; }
.hero-eyebrow { margin-bottom: 26px; }
.hero-h { max-width: 16ch; }
.hero-full .hero-h .hl { display: inline; }
.hero-sub {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; max-width: 46ch;
  margin: 30px 0 38px; color: rgba(255,255,255,.92);
}
.hero-full .hero-sub { color: rgba(255,255,255,.92); }
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero-scroll i { width: 1px; height: 44px; background: linear-gradient(rgba(255,255,255,.7), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll i { animation: none; } }

/* ---------- HERO — split ---------- */
.hero-split { min-height: 100svh; display: flex; align-items: center; padding-top: 92px; }
.hero-split-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.hero-split-text .eyebrow { margin-bottom: 26px; }
.hero-split .hero-h { font-size: clamp(46px, 6.6vw, 104px); }
.hero-split .hero-sub { max-width: 40ch; margin: 28px 0 36px; }
.hero-split-media { aspect-ratio: 4 / 5; }
.hero-split-ph { width: 100%; height: 100%; }

/* ---------- HERO — centered ---------- */
.hero-centered { min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  gap: clamp(40px, 6vw, 72px); padding-top: 120px; padding-bottom: clamp(40px, 6vw, 72px); }
.hero-centered-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.hero-centered .eyebrow { margin-bottom: 4px; }
.hero-centered .hero-h { font-size: clamp(46px, 8.4vw, 130px); max-width: 14ch; }
.hero-centered .hero-sub { max-width: 52ch; margin: 8px 0 12px; }
.hero-centered-strip { width: 100%; aspect-ratio: 21 / 9; }

/* ============================================================
   Intro / manifesto
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: clamp(28px, 5vw, 80px); }
.intro-left .eyebrow { position: sticky; top: 120px; }
.intro-lede { margin: 0 0 28px; max-width: 28ch; }
.intro-body { max-width: 56ch; }

/* ============================================================
   Services
   ============================================================ */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 0.85fr 1fr auto; align-items: baseline;
  gap: clamp(20px, 4vw, 64px); padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line); position: relative;
  transition: background .5s var(--ease);
}
.service-row:hover { background: color-mix(in oklab, var(--accent-soft), transparent 30%); }
.service-name { font-size: clamp(26px, 3.4vw, 46px); }
.service-desc { max-width: 52ch; margin: 0; }
.service-link { align-self: center; background: none; border: 0; cursor: pointer; padding: 0; }
.sun-disc {
  position: relative; display: block; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--accent), var(--line) 45%);
  transition: border-color .6s var(--ease), background .6s var(--ease), transform .7s var(--ease), box-shadow .7s var(--ease);
}
/* inner sun */
.sun-disc::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  transition: width .6s var(--ease), height .6s var(--ease);
}
/* halo ripple — a bordered ring that expands & fades on hover */
.sun-disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0; transform: scale(1);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.service-row:hover .sun-disc {
  border-color: var(--accent); transform: translateY(-3px);
  background: var(--accent-soft);
}
.service-row:hover .sun-disc::before { width: 20px; height: 20px; }
.service-row:hover .sun-disc::after { opacity: .55; transform: scale(1.5); }

/* ============================================================
   Featured stories grid
   ============================================================ */
.featured-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}
.featured-card { grid-column: span 6; }
.featured-card.span-tall { grid-column: span 5; grid-row: span 2; }
.featured-card.span-wide { grid-column: span 7; }
.featured-card.span-reg { grid-column: span 6; }

.story-card { display: block; width: 100%; background: none; border: 0; cursor: pointer;
  text-align: left; padding: 0; }
.story-card-ph { width: 100%; aspect-ratio: 3 / 2; transition: transform 1.1s var(--ease); }
.span-tall .story-card-ph { aspect-ratio: 3 / 4; height: 100%; }
.story-card:hover .story-card-ph { transform: scale(1.012); }
.story-card-meta { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; padding: 18px 2px 0; }
.story-kind { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); font-weight: 500; }
.story-couple { font-size: clamp(22px, 2.4vw, 32px); margin-top: 8px; line-height: 1; }
.story-venue { font-family: var(--font-sans); font-size: 13px; color: var(--muted);
  text-align: right; white-space: nowrap; padding-bottom: 4px; }

/* ============================================================
   Process
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.process-card { display: flex; flex-direction: column; align-items: flex-start; }
.process-no { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 500; }
.process-line { width: 100%; margin: 18px 0 22px; }
.process-name { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 14px; }
.process-desc { font-size: 15px; margin: 0; }

/* ============================================================
   Locations
   ============================================================ */
.locations-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.locations-title { margin: 18px 0 36px; max-width: 12ch; }
.locations-media { margin-top: 8px; }
.locations-ph { width: 100%; aspect-ratio: 4 / 3; }
.locations-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.location-item { display: flex; align-items: baseline; gap: 22px; padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid var(--line); transition: padding-left .5s var(--ease); }
.location-item:hover { padding-left: 12px; }
.location-idx { font-family: var(--font-sans); font-size: 18px; color: var(--accent);
  font-weight: 400; line-height: 1; }
.location-name { font-family: var(--font-display); font-weight: var(--disp-weight, 500);
  font-size: clamp(22px, 2.6vw, 36px); }

/* ============================================================
   Quote
   ============================================================ */
.quote-sec { color: var(--bg); }
.quote-inner { text-align: center; max-width: 980px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.quote-mark { font-family: var(--font-display); font-size: 96px; line-height: 1;
  color: var(--accent); margin-bottom: 8px; }
.quote-text { font-size: clamp(28px, 4vw, 56px); line-height: 1.22; font-weight: 400;
  color: var(--bg); margin: 0 0 40px; }
.quote-who { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.quote-name { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bg); }
.quote-where { font-family: var(--font-sans); font-size: 13px; color: color-mix(in oklab, var(--bg), transparent 45%); }

/* ============================================================
   CTA band
   ============================================================ */
.ctaband-sec { border-top: 1px solid var(--line); }
.ctaband-inner { text-align: center; max-width: 760px; margin-inline: auto; display: flex;
  flex-direction: column; align-items: center; gap: 24px; }
.ctaband-title { font-size: clamp(40px, 6vw, 88px); }
.ctaband-sub { max-width: 50ch; color: var(--muted); margin: 0; }
.ctaband-inner .btn { margin-top: 12px; }

/* ============================================================
   Responsive — home
   ============================================================ */
@media (max-width: 1000px) {
  .featured-card, .featured-card.span-tall, .featured-card.span-wide, .featured-card.span-reg {
    grid-column: span 6; grid-row: auto; }
  .span-tall .story-card-ph { aspect-ratio: 3 / 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-split-media { aspect-ratio: 16 / 11; order: -1; }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro-left .eyebrow { position: static; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-link { display: none; }
  .locations-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card, .featured-card.span-tall, .featured-card.span-wide, .featured-card.span-reg { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-cta { gap: 18px; }
}
