/* ============================================
   RAJIV LOCHAN DASA – SPIRITUAL JOURNEY WEBSITE
   Design System & Global Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Saffron / Gold Palette */
  --saffron-100: #FFF8F0;
  --saffron-200: #FFEFD5;
  --saffron-300: #FFE0B2;
  --saffron-400: #FFCC80;
  --saffron-500: #FF9800;
  --saffron-600: #E68A00;
  --saffron-deep: #C75B12;

  /* Cream & Warm Whites */
  --cream: #FDF8F0;
  --cream-light: #FFFDF8;
  --cream-warm: #FAF3E8;
  --off-white: #FEFCF9;
  --warm-white: #F9F5EE;

  /* Deep Blues (minimal) */
  --deep-blue: #1A2744;
  --navy: #0D1B2A;
  --blue-muted: #2C3E6B;

  /* Gold Accents */
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-subtle: rgba(201, 168, 76, 0.15);

  /* Text Colors */
  --text-dark: #2A2118;
  --text-body: #4A3F35;
  --text-muted: #7A6F63;
  --text-light: #B8A99A;
  --text-on-dark: #F0E8DD;
  --text-on-dark-muted: rgba(240, 232, 221, 0.7);

  /* Backgrounds */
  --bg-light: var(--cream);
  --bg-dark: #1A150F;
  --bg-dark-alt: #241E16;
  --bg-warm: var(--cream-warm);

  /* Gradients */
  --gradient-saffron: linear-gradient(135deg, var(--saffron-200) 0%, var(--saffron-100) 50%, var(--cream) 100%);
  --gradient-warm: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream-light) 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26,21,15,0.3) 0%, rgba(26,21,15,0.7) 60%, var(--bg-dark) 100%);
  --gradient-gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-ui: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 140px);
  --content-max: 900px;
  --content-wide: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition-base: 0.4s var(--ease-smooth);
  --transition-slow: 0.8s var(--ease-smooth);
  --transition-reveal: 1s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--saffron-500);
}

::selection {
  background-color: var(--saffron-300);
  color: var(--text-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  max-width: 70ch;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text-dark);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--gold-subtle);
  border-radius: 0 8px 8px 0;
  line-height: 1.6;
}

blockquote cite {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- Layout ---------- */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section {
  padding: var(--section-padding) clamp(1.5rem, 5vw, 4rem);
  position: relative;
}

.section--light {
  background: var(--gradient-warm);
}

.section--cream {
  background: var(--gradient-saffron);
}

.section--dark {
  background: var(--gradient-dark);
  color: var(--text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section--dark p {
  color: var(--text-on-dark-muted);
}

.section--dark .section-label {
  color: var(--gold-light);
}

.section--dark blockquote {
  color: var(--text-on-dark);
  background: rgba(201, 168, 76, 0.08);
}

.section--fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.container--wide {
  max-width: var(--content-wide);
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient-gold-line);
  margin: 0;
  border: none;
}

.gold-divider--short {
  width: 80px;
  margin: 2rem auto;
  height: 2px;
  background: var(--gold);
  border: none;
  border-radius: 1px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-family: var(--font-ui);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,21,15,0.2) 0%, rgba(26,21,15,0.85) 100%);
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.page-header__chapter {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.page-header__desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Narrative Content ---------- */
.narrative {
  max-width: var(--content-max);
  margin: 0 auto;
}

.narrative p {
  margin-bottom: 1.8rem;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 2;
  color: var(--text-body);
}

.narrative p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5em;
  float: left;
  line-height: 0.8;
  margin-right: 0.1em;
  margin-top: 0.1em;
  color: var(--saffron-deep);
}

.narrative--dark p {
  color: var(--text-on-dark-muted);
}

.narrative--dark p:first-of-type::first-letter {
  color: var(--gold);
}

/* ---------- Story Timeline ---------- */
.story-timeline {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2rem 0;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--saffron-300), transparent);
}

.story-timeline__item {
  padding-left: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.story-timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-subtle);
}

