@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Noto+Serif+Hebrew:wght@300;400;600&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --deep: #0A0A0A;
  --dark: #111111;
  --dark-mid: #1A1A1A;
  --mid: #242424;
  --border: #2E2E2E;
  --text: #E8E0D0;
  --text-muted: #9A9080;
  --text-dim: #6A6058;
  --cream: #F5EDD8;
  --parchment: #EDE0C4;
  --red-accent: #8B1A1A;
  --blue-accent: #1A3A5C;
  --white: #FFFFFF;

  --font-display: 'Cinzel', serif;
  --font-body: 'EB Garamond', serif;
  --font-hebrew: 'Noto Serif Hebrew', serif;

  --nav-height: 72px;
  --max-width: 1200px;
  --section-pad: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--gold-light); }

p { font-size: 1.1rem; margin-bottom: 1.25em; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

strong { color: var(--gold-light); font-weight: 600; }
em { font-style: italic; color: var(--cream); }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: rgba(201,168,76,0.06);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}
blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hebrew {
  font-family: var(--font-hebrew);
  direction: rtl;
  font-size: 1.3em;
  color: var(--gold-light);
}

/* ===== ORNAMENT DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.divider-symbol { font-size: 1.2rem; opacity: 0.8; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.99);
  border-bottom-color: var(--gold-dark);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--gold); background: rgba(201,168,76,0.07); padding-left: 1.4rem; }

.nav-phone {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone a { color: inherit; }
.nav-phone a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  #navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 2px solid var(--gold-dark);
    padding: 1rem 0 2rem;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    gap: 0;
  }
  #navbar.open .nav-links > li > a { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .has-dropdown .dropdown { display: none !important; }
  #navbar.open .nav-phone {
    display: block;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(26,58,92,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 50%, #0A0A0A 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(201,168,76,0.3) 40px, rgba(201,168,76,0.3) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(201,168,76,0.3) 40px, rgba(201,168,76,0.3) 41px);
}

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

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-hebrew {
  font-family: var(--font-hebrew);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--gold);
  direction: rtl;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  font-style: italic;
}

.hero-scripture {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 1.25rem 2rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-scripture p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.hero-scripture cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== SECTION ===== */
section {
  padding: var(--section-pad) 0;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ===== WHO WE ARE ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.who-text p { font-size: 1.1rem; }
.who-pillars {
  display: grid;
  gap: 1.25rem;
}
.pillar {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.pillar:hover { border-left-color: var(--gold-light); }
.pillar h4 { margin-bottom: 0.4rem; font-size: 0.95rem; letter-spacing: 0.08em; }
.pillar p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

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

/* ===== TOPIC CATEGORIES (nav cards) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.category-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.category-card h3 { font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== DOCUMENT LIBRARY ===== */
.doc-section { margin-bottom: 3rem; }
.doc-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.doc-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.doc-card:hover { border-color: var(--gold-dark); background: rgba(201,168,76,0.05); transform: translateX(4px); }
.doc-icon {
  width: 36px;
  height: 36px;
  background: rgba(139,26,26,0.3);
  border: 1px solid rgba(139,26,26,0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #E87070;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.doc-info { flex: 1; min-width: 0; }
.doc-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-card:hover .doc-title { color: var(--gold); }
.doc-dl {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.doc-card:hover .doc-dl { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 2rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    var(--deep);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ===== CONTENT PAGE ===== */
.content-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.content-page h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.content-page h3 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--gold-light); }
.content-page .scripture-block {
  background: rgba(201,168,76,0.07);
  border-left: 3px solid var(--gold);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1.75rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--cream);
}
.content-page .scripture-block cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.about-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.about-card .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.about-card .title {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text h4 { font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-item-text p { font-size: 1rem; margin: 0; }
.contact-form { background: var(--dark-mid); border: 1px solid var(--border); padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  border-radius: 0;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== DISCLAIMER BOX ===== */
.disclaimer {
  background: rgba(139,26,26,0.1);
  border: 1px solid rgba(139,26,26,0.4);
  border-left: 3px solid var(--red-accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.disclaimer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.disclaimer strong { color: #E87070; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); margin: 0; }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== MAILING LIST ===== */
.mailing-section {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.mailing-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 1.5rem auto 0;
}
.mailing-form input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.mailing-form input:focus { border-color: var(--gold-dark); }
.mailing-form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--deep);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.mailing-form button:hover { background: var(--gold-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.bg-dark { background: var(--dark); }
.bg-mid { background: var(--dark-mid); }
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
