/* ═══════════════════════════════════════════════════════════
   ChristinaM Photography — Main Stylesheet
   Brand: Cream #FDFBF7 · Charcoal #222B2F · Gold #B59E6B
═══════════════════════════════════════════════════════════ */

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

:root {
  --cream:   #FDFBF7;
  --cream-2: #F4EFE6;
  --charcoal:#222B2F;
  --char-dk: #111111;
  --gold:    #B59E6B;
  --gold-lt: #cdb98a;
  --white:   #ffffff;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;
  --ease:    cubic-bezier(.4,0,.2,1);
  --shadow:  0 8px 40px rgba(34,43,47,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: crosshair;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: crosshair; border: none; background: none; }

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold); }

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
}
.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--char-dk); border-color: var(--char-dk); }
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-full { width: 100%; text-align: center; }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: .5rem 2.5rem;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
#navbar.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 24px rgba(34,43,47,.08);
  padding: .25rem 2.5rem;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: height .4s var(--ease), filter .4s var(--ease);
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.35));
}
#navbar.scrolled .nav-logo img {
  height: 120px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
#navbar.scrolled .nav-link { color: var(--charcoal); }
#navbar.scrolled .nav-link:hover { color: var(--gold); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  letter-spacing: .14em;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background .3s;
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,.62) 0%,
    rgba(17,17,17,.35) 60%,
    rgba(17,17,17,.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(1.5rem, 8vw, 9rem);
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp .9s .3s var(--ease) both;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .9s .5s var(--ease) both;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

/* Each line */
.hero-line-1,
.hero-line-2 {
  display: block;
  line-height: 1;
}
.hero-line-2 {
  /* M line indented — creates the diagonal stagger */
  padding-left: clamp(2rem, 5vw, 4.5rem);
}

/* The big C and M initials */
.hero-initial {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.5rem, 10vw, 9rem);
  color: var(--gold);
  line-height: .85;
  display: inline-block;
  vertical-align: baseline;
  letter-spacing: -.02em;
}

/* "apturing" and "oments" — smaller, white */
.hero-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  color: var(--white);
  letter-spacing: .02em;
  vertical-align: baseline;
  margin-left: .05em;
}

/* Finish line — italic whisper */
.hero-finish {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  color: var(--gold-lt);
  letter-spacing: .04em;
  margin-top: .6rem;
  padding-left: clamp(2rem, 5vw, 4.5rem);
  opacity: .92;
}
.hero-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  animation: fadeSlideUp .9s .7s var(--ease) both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .9s .9s var(--ease) both;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .3s, transform .3s;
  cursor: crosshair;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 3;
  animation: fadeIn 1s 1.5s var(--ease) both;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.8s 1.8s var(--ease) infinite;
}
.hero-scroll-hint p {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════════════════
   PORTFOLIO / MASONRY
══════════════════════════════════════════════════════════ */
#portfolio {
  padding: 7rem 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}
.section-header .gold-rule { margin: 1.5rem auto 0; }

/* CSS Masonry via grid */
.masonry-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}

/* Standard cells */
.masonry-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.masonry-item img {
  transition: transform .7s var(--ease);
}
.masonry-item:hover img { transform: scale(1.05); }

/* Hover overlay */
.masonry-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry-item:hover .masonry-hover { opacity: 1; }
.masonry-hover span {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* Grid sizing */
.masonry-item.standard {
  grid-column: span 4;
  grid-row: span 3;
}
.masonry-item.featured {
  grid-column: span 4;
  grid-row: span 5;
}
.masonry-item.wide {
  grid-column: span 12;
  grid-row: span 3;
}

/* ── Logo tile ── */
.masonry-item.masonry-logo-tile {
  grid-column: span 4;
  grid-row: span 3;
  background: var(--cream);
  border: 1px solid rgba(181,158,107,.18);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item.masonry-logo-tile:hover img { transform: none; }
.masonry-item.masonry-logo-tile .masonry-hover { display: none; }

.logo-tile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
}
.logo-tile-img {
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  /* Transparent PNG — no blend mode needed */
}
.logo-tile-tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(34,43,47,.45);
  line-height: 1.8;
}

