/* =============================================================
   Parshvanath Bhagwan – Premium Heritage Experience
   Designed and Managed by Creaa Designs
   ============================================================= */

:root {
  --ivory: #F6F1E7;
  --ivory-soft: #FBF8F1;
  --white: #FFFFFF;
  --emerald: #0E4C3A;
  --emerald-deep: #073026;
  --emerald-soft: #1B6A52;
  --gold: #B8965A;
  --gold-soft: #D4B47A;
  --gold-deep: #8E6E3D;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --muted: #6E6A60;
  --line: rgba(26, 26, 26, 0.08);
  --line-soft: rgba(26, 26, 26, 0.04);

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

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s var(--easing);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--charcoal-soft);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.text-gold { color: var(--gold-deep); }
.text-emerald { color: var(--emerald); }
.italic { font-style: italic; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

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

.section-dark {
  background: var(--emerald-deep);
  color: var(--ivory);
}

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

.section-dark p {
  color: rgba(246, 241, 231, 0.78);
}

.section-cream {
  background: var(--ivory-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--charcoal);
  color: var(--ivory);
  border: 1px solid var(--charcoal);
  transition: all 0.5s var(--easing);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "→";
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.4s var(--easing);
}

.btn:hover { background: var(--emerald); border-color: var(--emerald); }
.btn:hover::after { transform: translateX(6px); }

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

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--ivory);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  transition: all 0.4s var(--easing);
}

.btn-link::after {
  content: "→";
  letter-spacing: 0;
  transition: transform 0.4s var(--easing);
}

.btn-link:hover { color: var(--emerald); }
.btn-link:hover::after { transform: translateX(6px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.5s var(--easing);
  background: transparent;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184, 150, 90, 0.3);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--easing);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--emerald);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  width: 28px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.4s var(--easing);
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 24px; }

.menu-toggle.active span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  padding: 140px 0 80px;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 48, 38, 0.55) 0%, rgba(7, 48, 38, 0.25) 30%, rgba(7, 48, 38, 0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 300;
}

.hero h1 .accent {
  color: var(--gold-soft);
  font-style: italic;
  display: block;
  font-size: 0.7em;
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  color: rgba(246, 241, 231, 0.86);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta .btn-ghost {
  color: var(--ivory);
  border-color: rgba(246, 241, 231, 0.5);
}

.hero-cta .btn-ghost:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.hero-meta {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 2;
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(246, 241, 231, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* ---------- Highlight Strip ---------- */
.highlight-strip {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 36px 0;
  border-top: 1px solid rgba(184, 150, 90, 0.25);
  border-bottom: 1px solid rgba(184, 150, 90, 0.25);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(246, 241, 231, 0.12);
}

.highlight-item:last-child { border-right: none; }

.highlight-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.highlight-text {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.86);
  line-height: 1.4;
}

/* ---------- Intro / Editorial ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.editorial-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 1.4s var(--easing);
}

.editorial-image:hover img { transform: scale(1.04); }

.editorial-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
}

.editorial-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 2;
}

.editorial-text h2 { margin-bottom: 28px; }

.editorial-text .lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 28px;
}

.editorial-text p + p { margin-top: 18px; }

/* ---------- Pillar Grid (Teachings cards) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar {
  background: var(--ivory-soft);
  padding: 48px 40px;
  transition: all 0.5s var(--easing);
  position: relative;
  cursor: default;
}

.pillar:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.3em;
  margin-bottom: 32px;
  display: block;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--emerald);
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
}

.pillar h3 .sanskrit {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 8px;
}

.pillar p { font-size: 0.95rem; }

/* ---------- Image Bands ---------- */
.image-band {
  position: relative;
  width: 100%;
  height: clamp(560px, 78vh, 820px);
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,48,38,0.2) 0%, rgba(7,48,38,0.7) 100%);
  display: flex;
  align-items: end;
  padding: clamp(40px, 7vw, 80px);
}

