/* ============================================
   NRITYADHEE — Kathak Dance Academy
   Shared stylesheet (used by every page)
   ============================================ */

:root {
  --crimson:      #8B1A2C;
  --crimson-soft: #a31f32;
  --deep-maroon:  #3D0A13;
  --gold:         #C9973A;
  --gold-light:   #E8C46A;
  --gold-pale:    #F5E4B8;
  --cream:        #FAF4E8;
  --ivory:        #FFF8ED;
  --ink:          #1A0A08;
  --muted:        #7A5C52;
  --bg:           #100506;
  --bg-soft:      #0D0304;
  --bg-medium:    #130507;

  --serif:   'Cormorant Garamond', serif;
  --display: 'Cinzel', serif;
  --sans:    'DM Sans', sans-serif;

  --maxw: 1180px;
  --pad:  2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(16,5,6,0.96) 0%, rgba(16,5,6,0.7) 70%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(13,3,4,0.96);
  border-bottom: 1px solid rgba(201,151,58,0.12);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1rem; letter-spacing: 0.28em;
  color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.nav-logo .logo-dot {
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale); opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  position: relative; padding: 0.3rem 0;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-links a.active { opacity: 1; color: var(--gold-light); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--gold-light); padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--gold-light);
  margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO (reusable across pages) ─────────── */
.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #3D0A13 0%, #1A0408 40%, #100506 100%);
  padding: 6rem 2rem 4rem;
}
.hero.hero-compact { min-height: 70vh; }
.hero-bg-motif {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,151,58,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,26,44,0.18) 0%, transparent 50%);
}
.hero-ornament {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(700px, 90vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.06); pointer-events: none;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.05);
}
.hero-border {
  position: absolute; inset: 1.5rem;
  border: 1px solid rgba(201,151,58,0.18);
  pointer-events: none;
}
.hero-corner {
  position: absolute; width: 60px; height: 60px;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.hero-corner.tl { top: 1.5rem; left: 1.5rem; border-top-width: 2px; border-left-width: 2px; }
.hero-corner.tr { top: 1.5rem; right: 1.5rem; border-top-width: 2px; border-right-width: 2px; }
.hero-corner.bl { bottom: 1.5rem; left: 1.5rem; border-bottom-width: 2px; border-left-width: 2px; }
.hero-corner.br { bottom: 1.5rem; right: 1.5rem; border-bottom-width: 2px; border-right-width: 2px; }

.hero-content {
  position: relative; text-align: center; z-index: 2;
  animation: fadeUp 1.4s ease both;
  max-width: 800px;
}
.hero-tag {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 1rem; justify-content: center;
}
.hero-tag::before, .hero-tag::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 300; line-height: 0.95;
  color: var(--ivory); letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.hero-name em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-family: var(--display); font-size: 0.8rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin: 1.4rem 0 2.2rem;
  opacity: 0.85;
}
.hero-desc {
  font-size: 0.96rem; line-height: 1.9;
  color: var(--gold-pale); opacity: 0.75;
  max-width: 540px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--gold); opacity: 0.45; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: pulse 2.5s ease infinite;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.btn-outline {
  border-color: rgba(201,151,58,0.5);
  color: var(--gold-light);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201,151,58,0.1);
  border-color: var(--gold);
}
.btn-solid {
  background: var(--crimson);
  border-color: rgba(201,151,58,0.3);
  color: var(--gold-light);
}
.btn-solid:hover {
  background: var(--crimson-soft);
  border-color: var(--gold);
}

/* ── DIVIDER ──────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 0 auto 4rem; max-width: 300px;
}
.divider-line { flex: 1; height: 1px; background: rgba(201,151,58,0.25); }
.divider-diamond {
  width: 8px; height: 8px;
  border: 1px solid var(--gold); transform: rotate(45deg);
}

/* ── SECTIONS ─────────────────────────────── */
section { padding: 6.5rem 2rem; }
.container { max-width: var(--maxw); margin: 0 auto; }

.section-label {
  font-family: var(--display); font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem; opacity: 0.85;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1px;
  background: var(--gold); opacity: 0.55;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--ivory); line-height: 1.1;
  margin-bottom: 2.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-intro {
  font-size: 1rem; line-height: 1.9;
  color: var(--gold-pale); opacity: 0.72;
  max-width: 640px; margin-bottom: 3.5rem;
}

/* ── PILLS ────────────────────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,151,58,0.3);
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  font-family: var(--display);
}

/* ── IMAGE FRAMES (reusable) ─────────────── */
.framed-image { position: relative; padding: 1.4rem; }
.framed-image::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 1.4rem; bottom: 1.4rem;
  border: 1px solid rgba(201,151,58,0.3);
}
.framed-image::after {
  content: ''; position: absolute;
  top: 1.4rem; left: 1.4rem; right: 0; bottom: 0;
  background: rgba(139,26,44,0.15);
  border: 1px solid rgba(201,151,58,0.15);
}
.framed-image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  position: relative; z-index: 1;
  filter: sepia(8%) contrast(1.04) saturate(1.05);
}
.framed-badge {
  position: absolute; bottom: -0.4rem; right: -0.4rem; z-index: 2;
  background: var(--crimson);
  border: 1px solid rgba(201,151,58,0.4);
  padding: 1.2rem 1.5rem; text-align: center;
}
.framed-badge-num {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.framed-badge-label {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-pale);
  opacity: 0.8; margin-top: 0.3rem;
}

