/* ─────────────────────────────────────────
   ZION SPRINGS — World-Class Wedding Site
   Design Language: Luxury Minimalist Estate
   ───────────────────────────────────────── */

:root {
  --cream:      #faf7f4;
  --warm-white: #f5f0eb;
  --stone:      #e8e0d8;
  --charcoal:   #1a1714;
  --warm-gray:  #6b6560;
  --gold:       #b8986a;
  --gold-light: #d4b98a;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --nav-h:      80px;
  --section-gap: 120px;
  --max-w:      1280px;
  --radius:     4px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
h4 { font-size: 1.25rem; }
em { font-style: italic; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 1.25rem 3.5rem; font-size: 0.85rem; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream);
  transition: color var(--transition);
}
#nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
#nav.scrolled .nav-links a { color: var(--warm-gray); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--cream) !important;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.1em;
}
.nav-links .nav-cta:hover { background: var(--charcoal) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
#nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,23,20,0.55) 0%,
    rgba(26,23,20,0.35) 50%,
    rgba(26,23,20,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
  max-width: 900px;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 2s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── INTRO ── */
.intro {
  padding: var(--section-gap) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-text h2 {
  margin: 1rem 0 1.5rem;
}
.intro-text p {
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.intro-text .btn {
  margin-top: 1rem;
}
.intro-image-stack {
  position: relative;
}
.stack-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-image-stack.no-img .stack-main {
  background: var(--stone);
  min-height: 500px;
}
.stack-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  max-width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.accent-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.accent-attr {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PILLARS ── */
.pillars {
  background: var(--warm-white);
  padding: var(--section-gap) 2rem;
}
.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.pillar {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  position: absolute;
  top: -1.5rem;
  right: 0;
  line-height: 1;
}
.pillar h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.pillar p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* ── VENUE ── */
.venue {
  padding: var(--section-gap) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.venue-header {
  text-align: center;
  margin-bottom: 4rem;
}
.venue-header h2 { margin-top: 0.5rem; }
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 480px;
  gap: 1.5rem;
}
.venue-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  /* height is driven entirely by grid-auto-rows above */
}
.venue-feature--tall {
  /* no special treatment — same height as siblings */
}
.venue-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.venue-feature:hover .venue-img { transform: scale(1.03); }
.venue-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,23,20,0.85));
  padding: 3rem 1.5rem 1.5rem;
  color: var(--cream);
}
.venue-caption h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.venue-caption p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.venue-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── SERVICES ── */
.services {
  background: var(--charcoal);
  padding: var(--section-gap) 2rem;
  color: var(--cream);
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}
.services-header .section-eyebrow { color: var(--gold-light); }
.services-header h2 { color: var(--cream); margin: 0.5rem 0 1.5rem; }
.services-header p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; }
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.04); }
.service-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.service-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── STORIES ── */
.stories {
  padding: var(--section-gap) 2rem;
  background: var(--warm-white);
}
.stories-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}
.stories-header h2 { margin-top: 0.5rem; }
.stories-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.story-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-top: 2px solid var(--stone);
  transition: border-color var(--transition);
}
.story-card:hover { border-color: var(--gold); }
.story-card--featured {
  grid-column: 1 / -1;
  border-top-color: var(--gold);
  background: var(--charcoal);
  color: var(--cream);
}
.story-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: inherit;
}
.story-card--featured .story-text { font-size: 1.4rem; color: rgba(255,255,255,0.9); }
.story-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-dots {
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.stories-award {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}

/* ── PRICING ── */
.pricing {
  padding: var(--section-gap) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.pricing-text .section-eyebrow { margin-bottom: 0.5rem; }
.pricing-text h2 { margin-bottom: 2rem; }
.pricing-text p {
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.pricing-faq {
  margin-top: 2.5rem;
  border-top: 1px solid var(--stone);
}
details {
  border-bottom: 1px solid var(--stone);
  padding: 1.25rem 0;
}
summary {
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--charcoal);
}
summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}
details[open] summary::after {
  content: '−';
}
details p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 1rem;
  line-height: 1.7;
}
.pricing-cta-card {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  background: var(--warm-white);
  border: 1px solid var(--stone);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
}
.cta-card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pricing-cta-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.pricing-cta-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-card-fine {
  margin-top: 1rem !important;
  font-size: 0.72rem !important;
  text-align: center;
  color: rgba(107,101,96,0.6) !important;
}

/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: url('/images/aerial.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
}
.final-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.final-cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.final-cta-content .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.final-cta-content .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--charcoal);
}

/* ── FOOTER ── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-address { font-size: 0.82rem; }
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a, .footer-social a {
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro-visual { order: -1; }
  .stack-accent { left: 1rem; }
  .pillars-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .venue-feature--tall { grid-row: auto; grid-column: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-cta-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { gap: 0; }
  .stat { padding: 1rem 2rem; }
  .stat-divider { height: 30px; }
  .pillars-inner { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card--featured { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