.story-timeline__year {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.story-timeline__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.story-timeline__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* dark variant */
.section--dark .story-timeline::before {
  background: linear-gradient(to bottom, var(--gold-light), rgba(212, 184, 106, 0.3), transparent);
}

.section--dark .story-timeline__title {
  color: var(--text-on-dark);
}

.section--dark .story-timeline__desc {
  color: var(--text-on-dark-muted);
}

/* ---------- Quote Block ---------- */
.quote-block {
  max-width: 700px;
  margin: 3rem auto;
  text-align: center;
  padding: 3rem 2rem;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.quote-block__author {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--dark .quote-block__text {
  color: var(--text-on-dark);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
}

.nav--scrolled {
  background: rgba(26, 21, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 11px; }
.nav__toggle span:nth-child(3) { top: 22px; }

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Overlay Menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 21, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-smooth);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__menu {
  list-style: none;
  text-align: center;
}

.nav-overlay__item {
  margin: 0.5rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.nav-overlay.active .nav-overlay__item {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.35s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.45s; }
.nav-overlay.active .nav-overlay__item:nth-child(9) { transition-delay: 0.5s; }

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-overlay__link:hover,
.nav-overlay__link.active {
  color: var(--gold-light);
}

.nav-overlay__link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-overlay__link:hover::after,
.nav-overlay__link.active::after {
  transform: scaleX(1);
}

.nav-overlay__chapter {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-right: 0.8rem;
  opacity: 0.5;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,15,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lightbox__close:hover {
  transform: rotate(90deg);
}

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group .error-msg {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #c0392b;
}

.form-group.error .error-msg {
  display: block;
}

.btn {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
}

.btn--primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}

.success-message {
  text-align: center;
  padding: 2rem;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  display: none;
}

.success-message.show {
  display: block;
}

.success-message h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---------- Contact Info ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info__text h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-info__text p {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-info__text a {
  color: var(--text-dark);
}

.contact-info__text a:hover {
  color: var(--gold);
}

/* ---------- Social Links ---------- */
.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- Personal Photo Placeholder ---------- */
.photo-placeholder {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  border: 2px dashed rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(201, 168, 76, 0.04);
  margin: 2rem auto;
  transition: all var(--transition-base);
  overflow: hidden;
}

.photo-placeholder:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.photo-placeholder__icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.photo-placeholder__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 0 1rem;
}

.photo-placeholder__hint {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  padding: 0 1.5rem;
}

.photo-placeholder--landscape {
  aspect-ratio: 16 / 9;
  max-width: 700px;
}

.photo-placeholder--square {
  aspect-ratio: 1 / 1;
  max-width: 400px;
}

.photo-placeholder--circle {
  aspect-ratio: 1 / 1;
  max-width: 300px;
  border-radius: 50%;
}

/* Dark section variant */
.section--dark .photo-placeholder {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.05);
}

.section--dark .photo-placeholder__label {
  color: var(--text-on-dark-muted);
}

.section--dark .photo-placeholder__hint {
  color: rgba(255,255,255,0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  text-align: center;
  padding: 3rem 2rem;
}

.footer__credit {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer__credit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.footer__credit a:hover {
  color: var(--gold);
}

.footer__contact {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-on-dark-muted);
}

.footer__contact a {
  color: var(--text-on-dark-muted);
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer .social-links {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer .social-links a {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-on-dark-muted);
}

.footer .social-links a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}

/* ---------- Entry Page ---------- */
.entry-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.entry-page__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.entry-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.entry-glow--1 {
  top: 20%;
  left: 30%;
}

.entry-glow--2 {
  bottom: 20%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.entry-card {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
  max-width: 420px;
  width: 90%;
}

.entry-card__om {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.3s forwards;
}

.entry-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.entry-card__subtitle {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.7s forwards;
}

.entry-card__input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.9s forwards;
}

.entry-card__input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.3em;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  outline: none;
  transition: all var(--transition-base);
}

.entry-card__input::placeholder {
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
}

.entry-card__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.entry-card__btn {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--saffron-deep));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.entry-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.entry-card__error {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.5rem;
  display: none;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-reveal);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Section Transitions ---------- */
.section-transition {
  height: 120px;
  position: relative;
  overflow: hidden;
}

.section-transition--light-to-dark {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--bg-dark) 100%);
}

.section-transition--dark-to-light {
  background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--cream) 100%);
}

.section-transition--cream-to-dark {
  background: linear-gradient(to bottom, var(--cream-warm) 0%, var(--bg-dark) 100%);
}

.section-transition--dark-to-cream {
  background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--cream-warm) 100%);
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: var(--content-wide);
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(60px, 10vh, 100px);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .story-timeline::before {
    left: 0;
  }

  .story-timeline__item {
    padding-left: 2rem;
  }

  .hero__scroll-indicator {
    bottom: 20px;
  }

  .page-header {
    min-height: 50vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero__title {
    font-size: 2.5rem;
  }

  .entry-card {
    padding: 2rem 1.5rem;
  }

  blockquote {
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
  }
}
