/* ═══ SACRED FLOURISH — GLOBAL STYLES ═══ */
@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=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1B33;
  --gold: #C6A664;
  --gold-light: #D4BA82;
  --gold-pale: #E8D5A8;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --warm-white: #FDFBF7;
  --text-dark: #2A2A2A;
  --text-muted: #5A5A5A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem; transition: all 0.4s ease;
}
nav.nav-dark {
  background: rgba(15, 27, 51, 0.3);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 166, 100, 0.06);
}
nav.nav-light {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 166, 100, 0.12);
}
nav.scrolled {
  background: rgba(15, 27, 51, 0.98) !important;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.25rem;
  letter-spacing: 0.08em; text-decoration: none;
  transition: color 0.4s ease;
}
.nav-logo span { font-weight: 300; transition: color 0.4s ease; }

/* dark nav colors */
nav.nav-dark .nav-logo { color: var(--gold); }
nav.nav-dark .nav-logo span { color: var(--gold-pale); }
nav.nav-dark .nav-links a { color: var(--cream-dark); }
nav.nav-dark .mobile-toggle span { background: var(--gold); }

/* light nav colors */
nav.nav-light .nav-logo { color: var(--navy); }
nav.nav-light .nav-logo span { color: var(--gold); }
nav.nav-light .nav-links a { color: var(--navy); }
nav.nav-light .mobile-toggle span { background: var(--navy); }

/* scrolled always dark */
nav.scrolled .nav-logo { color: var(--gold) !important; }
nav.scrolled .nav-logo span { color: var(--gold-pale) !important; }
nav.scrolled .nav-links a { color: var(--cream-dark) !important; }
nav.scrolled .mobile-toggle span { background: var(--gold) !important; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-family: 'Raleway', sans-serif; font-size: 0.82rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold) !important; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100%; }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; transition: all 0.3s ease; }

/* ═══ PAGE HERO (non-home pages) ═══ */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(198,166,100,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(198,166,100,0.04) 0%, transparent 50%);
}
.page-hero .section-label { color: var(--gold); position: relative; z-index: 1; }
.page-hero .section-title { color: var(--cream); position: relative; z-index: 1; }
.page-hero .section-divider { margin: 0 auto; position: relative; z-index: 1; }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: var(--gold-pale); max-width: 600px;
  margin: 1.5rem auto 0; position: relative; z-index: 1;
}

/* ═══ SECTIONS SHARED ═══ */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-divider { width: 60px; height: 1.5px; background: var(--gold); margin-bottom: 2rem; }

/* ═══ HOME HERO ═══ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--navy-deep);
}
.hero-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(15,27,51,0.55) 0%, rgba(15,27,51,0.45) 40%, rgba(15,27,51,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 800px; padding: 2rem;
}
.hero-content > * { opacity: 0; transform: translateY(25px); animation: heroReveal 1s ease-out forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.55s; }
.hero-content > *:nth-child(3) { animation-delay: 0.75s; }
.hero-content > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content > *:nth-child(5) { animation-delay: 1.1s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
  font-family: 'Raleway', sans-serif; font-weight: 400;
  font-size: 0.85rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem); color: var(--cream);
  line-height: 1.15; margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 strong { font-weight: 600; color: var(--gold-light); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-style: italic; font-weight: 300; color: var(--gold-pale);
  margin: 1.5rem 0 0.8rem;
}
.hero-verse {
  font-family: 'Lora', serif; font-size: 0.92rem;
  color: rgba(250,246,239,0.5); font-style: italic;
  margin-bottom: 2.5rem; max-width: 600px;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-cta {
  display: inline-block; padding: 1rem 2.8rem;
  background: rgba(198,166,100,0.15); border: 1.5px solid var(--gold);
  color: var(--gold); font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.4s ease; cursor: pointer;
  backdrop-filter: blur(4px);
}
.hero-cta:hover {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: 0 4px 40px rgba(198,166,100,0.35);
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span {
  font-family: 'Raleway', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(198,166,100,0.4);
}
.scroll-line { width: 1px; height: 35px; position: relative; overflow: hidden; background: rgba(198,166,100,0.15); }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ═══ CONTENT CARDS ═══ */
.card-grid { display: grid; gap: 2rem; margin-top: 3rem; }
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  padding: 2.5rem; background: var(--warm-white);
  border: 1px solid rgba(198,166,100,0.18);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.card.visible { opacity: 1; transform: translateY(0); }
