/* ============================================
   SAMSA V2 — Design System
   Vintage Emerald Color Scheme (Final)
   Premium Micro-Interactions & Transitions
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'AmaticSC';
  src: url('../fonts/AmaticSC-Bold_0.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TrashHand';
  src: url('../fonts/TrashHand.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   VINTAGE EMERALD — Color System
   ============================================ */
:root {
  /* ── Palette Core ── */
  --metallic-gold: #D1B136;
  --neutral-yellow:#DDC77C;
  --blue-bayou:    #46697A;
  --old-turquoise: #5A9184;
  --sea-green:     #80C89B;

  /* ── Extended Shades ── */
  --bayou-deep:    #375564;
  --bayou-light:   #5A7F91;
  --turquoise-deep:#4A7E70;
  --turquoise-light:#7BB5A5;
  --gold-light:    #E2CB6E;
  --charcoal:      #2F3B3A;
  --dark-forest:   #232E2D;

  /* ── Backgrounds — warm sandy-yellow ── */
  --bg:            #F5EDDF;  /* Warm sandy canvas */
  --bg-alt:        #EBE0C8;  /* Deeper sandy */
  --bg-elevated:   #F0E7D5;  /* Sandy cream */
  --bg-canvas:     #F0E7D5;
  --bg-light:      #F8F3E8;  /* Lightest sandy for store */

  /* ── Typography ── */
  --text:          #2A2D2B;
  --text-dim:      #5A5D5B;
  --text-on-dark:  #F5EDDF;
  --text-on-color: #F5EDDF;
  --text-on-accent:#1E2E25;
  --footer-text:   #F5EDDF;

  /* ── Accent System ── */
  --accent:        var(--metallic-gold);
  --accent-2:      var(--old-turquoise);

  /* ── Section Backgrounds ──
       About  → Old Turquoise (swapped)
       Journey → Blue Bayou (swapped)
       Products → Sandy cream
       Store → Light sandy
       Reviews → Dark charcoal
       Contact → Sandy
       Newsletter → Blue Bayou (deep accent)
  ── */
  --section-about:    var(--old-turquoise);
  --section-journey:  var(--blue-bayou);
  --section-products: var(--bg-alt);
  --section-store:    var(--bg-light);
  --section-reviews:  var(--charcoal);
  --section-contact:  var(--bg-alt);
  --section-newsletter: var(--blue-bayou);
  --footer-bg:       var(--dark-forest);

  /* ── Element Specifics ── */
  --border:        rgba(42, 45, 43, 0.12);
  --border-light:  rgba(255, 255, 255, 0.12);
  --nav-bg:        var(--bg-alt);

  --overlay:       rgba(42, 45, 43, 0.5);
  --hero-overlay:  linear-gradient(
    to bottom,
    rgba(35, 46, 45, 0.6) 0%,
    rgba(70, 105, 122, 0.2) 40%,
    rgba(70, 105, 122, 0.1) 60%,
    rgba(35, 46, 45, 0.75) 100%
  );
  --selection:     var(--neutral-yellow);
  --review-bg:     rgba(255, 255, 255, 0.06);
  --review-star:   var(--metallic-gold);
  --etsy-bg:       #F1641E;
  --card-overlay:  rgba(70, 105, 122, 0.75);
  --divider-fill:  var(--section-journey);


  /* ── THEME OVERRIDES (A/B Testing) ── */
  /* Default is emerald/vintage. The teal theme uses the brand's bright #14AFA5 */
  
  /* ── Typography ── */
  --font-display: 'AmaticSC', cursive;
  --font-accent: 'TrashHand', cursive;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Spacing ── */
  --v-margin: 102px;
  --v-sub: 68px;
  --v-para: 28px;
  --h-padding: 60px;
  --max-width: 1200px;
  --max-narrow: 680px;

  /* ── Easing ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms ease;
  --transition-mid: 400ms ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* (Teal theme removed — locked to Emerald) */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--selection);
  color: var(--text);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease, opacity 200ms ease;
}

