/* ════════════════════════════════════════════════════
   BODREAM WEDDING — style.css
   Brand palette (extracted from bodreamlogo.webp):
     --brown:      #5C4033  (BODREAM yazısı)
     --brown-dark: #3E2820  (koyu varyant)
     --gold:       #B08A3E  (WEDDING altın)
     --gold-light: #CBA456  (açık altın)
     --cream:      #F5F0E8  (logo arka planı)
     --cream-dark: #EAE3D8
     --white:      #FFFFFF
   ════════════════════════════════════════════════════ */

/* ─── ZAPF HUMANIST 601 BT (Brand Font) ─────────────── */
@font-face {
  font-family: 'ZapfHumanist';
  src: url('zapf-humanist-601-bt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Brand Colors */
  --bordeaux: #531418;
  --bordeaux-dark: #3a0d10;
  --gold: #B08A3E;
  --gold-light: #CBA456;
  --cream: #F5F0E8;
  --cream-dark: #EAE3D8;
  --dark: #2A1A10;
  --white: #FFFFFF;
  --text-on-cream: #3C2A1E;
  --text-muted: #7A6858;
  /* Typography */
  --font-heading: 'ZapfHumanist', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --img-radius: 0px;
  --radius: 48px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --reveal-dur: 0.8s;
}

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

body {
  background: #0d0305;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Sinematik Grain Overlay (Safari Safe) */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('photos/noise.webp') repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 80; /* Logo ve Navigasyonun (100+) arkasında kalsın */
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--img-radius);
}

/* ─── UTILITY ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.section-eyebrow.light {
  color: var(--gold-light);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 1.25rem;
  justify-content: center;
}
.section-divider.left { justify-content: flex-start; }
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-divider span { color: var(--gold); font-size: 0.65rem; }
.section-divider.left::before { display: none; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-desc {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240, 235, 227, 0.5);
}
.btn-outline:hover {
  background: rgba(240, 235, 227, 0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-bordeaux {
  background: var(--bordeaux);
  color: var(--gold);
  border-color: var(--bordeaux);
}
.btn-bordeaux:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(94, 15, 23, 0.35);
}
.btn-outline-dark {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-outline-dark:hover {
  background: var(--bordeaux);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn.full-width { width: 100%; text-align: center; }

/* ─── REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--reveal-dur, 0.8s) ease, transform var(--reveal-dur, 0.8s) ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease;
}
#navbar.scrolled {
  background: rgba(40, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 154, 98, 0.12);
  padding: 1rem 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s, height 0.4s;
}

#navbar.scrolled .nav-logo-img {
  height: 30px;
}


.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Overlay Menu */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bordeaux-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.overlay-menu.open {
  opacity: 1;
  pointer-events: all;
}
.overlay-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.overlay-close:hover { opacity: 0.6; }

.overlay-links {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}
.overlay-links li {
  margin: 0.25rem 0;
  overflow: hidden;
}
.overlay-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.3s ease, transform 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
}
.overlay-menu.open .overlay-link {
  transform: translateY(0);
  opacity: 1;
}
.overlay-links li:nth-child(1) .overlay-link { transition-delay: 0.1s; }
.overlay-links li:nth-child(2) .overlay-link { transition-delay: 0.17s; }
.overlay-links li:nth-child(3) .overlay-link { transition-delay: 0.24s; }
.overlay-links li:nth-child(4) .overlay-link { transition-delay: 0.31s; }
.overlay-links li:nth-child(5) .overlay-link { transition-delay: 0.38s; }
.overlay-links li:nth-child(6) .overlay-link { transition-delay: 0.45s; }
.overlay-link:hover { color: var(--gold); }

.overlay-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 1rem 3rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.overlay-cta:hover { background: rgba(184,154,98,0.15); }

.overlay-social { display: flex; gap: 2rem; }
.overlay-social a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.overlay-social a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
  clip-path: inset(0 0 0 0 round 0 0 2.5rem 2.5rem);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08) translate(1%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 10, 13, 0.45) 0%,
    rgba(26, 10, 13, 0.25) 50%,
    rgba(26, 10, 13, 0.7) 100%
  );
}

/* ── Film Grain Canvas ── */
#grain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: heroFadeIn 1.5s ease 0.3s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: cineReveal 0.7s ease forwards 0.1s;
}