/* ── STATS STRIP ──────────────────────────── */
.stats-strip {
  background: var(--crimson);
  border-top: 1px solid rgba(201,151,58,0.3);
  border-bottom: 1px solid rgba(201,151,58,0.3);
  padding: 3.5rem 2rem;
}
.stats-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 3.2rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-pale);
  opacity: 0.75; margin-top: 0.5rem;
}

/* ── CARDS GRID (expertise / programs) ───── */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(201,151,58,0.1);
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg-soft);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.feature-card:hover { background: #1A0408; }
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-card h3 {
  font-family: var(--display); font-size: 0.85rem;
  letter-spacing: 0.12em; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.85rem; line-height: 1.7;
  color: var(--gold-pale); opacity: 0.65;
}

/* ── ABOUT TWO-COLUMN ─────────────────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-text p {
  font-size: 1rem; line-height: 1.95;
  color: var(--gold-pale); opacity: 0.82;
  margin-bottom: 1.4rem;
}
.split-text strong { color: var(--gold-light); font-weight: 500; }
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.7rem; margin: 1.8rem 0;
  font-family: var(--serif);
  font-size: 1.35rem; font-style: italic;
  color: var(--gold-light); line-height: 1.5;
}

/* ── PRESS GRID ───────────────────────────── */
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(201,151,58,0.1);
}
.press-card {
  background: var(--bg-soft); padding: 2.4rem;
  transition: background 0.4s; position: relative;
}
.press-card:hover { background: var(--bg-medium); }
.press-pub {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.press-year {
  font-size: 0.7rem; color: var(--muted);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid rgba(201,151,58,0.1);
}
.press-headline {
  font-family: var(--serif);
  font-size: 1.2rem; font-style: italic;
  color: var(--ivory); line-height: 1.4;
  margin-bottom: 0.8rem;
}
.press-desc {
  font-size: 0.82rem; line-height: 1.7;
  color: var(--gold-pale); opacity: 0.6;
}
.press-tag {
  position: absolute; top: 2rem; right: 2rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: 0.4;
}
.press-card.featured { background: var(--bg-medium); }
.press-card.featured .press-tag { opacity: 1; }

/* ── ACADEMY HIGHLIGHT BLOCK ──────────────── */
.highlight-block {
  background: linear-gradient(135deg, var(--deep-maroon) 0%, #1A0408 100%);
  border: 1px solid rgba(201,151,58,0.2);
  padding: 4rem; margin-bottom: 3rem; position: relative;
  overflow: hidden;
}
.highlight-block::before {
  content: attr(data-watermark);
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 8rem; font-weight: 600;
  color: rgba(201,151,58,0.04); white-space: nowrap;
  pointer-events: none;
}
.highlight-block h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300; color: var(--ivory); margin-bottom: 0.4rem;
  position: relative;
}
.highlight-block h2 em { color: var(--gold-light); font-style: italic; }
.highlight-block p {
  font-size: 1rem; line-height: 1.9;
  color: var(--gold-pale); opacity: 0.78;
  max-width: 620px; margin-top: 1.2rem;
  position: relative;
}

/* ── OFFERINGS ────────────────────────────── */
.offerings-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.offering {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201,151,58,0.15);
  background: var(--bg-soft);
  display: flex; gap: 1.4rem; align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.offering:hover {
  border-color: rgba(201,151,58,0.45);
  transform: translateY(-3px);
}
.offering-icon { font-size: 1.9rem; flex-shrink: 0; }
.offering h3 {
  font-family: var(--display); font-size: 0.9rem;
  color: var(--gold-light); margin-bottom: 0.4rem; letter-spacing: 0.1em;
}
.offering p {
  font-size: 0.85rem; line-height: 1.7;
  color: var(--gold-pale); opacity: 0.65;
}
.offering-tag {
  display: inline-block; margin-top: 0.7rem;
  padding: 0.22rem 0.7rem;
  background: rgba(139,26,44,0.4);
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}

/* ── FOUNDER CARDS (dual) ─────────────────── */
.founders-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem; margin-top: 3rem;
}
.founder-card {
  background: var(--bg-soft);
  border: 1px solid rgba(201,151,58,0.16);
  padding: 2rem; position: relative;
  transition: border-color 0.4s, transform 0.4s;
  overflow: hidden;
}
.founder-card:hover {
  border-color: rgba(201,151,58,0.5);
  transform: translateY(-4px);
}
.founder-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; margin-bottom: 1.8rem;
  filter: sepia(8%) contrast(1.04);
}
.founder-name {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  color: var(--ivory); line-height: 1.1; margin-bottom: 0.4rem;
}
.founder-name em { font-style: italic; color: var(--gold-light); }
.founder-role {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; opacity: 0.85;
}
.founder-bio {
  font-size: 0.9rem; line-height: 1.8;
  color: var(--gold-pale); opacity: 0.75;
  margin-bottom: 1.5rem;
}
.founder-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201,151,58,0.3);
  padding-bottom: 0.3rem;
  transition: gap 0.3s, border-color 0.3s;
}
.founder-link:hover {
  gap: 1.1rem; border-color: var(--gold);
}

