/* ============================================================
   BUTTSNORKELERS.COM — Design System
   Retro Sunset Beach · Irreverent Lifestyle Brand
   ============================================================ */

/* ---- BASE TOKENS (Sunset — default) ---- */
:root {
  --accent:        #E85D04;
  --accent-deep:   #C0390A;
  --accent-light:  #F48C06;
  --accent-glow:   rgba(232, 93, 4, 0.35);
  --headline:      #3D1C02;
  --page-bg:       #FDF6E3;
  --card-bg:       #FFFFFF;
  --text:          #2C1A0A;
  --text-mid:      #5C3D1A;
  --border:        rgba(123, 63, 0, 0.1);
  --badge-color:   rgba(232, 93, 4, 0.1);
  --badge-border:  rgba(232, 93, 4, 0.25);

  /* fixed brand tokens */
  --brown-deep:    #3D1C02;
  --brown:         #7B3F00;
  --orange-deep:   #C0390A;
  --orange:        #E85D04;
  --orange-mid:    #F48C06;
  --gold:          #FAA307;
  --yellow:        #FFBA08;
  --sand-light:    #FDF6E3;
  --sand:          #F5DEB3;
  --sand-mid:      #E8C99A;
  --teal-deep:     #0B4F6C;
  --teal:          #1B7A8C;
  --teal-light:    #3FBAC2;
  --dark:          #1A1008;
  --white:         #FFFFFF;

  --font-display:  'Pacifico', cursive;
  --font-bold:     'Bebas Neue', sans-serif;
  --font-body:     'Space Grotesk', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-card:   0 4px 24px rgba(60, 28, 2, 0.12);
  --shadow-lift:   0 12px 40px rgba(60, 28, 2, 0.18);

  /* Theme transition */
  --theme-speed:   0.6s;
}

/* ============================================================
   THEME OVERRIDES (applied to <html> via JS)
   ============================================================ */

/* Sunset = default, no override needed */

[data-theme="neon"] {
  --accent:        #00E5FF;
  --accent-deep:   #00B4D8;
  --accent-light:  #48CAE4;
  --accent-glow:   rgba(0, 229, 255, 0.3);
  --headline:      #002D3D;
  --page-bg:       #E8FFFE;
  --card-bg:       #FFFFFF;
  --text:          #002D3D;
  --text-mid:      #0077A8;
  --border:        rgba(0, 180, 216, 0.15);
  --badge-color:   rgba(0, 229, 255, 0.1);
  --badge-border:  rgba(0, 229, 255, 0.3);
}

[data-theme="bw"] {
  --accent:        #1A1A1A;
  --accent-deep:   #000000;
  --accent-light:  #444444;
  --accent-glow:   rgba(0, 0, 0, 0.2);
  --headline:      #000000;
  --page-bg:       #F2F2F2;
  --card-bg:       #FFFFFF;
  --text:          #111111;
  --text-mid:      #555555;
  --border:        rgba(0, 0, 0, 0.12);
  --badge-color:   rgba(0, 0, 0, 0.06);
  --badge-border:  rgba(0, 0, 0, 0.2);
}

[data-theme="beach"] {
  --accent:        #1B7A8C;
  --accent-deep:   #0B4F6C;
  --accent-light:  #3FBAC2;
  --accent-glow:   rgba(27, 122, 140, 0.3);
  --headline:      #0B2E35;
  --page-bg:       #E8F8F9;
  --card-bg:       #FFFFFF;
  --text:          #0B2E35;
  --text-mid:      #1B5A68;
  --border:        rgba(27, 122, 140, 0.15);
  --badge-color:   rgba(27, 122, 140, 0.1);
  --badge-border:  rgba(27, 122, 140, 0.3);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  transition:
    background-color var(--theme-speed) ease,
    color var(--theme-speed) ease;
}
body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color var(--theme-speed) ease;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- GRAIN TEXTURE ---- */
.hero__grain, .why__grain, .signup__grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(61, 28, 2, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--orange-deep);
  transition: background 0.3s;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* nav__sticker size controlled by .sticker-circle--nav */
.nav__sticker { display: block; }
.nav__logo-text {
  font-family: var(--font-bold);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 2px;
}
.nav__logo-text em { font-style: normal; color: var(--orange-mid); }
.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--yellow); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn--ghost:hover {
  background: var(--yellow);
  color: var(--brown-deep);
  transform: translateY(-2px);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}
.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 50px;
  border: 2px solid transparent;
}
.btn--nav:hover { background: var(--gold); color: var(--brown-deep); }
.btn--sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: var(--brown-deep);
}

