/* ═══════════════════════════════════════════════════
   GELATO DONATELLO — style.css
   ═══════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────── */
:root {
  --gold:         #C9852A;
  --gold-light:   #E8A84A;
  --gold-dark:    #A06618;
  --gold-glow:    rgba(201,133,42,.35);
  --espresso:     #1A0D00;
  --espresso-2:   #251500;
  --espresso-3:   #3A2008;
  --cream:        #FDF6ED;
  --cream-2:      #F5E9D5;
  --pistachio:    #7D9B5C;
  --text:         #2C1810;
  --text-muted:   #8B7355;
  --white:        #ffffff;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow:       0 4px 24px rgba(28,13,0,.10);
  --shadow-lg:    0 12px 48px rgba(28,13,0,.18);
  --shadow-gold:  0 8px 32px rgba(201,133,42,.25);
  --transition:   .38s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.hide-sm { display: inline; }

/* ── Typography ─────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

p  { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); }

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

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-light); }

.lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header h2 { color: var(--white); margin-bottom: 1rem; }
.section-header p  { color: rgba(255,255,255,.65); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,133,42,.4);
}

.btn-ghost {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: loader-rotate 2s linear infinite;
  transform-origin: center center;
}

.loader-track {
  fill: none;
  stroke: rgba(201,133,42,.15);
  stroke-width: 5;
}

.loader-arc {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 553; /* 2π × 88 */
  stroke-dashoffset: 415; /* ~75% hidden */
  animation: loader-arc-pulse 2s ease-in-out infinite;
}

@keyframes loader-rotate {
  to { transform: rotate(360deg); }
}
@keyframes loader-arc-pulse {
  0%,100% { stroke-dashoffset: 415; opacity: .7; }
  50%       { stroke-dashoffset: 138; opacity: 1; }
}

.loader-logo {
  position: absolute;
  width: 138px;
  height: 138px;
  object-fit: contain;
}

.loader-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  animation: fade-pulse 2s ease-in-out infinite;
}
@keyframes fade-pulse {
  0%,100% { opacity: .6; }
  50%       { opacity: 1; }
}


/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 4vw;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#nav.scrolled {
  background: rgba(26,13,0,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
  padding: .55rem 4vw;
}

.nav-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition), width var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
#nav.scrolled .nav-logo img { height: 112px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover       { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--gold-light) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(26,13,0,.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}
#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero-video.loaded { transform: scale(1); }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 40%, rgba(26,13,0,.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  margin-left: max(4vw, calc((100vw - 1200px)/2));
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

#hero h1 {
  color: #000;
  line-height: 1.1;
  text-shadow: none;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(0,0,0,.8);
  max-width: 540px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.stat {
  display: block;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  display: inline;
}
.stat-plus { font-size: 1.4rem; color: var(--gold); vertical-align: super; display: inline; }
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
  margin-top: .25rem;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,.25);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,.7);
  animation: hero-bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes hero-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ══════════════════════════════════════════════════
   QUOTE BAR
══════════════════════════════════════════════════ */
.quote-bar {
  background: var(--espresso);
  padding: 4rem 0;
}
.quote-bar blockquote {
  text-align: center;
  position: relative;
}
.quote-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: .5;
  display: block;
  margin: 0 auto 1.25rem;
}
.quote-bar blockquote span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.55;
  display: block;
  margin-bottom: 1.25rem;
}
.quote-bar cite {
  font-size: .88rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  font-style: normal;
}


/* ══════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════ */
#story {
  padding: 7rem 0;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-visuals {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.story-img-main:hover img { transform: scale(1.04); }

.story-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.story-img-pair img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform .5s ease;
}
.story-img-pair img:hover { transform: scale(1.03); }

.story-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: .25rem;
}

.story-text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-text h2 { margin-bottom: .5rem; }
.story-text p  { margin: 0; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}


/* ══════════════════════════════════════════════════
   SECTION DARK
══════════════════════════════════════════════════ */
.section-dark {
  background: var(--espresso);
  padding: 7rem 0;
}


/* ══════════════════════════════════════════════════
   EISSORTEN
══════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .6rem 1.5rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  border: 1.5px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.filter-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.flavor-card {
  background: var(--espresso-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  cursor: default;
}
.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border-color: rgba(201,133,42,.3);
}
.flavor-card.filtered {
  display: none;
}

.flavor-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.flavor-card:hover .flavor-img-wrap img { transform: scale(1.08); }

.flavor-label {
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.flavor-label h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.ftag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  background: rgba(201,133,42,.18);
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.ftag.vegan   { background: rgba(125,155,92,.2);  color: #a8c87a; }
.ftag.fan     { background: rgba(201,133,42,.25);  color: var(--gold-light); }
.ftag.special { background: rgba(200,100,180,.2);  color: #d8a0d0; }
.ftag.indulge { background: rgba(220,80,80,.2);    color: #e8a0a0; }


/* ══════════════════════════════════════════════════
   HERO — DUAL VIDEO CROSSFADE
══════════════════════════════════════════════════ */

