/* =============================================================
   Cora Vance — editorial photographer portfolio
   Warm tonal palette, magazine-style typography
   ============================================================= */

:root {
  --ivory: #F5F0E8;
  --ivory-deep: #ECE4D6;
  --ink: #1A1614;
  --ink-soft: #3A3530;
  --ink-mute: #6B635A;
  --terracotta: #C66B3F;
  --terracotta-deep: #A85530;
  --sage: #4A5A3F;
  --sage-deep: #2F3A28;
  --line: rgba(26, 22, 20, 0.12);
  --line-strong: rgba(26, 22, 20, 0.32);

  --serif: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--terracotta); color: var(--ivory); }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
}

.kicker--ink { color: var(--ink-mute); }

.display-xl {
  font-size: clamp(48px, 9vw, 144px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.015em;
}

.italic-accent {
  font-style: italic;
  color: var(--terracotta);
}

p { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.7; }

/* =============================================================
   LAYOUT
   ============================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header--transparent {
  background: transparent;
  color: var(--ivory);
}

.site-header--solid {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 16px var(--pad-x);
  border-bottom-color: var(--line);
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.logo .logo-mark {
  display: inline-block;
  margin-right: 4px;
  font-style: italic;
  color: var(--terracotta);
}

.site-header--transparent .logo .logo-mark { color: var(--ivory); opacity: 0.85; }

.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease);
}
.nav a:hover { opacity: 0.65; }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 18px !important;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.site-header--solid .nav-cta:hover { background: var(--ink); color: var(--ivory); opacity: 1; }
.site-header--transparent .nav-cta:hover { background: var(--ivory); color: var(--ink); opacity: 1; }

.burger {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 110;
}
.burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.3s var(--ease), opacity 0.2s;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 16px; }
.burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
  }
  .nav a { font-size: 16px; }
  .nav.is-open { transform: translateY(0); }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover { background: var(--terracotta); transform: translateY(-1px); }

.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.btn--light {
  border: 1px solid var(--ivory);
  color: var(--ivory);
}
.btn--light:hover { background: var(--ivory); color: var(--ink); }

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

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad-x) clamp(48px, 8vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__kicker {
  color: var(--ivory);
  opacity: 0.85;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--ivory);
  font-weight: 200;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  color: var(--ivory);
  opacity: 0.92;
  max-width: 600px;
  margin-bottom: 48px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll::before {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--ivory);
  opacity: 0.6;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-hero__title { margin: 16px 0 20px; }
.page-hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--ink-mute);
  max-width: 720px;
}

/* =============================================================
   SECTION HEADERS
   ============================================================= */
.section-head {
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 720px;
}
.section-head .kicker { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-mute);
}

/* =============================================================
   FEATURED EDITORIAL GRID (home)
   ============================================================= */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.featured-item {
  position: relative;
  overflow: hidden;
  background: var(--ivory-deep);
}
.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.featured-item:hover img { transform: scale(1.04); }

.featured-item__caption {
  position: absolute;
  left: 20px; bottom: 20px;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.featured-item:hover .featured-item__caption {
  opacity: 1;
  transform: translateY(0);
}
.featured-item__caption .cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 4px;
}
.featured-item__caption .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}

/* Editorial layout: 6 photos, mix of sizes */
.featured-item--1 { grid-column: span 7; aspect-ratio: 4/5; }
.featured-item--2 { grid-column: span 5; aspect-ratio: 3/4; align-self: end; }
.featured-item--3 { grid-column: span 5; aspect-ratio: 4/5; }
.featured-item--4 { grid-column: span 7; aspect-ratio: 5/4; }
.featured-item--5 { grid-column: span 6; aspect-ratio: 4/3; }
.featured-item--6 { grid-column: span 6; aspect-ratio: 4/3; }

@media (max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
}

/* =============================================================
   ABOUT TEASER (home)
   ============================================================= */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-teaser__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-deep);
}
.about-teaser__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.about-teaser__img:hover img { transform: scale(1.03); }

.about-teaser__body h2 { margin: 16px 0 24px; }
.about-teaser__body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

@media (max-width: 760px) {
  .about-teaser { grid-template-columns: 1fr; }
}

/* =============================================================
   PRESS LOGOS
   ============================================================= */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}
.press .kicker { display: block; margin-bottom: 28px; }
.press__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
}
.press__logo {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.press__logo:hover { opacity: 1; color: var(--ink); }

/* =============================================================
   TESTIMONIAL FEATURE
   ============================================================= */
.testimonial-feature {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
}
.testimonial-feature__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--ink);
}
.testimonial-feature__quote::before { content: "\201C"; color: var(--terracotta); }
.testimonial-feature__quote::after { content: "\201D"; color: var(--terracotta); }