/* On mobile, hide the logo tile to keep grid clean */
@media (max-width: 768px) {
  .masonry-item.masonry-logo-tile {
    display: none;
  }
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ══════════════════════════════════════════════════════════
   STATEMENT DIVIDER
══════════════════════════════════════════════════════════ */
.statement-divider {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,.52);
}
.statement-quote {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  max-width: 720px;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════════════════ */
#philosophy {
  background: var(--char-dk);
  padding: 8rem 0;
}
#philosophy .section-eyebrow { color: var(--gold); }
#philosophy .section-title { color: var(--white); }

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.philosophy-text .gold-rule { margin: 1.5rem 0 2rem; }
.philosophy-text .btn { margin-top: .5rem; }

.philosophy-image {
  position: relative;
}
.philosophy-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.philosophy-image-accent {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: .5;
}

/* ══════════════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════════════ */
#packages {
  padding: 8rem 0;
  background: var(--cream);
}
.packages-intro {
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: .05em;
  color: rgba(34,43,47,.65);
  margin-top: .5rem;
}

.packages-grid {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 1px solid rgba(181,158,107,.2);
  padding: 3rem 2.25rem;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .35s;
}
.package-card:hover::before { background: var(--gold); }
.package-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.package-card.featured-card {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-8px);
}
.package-card.featured-card::before { background: var(--gold); }
.package-card.featured-card .package-name,
.package-card.featured-card .price-amount { color: var(--white); }
.package-card.featured-card .price-from { color: rgba(255,255,255,.6); }
.package-card.featured-card .package-features li { color: rgba(255,255,255,.8); }
.package-card.featured-card .package-features li i { color: var(--gold); }
.package-card.featured-card:hover { box-shadow: 0 16px 48px rgba(17,17,17,.35); }

.package-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.package-eyebrow {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.package-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}
.package-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(181,158,107,.2);
}
.price-from {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(34,43,47,.5);
  margin-bottom: .25rem;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.package-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  letter-spacing: .03em;
  color: rgba(34,43,47,.75);
  line-height: 1.4;
}
.package-features li i {
  font-size: .75rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════════════════════════ */
#service-area {
  background: var(--char-dk);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
#service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(181,158,107,.06) 0%, transparent 65%);
  pointer-events: none;
}

.service-area-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* Text column */
#service-area .section-eyebrow { color: var(--gold); }
#service-area .section-title   { color: var(--white); }
#service-area .gold-rule       { margin: 1.5rem 0 2rem; }

.service-body {
  font-size: .95rem;
  line-height: 1.9;
  color: rgba(255,255,255,.62);
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
}

/* Legend */
.service-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(181,158,107,.15);
  background: rgba(255,255,255,.03);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.gold  { background: var(--gold); box-shadow: 0 0 10px rgba(181,158,107,.5); }
.legend-dot.white { background: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.5); }
.legend-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.legend-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
}
.legend-desc {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
}

