/* ============================================================
   SANTA OLIVER — Home page styles
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: #08110b;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  /* gentle warm-leaning grade so it sits inside the brand palette */
  filter: saturate(0.96) contrast(1.02);
}

.hero-vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    /* dark scrim weighted left where the card sits */
    linear-gradient(90deg,
      rgba(9,17,12,0.78) 0%,
      rgba(9,17,12,0.55) 22%,
      rgba(9,17,12,0.20) 42%,
      transparent 60%,
      transparent 100%),
    /* gentle top + bottom darkening */
    linear-gradient(180deg,
      rgba(9,17,12,0.30) 0%,
      transparent 22%,
      transparent 72%,
      rgba(9,17,12,0.50) 100%);
}

.hero-inner { position: relative; z-index: 10; width: 100%; }
.hero-card {
  max-width: 680px; padding: 48px 52px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(15,26,20,0.55), rgba(9,17,12,0.42));
  border: 1px solid var(--hairline-soft);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-card .seal-top {
  position: absolute; top: -28px; left: 52px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest-800);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  color: var(--gold);
  box-shadow: var(--glow-gold);
}
.hero-card .so-eyebrow { display: block; margin-bottom: 4px; }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 8vw, 82px); line-height: 0.98; letter-spacing: -0.015em;
  color: var(--cream); margin: 14px 0 22px;
  position: relative;
}
.hero h1 em { font-style: italic; color: var(--gold-200); }
.hero p.lead {
  font-size: clamp(17px, 1.3vw, 19px); line-height: 1.6;
  color: var(--ink-soft); max-width: 500px; margin: 0 0 30px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* trust strip under hero — snowy white */
.trust-strip {
  background: var(--snow);
  border-bottom: 1px solid var(--hairline-ink);
}
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding-top: 30px; padding-bottom: 30px;
}

/* ---------------- INTRO / Meet Santa ---------------- */
.intro-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 64px; align-items: center;
}
.intro-photo { position: relative; }
.intro-photo .so-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg);
}
.intro-photo .frame-corner {
  position: absolute; width: 28px; height: 28px;
}
.intro-photo .tl { top: -10px; left: -10px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.intro-photo .br { bottom: -10px; right: -10px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
}
.intro-copy .so-eyebrow { display: block; margin-bottom: 18px; }
.intro-copy h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 3.6vw, 50px); line-height: 1.04;
}
.intro-copy p { font-size: 17px; line-height: 1.7; color: var(--ink-muted); margin: 22px 0; }
.sig { font-family: var(--display); font-style: italic; font-size: 30px; color: var(--green); margin-top: 8px; }

/* ---------------- EXPERIENCES grid ---------------- */
.exp-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.exp-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  color: var(--cream); text-decoration: none;
  border: 1px solid var(--hairline-ink);
  transition: transform .35s ease, box-shadow .35s ease;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(22,34,28,0.5); }
.exp-card .ph { position: absolute; inset: 0; z-index: 0; }
.exp-card .ph .so-photo { width: 100%; height: 100%; }
.exp-card .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(9,17,12,0.88));
}
.exp-card .ec-body { position: relative; z-index: 2; }
.exp-card .ec-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-200);
}
.exp-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 27px;
  margin: 8px 0 6px; color: #fff;
}
.exp-card p { font-size: 14px; line-height: 1.5; color: rgba(246,239,223,0.82); margin: 0; }
.exp-card .ec-arrow {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--gold-200);
}
.exp-card.span3 { grid-column: span 3; }
.exp-card.span2 { grid-column: span 2; }

/* ---------------- EXPERIENCES HERO (starry night header) ---------------- */
.exp-hero {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, var(--forest-950), var(--forest-850) 58%, var(--forest-900));
  padding: 120px 0 0;
}
.exp-hero .starfield { position: absolute; inset: 0; z-index: 1; }
.exp-hero .moon-disc { z-index: 2; }
.exp-hero .flyer--moon { z-index: 3; }
.exp-hero .snow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; }
.exp-hero .ornaments { position: absolute; top: 0; left: 0; right: 0; z-index: 6; pointer-events: none; }
.exp-hero-inner { position: relative; z-index: 7; padding-bottom: 80px; }
.exp-hero .so-rule { width: 120px; margin: 0 auto 22px; }
.exp-hero .so-eyebrow { display: block; margin-bottom: 18px; color: var(--red-bright); letter-spacing: 0.32em; }
.exp-hero h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.8vw, 62px); line-height: 1.04; letter-spacing: -0.015em;
  color: var(--cream); margin: 0 auto 20px; max-width: 16ch;
}
.exp-hero h2 em { display: block; font-style: italic; color: var(--gold-200); }
.exp-hero-sub { max-width: 540px; margin: 0 auto; color: var(--ink-soft); font-size: clamp(15px, 1.25vw, 17.5px); line-height: 1.62; }
.exp-snowbank { position: relative; z-index: 8; line-height: 0; margin-top: -2px; }
.exp-snowbank svg { width: 100%; display: block; }
.exp-snowbank path { fill: var(--cream); }