/* ─ Cinematic word-by-word hero reveal ─ */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin: 0 0 1.2rem;
  line-height: 1.08;
}
.cine-word {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: cineReveal 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.cine-word .hero-script {
  font-family: var(--font-script);
  font-size: 1.55em;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1;
}
.w1 { animation-delay: 0.3s; }
.w2 { animation-delay: 1.2s; }
.w3 { animation-delay: 2.1s; }
.w4 { animation-delay: 3.0s; }

@keyframes cineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(240, 235, 227, 0.75);
  margin-bottom: 3rem;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: cineReveal 0.7s ease forwards 3.8s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: cineReveal 0.7s ease forwards 4.4s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1; transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════════════════ */
.intro-strip {
  position: relative;
  background: var(--bordeaux);
  padding: 1.6rem 0;
  margin-top: 0;
  z-index: 2;
  overflow: hidden;
}

/* Seamsiz kayar yazı — iki blok yöntemi */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  will-change: transform;
}

/* Her biri içeriğin bir kopyası — toplam = 2x genişlik */
.marquee-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.marquee-content span {
  padding: 0 1.2rem;
}

.marquee-content .dot {
  font-size: 0.38rem;
  opacity: 0.45;
  padding: 0;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 4rem 2rem 6rem;
  border-radius: 2.5rem 2.5rem 0 0;
  margin-top: 0;
  position: relative;
  z-index: 3;
}
.gallery-section .section-eyebrow { color: var(--bordeaux); }
.gallery-section .section-divider span { color: var(--bordeaux); }
.gallery-section .section-divider::before,
.gallery-section .section-divider::after { background: var(--bordeaux); }

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.masonry-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