/* Region lists */
.service-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.region-heading {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.region-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.region-group ul li {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  padding-left: .85rem;
  position: relative;
}
.region-group ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

/* Map wrap */
.service-map-wrap {
  position: sticky;
  top: 6rem;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a2028;
  overflow: hidden;
  border: 1px solid rgba(181,158,107,.2);
}

/* OSM tile background */
.map-tile-bg {
  position: absolute;
  inset: 0;
  background-image:
    /* Subtle grid lines to suggest map tiles */
    linear-gradient(rgba(181,158,107,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,158,107,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

#serviceMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Center pin */
.map-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.pin-pulse {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181,158,107,.2);
  animation: pinPulse 2.4s ease-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 16px rgba(181,158,107,.7);
  position: relative;
  z-index: 2;
}
.pin-label {
  margin-top: .6rem;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(17,17,17,.75);
  padding: .25rem .65rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(181,158,107,.3);
}

.map-note {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.map-note i { color: var(--gold); font-size: .65rem; }

/* Map animations */
@keyframes pinPulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(3.5); opacity: 0;  }
}

/* Responsive */
@media (max-width: 1024px) {
  .service-area-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .service-map-wrap { position: static; }
}
@media (max-width: 600px) {
  .service-regions { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   INSTAGRAM STRIP
══════════════════════════════════════════════════════════ */
#instagram-strip {
  background: var(--cream-2);
  border-top: 1px solid rgba(181,158,107,.15);
  border-bottom: 1px solid rgba(181,158,107,.15);
  padding: 3rem 0;
}
.ig-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ig-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ig-icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.ig-inner:hover .ig-icon { transform: scale(1.1); }
.ig-handle {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: .02em;
  margin-bottom: .25rem;
}
.ig-invite {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(34,43,47,.55);
  max-width: 520px;
  line-height: 1.7;
}
.ig-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .ig-inner { flex-direction: column; align-items: flex-start; }
  .ig-btn { align-self: stretch; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   BOOKING
══════════════════════════════════════════════════════════ */
#booking {
  background: var(--char-dk);
  padding: 8rem 0;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.section-eyebrow.light { color: var(--gold); }
.section-title.light { color: var(--white); }
#booking .gold-rule { margin: 1.5rem 0 2rem; }

.booking-body {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
}
.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  letter-spacing: .04em;
  transition: color .3s;
}
.contact-item:hover { color: var(--gold); }
.contact-item i {
  width: 18px;
  color: var(--gold);
  font-size: .95rem;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: .75rem 0;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .03em;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: -.5rem;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem;
  background: rgba(181,158,107,.12);
  border: 1px solid rgba(181,158,107,.3);
  text-align: center;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.5rem; color: var(--gold); }
.form-success p { font-size: .88rem; color: rgba(255,255,255,.8); letter-spacing: .04em; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--cream);
  border-top: 1px solid rgba(181,158,107,.2);
  padding: 3.5rem 0 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.footer-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(34,43,47,.4);
  margin-top: .5rem;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(34,43,47,.5);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  color: rgba(34,43,47,.4);
  font-size: 1.1rem;
  transition: color .3s, transform .3s;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-copy {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .1em;
  color: rgba(34,43,47,.3);
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,.97);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}
.lightbox-backdrop.open { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-stage {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img {
  max-width: 88vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(181,158,107,.3);
  transition: opacity .35s var(--ease);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: color .3s;
  padding: .75rem;
  z-index: 1002;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: .85rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
  z-index: 1002;
}

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .philosophy-inner,
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-image { display: none; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; }
  .package-card.featured-card { transform: none; }
}

@media (max-width: 768px) {
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: .75rem 1.5rem; }

  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--white); }
  #navbar.scrolled .nav-toggle span { background: var(--charcoal); }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    transition: right .4s var(--ease);
    box-shadow: -8px 0 32px rgba(17,17,17,.12);
    z-index: 950;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--charcoal); font-size: .9rem; }
  .nav-link.nav-cta { color: var(--white) !important; }

  .hero-content { padding: 0 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }

  /* Masonry — 2 cols on mobile */
  .masonry-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 6px;
  }
  .masonry-item.featured,
  .masonry-item.standard { grid-column: span 3; grid-row: span 3; }
  .masonry-item.wide { grid-column: span 6; grid-row: span 2; }

  .statement-divider { background-attachment: scroll; height: 340px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-inner { padding: 0 1.5rem; }

  .footer-nav { gap: 1.25rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

@media (max-width: 480px) {
  .masonry-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; }
  .masonry-item.featured,
  .masonry-item.standard { grid-column: span 2; grid-row: span 3; }
  .masonry-item.wide { grid-column: span 4; grid-row: span 2; }
}