/* ── CONTACT ──────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300; color: var(--ivory); line-height: 1.1;
  margin-bottom: 1.4rem;
}
.contact-info h2 em { font-style: italic; color: var(--gold-light); }
.contact-info > p {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--gold-pale); opacity: 0.7; margin-bottom: 2.5rem;
}
.contact-links { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(201,151,58,0.2);
  color: var(--gold-pale);
  font-size: 0.85rem; transition: all 0.3s;
}
.contact-link:hover {
  background: rgba(201,151,58,0.08);
  border-color: rgba(201,151,58,0.5);
  color: var(--gold-light);
}
.contact-link-icon {
  font-size: 1.2rem; width: 1.5rem; text-align: center;
  flex-shrink: 0;
}
.contact-link-label {
  font-family: var(--display); font-size: 0.65rem;
  letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.15rem;
}

/* ── FORM ─────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--display); font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  background: rgba(201,151,58,0.05);
  border: 1px solid rgba(201,151,58,0.2);
  padding: 0.9rem 1.2rem;
  color: var(--cream); font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(201,151,58,0.6);
  background: rgba(201,151,58,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #1A0408; color: var(--cream); }

/* ── GALLERY ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(201,151,58,0.12);
  background: #0a0203;
  cursor: pointer;
}
.gallery-item.tall   { grid-row: span 2; aspect-ratio: 3/5; }
.gallery-item.wide   { grid-column: span 2; aspect-ratio: 6/4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: sepia(8%) contrast(1.02);
}
.gallery-item:hover img { transform: scale(1.05); filter: sepia(0%) contrast(1.08); }
.gallery-item .gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(13,3,4,0.95), transparent);
  color: var(--gold-light); font-family: var(--display);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ── TIMELINE ─────────────────────────────── */
.timeline {
  position: relative; max-width: 760px; margin: 3rem auto 0;
  padding-left: 2rem;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.timeline-item {
  position: relative; padding-bottom: 2.2rem;
}
.timeline-item::before {
  content: ''; position: absolute; left: -2.36rem; top: 0.4rem;
  width: 9px; height: 9px; transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(13,3,4,1);
}
.timeline-year {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 1.35rem; font-style: italic;
  color: var(--ivory); margin-bottom: 0.4rem;
}
.timeline-desc {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--gold-pale); opacity: 0.7;
}

/* ── FOOTER ───────────────────────────────── */
footer.site-footer {
  padding: 3rem 3rem 1.6rem;
  border-top: 1px solid rgba(201,151,58,0.12);
  background: var(--bg-soft);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(201,151,58,0.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--gold-pale); opacity: 0.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.85rem; color: var(--gold-pale); opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.6rem; flex-wrap: wrap; gap: 1rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.9rem; font-style: italic;
  color: var(--gold-pale); opacity: 0.5;
}
.footer-copy {
  font-size: 0.72rem; color: var(--muted); opacity: 0.6;
  letter-spacing: 0.1em;
}

/* ── ORNAMENTAL ───────────────────────────── */
.ornament-text {
  font-family: var(--serif);
  font-size: 0.9rem; font-style: italic;
  color: var(--gold); opacity: 0.55;
  text-align: center; letter-spacing: 0.05em;
  margin: 2.2rem 0;
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.85; }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .press-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top .footer-col:nth-child(4) { grid-column: span 3; }
}
@media (max-width: 820px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(280px, 80vw); height: 100vh;
    background: var(--bg-soft);
    border-left: 1px solid rgba(201,151,58,0.15);
    flex-direction: column; gap: 1.6rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.85rem; }

  section { padding: 4.5rem 1.4rem; }
  .split-grid, .contact-wrap {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .feature-grid    { grid-template-columns: 1fr; }
  .press-grid      { grid-template-columns: 1fr; }
  .offerings-grid  { grid-template-columns: 1fr; }
  .founders-grid   { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 3/4; }

  .highlight-block { padding: 2.4rem 1.6rem; }
  .footer-top {
    grid-template-columns: 1fr 1fr; gap: 2rem;
  }
  .footer-top .footer-col:nth-child(4) { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; aspect-ratio: 3/4; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-top .footer-col:nth-child(4) { grid-column: span 1; }
}
