/* ==========================================================================
   BeatTheHeatGear — Design System & Production CSS
   Colors: Primary #D85A30, Dark #1a1a2e, Surface #f8f5f0,
           Text #2c2c2a, Muted #6b6b68, Accent #1D9E75
   Fonts: Inter (body) + Syne (headings) via Google Fonts
   Layout: max-width 1100px, mobile-first responsive
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #D85A30;
  --color-primary-dark: #b84a28;
  --color-dark: #1a1a2e;
  --color-surface: #f8f5f0;
  --color-text: #2c2c2a;
  --color-muted: #6b6b68;
  --color-accent: #1D9E75;
  --color-accent-dark: #17845f;
  --color-white: #ffffff;
  --color-border: #e0dcd5;
  --color-error: #c0392b;
  --color-warning: #e67e22;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Syne', 'Inter', sans-serif;
  --max-width: 1100px;
  --nav-height: 64px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: 2rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background: #2a2a4e;
  color: var(--color-white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 245, 240, 0.92);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(248, 245, 240, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark);
  text-decoration: none;
}

.nav-brand:hover { color: var(--color-primary); }

.nav-brand svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background: rgba(216, 90, 48, 0.06);
}

.nav-links a.active {
  border-bottom: 2px solid var(--color-primary);
}

.nav-links a.nav-coffee {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-links a.nav-coffee:hover {
  color: var(--color-accent-dark);
  background: rgba(29, 158, 117, 0.06);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav dropdown */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 1rem 1rem;
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .nav-links.open {
    position: static;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #D85A30 0%, #e8784e 40%, #f0a060 100%);
  color: var(--color-white);
  padding: 3rem 1rem;
  text-align: center;
}

.hero h1 {
  color: var(--color-white);
  font-size: 1.75rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.93;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero .btn-dark { background: var(--color-dark); }
.hero .btn-dark:hover { background: #2a2a4e; }

@media (min-width: 768px) {
  .hero { padding: 4.5rem 1rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1.15rem; }
}

/* ---------- Section ---------- */
.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
}

.section-header p {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

@media (min-width: 768px) {
  .section { padding: 4rem 0; }
  .section-header h2 { font-size: 1.75rem; }
}

/* ---------- Category Cards Grid ---------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.category-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--color-text);
}

.category-icon {
  font-size: 2rem;
  line-height: 1;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ---------- Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 1rem;
  background: #fff;
}

.product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-card-price {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.product-card-verdict {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  flex: 1;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.6rem;
}

/* ---------- Star Rating ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.stars .star {
  color: #d4d0c8;
  font-size: 1.1rem;
  cursor: default;
  transition: color var(--transition);
  line-height: 1;
}

.stars .star.filled {
  color: #f0a030;
}

/* Interactive star widget */
.star-widget {
  display: inline-flex;
  gap: 2px;
  direction: rtl;
  align-items: center;
}

.star-widget input {
  display: none;
}

.star-widget label {
  font-size: 1.6rem;
  color: #d4d0c8;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}

.star-widget label:hover,
.star-widget label:hover ~ label,
.star-widget input:checked ~ label {
  color: #f0a030;
}

.star-rating-display {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.star-rating-display .rating-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ---------- Review Cards ---------- */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-group {
  margin-bottom: 2rem;
}

.review-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 1rem;
}

.review-group-header h3 {
  margin-bottom: 0;
}

.review-group-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-sm);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.review-card-author {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-card-date {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.review-card-comment {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}

/* ---------- Trust Signals ---------- */
.trust-bar {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem 1rem;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

.trust-item {
  font-size: 0.9rem;
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
}

.how-it-works h2 {
  margin-bottom: 1rem;
}

.how-it-works p {
  color: var(--color-text);
  max-width: 700px;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .form-card { padding: 2rem; }
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
  max-width: 360px;
}

.toast-success { background: var(--color-accent); }
.toast-error { background: var(--color-error); }
.toast-info { background: var(--color-dark); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(-0.5rem); }
}

/* ---------- Stats Page ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

.sparkline-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sparkline-container h3 {
  margin-bottom: 1rem;
}

.sparkline-svg {
  width: 100%;
  height: 80px;
}

.sparkline-svg .sparkline-fill {
  fill: rgba(216, 90, 48, 0.1);
}

.sparkline-svg .sparkline-line {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-pages-list,
.top-countries-list {
  list-style: none;
  padding: 0;
}

.top-pages-list li,
.top-countries-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.top-pages-list li:last-child,
.top-countries-list li:last-child {
  border-bottom: none;
}

.page-bar {
  flex: 1;
  margin: 0 1rem;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.page-bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.stat-count {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 40px;
  text-align: right;
}

/* ---------- About Page ---------- */
.about-content {
  max-width: 750px;
}

.about-content h2 {
  margin-top: 2rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.disclosure-box {
  background: #fef9e7;
  border: 1px solid #f4d35e;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.disclosure-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

/* ---------- Quiz ---------- */
.quiz-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 650px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.quiz-progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  transition: background var(--transition);
}

.quiz-progress-dot.filled {
  background: var(--color-primary);
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quiz-option {
  padding: 0.85rem 1rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}

.quiz-option:hover {
  border-color: var(--color-primary);
  background: rgba(216, 90, 48, 0.04);
}

.quiz-option.selected {
  border-color: var(--color-primary);
  background: rgba(216, 90, 48, 0.08);
  color: var(--color-primary);
}

.quiz-result {
  display: none;
}

.quiz-result.active {
  display: block;
}

.quiz-result h2 {
  color: var(--color-accent);
}

.quiz-result-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .quiz-result-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0.75rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-stats {
  margin-top: 1rem;
}

.footer-stats a {
  color: var(--color-muted);
  font-size: 0.75rem;
  transition: color var(--transition);
}

.footer-stats a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Page Header (non-home pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a4e 100%);
  color: var(--color-white);
  padding: 2.5rem 1rem;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 1.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

@media (min-width: 768px) {
  .page-header { padding: 3.5rem 1rem; }
  .page-header h1 { font-size: 2.25rem; }
}

/* ---------- Loading / Empty States ---------- */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.loading-spinner::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  margin-right: 0.75rem;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted);
}

.empty-state p {
  font-size: 0.95rem;
}

/* ---------- Responsive Helpers ---------- */
@media (max-width: 374px) {
  body { font-size: 15px; }
  h1 { font-size: 1.5rem; }
  .hero { padding: 2rem 0.75rem; }
  .hero h1 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ---------- Print ---------- */
@media print {
  .site-nav, .site-footer, .toast-container { display: none; }
  body { background: #fff; }
  .hero { background: #f5f5f5; color: #000; }
  .hero h1 { color: #000; }
}
