/* Sauna Hats Canada — warm cedar + steam design system */
:root {
  --cream: #faf6ee;
  --cream-2: #f3ecdd;
  --wood: #b98a5e;
  --cedar: #8a5a34;
  --cedar-dark: #6e4526;
  --char: #2b2419;
  --char-soft: #55493a;
  --pine: #1e4d3b;
  --pine-dark: #143528;
  --berry: #b3402e;
  --white: #fffdf8;
  --shadow: 0 10px 30px rgba(43, 36, 25, .12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--char);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cedar); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* Announcement bar */
.announce {
  background: var(--pine);
  color: #eaf3ee;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 8px 14px;
}
.announce a { color: #ffd9a0; font-weight: 600; }

/* Nav */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 36, 25, .08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; max-width: 1140px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--char); display: flex; align-items: center; gap: 9px; }
.logo svg { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a { color: var(--char-soft); font-size: .93rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--cedar); }
.nav-links a.xmas { color: var(--berry); font-weight: 700; }
.btn {
  display: inline-block;
  background: var(--cedar);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  font-family: var(--font-body);
}
.btn:hover { background: var(--cedar-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.ghost { background: transparent; color: var(--cedar); border: 2px solid var(--cedar); }
.btn.ghost:hover { background: var(--cedar); color: var(--white); }
.btn.pine { background: var(--pine); }
.btn.pine:hover { background: var(--pine-dark); }
.btn.small { padding: 9px 20px; font-size: .85rem; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; color: var(--char); cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 64px 0 72px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--cedar); }
.hero p.lead { font-size: 1.12rem; color: var(--char-soft); margin-bottom: 28px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.2deg); max-height: 560px; }
.hero-img img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; object-position: center 72%; }
.hero-badges { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges span { font-size: .84rem; color: var(--char-soft); display: flex; align-items: center; gap: 7px; }

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--char-soft); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; color: var(--wood); display: block; margin-bottom: 10px; }

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(43, 36, 25, .07);
  transition: transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .thumb { aspect-ratio: 1; background: #fff; position: relative; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--berry); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.card .badge.best { background: var(--pine); }
.card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.15rem; }
.card-body .desc { font-size: .88rem; color: var(--char-soft); flex: 1; }
.price { font-weight: 700; font-size: 1.1rem; }
.price s { color: #a09480; font-weight: 400; margin-right: 8px; }
.price .sale { color: var(--berry); }

/* Swatches */
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  border: 2px solid rgba(43,36,25,.15); padding: 0;
  transition: transform .12s, border-color .12s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.on { border-color: var(--char); transform: scale(1.12); }

/* Feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.rev > .fr-img { order: 2; }
.fr-img img { border-radius: 20px; box-shadow: var(--shadow); }
.feature-row h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.feature-row p { color: var(--char-soft); margin-bottom: 14px; }
.checklist { list-style: none; margin: 18px 0 26px; }
.checklist li { padding: 7px 0 7px 32px; position: relative; color: var(--char-soft); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pine); color: #fff; font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
}

/* Why band */
.band { background: var(--char); color: var(--cream); }
.band .section-head h2, .band h3 { color: var(--cream); }
.band .section-head p { color: #c9bda9; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.why { text-align: center; padding: 10px; }
.why .ico { font-size: 2rem; margin-bottom: 12px; }
.why h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why p { font-size: .88rem; color: #c9bda9; }

/* Christmas banner */
.xmas-banner {
  background: linear-gradient(135deg, var(--pine-dark), var(--pine));
  color: #eef6f0; border-radius: 20px;
  padding: 46px 44px; display: grid; grid-template-columns: 1.4fr .6fr;
  gap: 30px; align-items: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.xmas-banner::after { content: "🎄"; position: absolute; right: -18px; bottom: -26px; font-size: 9rem; opacity: .14; }
.xmas-banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; margin-bottom: 10px; }
.xmas-banner p { color: #cfe3d6; max-width: 52ch; }
.xmas-banner .btn { background: var(--berry); white-space: nowrap; justify-self: end; }
.xmas-banner .btn:hover { background: #93301f; }

/* Testimonial */
.quote { text-align: center; max-width: 660px; margin: 0 auto; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-style: italic; color: var(--char); margin-bottom: 18px; }
.quote cite { color: var(--char-soft); font-style: normal; font-size: .9rem; }
.stars { color: #e0a53f; letter-spacing: 3px; margin-bottom: 14px; }

/* Newsletter */
.newsletter { background: var(--cream-2); border-radius: 20px; padding: 52px 40px; text-align: center; }
.newsletter h2 { margin-bottom: 10px; }
.newsletter p { color: var(--char-soft); margin-bottom: 24px; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.nl-form input, .field input, .field textarea, .field select {
  width: 100%; padding: 13px 18px; border-radius: 999px;
  border: 1.5px solid rgba(43,36,25,.18); background: var(--white);
  font-family: var(--font-body); font-size: .95rem; color: var(--char);
}
.field textarea { border-radius: 18px; min-height: 130px; resize: vertical; }
.nl-form input:focus, .field input:focus, .field textarea:focus { outline: 2px solid var(--wood); border-color: transparent; }

/* Forms */
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px; max-width: 560px; margin: 0 auto; }
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 6px; }

/* Footer */
footer.site {
  background: var(--char); color: #c9bda9;
  padding: 56px 0 30px; font-size: .9rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer .logo { color: var(--cream); margin-bottom: 12px; }
footer h4 { color: var(--cream); font-size: .95rem; margin-bottom: 14px; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
footer a { color: #c9bda9; }
footer a:hover { color: var(--wood); }
.foot-bottom { border-top: 1px solid rgba(250,246,238,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: #8d8271; }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); padding: 58px 0 48px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--char-soft); max-width: 58ch; margin: 0 auto; }

/* Christmas page */
.xmas-hero { background: linear-gradient(160deg, var(--pine-dark) 0%, var(--pine) 70%, #2a6a50 100%); color: #eef6f0; text-align: center; padding: 76px 0; position: relative; overflow: hidden; }
.xmas-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 14px 0 16px; }
.xmas-hero .eyebrow { color: #ffd9a0; }
.xmas-hero p { color: #cfe3d6; max-width: 56ch; margin: 0 auto 30px; font-size: 1.08rem; }
.snow { position: absolute; inset: 0; pointer-events: none; }
.snow span { position: absolute; color: rgba(255,255,255,.5); animation: fall linear infinite; }
@keyframes fall { from { transform: translateY(-8vh); } to { transform: translateY(108vh); } }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: 0 2px 10px rgba(43,36,25,.07); position: relative; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pine); color: #fff; font-weight: 700; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--char-soft); }
.fineprint { font-size: .78rem; color: #8d8271; max-width: 60ch; margin: 26px auto 0; text-align: center; }

/* Utility */
.center { text-align: center; }
.mt-lg { margin-top: 44px; }
.notice { background: #fdf3e3; border: 1px solid #ecd9b7; border-radius: 10px; padding: 14px 18px; font-size: .86rem; color: #7a5c2e; }

@media (max-width: 860px) {
  .hero-grid, .feature-row, .xmas-banner { grid-template-columns: 1fr; }
  .feature-row.rev > .fr-img { order: 0; }
  .xmas-banner .btn { justify-self: start; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px 22px 24px;
    border-bottom: 1px solid rgba(43,36,25,.1); gap: 16px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .nl-form { flex-direction: column; }
  .nl-form .btn { width: 100%; }
}