a:hover { opacity: 0.7; }

ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(36px, 8vw, 64px); letter-spacing: 0.02em; }
h2 { font-size: clamp(36px, 8vw, 64px); letter-spacing: 0.02em; }
h3 { font-size: clamp(28px, 6vw, 44px); }

p {
  margin-bottom: var(--v-para);
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.subtitle {
  font-family: var(--font-accent);
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 600;
}

/* ============================================
   BUTTONS — Premium
   ============================================ */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 36px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 280ms var(--ease-spring), box-shadow 280ms ease, opacity 200ms ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--alt {
  background: var(--accent-2);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  background: var(--bg-alt);
  border-color: var(--text-dim);
}

.btn--etsy {
  background: var(--etsy-bg);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.btn--etsy:hover { color: #ffffff; }

/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--h-padding);
}

.section {
  padding: var(--v-margin) 0;
  position: relative;
}

.text-center { text-align: center; }

/* ============================================
   SECTION COLOR THEMES
   ============================================ */

/* ── ABOUT — Old Turquoise (green-teal) ── */
.section--gold {
  background: var(--section-about);
  color: var(--text-on-color);
  padding-bottom: calc(var(--v-margin) + 60px);
}

.section--gold h1,
.section--gold h2,
.section--gold h3,
.section--gold .meta-label {
  color: var(--text-on-color) !important;
}

.section--gold p {
  color: rgba(255, 255, 255, 0.93) !important;
}

.section--gold .bullet {
  color: var(--gold-light) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.section--gold .about-closing {
  color: var(--gold-light) !important;
}

/* ── JOURNEY — Blue Bayou (deep blue) ── */
.section--yellow-light {
  background: var(--section-journey);
  color: var(--text-on-color);
}

.section--yellow-light h2,
.section--yellow-light h3,
.section--yellow-light .meta-label {
  color: var(--text-on-color) !important;
}

.section--yellow-light p {
  color: rgba(255, 255, 255, 0.93) !important;
}

/* ── PRODUCTS — Sandy cream (override journey for this section) ── */
.products.section--yellow-light {
  background: var(--section-products);
  color: var(--text);
}

.products.section--yellow-light h2,
.products.section--yellow-light .meta-label {
  color: var(--text) !important;
}

.products.section--yellow-light p {
  color: var(--text-dim) !important;
}

/* ── STORE — Light sandy/cream ── */
.section--canvas {
  background: var(--section-store);
  color: var(--text);
}

.section--canvas h2,
.section--canvas h3,
.section--canvas .meta-label,
.section--canvas .info-label {
  color: var(--text) !important;
}

.section--canvas p,
.section--canvas .info-value {
  color: var(--text-dim) !important;
}

.section--canvas .store-notice {
  background: rgba(90, 145, 132, 0.08);
  border-left-color: var(--old-turquoise);
  color: var(--text-dim);
}

.section--canvas .info-icon {
  color: var(--old-turquoise) !important;
}

/* ── REVIEWS — Dark (you love this!) ── */
.section--teal {
  background: var(--section-reviews);
  color: var(--text-on-dark);
}

.section--teal h2,
.section--teal h3 {
  color: var(--text-on-dark) !important;
}

.section--teal .meta-label {
  color: var(--metallic-gold) !important;
}

/* ── CONTACT — Deeper sandy ── */
.section--alt {
  background: var(--section-contact);
  color: var(--text);
}

.section--alt h2, .section--alt h3 { color: var(--text) !important; }
.section--alt .meta-label { color: var(--old-turquoise) !important; }

/* ── NEWSLETTER — Blue Bayou deep ── */
.section--mustard {
  background: linear-gradient(165deg, var(--blue-bayou) 0%, var(--bayou-deep) 100%);
  color: #fff;
}

.section--mustard h2 { color: #fff !important; }

.section--mustard p { color: rgba(255, 255, 255, 0.82) !important; }

/* ── Shape Dividers ── */
.shape-divider {
  position: absolute;
  width: 100%;
  left: 0;
  line-height: 0;
  z-index: 5;
}

.shape-divider--bottom { 
  bottom: -2px; 
}

.shape-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 82px;
  transform: translateX(-1px);
}

.shape-divider--gold-to-yellow path {
  fill: var(--divider-fill);
}

/* ============================================
   NAVBAR — Fully Responsive
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--h-padding);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(42, 45, 43, 0.08);
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.navbar-brand:hover { opacity: 1; }

.navbar-brand img {
  width: clamp(40px, 4vw, 64px);
  height: auto;
  transition: transform 300ms var(--ease-spring);
}

.navbar-brand:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.brand-sub {
  font-family: var(--font-accent);
  font-size: clamp(13px, 1.5vw, 22.5px);
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
}

.navbar-links {
  display: flex;
  gap: clamp(16px, 1.8vw, 32px);
  align-items: center;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 250ms ease;
  white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text);
  border-bottom-color: var(--metallic-gold);
  opacity: 1;
}

/* Etsy nav pill */
.navbar-links .nav-etsy {
  background: var(--old-turquoise);
  color: #fff;
  border: 1.5px solid var(--old-turquoise);
  border-radius: 999px;
  padding: clamp(4px, 0.4vw, 6px) clamp(12px, 1.2vw, 18px);
  font-size: clamp(10px, 0.9vw, 13px);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.navbar-links .nav-etsy:hover {
  background: transparent;
  color: var(--old-turquoise);
  opacity: 1;
  border-color: var(--old-turquoise);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 300ms var(--ease-spring), opacity 200ms ease;
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 350ms var(--ease-out-quart);
  display: block;
  padding: 40px 40px;
  padding-top: calc(85px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  border-left: 1px solid var(--border);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease, padding-left 300ms var(--ease-out-expo);
}

.mobile-drawer a:hover {
  color: var(--old-turquoise);
  opacity: 1;
  padding-left: 12px;
}

.drawer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.mobile-drawer .drawer-etsy {
  color: #fff;
  background: var(--old-turquoise);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border: 1.5px solid var(--old-turquoise);
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  transition: all 250ms ease;
}

.mobile-drawer .drawer-etsy:hover {
  background: transparent;
  color: var(--old-turquoise);
  padding-left: 24px; /* Unset standard link hover padding */
}
/* ============================================
   HERO — Cinematic
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0;
  transition: opacity 2.5s ease;
  will-change: opacity, object-position;
}

.hero-slider img.active { opacity: 1; }

/* Hero Slider Images — start at absolute top (0%) to reveal faces */
.hero-slider img:first-child {
  object-position: 50% 0%;
  animation: pan-hero1 24s ease-in-out infinite;
}

.hero-slider img:nth-child(2) {
  object-position: 50% 0%;
  animation: pan-hero2 28s ease-in-out infinite;
}

@keyframes pan-hero1 {
  0% { object-position: 50% 0%; }
  50% { object-position: 50% 8%; }
  100% { object-position: 50% 0%; }
}

@keyframes pan-hero2 {
  0% { object-position: 50% 0%; transform: scale(1.08) translateY(3%); }
  50% { object-position: 50% 10%; transform: scale(1.08) translateY(3%); }
  100% { object-position: 50% 0%; transform: scale(1.08) translateY(3%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 var(--h-padding);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content .hero-title {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(30px, 6.5vw, 56px);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 6px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.hero-content .hero-subtitle {
  font-family: var(--font-accent);
  color: #ffffff;
  font-size: clamp(24px, 4.5vw, 36px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-content .hero-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 2.8vw, 19px);
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
}

.hero-content .btn {
  background: var(--old-turquoise);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 36px;
  border: 1.5px solid var(--old-turquoise);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.5; }
}

/* ============================================
   NEWSLETTER — Deep Blue Bayou
   ============================================ */
.newsletter {
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 8px;
  color: #fff !important;
  font-size: clamp(28px, 6vw, 44px);
}

.newsletter .discount {
  color: rgba(255,255,255,0.72) !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  backdrop-filter: blur(4px);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.newsletter .btn {
  background: var(--sea-green);
  color: var(--dark-forest);
}

.newsletter .etsy-cta {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.newsletter .etsy-cta p { color: #fff !important; }

/* ============================================
   ABOUT SECTION (Old Turquoise bg)
   ============================================ */
.about-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: var(--v-sub);
}

.about-row.reverse { direction: rtl; }
.about-row.reverse > * { direction: ltr; }

.about-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: box-shadow 400ms ease;
  position: relative;
  z-index: 2;
}

.about-image:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
}

.about-image:hover img { transform: scale(1.04); }

.about-text h2 { margin-bottom: 16px; }

.about-text .bullet {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 4px;
  line-height: 1.3;
}

.about-text .bullet + p:not(.bullet) { margin-top: 28px; }

.about-text p {
  line-height: 1.85;
  font-size: 16px;
  font-weight: 400;
}

.about-text h3 { margin-top: 40px; margin-bottom: 12px; }

/* Inline link (e.g. "Pánskej 33") */
.inline-link {
  color: inherit !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--metallic-gold);
  padding-bottom: 1px;
  transition: border-color 200ms ease, color 200ms ease;
  opacity: 1 !important;
}

.inline-link:hover {
  border-bottom-color: var(--gold-light);
  color: var(--gold-light) !important;
  opacity: 1 !important;
}

/* Centered layout */
.about-centered {
  text-align: center;
  max-width: var(--max-narrow);
  margin: 0 auto var(--v-sub);
}

.about-centered h2 { margin-bottom: 32px; }
.about-centered h3 { margin-bottom: 16px; }
.about-centered p { line-height: 1.8; text-align: center; }

.about-closing {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
  color: var(--gold-light) !important;
  margin-top: 8px;
}

/* Journey Steps — centered checkpoint story */
.journey-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 48px auto;
  max-width: 800px;
  position: relative;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 20px;
  text-align: left;
  transition: transform 300ms var(--ease-out-expo), background 300ms ease;
  border-radius: 10px;
  position: relative;
}

.journey-step:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Dotted connector between steps */
.step-connector {
  width: 2px;
  height: 24px;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--metallic-gold) 0px,
    var(--metallic-gold) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.5;
}

.step-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  background: var(--old-turquoise);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(90, 145, 132, 0.4);
  transition: transform 300ms var(--ease-spring), box-shadow 300ms ease;
}

.journey-step:hover .step-dot {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(90, 145, 132, 0.6);
}

.journey-step p {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  white-space: nowrap;
  user-select: none;
}

.journey-closing {
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Sponsoring Images Grid */
.sponsor-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  /* Break out of the narrow about-centered container */
  width: calc(100% + 300px);
  margin-left: -150px;
  margin-right: -150px;
}

.sponsor-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  aspect-ratio: 3 / 2;
}

.sponsor-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
}

.sponsor-image-wrapper:hover img {
  transform: scale(1.04);
}

/* Full-width Image */
.about-fullwidth-image {
  margin: var(--v-sub) 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.about-fullwidth-image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
}

.about-fullwidth-image:hover img { transform: scale(1.03); }

.about {
  position: relative;
  padding: var(--v-margin) 0;
  padding-bottom: calc(var(--v-margin) + 80px);
}

/* ============================================
   PRODUCTS — Premium Grid
   ============================================ */
.products { padding: var(--v-margin) 0; }

.products-header {
  text-align: center;
  margin-bottom: var(--v-sub);
}

.products-header h2 { margin-bottom: 12px; }
.products-header .meta-label { color: var(--old-turquoise) !important; }

.products-header p {
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-elevated);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 400ms ease, transform 400ms var(--ease-out-expo);
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo), filter 400ms ease;
}