.image-band-overlay h2 {
  color: var(--ivory);
  max-width: 720px;
}

.image-band-overlay p {
  color: rgba(246, 241, 231, 0.85);
  margin-top: 14px;
  max-width: 560px;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.split-head p {
  font-size: 1.05rem;
}

/* ---------- Quote ---------- */
.quote-block {
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 18rem;
  color: rgba(184, 150, 90, 0.12);
  line-height: 1;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-block cite {
  display: block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-style: normal;
}

/* ---------- Cards / Gateway ---------- */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gateway-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
}

.gateway-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: all 1.2s var(--easing);
}

.gateway-card:hover img { transform: scale(1.06); }

.gateway-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(7,48,38,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px;
  color: var(--ivory);
  transition: all 0.5s var(--easing);
}

.gateway-card:hover .gateway-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(7,48,38,0.96) 100%); }

.gateway-card .num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.gateway-card h3 {
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 400;
}

.gateway-card p {
  color: rgba(246, 241, 231, 0.78);
  font-size: 0.92rem;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s var(--easing);
}

.gateway-card:hover p { opacity: 1; transform: translateY(0); }

.gateway-card .arrow {
  width: 40px;
  height: 1px;
  background: var(--gold-soft);
  position: relative;
  align-self: flex-start;
}

.gateway-card .arrow::after {
  content: "→";
  position: absolute;
  right: -2px;
  top: -10px;
  color: var(--gold-soft);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 64px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -36px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-stage {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  margin-bottom: 16px;
}

.timeline-item p { font-size: 1rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Symbol Page ---------- */
.symbol-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.symbol-feature-alt {
  grid-template-columns: 1fr 1.1fr;
}

.symbol-feature-alt .symbol-image { order: 2; }

.symbol-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.symbol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.symbol-text .eyebrow { margin-bottom: 20px; }
.symbol-text h2 { margin-bottom: 24px; }
.symbol-text p + p { margin-top: 16px; }

.symbol-list {
  list-style: none;
  margin-top: 28px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.symbol-list li {
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--line-soft);
}

.symbol-list li:last-child { border-bottom: none; }

.symbol-list .key {
  font-family: var(--font-serif);
  color: var(--gold-deep);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 110px;
}

.symbol-list .val {
  font-size: 0.98rem;
  color: var(--charcoal-soft);
}

/* ---------- Editorial Article ---------- */
.editorial-article {
  max-width: 820px;
  margin: 0 auto;
}

.editorial-article p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.editorial-article h2,
.editorial-article h3 {
  margin: 56px 0 20px;
}

.editorial-article .dropcap::first-letter {
  font-family: var(--font-serif);
  float: left;
  font-size: 4.6rem;
  line-height: 0.9;
  padding: 4px 14px 0 0;
  color: var(--emerald);
  font-weight: 500;
}

.editorial-article blockquote {
  border-left: 2px solid var(--gold);
  padding: 12px 28px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--charcoal);
}

/* ---------- Gallery ---------- */
.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--ivory-soft);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--easing);
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,48,38,0.65) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--easing);
  pointer-events: none;
}

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

.gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--easing);
  z-index: 2;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 48, 38, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--ivory);
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 231, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.4s var(--easing);
}

.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ivory);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 241, 231, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.4s var(--easing);
}

.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.contact-info { padding-top: 12px; }

.contact-info h3 { margin-bottom: 16px; }

.contact-channel {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-channel:last-child { border-bottom: none; }

.contact-channel .label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.contact-channel .value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  transition: color 0.3s var(--easing);
}

.contact-channel a.value:hover { color: var(--emerald); }

.contact-form {
  background: var(--white);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 24px;
  position: relative;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s var(--easing);
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--emerald);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  background: var(--emerald);
  color: var(--ivory);
  padding: 18px 24px;
  margin-top: 20px;
  font-size: 0.92rem;
  display: none;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(246, 241, 231, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 241, 231, 0.08);
}