/* ---------------- EXPERIENCES FIELD (cream pricing section) ---------------- */
.exp-field {
  position: relative; overflow: hidden;
  background: var(--cream); padding: 10px 0 100px;
}
.exp-field::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(58% 42% at 50% 2%, rgba(200,162,74,0.13), transparent 62%),
    radial-gradient(40% 34% at 84% 64%, rgba(204,43,43,0.05), transparent 60%),
    radial-gradient(40% 34% at 14% 70%, rgba(23,107,67,0.05), transparent 60%);
}
.exp-field::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .45;
  background-image: radial-gradient(circle, rgba(255,255,255,0.95) 1px, transparent 1.5px);
  background-size: 46px 46px;
}
.exp-wrap { position: relative; z-index: 3; max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* string-lights garland */
.garland { position: relative; z-index: 4; margin: 0 0 10px; }
.garland .lights { height: 52px; }
.lights { position: relative; }
.lights svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lights .row { display: flex; justify-content: space-around; align-items: flex-end; height: 52px; padding: 0 12px; }
.lights .bulb {
  display: block; width: 10px; height: 14px; border-radius: 3px 3px 5px 5px;
  background: currentColor; margin-top: var(--drop, 8px);
  animation: bulbPulse 2.4s ease-in-out var(--d, 0s) infinite alternate;
  box-shadow: 0 0 6px 2px currentColor;
  position: relative;
}
.lights .bulb::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 5px; background: rgba(246,239,223,0.3); border-radius: 2px 2px 0 0;
}
@keyframes bulbPulse { from { opacity: 0.65; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lights .bulb { animation: none; } }

/* ---------------- PRICING GRID (card design) ---------------- */
.exp-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }

.pcell { position: relative; display: flex; flex-direction: column; }
.pcell .pcard {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  flex: 1; width: 100%;
  background: linear-gradient(180deg, #16271d, #0f1d16);
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 26px 52px -30px rgba(9,17,12,0.85);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pcell:hover .pcard { transform: translateY(-6px); box-shadow: 0 34px 60px -30px rgba(9,17,12,0.9); }

.snowcap { position: absolute; top: -1px; left: 0; width: 100%; height: 30px; display: block; z-index: 2; pointer-events: none; }

.pcard-body { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; padding: 42px 28px 30px; }
.pcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hours {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
.pc-ico { width: 28px; height: 28px; color: var(--accent); opacity: .92; flex: none; }

.price { font-family: var(--display); font-weight: 600; font-size: 60px; line-height: 0.95; color: var(--gold-300); letter-spacing: -0.012em; }
.price .cur { font-size: 32px; color: var(--gold-200); margin-right: 1px; position: relative; top: -18px; }

.pc-rule {
  height: 5px; width: 52px; border-radius: 999px; margin: 19px 0 17px;
  background-size: 14px 14px;
  background-image: repeating-linear-gradient(45deg, var(--red) 0 7px, #fff 7px 14px);
  opacity: .9;
}

.pcard-copy { font-size: 14px; line-height: 1.62; color: var(--muted); margin: 0 0 24px; flex: 1; }
.pc-btn { width: 100%; justify-content: center; }

/* featured tier */
.pcell.featured { z-index: 5; }
.pcell.featured .pcard {
  background: linear-gradient(180deg, #1b2c20, #11211a);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,162,74,0.5) inset, 0 30px 64px -28px rgba(200,162,74,0.42), 0 26px 52px -30px rgba(9,17,12,0.9);
}
.pcell.featured:hover .pcard { transform: translateY(-6px); box-shadow: 0 0 0 1px rgba(200,162,74,0.55) inset, 0 38px 72px -26px rgba(200,162,74,0.5), 0 34px 60px -30px rgba(9,17,12,0.95); }
.ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 7;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest-950);
  background: linear-gradient(180deg, var(--gold-200), var(--gold)); padding: 8px 17px; border-radius: 999px;
  box-shadow: var(--glow-gold), 0 8px 18px -8px rgba(0,0,0,0.45); white-space: nowrap;
}
.ribbon svg { width: 12px; height: 12px; }

/* reassurance line */
.price-note-row {
  position: relative; z-index: 3; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
  margin-top: 34px; text-align: center;
}
.price-note-row span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-muted); }
.price-note-row svg { width: 16px; height: 16px; color: var(--green); flex: none; }

/* ---------------- ZOOM PANEL (dark glass) ---------------- */
.zoom-panel {
  position: relative; overflow: hidden; margin-top: 60px; border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--forest-900), var(--forest-850));
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
  padding: 40px 46px;
}
.zoom-panel .starfield { z-index: 0; }
.zoom-panel .aurora { z-index: 0; opacity: .38; }
.zoom-ico {
  position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(200,162,74,0.12); border: 1px solid var(--hairline); box-shadow: var(--glow-gold);
}
.zoom-ico svg { width: 32px; height: 32px; }
.zoom-copy { position: relative; z-index: 2; }
.zoom-copy .so-eyebrow { display: block; margin-bottom: 11px; color: var(--red-bright); }
.zoom-copy h3 { font-family: var(--display); font-weight: 500; font-size: 31px; color: var(--cream); margin: 0 0 9px; line-height: 1.05; }
.zoom-copy p { font-size: 15px; line-height: 1.62; color: var(--muted); margin: 0; max-width: 640px; }
.zoom-cta { position: relative; z-index: 2; flex: none; white-space: nowrap; }