.product-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.78);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  opacity: 1;
  transition: background 350ms ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
}

.product-card-overlay h3 {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 400ms var(--ease-out-expo), font-size 300ms ease;
  margin: 0;
  line-height: 1.1;
}

.product-card:hover .product-card-overlay h3 {
  transform: translateY(-4px) scale(1.05);
}

/* Etsy CTA */
.etsy-cta {
  text-align: center;
  margin-top: var(--v-sub);
  padding: 40px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: box-shadow 300ms ease;
}

.etsy-cta:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.etsy-cta p {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  color: var(--text);
  margin-bottom: 20px;
}

/* ============================================
   REVIEWS — Beautiful Dark
   ============================================ */
.reviews { padding: var(--v-margin) 0; }

.reviews-header {
  text-align: center;
  margin-bottom: var(--v-sub);
}

.reviews-header h2 { margin-bottom: 12px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--review-bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 350ms var(--ease-out-expo), box-shadow 350ms ease, background 350ms ease;
  position: relative;
  backdrop-filter: blur(4px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--metallic-gold);
  opacity: 0.12;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.review-stars {
  color: var(--review-star);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.review-name {
  font-weight: 700;
  color: var(--text-on-dark);
  font-size: 14px;
}

.review-source {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

/* ============================================
   STORE — Light Sandy/Cream
   ============================================ */
.store { padding: var(--v-margin) 0; }

.store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.store-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: box-shadow 400ms ease;
}

.store-image:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.store-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
}

.store-image:hover img { transform: scale(1.03); }

.store-info h3 { margin-bottom: 24px; }

.store-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: transform 250ms var(--ease-out-expo);
}

