/* ─────────────────────────────────────────
   BADDER PHOTOGRAPHY
   Design system: Cinematic Luxury
   Fonts: Lora (display) + Raleway (body)
───────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Tokens ── */
:root {
  --cream:        #F5F1E8;
  --cream-dark:   #EDE8DD;
  --dark:         #0F0F0E;
  --dark-mid:     #181817;
  --dark-card:    #1E1E1C;
  --text:         #1C1C1A;
  --text-muted:   #7A786F;
  --gold:         #C8A76A;
  --gold-hover:   #D4B87C;
  --border:       #DDD8CC;
  --border-dark:  rgba(255,255,255,0.08);
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;
  --max-w:        1200px;
  --nav-h:        80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Eyebrow / Section Label ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.eyebrow--dark { color: var(--text-muted); }


/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav--scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.65; }

.logo-main {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.35s;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  transition: color 0.35s;
}

.nav--scrolled .logo-main { color: var(--text); }
.nav--scrolled .logo-sub  { color: var(--text-muted); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav--scrolled .nav-links a       { color: var(--text-muted); }
.nav--scrolled .nav-links a:hover { color: var(--text); }

/* Desktop actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav--scrolled .btn-ghost       { color: var(--text-muted); }
.nav--scrolled .btn-ghost:hover { color: var(--text); background: var(--cream-dark); }

.btn-gold {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-hover); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav--scrolled .nav-hamburger span { background: var(--text); }


/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.mobile-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }

.mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mobile-btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 11px 32px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.mobile-btn-gold {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--gold);
  padding: 13px 40px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.mobile-btn-gold:hover { background: var(--gold-hover); }


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,7,0.90) 0%,
    rgba(8,8,7,0.68) 45%,
    rgba(8,8,7,0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  max-width: 680px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-gold {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.cta-gold:hover { background: var(--gold-hover); }

.cta-outline {
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cta-outline:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.09);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
}
.hero-scroll span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.15; transform: scaleY(0.5); transform-origin: top; }
}


/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery {
  background: var(--dark);
  padding: 96px 0 0;
}

.gallery-header { margin-bottom: 48px; }

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 520px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 3px;
}

.gitem { overflow: hidden; }
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

.gplaceholder {
  width: 100%;
  height: 100%;
  background: #1A1A18;
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s;
}
.gplaceholder:hover { background: #222220; }
.gplaceholder--aerial { background: #101418; }
.gplaceholder--aerial:hover { background: #181C20; }
.gplaceholder--dusk   { background: #1A1210; }
.gplaceholder--dusk:hover   { background: #221814; }

.gplaceholder span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gitem:hover img { transform: scale(1.03); }


/* ─────────────────────────────────────────
   VALUE PROPOSITION
───────────────────────────────────────── */
.value {
  background: var(--cream);
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.value-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.value-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.value-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.value-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 22px;
}

.value-detail {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.72;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}


/* ─────────────────────────────────────────
   PACKAGES
───────────────────────────────────────── */
.packages {
  background: var(--dark-mid);
  padding: 120px 0;
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}

.packages-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 500;
  color: #fff;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.packages-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

/* Package card */
.pkg {
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg--standard {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
}
.pkg--featured {
  background: #1C1C1A;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 48px rgba(200,167,106,0.08);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
  flex: 1;
}
.pkg-features li {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.pkg-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 1px;
}

.pkg-cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s;
}
.pkg-cta:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.pkg-cta--featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.pkg-cta--featured:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--dark);
}


/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process {
  background: var(--cream-dark);
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}

/* Subtle connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  background: var(--cream);
  padding: 120px 0;
}

.about-inner { max-width: 700px; }

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}
.about-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
}

.about-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  background: var(--text);
  color: #fff;
  border-radius: 6px;
  transition: background 0.2s;
}
.about-cta:hover { background: #333330; }


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
  width: fit-content;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.65; }
.footer-logo .logo-main { font-size: 19px; }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.28); }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 210px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
  line-height: 1;
}
.footer-col a:hover { color: #fff; }

.footer-book {
  margin-top: 6px;
  color: var(--gold) !important;
  font-weight: 500 !important;
}
.footer-book:hover { color: var(--gold-hover) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}
.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.18);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.18);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.45); }


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  .container { padding: 0 32px; }

  .value-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .value-body { font-size: 17px; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-steps::before { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-scroll { display: none; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gitem--wide { grid-column: span 1; }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pkg { padding: 32px; }
  .pkg-price { font-size: 56px; }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gitem--tall { grid-row: span 1; }

  .hero-headline { font-size: 38px; }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-gold, .cta-outline {
    width: 100%;
    text-align: center;
  }
}
