/* ============================================================
   DEVDHAAGA — style.css
   Brand: #8B1010 (crimson) · #E9C860 (gold) · #FFFAF5 (cream)
   ============================================================ */

:root {
  --crimson:       #8B1010;
  --crimson-dark:  #5C0A0A;
  --crimson-light: #B01818;
  --crimson-pale:  #FDF0F0;
  --gold:          #C5912A;
  --gold-light:    #E9C860;
  --gold-pale:     #FFF8E1;
  --cream:         #FFFAF5;
  --cream-2:       #F8F0E8;
  --cream-3:       #F0E0D0;
  --text:          #1A0A0A;
  --text-mid:      #4A2020;
  --text-muted:    #7A4040;
  --white:         #FFFFFF;
  --radius:        16px;
  --radius-lg:     24px;
  --shadow-sm:     0 4px 16px rgba(139,16,16,0.08);
  --shadow-md:     0 12px 40px rgba(139,16,16,0.12);
  --shadow-lg:     0 24px 64px rgba(139,16,16,0.16);
  --transition:    0.4s cubic-bezier(0.22,1,0.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

em { font-style: italic; color: var(--crimson); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 100px 0; }

/* ── REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.45s; }

/* ── SECTION HEADERS ────────────────────────────────── */
.sec-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.75rem;
}
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.sec-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.sec-header { text-align: center; margin-bottom: 4rem; }
.sec-header .sec-p { margin: 0 auto; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(255,250,245,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(139,16,16,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--crimson);
  opacity: 0.7;
  text-transform: lowercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--crimson); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}
.btn-nav-outline {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--crimson);
  border-radius: 50px;
  color: var(--crimson);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-outline:hover { background: var(--crimson); color: var(--white); }
.btn-nav-primary {
  padding: 0.45rem 1.2rem;
  background: var(--crimson);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-primary:hover { background: var(--crimson-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--crimson);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary-lg:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,16,16,0.28); }

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(139,16,16,0.3);
  color: var(--text);
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost-lg:hover { border-color: var(--crimson); color: var(--crimson); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(139,16,16,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(233,200,96,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-a { width: 400px; height: 400px; background: rgba(139,16,16,0.08); top: -10%; right: 5%; animation-delay: 0s; }
.orb-b { width: 280px; height: 280px; background: rgba(233,200,96,0.1); bottom: 10%; right: 20%; animation-delay: 2.5s; }
.orb-c { width: 200px; height: 200px; background: rgba(139,16,16,0.05); top: 40%; left: 5%; animation-delay: 5s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.04); }
}

.hero-content { flex: 1; max-width: 580px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--crimson-pale);
  border: 1px solid rgba(139,16,16,0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 1.5rem;
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--crimson);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--crimson); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.stat-sep {
  width: 1px; height: 40px;
  background: rgba(139,16,16,0.15);
}

/* Hero Cards */
.hero-cards {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  width: 340px;
}
.hcard {
  background: var(--white);
  border: 1px solid rgba(139,16,16,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  cursor: default;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.hcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,16,16,0.25);
}
.hcard-icon { font-size: 1.8rem; margin-bottom: 0.25rem; }
.hcard span { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.hcard small { font-size: 0.75rem; color: var(--text-muted); }
.hc1 { animation: cardFloat 6s ease-in-out infinite; }
.hc2 { animation: cardFloat 6s ease-in-out infinite; animation-delay: 1s; }
.hc3 { animation: cardFloat 6s ease-in-out infinite; animation-delay: 2s; }
.hc4 { animation: cardFloat 6s ease-in-out infinite; animation-delay: 3s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.08em;
}
.scroll-line {
  width: 1.5px; height: 48px;
  background: rgba(139,16,16,0.15);
  border-radius: 2px; overflow: hidden;
}
.scroll-ball {
  width: 100%; height: 14px;
  background: var(--crimson);
  border-radius: 2px;
  animation: scrollBall 1.8s ease-in-out infinite;
}
@keyframes scrollBall {
  0%   { transform: translateY(-14px); }
  100% { transform: translateY(48px); }
}

/* ── MARQUEE ────────────────────────────────────────── */
.marquee-bar {
  background: var(--crimson);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,250,245,0.9);
  text-transform: uppercase;
}
.marquee-track .dot { color: var(--gold-light); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CRAFT SECTION ──────────────────────────────────── */
.craft { background: var(--cream); }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.craft-card {
  background: var(--white);
  border: 1px solid rgba(139,16,16,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.craft-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.craft-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(139,16,16,0.15); }
.craft-card:hover::before { opacity: 1; }
.cc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--crimson-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.craft-card:hover .cc-icon-wrap { background: rgba(139,16,16,0.12); }
.cc-icon { font-size: 1.5rem; }
.craft-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.craft-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.cc-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--crimson);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}
.cc-link:hover { text-decoration: underline; }

/* ── COLLECTIONS ────────────────────────────────────── */
.collections { background: var(--cream-2); }
.coll-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1.25rem;
}
.coll-large { grid-row: span 2; }
.coll-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.coll-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.coll-vis {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cv1 { background: linear-gradient(135deg, #5C0A0A 0%, #8B1010 50%, #C84B1E 100%); }
.cv2 { background: linear-gradient(135deg, #7B0D1E 0%, #C84B1E 100%); }
.cv3 { background: linear-gradient(135deg, #431414 0%, #8B1010 100%); }
.cv4 { background: linear-gradient(135deg, #6B3010 0%, #C5912A 100%); }
.cv-rings {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 25px, rgba(255,255,255,0.03) 25px, rgba(255,255,255,0.03) 26px);
}
.cv-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold-light);
  color: var(--crimson-dark);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}
.cv-motif { font-size: 2.5rem; position: relative; z-index: 1; }
.coll-info { padding: 1.25rem 1.5rem; }
.coll-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--crimson); display: block;
  margin-bottom: 0.3rem;
}
.coll-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.4rem;
}
.coll-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.btn-coll {
  font-size: 0.82rem; font-weight: 700; color: var(--crimson);
  text-decoration: none;
}
.btn-coll:hover { text-decoration: underline; }

/* ── STORY ──────────────────────────────────────────── */
.story { background: var(--cream); }
.story-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 5rem;
}
.story-mosaic {
  flex: 0 0 420px;
  position: relative;
  height: 420px;
}
.mos-card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(139,16,16,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center;
  box-shadow: var(--shadow-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  transition: all 0.3s;
}
.mos-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mos-card span:first-child { font-size: 1.5rem; }
.mc1 { top: 0; left: 0; width: 48%; }
.mc2 { top: 0; right: 0; width: 48%; }
.mc3 { bottom: 0; left: 0; width: 48%; }
.mc4 { bottom: 0; right: 0; width: 48%; }
.mos-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 0 0 8px rgba(139,16,16,0.1);
}
.mos-center span { font-size: 0.7rem; font-weight: 500; opacity: 0.8; }
.mos-center strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; }
.story-body { flex: 1; }
.story-checklist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chk { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-mid); font-weight: 500; }
.chk-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--crimson);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800;
  margin-top: 2px;
}