.store-info .info-item:hover { transform: translateX(4px); }

.store-info .info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.store-info .info-label {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 2px;
}

.store-info .info-value {
  font-size: 15px;
  margin-bottom: 0;
}

.store-notice {
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px dashed var(--metallic-gold);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px);
}

.store-notice strong {
  color: var(--dark-forest);
  font-weight: 700;
}

/* Phone highlight */
.phone-highlight {
  color: var(--dark-forest) !important;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 200ms ease;
  opacity: 1 !important;
}

.phone-highlight:hover {
  color: var(--old-turquoise) !important;
  opacity: 1 !important;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: var(--v-margin) 0; }

.contact-header {
  text-align: center;
  margin-bottom: var(--v-sub);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  transition: transform 250ms var(--ease-out-expo);
}

.contact-item:hover { transform: translateX(4px); }

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--old-turquoise);
  transition: transform 300ms var(--ease-spring);
}

.contact-item:hover svg { transform: scale(1.15); }

.contact-item a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.contact-item a:hover {
  color: var(--old-turquoise);
  opacity: 1;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-wrapper { margin-top: var(--v-sub); }

.contact-form-wrapper h3 {
  text-align: center;
  margin-bottom: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--old-turquoise);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(90, 145, 132, 0.1);
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
  background: var(--old-turquoise);
  color: #fff;
}

