/* ═══════════════════════════════════════════════════════════
   CHRISTMAS AT SOUTHERN HILL — seasonal layer over site.css
   Zero dependencies. Palette: site gold + evergreen + berry.
   ═══════════════════════════════════════════════════════════ */
:root {
  --xmas-green: #0e2a20;
  --xmas-green-2: #143528;
  --xmas-berry: #9c2b2e;
  --xmas-snow: #f6f3ec;
}

.xmas-body { background: var(--xmas-snow); }

/* ── string lights ────────────────────────────────────────── */
.xmas-lights { position: relative; height: 46px; background: var(--xmas-green); overflow: hidden; }
.xmas-wire { position: absolute; inset: 0; width: 100%; height: 100%; }
.xmas-bulbs {
  position: absolute; inset: 0;
  display: flex; justify-content: space-around; align-items: flex-start;
  padding-top: 12px;
}
.xmas-bulbs i {
  width: 10px; height: 14px; border-radius: 50% 50% 55% 55%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(197,160,89,.65);
  animation: bulb 2.4s ease-in-out infinite;
}
.xmas-bulbs i:nth-child(3n)   { background: var(--xmas-berry); box-shadow: 0 0 10px 2px rgba(156,43,46,.6); animation-delay: .4s; }
.xmas-bulbs i:nth-child(3n+2) { background: #e8e2d2; box-shadow: 0 0 10px 2px rgba(232,226,210,.6); animation-delay: .9s; }
.xmas-bulbs i:nth-child(4n)   { animation-delay: 1.4s; }
@keyframes bulb {
  0%, 100% { opacity: 1;   transform: translateY(0); }
  50%      { opacity: .35; transform: translateY(1px); }
}

/* ── hero ─────────────────────────────────────────────────── */
.xmas-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -20%, var(--xmas-green-2) 0%, var(--xmas-green) 55%, #081b14 100%);
  color: #fff;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem clamp(4rem, 9vw, 7rem);
  text-align: center;
}
#snow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.xmas-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.xmas-eyebrow {
  font-family: var(--fb); font-weight: 300;
  font-size: clamp(.7rem, 1vw, .8rem);
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(232,226,210,.75); margin-bottom: 1.2rem;
}
.xmas-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem); line-height: 1.08;
  margin: 0 0 1.1rem;
  background: linear-gradient(100deg, #b28a3f 0%, var(--gold) 30%, #f3e2b5 50%, var(--gold) 70%, #b28a3f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }
.xmas-sub {
  font-family: var(--fb); font-weight: 200;
  font-size: clamp(.9rem, 1.4vw, 1.05rem); line-height: 1.9;
  color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto 2.4rem;
}

/* ── countdown ────────────────────────────────────────────── */
.xmas-countdown {
  display: flex; justify-content: center; align-items: stretch;
  gap: clamp(.4rem, 1.4vw, 1rem); margin-bottom: .6rem;
}
.cd-cell {
  min-width: clamp(58px, 9vw, 86px);
  padding: .8rem .4rem .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(197,160,89,.35);
  border-radius: 4px;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.cd-num {
  display: block; font-family: 'Tenor Sans', serif;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); color: #fff;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cd-lbl {
  display: block; margin-top: .35rem;
  font-family: var(--fb); font-size: .62rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.cd-sep { align-self: center; color: rgba(197,160,89,.6); font-size: 1.4rem; }
.cd-caption {
  font-family: var(--fd, 'Cormorant Garamond'), serif; font-style: italic;
  color: rgba(232,226,210,.7); font-size: .95rem; margin-bottom: 2.6rem;
}
.cd-merry {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem); color: var(--gold);
}

/* ── CTA ──────────────────────────────────────────────────── */
.xmas-cta {
  display: inline-block; padding: .95rem 2.6rem;
  font-family: var(--fb); font-size: .78rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--xmas-green); background: var(--gold);
  text-decoration: none; border-radius: 2px;
  border: 1px solid var(--gold);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.xmas-cta:hover, .xmas-cta:focus-visible {
  background: transparent; color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.xmas-cta--ghost {
  background: transparent; color: var(--xmas-green);
  border-color: var(--xmas-green); margin-top: 1rem;
}
.xmas-cta--ghost:hover, .xmas-cta--ghost:focus-visible {
  background: var(--xmas-green); color: var(--gold);
}

/* ── hampers ──────────────────────────────────────────────── */
.xmas-hampers { padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem; }
.xmas-heading { color: var(--xmas-green); }
.xmas-holly { display: block; width: 92px; margin: .4rem auto 0; }

.hamper-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 1180px; margin: clamp(2rem, 5vw, 3.5rem) auto;
}
.hamper-card {
  position: relative; overflow: hidden;
  flex: 1 1 300px; max-width: 360px;
  background: #fff; border-radius: 4px;
  padding: 0 0 1.8rem;
  box-shadow: 0 8px 30px rgba(14,42,32,.10);
  transition: transform .45s cubic-bezier(.22,.9,.3,1), box-shadow .45s ease;
}
.hamper-card:hover { transform: translateY(-8px); box-shadow: 0 20px 46px rgba(14,42,32,.18); }

.ribbon {
  position: absolute; top: 22px; right: -42px; z-index: 2;
  transform: rotate(45deg);
  width: 160px; text-align: center;
  padding: .32rem 0;
  font-family: var(--fb); font-size: .62rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--xmas-green); background: var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.ribbon--red { background: var(--xmas-berry); color: #fff; }

.hamper-art { height: 150px; position: relative; }
.hamper-art::after {                 /* gold thread bow accent */
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 54px; height: 2px; background: var(--gold);
  transform: translate(-50%, -1px);
}
.hamper-art--spice  { background: linear-gradient(135deg, #3a2317, #6b4423 55%, #8a5a2b); }
.hamper-art--oils   { background: linear-gradient(135deg, var(--xmas-green), #2c5a41 60%, #47795c); }
.hamper-art--beauty { background: linear-gradient(135deg, #5c1f22, var(--xmas-berry) 60%, #b8484b); }
.hamper-art::before {                /* subtle star sparkles */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle 1.5px at 18% 30%, rgba(255,255,255,.9) 99%, transparent),
    radial-gradient(circle 1px   at 66% 22%, rgba(255,255,255,.7) 99%, transparent),
    radial-gradient(circle 2px   at 84% 60%, rgba(255,255,255,.8) 99%, transparent),
    radial-gradient(circle 1px   at 38% 72%, rgba(255,255,255,.6) 99%, transparent),
    radial-gradient(circle 1.5px at 55% 48%, rgba(255,255,255,.75) 99%, transparent);
}

.hamper-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.35rem; color: var(--xmas-green);
  margin: 1.4rem 1.6rem .6rem;
}
.hamper-card p {
  font-family: var(--fb); font-weight: 300;
  font-size: .85rem; line-height: 1.75;
  color: rgba(28,28,28,.75);
  margin: 0 1.6rem 1rem;
}
.hamper-card ul { list-style: none; margin: 0 1.6rem; padding: 0; }
.hamper-card li {
  font-family: var(--fb); font-size: .78rem; font-weight: 300;
  color: rgba(28,28,28,.65);
  padding: .42rem 0 .42rem 1.3rem; position: relative;
  border-top: 1px solid rgba(197,160,89,.25);
}
.hamper-card li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7rem;
}

/* ── notes strip ──────────────────────────────────────────── */
.xmas-notes {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  max-width: 980px; margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: 1.4rem 1.6rem;
  background: var(--xmas-green); border-radius: 4px;
  text-align: center;
}
.xmas-notes > div { min-width: 200px; }
.xmas-notes strong {
  display: block; font-family: 'Tenor Sans', serif; font-weight: 400;
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .25rem;
}
.xmas-notes span {
  font-family: var(--fb); font-weight: 200; font-size: .78rem;
  color: rgba(255,255,255,.75);
}

/* ── reveal + motion safety ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hamper-row .reveal:nth-child(2).in-view { transition-delay: .12s; }
.hamper-row .reveal:nth-child(3).in-view { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .xmas-title { animation: none; background-position: 0 0; }
  .xmas-bulbs i { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hamper-card, .xmas-cta { transition: none; }
}

/* ── small screens ────────────────────────────────────────── */
@media (max-width: 576px) {
  .cd-sep { display: none; }
  .xmas-countdown { flex-wrap: wrap; gap: .5rem; }
  .cd-cell { flex: 1 1 40%; }
  .hamper-card { max-width: 100%; }
}