/* ── REVIEWS ────────────────────────────────────────── */
.reviews { background: var(--cream-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rev-card {
  background: var(--white);
  border: 1px solid rgba(139,16,16,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all var(--transition);
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rev-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.rev-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; flex: 1; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 0.75rem; }
.rev-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  flex-shrink: 0;
}
.rev-info { display: flex; flex-direction: column; }
.rev-info strong { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.rev-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA SECTION ────────────────────────────────────── */
.cta-sec {
  background: var(--crimson);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 50%, rgba(233,200,96,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: flex-start; gap: 5rem;
  position: relative; z-index: 1;
}
.cta-left { flex: 1; }
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-h2 em { color: var(--gold-light); font-style: italic; }
.cta-left p { font-size: 1rem; color: rgba(255,250,245,0.75); line-height: 1.7; margin-bottom: 2rem; }
.cta-form { display: flex; gap: 0.75rem; }
.cta-form input {
  flex: 1;
  padding: 0.8rem 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,250,245,0.5); }
.cta-form input:focus { border-color: var(--gold-light); }
.cta-form .btn-primary-lg {
  background: var(--gold-light);
  color: var(--crimson-dark);
}
.cta-form .btn-primary-lg:hover { background: var(--gold); }
.sub-ok {
  display: none;
  margin-top: 0.75rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
}
.cta-links {
  display: flex; gap: 3rem;
  flex-shrink: 0;
}
.cl-grp { display: flex; flex-direction: column; gap: 0.6rem; }
.cl-grp h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.cl-grp a {
  font-size: 0.9rem;
  color: rgba(255,250,245,0.75);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.cl-grp a:hover { color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--crimson-dark);
  padding: 2rem 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.foot-logo { display: flex; flex-direction: column; }
.foot-copy { font-size: 0.8rem; color: rgba(255,250,245,0.5); }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,250,245,0.55);
  text-decoration: none; transition: color 0.2s;
}
.foot-links a:hover { color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .coll-large { grid-column: span 2; }
  .story-mosaic { flex: 0 0 340px; height: 340px; }
  .cta-links { gap: 2rem; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 100px 1.5rem 60px;
    text-align: center;
    align-items: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-cards { width: 100%; max-width: 340px; }
  .nav-links { display: none; }
  .btn-nav-outline { display: none; }
  .hamburger { display: flex; }
  .craft-grid { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr; }
  .coll-large { grid-column: unset; }
  .story-wrap { flex-direction: column; gap: 3rem; }
  .story-mosaic { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-wrap { flex-direction: column; gap: 3rem; }
  .cta-form { flex-direction: column; }
  .cta-links { flex-wrap: wrap; gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .foot-links { justify-content: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat-sep { display: none; }
}