/* Partners */
.partners {
  display: none; /* Moved to footer */
}

.partners h3 { margin-bottom: 32px; }

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners-logos a {
  display: block;
  width: 120px;
  filter: grayscale(1);
  opacity: 0.4;
  transition: filter 400ms ease, opacity 400ms ease, transform 300ms var(--ease-spring);
}

.partners-logos a:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

.partners-logos img {
  width: 100%;
  height: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-partners {
  gap: 40px;
}

.footer-partners a {
  width: 110px;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.5);
  transition: all 400ms ease;
}

.footer-partners a:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--metallic-gold);
  opacity: 1;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ============================================
   LANGUAGE TOGGLE — on dark navbar
   ============================================ */
.lang-toggle {
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 250ms ease;
  margin-left: 8px;
}

.lang-toggle:hover {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.drawer-lang {
  margin: 0;
  padding: 10px 24px;
  font-size: 15px;
  align-self: auto;
}

/* ============================================
   SCROLL REVEAL — Enhanced
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px) translateY(0);
}
.reveal--left.is-visible {
  transform: translateX(0) translateY(0);
}

.reveal--right {
  transform: translateX(40px) translateY(0);
}
.reveal--right.is-visible {
  transform: translateX(0) translateY(0);
}

.reveal--scale {
  transform: scale(0.92);
}
.reveal--scale.is-visible {
  transform: scale(1);
}

/* Staggered delays */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: 0.49s; }