/* Retro sunset stripes */
.hero__stripes {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 0;
}
.hero__stripes span { flex: 1; }
.hero__stripes span:nth-child(1) { background: var(--yellow); }
.hero__stripes span:nth-child(2) { background: var(--gold); }
.hero__stripes span:nth-child(3) { background: var(--orange-mid); }
.hero__stripes span:nth-child(4) { background: var(--orange); }
.hero__stripes span:nth-child(5) { background: var(--orange-deep); }
.hero__stripes span:nth-child(6) { background: var(--brown-deep); }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ============================================================
   STICKER CIRCLE — white disc + die-cut sticker effect
   The circle is the sticker backing; the logo sits on it like
   a physical die-cut sticker placed on a white button/disc.
   ============================================================ */
.sticker-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Logo fills the circle properly — circle controls the size */
.sticker-circle img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 3px 6px rgba(61,28,2,0.28))
    drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  transition: filter 0.3s ease;
}

/* ---- Nav ---- */
.sticker-circle--nav {
  width: 54px;
  height: 54px;
  padding: 5px;
  box-shadow:
    0 3px 0 rgba(0,0,0,0.1),
    0 6px 18px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,1);
}
.nav__logo:hover .sticker-circle--nav {
  transform: rotate(-7deg) scale(1.12);
  box-shadow:
    0 5px 0 rgba(0,0,0,0.12),
    0 12px 28px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,1);
}
.nav__logo:hover .sticker-circle--nav img {
  filter:
    drop-shadow(0 5px 10px rgba(61,28,2,0.4))
    drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ---- Footer ---- */
.sticker-circle--footer {
  width: 100px;
  height: 100px;
  padding: 9px;
  margin-bottom: 16px;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.12),
    0 10px 28px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,1);
}
.sticker-circle--footer:hover {
  transform: rotate(-5deg) scale(1.1);
  box-shadow:
    0 6px 0 rgba(0,0,0,0.14),
    0 16px 36px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* ---- About section ---- */
.sticker-circle--about {
  width: 270px;
  height: 270px;
  padding: 22px;
  box-shadow:
    0 6px 0 rgba(0,0,0,0.08),
    0 18px 52px rgba(61,28,2,0.24),
    inset 0 2px 0 rgba(255,255,255,1);
}
.sticker-circle--about:hover {
  transform: rotate(-4deg) scale(1.04);
  box-shadow:
    0 10px 0 rgba(0,0,0,0.1),
    0 28px 64px rgba(61,28,2,0.32),
    inset 0 2px 0 rgba(255,255,255,1);
}

/* ---- Die-cut sticker in hero ---- */
/* Wrap floats — circle + sticker locked together as one unit */
/* NO filter on the wrap — filter on a container composites children
   before rendering, washing out the logo against the white circle */
.hero__sticker-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: sticker-float 5s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

/* White circle — shadow lives here, not on the wrap */
.hero__sticker-wrap::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 8px 0 rgba(0,0,0,0.09),
    0 28px 64px rgba(61,28,2,0.5),
    0 4px 16px rgba(0,0,0,0.18),
    inset 0 2px 0 rgba(255,255,255,1);
  z-index: 1;
}

/* Logo sits inside the circle — fills most of it */
.hero__sticker {
  position: relative;
  z-index: 2;
  width: 420px;
  max-width: 90%;
}

@keyframes sticker-float {
  0%   { transform: translateY(0px)   rotate(-2deg);   }
  25%  { transform: translateY(-12px) rotate(-1deg);   }
  50%  { transform: translateY(-22px) rotate(-2.5deg); }
  75%  { transform: translateY(-12px) rotate(-3.2deg); }
  100% { transform: translateY(0px)   rotate(-2deg);   }
}

/* Hero copy */
.hero__copy { color: var(--white); }
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 2px 4px 0 rgba(61, 28, 2, 0.4);
}
.hero__headline em {
  font-style: normal;
  color: var(--yellow);
}
.hero__sub {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Wave */
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; height: 80px; }

/* ============================================================
   SECTION SHELLS — react to theme
   ============================================================ */
.section { position: relative; padding: 96px 0; }
.section--page {
  background: var(--page-bg);
  transition: background-color var(--theme-speed) ease;
}
.section--teal {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  overflow: hidden;
}
.section--dark { background: var(--dark); }
.section--sunset-grad {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 40%, var(--orange-deep) 100%);
  overflow: hidden;
  position: relative;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--badge-color);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid var(--badge-border);
  transition: all var(--theme-speed) ease;
}
.section-badge--light {
  color: var(--yellow);
  background: rgba(255, 186, 8, 0.15);
  border-color: rgba(255, 186, 8, 0.3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--headline);
  line-height: 1.15;
  transition: color var(--theme-speed) ease;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-mid); margin-top: 12px; transition: color var(--theme-speed) ease; }
.section-sub--light { color: rgba(255,255,255,0.8); }

/* ============================================================
   PRODUCT CARDS — real images
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Full-width bundle card */
.product-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color var(--theme-speed) ease;
  border: 2px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.product-card--featured { border-color: var(--accent); }
.product-card--bundle   { border-color: var(--gold); }