.masonry-item img {
  transition: transform 0.7s ease, filter 0.4s ease;
}
.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26, 10, 13, 0.7), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.masonry-item:hover .img-overlay {
  opacity: 1;
  transform: translateY(0);
}
.img-overlay span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.gallery-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features-section {
  position: relative;
  background: var(--bordeaux-dark);
  padding: 7rem 2rem;
  overflow: hidden;
}
.features-section .section-divider span { color: var(--gold); }
.features-section .section-divider::before,
.features-section .section-divider::after { background: var(--gold); }

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(184, 154, 98, 0.2);
}
.feature-word {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.feature-card p {
  font-size: 0.875rem;
  color: rgba(240, 235, 227, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STORIES
═══════════════════════════════════════════════════════ */
.stories-section {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 7rem 2rem;
}
.stories-section .section-eyebrow { color: var(--bordeaux); }
.stories-section .section-divider span { color: var(--bordeaux); }
.stories-section .section-divider::before,
.stories-section .section-divider::after { background: var(--bordeaux); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(94, 15, 23, 0.15);
}

.story-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.story-img-wrap img {
  transition: transform 0.7s ease;
}
.story-card:hover .story-img-wrap img {
  transform: scale(1.05);
}

.story-body {
  padding: 2rem;
}
.story-location {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.story-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}
.story-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.story-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--bordeaux);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.story-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bordeaux-dark);
  padding: 7rem 2rem;
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-section .section-divider span { color: var(--gold); }
.testimonials-section .section-divider::before,
.testimonials-section .section-divider::after { background: var(--gold); }

.testimonials-list {}

.testimonial {
  padding: 2.5rem 0;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial cite {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
}
.testimonial footer span {
  font-size: 0.75rem;
  color: rgba(240, 235, 227, 0.45);
}
.testimonial-divider {
  border: none;
  border-top: 1px solid rgba(184, 154, 98, 0.15);
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about-section {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 7rem 2rem;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
}
.about-image img { transition: transform 0.8s ease; }
.about-image:hover img { transform: scale(1.03); }

.about-text .section-eyebrow { color: var(--bordeaux); }
.about-text .section-divider span { color: var(--bordeaux); }
.about-text .section-divider::before,
.about-text .section-divider::after { background: var(--bordeaux); }

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--bordeaux);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-script {
  font-family: var(--font-script);
  font-size: 1.4em;
  color: var(--gold);
}
.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════════════════════ */
.instagram-section {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 5rem 2rem 7rem;
}
.instagram-section .section-eyebrow { color: var(--bordeaux); }
.instagram-section .section-divider span { color: var(--bordeaux); }
.instagram-section .section-divider::before,
.instagram-section .section-divider::after { background: var(--bordeaux); }

.insta-grid {
  display: grid;
  /* 7 photos: row 1 has 3 wide items, row 2 has 4 equal */
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 0.6rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

/* Row 1 — 3 wide landscape panels */
.insta-item:nth-child(1) { grid-column: span 4; aspect-ratio: 4/3; }
.insta-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.insta-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
/* Row 2 — 4 portrait tiles */
.insta-item:nth-child(4) { grid-column: span 3; aspect-ratio: 3/4; }
.insta-item:nth-child(5) { grid-column: span 3; aspect-ratio: 3/4; }
.insta-item:nth-child(6) { grid-column: span 3; aspect-ratio: 3/4; }
.insta-item:nth-child(7) { grid-column: span 3; aspect-ratio: 3/4; }

.insta-item {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
.insta-item img {
  transition: transform 0.7s ease;
}
.insta-item:hover img { transform: scale(1.07); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 40, 32, 0.72), rgba(62, 40, 32, 0.2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
.insta-follow { text-align: center; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bordeaux);
  padding: 7rem 2rem;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-section .section-divider span { color: var(--gold); }
.contact-section .section-divider::before,
.contact-section .section-divider::after { background: var(--gold); }

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-script {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--gold);
}
.contact-text p {
  font-size: 0.95rem;
  color: rgba(240, 235, 227, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--cream);
  text-decoration: none;
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 154, 98, 0.25);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240, 235, 227, 0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.form-group select option { background: var(--bordeaux-dark); }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--gold);
  text-align: center;
  min-height: 1.2em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bordeaux-dark);
  padding: 5rem 2rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(176, 138, 62, 0.15);
}
.footer-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Invert to cream on dark footer bg */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-social a {
  color: rgba(240, 235, 227, 0.5);
  transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover { color: var(--gold); transform: scale(1.15); }
.footer-social svg { width: 22px; height: 22px; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 227, 0.3);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
  .insta-item:nth-child(1),
  .insta-item:nth-child(2),
  .insta-item:nth-child(3) { grid-column: span 2; aspect-ratio: 1; }
  .insta-item:nth-child(4),
  .insta-item:nth-child(5),
  .insta-item:nth-child(6),
  .insta-item:nth-child(7) { grid-column: span 3; aspect-ratio: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --radius: 24px; }

  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .masonry-item.tall { aspect-ratio: 3/2; grid-row: auto; }
  .masonry-item.wide { grid-column: auto; aspect-ratio: 4/3; }

  .stories-grid { grid-template-columns: 1fr; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
  .insta-item:nth-child(n) { grid-column: span 2; aspect-ratio: 1; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 0.3rem; }
  .insta-item:nth-child(n) { grid-column: span 2; aspect-ratio: 1; }
}

/* ═══════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ═══════════════════════════════════════════════════════ */
body.light-theme {
  background-color: var(--cream);
  color: var(--bordeaux);
}
body.light-theme #navbar { background: rgba(245, 240, 232, 0.85); border-bottom-color: rgba(0,0,0,0.05); }
body.light-theme .nav-link, body.light-theme .hamburger span { background: var(--bordeaux); }
body.light-theme .nav-logo-img { filter: invert(1) brightness(0.3); } /* Darken logo for light theme */
body.light-theme .overlay-menu { background: var(--cream-dark); }
body.light-theme .overlay-link { color: var(--bordeaux); }
body.light-theme .hero { background: var(--cream); }
body.light-theme .hero::after { background: radial-gradient(circle at center, transparent 0%, rgba(245, 240, 232, 0.4) 100%); }
body.light-theme .hero-eyebrow, body.light-theme .hero-sub { color: rgba(83, 20, 24, 0.7); }
body.light-theme .feature-card, body.light-theme .contact-inner { background: var(--white); border-color: rgba(0,0,0,0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
body.light-theme .feature-card h3 { color: var(--bordeaux); }
body.light-theme .feature-card p, body.light-theme .story-info p, body.light-theme .testi-card p { color: rgba(83, 20, 24, 0.8); }
body.light-theme .gallery-section, body.light-theme .contact-section { background: var(--cream); }
body.light-theme .stories-section, body.light-theme .features-section, body.light-theme .instagram-section, body.light-theme .about-section, body.light-theme .testimonials-section, body.light-theme .films-section { background: var(--cream-dark); }
body.light-theme .story-card .story-info { background: var(--white); }
body.light-theme .story-title { color: var(--bordeaux); }
body.light-theme .testi-card { background: var(--white); border-color: rgba(0,0,0,0.05); }
body.light-theme .testi-author { color: var(--bordeaux); }
body.light-theme footer { border-top-color: rgba(0,0,0,0.05); color: rgba(83, 20, 24, 0.7); }
body.light-theme .footer-nav a { color: var(--bordeaux); }
body.light-theme .footer-social circle, body.light-theme .footer-social rect, body.light-theme .footer-social path { stroke: var(--bordeaux); color: var(--bordeaux); }
body.light-theme .form-group input, body.light-theme .form-group select, body.light-theme .form-group textarea { background: var(--cream); border-color: rgba(0,0,0,0.1); color: var(--bordeaux); }
body.light-theme .form-group input::placeholder, body.light-theme .form-group textarea::placeholder { color: rgba(83,20,24,0.4); }
body.light-theme .contact-title, body.light-theme .about-title, body.light-theme .section-title { color: var(--bordeaux); }
body.light-theme .contact-text p { color: rgba(83, 20, 24, 0.8); }
body.light-theme .section-eyebrow.light { color: rgba(83,20,24,0.5); }