/* Parallax */
.parallax-img { will-change: transform; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

*:focus-visible {
  outline: 2px solid var(--old-turquoise);
  outline-offset: 2px;
}

/* ============================================
   JS-OFF MODE — Static fallback
   ============================================ */
[data-no-js] .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

[data-no-js] .hero-slider img {
  transition: none !important;
  animation: none !important;
}

[data-no-js] .hero-slider img:first-child {
  opacity: 1 !important;
}

[data-no-js] .hero-slider img:not(:first-child) {
  opacity: 0 !important;
}

[data-no-js] .navbar {
  transform: translateY(0) !important;
}

[data-no-js] .product-card img,
[data-no-js] .about-image img,
[data-no-js] .store-image img,
[data-no-js] .about-fullwidth-image img {
  transition: none !important;
}

[data-no-js] .scroll-indicator {
  display: none;
}

/* JS toggle button active state */
.js-toggle[aria-pressed="true"],
[data-no-js] .js-toggle {
  background: rgba(209, 177, 54, 0.2);
  border-color: var(--metallic-gold);
  color: var(--metallic-gold);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(35, 46, 45, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px var(--h-padding);
  transform: translateY(100%);
  transition: transform 500ms var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 200ms var(--ease-spring), background 200ms ease, opacity 200ms ease;
  border: none;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
}

.cookie-banner__btn--accept {
  background: var(--old-turquoise);
  color: #fff;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   LIGHTBOX GALLERY
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 23, 23, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out-expo);
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 500ms var(--ease-out-expo), opacity 300ms ease;
}

.lightbox[aria-hidden="false"] img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 10001;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 300ms ease;
  opacity: 0.5;
  z-index: 10001;
}

.lightbox-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Mobile refinements */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 40px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 20px; right: 20px; }
  .lightbox-caption { font-size: 20px; }
}

/* Scroll lock when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   RESPONSIVE — SMALL DESKTOP (≤ 1200px)
   Tighten nav spacing, shrink E-Shop pill
   ============================================ */
@media (max-width: 1200px) {
  .navbar-links {
    gap: clamp(12px, 1.4vw, 24px);
  }

  .navbar-links a {
    font-size: clamp(10px, 1vw, 13px);
    letter-spacing: 0.06em;
  }

  .navbar-links .nav-etsy {
    padding: 4px 12px;
    font-size: 11px;
  }
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --h-padding: 32px;
    --v-margin: 68px;
    --v-sub: 40px;
  }

  /* Tighten nav for tablet — keep all items visible */
  .navbar-links {
    gap: clamp(10px, 1.8vw, 20px);
  }

  .navbar-links a {
    font-size: clamp(10px, 1.2vw, 13px);
    letter-spacing: 0.04em;
  }

  .navbar-links .nav-etsy {
    padding: 4px 10px;
    font-size: 10px;
  }

  .lang-toggle {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }

  /* Brand text — comfortable tablet sizing */
  .navbar-brand img { width: clamp(40px, 5vw, 52px); }
  .brand-name { font-size: clamp(26px, 3.5vw, 36px); }
  .brand-sub { font-size: clamp(13px, 1.8vw, 17px); }

  .hero { min-height: 500px; }

  h1 { font-size: clamp(40px, 8vw, 60px); }
  h2 { font-size: clamp(32px, 6vw, 48px); }
  h3 { font-size: clamp(24px, 4vw, 36px); }

  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .store-row { gap: 40px; }
  .contact-grid { gap: 40px; }

  /* Sponsor images — slightly larger on tablet */
  .sponsor-images {
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-right: -100px;
    gap: 16px;
  }

  .sponsor-image-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   Hamburger kicks in — nav links hidden
   ============================================ */