.footer-brand .brand {
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(246, 241, 231, 0.6);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  padding: 6px 0;
}

.footer-col a {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s var(--easing);
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(246, 241, 231, 0.5);
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold-soft); }

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 241, 231, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(246, 241, 231, 0.7);
  transition: all 0.4s var(--easing);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 0 0 80px;
  overflow: hidden;
  color: var(--ivory);
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,48,38,0.45) 0%, rgba(7,48,38,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero-content .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.page-hero-content .eyebrow::before { background: var(--gold-soft); }

.page-hero-content h1 {
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 22px;
}

.page-hero-content p {
  color: rgba(246, 241, 231, 0.85);
  max-width: 620px;
  font-size: 1.1rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
  margin-bottom: 24px;
}

.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs span { color: rgba(246, 241, 231, 0.4); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- PASSWORD GATE PAGE ---------- */
.gate-body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: #050D0B;
  color: var(--ivory);
  position: relative;
}

.gate {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(14, 76, 58, 0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(184, 150, 90, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #050D0B 0%, #0A1F18 50%, #061410 100%);
  z-index: 0;
}

.gate-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(184, 150, 90, 0.08) 0%, transparent 70%);
  animation: gatePulse 8s ease-in-out infinite;
}

@keyframes gatePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.gate-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.gate-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.5;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(60px); opacity: 0; }
}

.gate-card {
  position: relative;
  z-index: 5;
  width: min(520px, 92vw);
  padding: 64px clamp(32px, 5vw, 64px);
  text-align: center;
  background: rgba(10, 22, 18, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(184, 150, 90, 0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.gate-mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: grid;
  place-items: center;
  position: relative;
  animation: rotateMark 30s linear infinite;
}

.gate-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.gate-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(184, 150, 90, 0.4);
  border-radius: 50%;
  border-top-color: transparent;
}

@keyframes rotateMark {
  to { transform: rotate(360deg); }
}

.gate-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}

.gate h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.gate p {
  color: rgba(246, 241, 231, 0.65);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.gate-form {
  position: relative;
}

.gate-input {
  width: 100%;
  padding: 18px 56px 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 150, 90, 0.25);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.04em;
  outline: none;
  transition: all 0.3s var(--easing);
  text-align: center;
}

.gate-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(184,150,90,0.08);
}

.gate-input::placeholder {
  color: rgba(246, 241, 231, 0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.gate-submit {
  margin-top: 18px;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s var(--easing);
  cursor: pointer;
}

.gate-submit:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  letter-spacing: 0.4em;
}

.gate-error {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #E5A07A;
  letter-spacing: 0.06em;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--easing);
}

.gate-error.show { opacity: 1; }

.gate-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.4);
}

.gate-footer a { color: var(--gold-soft); }

.gate.unlocking { animation: unlock 1s var(--easing) forwards; }

@keyframes unlock {
  to { opacity: 0; transform: scale(1.1); }
}

/* ---------- Mobile menu ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--ivory);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--easing);
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
}

.mobile-nav a.active { color: var(--emerald); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .editorial,
  .symbol-feature,
  .symbol-feature-alt,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .symbol-feature-alt .symbol-image { order: 0; }
  .gateway-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .highlight-item:nth-child(2) { border-right: none; }
  .gallery-masonry { column-count: 2; }
  .split-head { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 768px) {
  .nav-cta .btn { display: none; }

  .hero { min-height: 92vh; padding: 120px 0 60px; }
  .hero-meta { display: none; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gateway-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; padding: 14px 0; border-bottom: 1px solid rgba(246,241,231,0.1); }
  .highlight-item:last-child { border-bottom: none; }
  .gallery-masonry { column-count: 1; }
  .lightbox { padding: 30px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .editorial-image::before, .editorial-image::after { display: none; }
  .gate-card { padding: 48px 28px; }
}

/* ---------- Utilities ---------- */
.no-scroll { overflow: hidden; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