.testimonial-feature__author {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.testimonial-feature__author strong { color: var(--ink); font-weight: 600; }

/* =============================================================
   HOME CTA STRIP
   ============================================================= */
.home-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
}
.home-cta .kicker { color: var(--terracotta); }
.home-cta h2 {
  color: var(--ivory);
  margin: 16px 0 20px;
  font-weight: 200;
}
.home-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--ivory);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* =============================================================
   GALLERY (filter + masonry)
   ============================================================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.is-active {
  background: var(--ink);
  color: var(--ivory);
}

.masonry {
  column-count: 3;
  column-gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 1000px) { .masonry { column-count: 2; } }
@media (max-width: 600px) { .masonry { column-count: 1; } }

.masonry__item {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory-deep);
  opacity: 1;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.masonry__item.is-hidden {
  display: none;
}
.masonry__item img {
  width: 100%;
  transition: transform 1.2s var(--ease-out), filter 0.4s var(--ease);
}
.masonry__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item:hover::after { opacity: 1; }

.masonry__caption {
  position: absolute;
  left: 16px; bottom: 16px;
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.masonry__item:hover .masonry__caption {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.lightbox.is-open {
  display: flex;
  animation: fade-in 0.3s var(--ease);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s var(--ease);
  backdrop-filter: blur(6px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.about-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-deep);
  position: sticky;
  top: 100px;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-bio p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.about-bio p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--terracotta);
  font-weight: 400;
}

.credentials {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.credentials h3 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 24px;
}
.credentials ul { list-style: none; }
.credentials li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.credentials li::before {
  content: "—";
  color: var(--terracotta);
  font-weight: 300;
}

.languages {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.language-chip {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Process section */
.process {
  background: var(--ivory-deep);
  padding: clamp(80px, 12vw, 140px) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 56px;
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
}
.process-step__num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 14px;
}
.process-step p { font-size: 15px; color: var(--ink-soft); }

/* =============================================================
   PRICING
   ============================================================= */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
@media (max-width: 1000px) { .packages { grid-template-columns: 1fr; } }

.pkg {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(26,22,20,0.08); }

.pkg--featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  position: relative;
}
.pkg--featured h3,
.pkg--featured .pkg__price { color: var(--ivory); }

.pkg--featured::before {
  content: "Most booked";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.pkg__name { font-size: clamp(24px, 2.4vw, 36px); margin-bottom: 4px; }
.pkg__duration {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.pkg__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 12px;
}
.pkg__blurb {
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-mute);
}
.pkg--featured .pkg__blurb { color: rgba(245,240,232,0.75); border-color: rgba(245,240,232,0.18); }

.pkg__includes { list-style: none; margin-bottom: 36px; flex: 1; }
.pkg__includes li {
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pkg__includes li::before {
  content: "✓";
  color: var(--terracotta);
  font-size: 14px;
  margin-top: 1px;
}
.pkg--featured .pkg__includes li::before { color: var(--terracotta); }

.pkg .btn { align-self: stretch; justify-content: center; }

/* Elopement banner */
.elopement {
  margin-top: clamp(60px, 10vw, 120px);
  padding: clamp(48px, 8vw, 100px);
  background: var(--sage);
  color: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 800px) { .elopement { grid-template-columns: 1fr; } }
.elopement .kicker { color: var(--terracotta); }
.elopement h2 { color: var(--ivory); margin: 12px 0 24px; }
.elopement p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: rgba(245,240,232,0.92);
}

/* FAQ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 300;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--terracotta); }
.faq-q__icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-q__icon::before,
.faq-q__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq-q__icon::before { transform: translate(-50%, -50%); }
.faq-q__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-q__icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a__inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
}
.faq-item.is-open .faq-a { max-height: 400px; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-title {
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; padding: 14px 0; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.field.field--error input,
.field.field--error select,
.field.field--error textarea { border-bottom-color: var(--terracotta-deep); }
.field__error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: var(--terracotta-deep);
}
.field.field--error .field__error { display: block; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.form-status.is-success { display: block; background: var(--sage); color: var(--ivory); }
.form-status.is-error { display: block; background: rgba(198,107,63,0.15); color: var(--terracotta-deep); border: 1px solid var(--terracotta); }

.contact-sidebar { padding-top: 8px; }
.contact-sidebar h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-detail {
  margin-bottom: 28px;
}
.contact-detail__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.contact-detail__value {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
}
.contact-detail__value a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease);
}
.contact-detail__value a:hover { border-bottom-color: var(--terracotta); color: var(--terracotta); }

.availability {
  background: var(--ivory-deep);
  padding: 24px;
  border-left: 3px solid var(--terracotta);
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.social-links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.social-links a {
  font-size: 14px;
  padding: 4px 0;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.social-links a:hover { color: var(--terracotta); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 32px;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,232,0.12);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand h3 {
  color: var(--ivory);
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 12px;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245,240,232,0.7);
}

.footer-col h4 {
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245,240,232,0.78);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.04em;
}

/* =============================================================
   REVEAL ON SCROLL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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