@media (max-width: 768px) {
  :root {
    --h-padding: 20px;
    --v-margin: 50px;
    --v-sub: 30px;
  }

  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
  }

  /* Switch to hamburger menu */
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  /* Brand text — mobile sizing */
  .navbar-brand img { width: clamp(38px, 10vw, 48px); }
  .brand-name { font-size: clamp(28px, 7vw, 36px); }
  .brand-sub { font-size: clamp(14px, 3.5vw, 18px); }

  /* Hero — fill full viewport on mobile */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-slider img {
    object-position: 45% center;
    animation: none !important;
  }

  .hero-slider img:nth-child(2) {
    object-position: 35% 22%;
  }

  .hero-content p {
    font-size: clamp(14px, 3.5vw, 17px);
    max-width: 90%;
  }

  .hero-content .btn {
    padding: 14px 36px;
    font-size: 13px;
  }

  .scroll-indicator { bottom: 20px; }

  /* Shape divider — smaller on mobile */
  .shape-divider svg {
    height: 40px;
  }

  .about {
    padding-bottom: calc(var(--v-margin) + 40px);
  }

  /* About — stack */
  .about-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-row.reverse { direction: ltr; }

  .about-text h2 { font-size: clamp(32px, 8vw, 44px); }

  /* Sponsor images — show only first image on mobile */
  .sponsor-images {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sponsor-image-wrapper:nth-child(n+2) {
    display: none;
  }

  /* Journey steps — allow wrapping on mobile */
  .journey-steps {
    max-width: 100%;
    padding: 0 8px;
  }

  .journey-step {
    padding: 10px 16px;
  }

  .journey-step p {
    white-space: normal;
    font-size: 14px;
  }

  .journey-closing {
    max-width: 100%;
    padding: 0 8px;
  }

  /* Fullwidth image */
  .about-fullwidth-image img {
    height: 200px;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card { border-radius: 10px; }

  .product-card img {
    height: 100%;
  }

  .product-card-overlay h3 {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* Store — stack */
  .store-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .store-info { order: -1; }

  .store-image { border-radius: 10px; }

  .store-info h3 { font-size: clamp(28px, 7vw, 36px); }

  .phone-highlight {
    font-size: 18px;
  }

  /* Reviews — single column */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-grid .review-card:last-child { max-width: 100%; }
  .review-card { padding: 24px; }

  /* Newsletter — stack form */
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    min-width: 100%;
  }

  .etsy-cta { padding: 28px 20px; }

  /* Contact — stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map iframe {
    height: 280px;
  }

  .contact-form { grid-template-columns: 1fr; }

  /* Footer */
  .footer-nav { gap: 16px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Partners */
  .partners-logos { gap: 28px; }
  .partners-logos a { width: 90px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --h-padding: 16px;
    --v-margin: 40px;
    --v-sub: 24px;
  }

  .navbar { padding: 10px var(--h-padding); }
  .navbar-brand img { width: 34px; }
  .brand-name { font-size: 26px; }
  .brand-sub { font-size: 12px; letter-spacing: 0.3px; }

  .hero-content h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-content .subtitle {
    font-size: clamp(20px, 6vw, 30px);
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content .btn {
    padding: 12px 28px;
    font-size: 12px;
  }

  /* About bullets */
  .about-text .bullet {
    font-size: clamp(26px, 7vw, 34px);
  }

  /* Journey steps */
  .journey-step p {
    font-size: 13px;
  }

  .step-connector {
    height: 16px;
  }

  /* Products */
  .product-card img {
    height: 100%;
  }

  .product-card-overlay h3 {
    font-size: clamp(20px, 7vw, 28px);
  }

  /* Reviews */
  .review-card { padding: 20px; }
  .review-text { font-size: 14px; }

  /* Store phone */
  .phone-highlight {
    font-size: 17px;
  }

  /* Contact */
  .contact-map iframe {
    height: 220px;
  }

  /* Partners */
  .partners-logos { gap: 20px; }
  .partners-logos a { width: 70px; }
}