.product-card__img {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.product-card__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

/* Wide bundle image */
.product-card__img--wide img {
  height: 100%;
  min-height: 320px;
  object-position: center;
}

.product-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-card__badge--hot    { background: var(--brown-deep); }
.product-card__badge--bundle { background: var(--gold); color: var(--brown-deep); }

.product-card__body { padding: 24px; }
.product-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  transition: color var(--theme-speed) ease;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--headline);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color var(--theme-speed) ease;
}
.product-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  transition: color var(--theme-speed) ease;
}
.product-card__desc em { color: var(--accent); font-style: italic; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: border-color var(--theme-speed) ease;
}
.product-card__price {
  font-family: var(--font-bold);
  font-size: 22px;
  color: var(--headline);
  letter-spacing: 1px;
  transition: color var(--theme-speed) ease;
}
.price-strike {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: line-through;
  margin-right: 6px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.14); }
.why-card__icon { font-size: 36px; margin-bottom: 16px; display: block; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 12px;
  line-height: 1.25;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.7; }

/* ============================================================
   COLLECTION GRID + THEME INDICATOR
   ============================================================ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.collection-tile {
  border-radius: var(--radius-xl);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.collection-tile:hover { transform: scale(1.02); }
.collection-tile.is-active {
  outline: 4px solid var(--white);
  outline-offset: -4px;
  transform: scale(1.02);
}
.collection-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  z-index: 1;
}
.collection-tile__inner {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.collection-tile__inner h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.collection-tile__inner p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.collection-tile--sunset { background: linear-gradient(135deg, var(--orange-deep) 0%, var(--yellow) 100%); }
.collection-tile--neon   { background: linear-gradient(135deg, #003E52 0%, #00E5FF 100%); }
.collection-tile--classic{ background: linear-gradient(135deg, #0A0A0A 0%, #555555 100%); }
.collection-tile--beach  { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-light) 100%); }

/* Theme indicator pill */
.theme-indicator {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  min-height: 32px;
  transition: color var(--theme-speed) ease;
}
.theme-indicator span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--badge-color);
  border: 1px solid var(--badge-border);
  padding: 6px 18px;
  border-radius: 50px;
  animation: fade-in 0.3s ease;
  transition: all var(--theme-speed) ease;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INSTAGRAM / FEED GRID
   ============================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 48px;
}
.insta-tile {
  display: block;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease;
  background: var(--dark);
  text-decoration: none;
}
.insta-tile:hover { transform: scale(1.03); z-index: 2; }
.insta-tile:hover .insta-tile__overlay { opacity: 1; }

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.insta-tile:hover img { transform: scale(1.06); }

.insta-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 2, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 16px;
  text-align: center;
  z-index: 1;
}
.insta-tile__overlay span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.social-cta { text-align: center; color: rgba(255,255,255,0.95); }
.social-cta p { font-size: 17px; margin-bottom: 20px; font-weight: 500; }
.social-cta strong { color: var(--yellow); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.about-block__sticker img {
  width: 100%;
  display: block;
}
.about-block__copy p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  transition: color var(--theme-speed) ease;
}
.about-block__sign {
  font-style: italic;
  color: var(--accent);
  border-top: 2px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
  transition: color var(--theme-speed) ease, border-color var(--theme-speed) ease;
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.signup-block {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}
.signup-block h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.signup-block h2 em { font-style: normal; color: var(--yellow); }
.signup-block p { font-size: 16px; color: rgba(255,255,255,0.95); margin-bottom: 32px; }
.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-form__input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form__input::placeholder { color: rgba(255,255,255,0.65); }
.signup-form__input:focus { border-color: var(--yellow); }
.signup-legal { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown-deep);
  padding: 80px 0 40px;
  border-top: 3px solid var(--orange-deep);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
/* footer__sticker size controlled by .sticker-circle--footer */
.footer__sticker { display: block; }
.footer__logo-text {
  font-family: var(--font-bold);
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.footer__logo-text span { color: var(--orange-mid); }
.footer__tagline {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 1px;
  font-style: italic;
  margin-bottom: 20px;
}
.footer__serious {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  font-style: italic;
}
.footer__nav h4 {
  font-family: var(--font-bold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer__nav a:hover { color: var(--orange-mid); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,93,4,0.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__sticker { width: 240px; max-width: 88%; }
  .hero__sticker-wrap::before { width: 285px; height: 285px; }
  .sticker-circle--about { width: 180px; height: 180px; padding: 14px; }
  .hero__cta-group { justify-content: center; }
  .about-block { grid-template-columns: 1fr; }
  .about-block__sticker { display: flex; justify-content: center; }
  .product-card--wide { grid-column: auto; grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .section { padding: 64px 0; }
  .collection-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }

  /* Hero sticker — tighter on small phones */
  .hero__sticker { width: 170px; max-width: 80%; }
  .hero__sticker-wrap::before { width: 200px; height: 200px; }

  /* Nav sticker — slightly larger for legibility */
  .sticker-circle--nav { width: 44px; height: 44px; padding: 4px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