/* reveal animation for exp-field */
@media (prefers-reduced-motion: no-preference) {
  .exp-field .reveal { animation: expRise .7s ease both; }
  @keyframes expRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

/* ---------------- CREDENTIALS band ---------------- */
.cred-band {
  background: linear-gradient(180deg, var(--forest-900), var(--forest-950));
  padding: 110px 0; position: relative; overflow: hidden;
}
.cred-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(200,162,74,0.10), transparent 60%);
  pointer-events: none;
}
.cred-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px; position: relative; z-index: 2;
}
.cred-card { padding: 28px 26px; border-radius: var(--r-md); }
.cred-card .cc-year {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--gold);
}
.cred-card h4 {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  color: var(--cream); margin: 8px 0 8px; line-height: 1.15;
}
.cred-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }
.cred-stats {
  display: flex; gap: 50px; justify-content: center;
  margin-top: 60px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cred-stat { text-align: center; }
.cred-stat .num { font-family: var(--display); font-size: 52px; color: var(--gold-200); line-height: 1; }
.cred-stat .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-top: 8px;
}

/* ---------------- GALLERY preview ---------------- */
.gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px; gap: 14px;
}
.gal-item { border-radius: var(--r-md); overflow: hidden; }
.gal-item .so-photo { width: 100%; height: 100%; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* ---------------- TESTIMONIALS ---------------- */
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.test-card { padding: 32px 30px; border-radius: var(--r-lg); }
.test-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.test-card blockquote {
  font-family: var(--display); font-style: italic; font-size: 21px; line-height: 1.4;
  color: var(--ink); margin: 0 0 20px;
}
.test-card .who { display: flex; align-items: center; gap: 12px; }
.test-card .who .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-soft); display: grid; place-items: center;
  color: var(--green); font-weight: 800; flex: none;
}
.test-card .who .nm { font-weight: 700; font-size: 14px; color: var(--ink); }
.test-card .who .rl { font-size: 13px; color: var(--ink-muted); }

/* ---------------- NORTH POLE teaser ---------------- */
.np-band {
  background: linear-gradient(135deg, var(--red-deep), #7a1718);
  color: var(--cream); padding: 100px 0;
  position: relative; overflow: hidden;
}
.np-band .snow-canvas { z-index: 1; }
.np-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 3;
}
.np-grid h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4vw, 54px); color: #fff; line-height: 1.02;
}
.np-grid p { font-size: 17px; line-height: 1.65; color: rgba(246,239,223,0.9); margin: 20px 0 30px; }
.np-toys { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.np-toy {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md); padding: 20px;
  backdrop-filter: blur(8px);
}
.np-toy .ico { color: var(--gold-200); margin-bottom: 10px; }
.np-toy h4 { font-family: var(--display); font-size: 19px; color: #fff; margin: 0 0 4px; }
.np-toy p { font-size: 13px; margin: 0; color: rgba(246,239,223,0.8); }

/* ---------------- FINAL CTA ---------------- */
.final-cta {
  background: var(--forest-950);
  padding: 130px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 40%, rgba(200,162,74,0.14), transparent 60%);
}
.final-cta .inner { position: relative; z-index: 3; }
.final-cta h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); color: var(--cream); line-height: 1.0;
}
.final-cta p {
  font-size: 18px; color: var(--ink-soft);
  max-width: 520px; margin: 22px auto 36px;
}
.final-cta .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .intro-grid, .np-grid { grid-template-columns: 1fr; gap: 36px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card.span3, .exp-card.span2 { grid-column: span 2; }
  .exp-price-grid { grid-template-columns: repeat(2, 1fr); }
  .zoom-panel { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 34px 26px; }
  .zoom-ico { margin: 0 auto; }
  .cred-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .hero { align-items: flex-end; padding-bottom: 140px; }
  .hero h1 br { display: none; }
  .hero-card { padding: 36px 28px; }
  .hero-card .seal-top { left: 28px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.span3, .exp-card.span2 { grid-column: span 1; }
  .exp-price-grid { grid-template-columns: 1fr; }
  .price { font-size: 48px; }
  .price .cur { font-size: 26px; top: -14px; }
  .exp-wrap { padding: 0 20px; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .cred-stats { gap: 30px; }
}
@media (max-width: 420px) {
  .hero-card { padding: 28px 22px; }
  .hero-card .seal-top { left: 22px; width: 48px; height: 48px; top: -24px; }
  .trust-strip .wrap { gap: 8px; padding-top: 22px; padding-bottom: 22px; }
  .trust-strip .so-badge { font-size: 12px; padding: 7px 12px; gap: 7px; }
  .trust-strip .so-badge svg { width: 13px; height: 13px; }
  .cred-stat .num { font-size: 42px; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.wide { grid-column: span 1; }
  .gal-item.tall { grid-row: span 1; }
}

/* Real photos fill the .so-photo frame (added with first portrait) */
.so-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