/* Wrapper-Div übernimmt Position + Opacity-Transition.
   So liegt die Compositing-Layer auf einem regulären Div,
   nicht direkt auf dem Video-Element (verhindert Sub-Pixel-Drift). */
.hero-vid-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}
.hero-vid-wrap.hero-vid-active {
  opacity: 1;
  z-index: 2;
}
.hero-vid-wrap.hero-vid-behind {
  opacity: 1;
  z-index: 1;
  transition: none;
}

/* Video füllt den Wrapper aus – keine Transition, keine Layer-Effekte */
.hero-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* ══════════════════════════════════════════════════
   GALLERIA
══════════════════════════════════════════════════ */
#galleria {
  padding: 7rem 0;
  background: var(--cream);
}
#galleria .section-header h2 { color: var(--text); }
#galleria .eyebrow { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-2);
}
.g-item.g-large {
  grid-column: span 2;
  grid-row: span 2;
}
.g-item.g-ai {
  grid-column: span 2;
  min-height: 220px;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  aspect-ratio: 1;
}
.g-item.g-large img { aspect-ratio: unset; height: 100%; }

.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,13,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-weight: 600;
  font-size: .85rem;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.7);
  padding: .5rem 1.25rem;
  border-radius: 100px;
}


/* ══════════════════════════════════════════════════
   KONTAKT — neue 3-spaltige Struktur
══════════════════════════════════════════════════ */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(201,133,42,.1);
  border-color: rgba(201,133,42,.25);
}

.cc-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,133,42,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.cc-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .3rem;
}
.cc-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.cc-text a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.cc-text a:hover { color: var(--gold-light); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-map iframe { height: 100%; }

/* ── Kontaktformular ── */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-header {
  margin-bottom: 1.75rem;
}
.form-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.form-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: var(--espresso-2); color: var(--white); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,133,42,.08);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e06060;
}

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

.form-privacy {
  margin-bottom: 1.25rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-label span {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.checkbox-label a { color: var(--gold-light); }

.form-feedback {
  font-size: .9rem;
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease, margin .4s ease;
}
.form-feedback.show {
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  max-height: 80px;
}
.form-feedback.success {
  background: rgba(125,180,90,.15);
  border: 1px solid rgba(125,180,90,.3);
  color: #a0d080;
}
.form-feedback.error {
  background: rgba(220,80,80,.12);
  border: 1px solid rgba(220,80,80,.25);
  color: #e09090;
}

.btn-full { width: 100%; justify-content: center; }

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
button.loading .btn-label { display: none; }
button.loading .btn-spinner { display: inline-block; }


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--espresso); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a, .footer-col p {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  line-height: 1.65;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-inner span {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }


/* ══════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
#lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lb-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform: scale(.95);
  transition: transform .4s ease;
}
#lightbox.open #lb-img { transform: scale(1); }

.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-close svg { width: 22px; height: 22px; }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}
.lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-nav svg { width: 26px; height: 26px; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }


/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal      { transform: translateY(32px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right{ transform: translateX(48px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .story-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .story-badge   { right: 0; bottom: -1rem; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-map       { height: 280px; }
  .contact-form-wrap { padding: 1.75rem; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .g-item.g-large { grid-column: span 2; }
  .g-item.g-ai    { grid-column: span 2; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  #nav       { padding: .75rem 5vw; }

  .hero-content { padding-top: 80px; }
  .hero-stats   { flex-wrap: wrap; gap: 1rem; }
  .stat-sep     { display: none; }

  .contact-cards { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .flavors-grid  { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: 1; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hide-sm { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-actions { flex-direction: column; gap: .75rem; }
  .btn          { text-align: center; justify-content: center; }

  .flavor-label         { padding: .4rem .5rem; }
  .flavor-label h3      { font-size: .7rem; }
  .flavor-label span    { display: none; }

  .flavors-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.g-large, .g-item.g-ai { grid-column: 1; }

  .filter-tabs  { gap: .5rem; }
  .filter-btn   { font-size: .8rem; padding: .5rem 1.1rem; }
}