.card.gold-left::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--gold);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(27,42,74,0.06);
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.4rem; color: var(--navy);
  margin-bottom: 1rem;
}
.card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* centered belief card style */
.card.belief-style {
  text-align: center; padding: 2.5rem 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(198,166,100,0.12);
}
.card.belief-style:hover { transform: translateY(-5px); }
.belief-icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-size: 1.3rem;
}
.card.belief-style h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.05rem; color: var(--navy);
  margin-bottom: 0.8rem; line-height: 1.3;
}
.card.belief-style p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* numbered service card */
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--gold-pale);
  margin-bottom: 1rem; line-height: 1;
}
.card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.3rem; color: var(--navy);
  margin-bottom: 0.8rem;
}

/* ═══ SECTION BACKGROUNDS ═══ */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--warm-white); }
.bg-navy {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}

/* ═══ QUOTE BANNER ═══ */
.quote-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.quote-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(198,166,100,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(198,166,100,0.04) 0%, transparent 50%);
}
.quote-banner blockquote {
  position: relative; z-index: 2; max-width: 700px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.5;
}
.quote-banner blockquote .gold { color: var(--gold-light); }
.quote-banner .quote-sub {
  position: relative; z-index: 2;
  font-family: 'Raleway', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.5rem;
}

/* ═══ FOUNDER ═══ */
.founder {
  display: flex; align-items: center; gap: 3rem;
  margin: 3rem 0; opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.founder.visible { opacity: 1; transform: translateY(0); }
.founder-photo-wrap { flex-shrink: 0; position: relative; width: 218px; height: 218px; }
.founder-photo-ring { position: absolute; inset: 4px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0.4; }
.founder-photo-ring-outer { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--gold-pale); opacity: 0.2; }
.founder-photo-clip { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; position: absolute; top: 9px; left: 9px; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

.founder-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.6rem; color: var(--navy);
  margin-bottom: 0.3rem;
}
.founder-info .founder-title {
  font-family: 'Raleway', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.founder-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ═══ DISCLAIMER BOX ═══ */
.disclaimer-box {
  max-width: 800px; margin: 0 auto; padding: 3rem;
  background: var(--cream);
  border: 1px solid rgba(198,166,100,0.18);
  border-left: 3px solid var(--gold);
}
.disclaimer-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.2rem; color: var(--navy);
  margin-bottom: 1rem;
}
.disclaimer-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.disclaimer-box + .disclaimer-box { margin-top: 2rem; }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  padding: 6rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section .section-title { color: var(--cream); }
.cta-section p {
  color: rgba(250,246,239,0.6); max-width: 550px;
  margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.8;
}
.btn-gold {
  display: inline-block; padding: 1.1rem 3rem;
  background: var(--gold); color: var(--navy-deep);
  font-family: 'Raleway', sans-serif; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.4s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 35px rgba(198,166,100,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block; padding: 0.9rem 2.5rem;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); font-family: 'Raleway', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.4s ease; cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); }

/* ═══ LINK ARROW ═══ */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Raleway', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  margin-top: 1.2rem; transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 0.8rem; }
.link-arrow::after { content: '→'; transition: transform 0.3s ease; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--navy-deep); padding: 3rem 2rem;
  border-top: 1px solid rgba(198,166,100,0.08);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-left .footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.9rem; color: var(--gold-pale); opacity: 0.45;
  margin-bottom: 0.4rem;
}
.footer-left p {
  font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.15em; color: rgba(250,246,239,0.3);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,246,239,0.35); text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(15, 27, 51, 0.98); padding: 2rem;
    gap: 1.5rem; align-items: center;
    border-bottom: 1px solid rgba(198, 166, 100, 0.1);
  }
  .nav-links.open a { color: var(--cream-dark) !important; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .card-grid.cols-5 { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.5rem; }
  .founder { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .card-grid.cols-5 { grid-template-columns: 1fr; }
}
