:root {
  --bg: #1A1A1A;
  --surface: #2C2826;
  --ink: #F5F0E8;
  --accent: #D4A03C;
  --accent-2: #8B6F47;
  --line: rgba(212,160,60,0.25);
  --header-h: 72px;
  --container: 1080px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
}

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg); padding: 8px 16px;
  font-weight: 600; z-index: 9999; border-radius: 4px;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(26,26,26,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 56px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo:hover { color: var(--accent); }
.logo-mark {
  width: 32px; height: 32px; flex-shrink: 0;
}

/* Nav desktop */
.nav-desktop {
  display: none; align-items: center; gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--ink); font-size: 14px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.06em;
  position: relative; padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--accent); transform: scaleX(0);
  transform-origin: right; transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta.is-active { color: var(--bg); }
.nav-desktop .nav-cta {
  background: var(--accent); color: var(--bg); padding: 8px 20px;
  border-radius: 4px; font-weight: 600; letter-spacing: 0.02em;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, box-shadow 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--bg); box-shadow: 0 4px 16px -4px rgba(212,160,60,0.25); }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.1);
  border-radius: 6px;
  cursor: pointer; z-index: 1100; position: relative;
  transition: background 240ms, border-color 240ms;
}
.nav-toggle:hover { background: rgba(245,240,232,0.12); border-color: rgba(245,240,232,0.2); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 28px; height: 3px; background: var(--ink);
  border-radius: 2px; transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); background: var(--surface);
  z-index: 1050; transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 18px; color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(4px); }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile.is-active { color: var(--bg); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 24px; background: var(--accent); color: var(--bg);
  padding: 14px 24px; border-radius: 4px; text-align: center;
  font-weight: 600; border: none;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--ink); color: var(--bg); }

/* Main content offset */
main { padding-top: var(--header-h); }

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; padding: clamp(60px, 12vh, 140px) 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(212,160,60,0.05), transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: block;
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 24px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  max-width: min(20ch, 90%);
  line-height: 0.92; margin-bottom: 32px;
  color: var(--ink); position: relative;
}
.hero h1 .melt-wrap {
  display: inline-block; position: relative;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 540px; color: rgba(245,240,232,0.75);
  margin-bottom: 40px; line-height: 1.7;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px; font-weight: 600;
  font-size: 15px; border-radius: 4px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1), color 240ms, box-shadow 240ms;
}
.hero-cta:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px -4px rgba(212,160,60,0.3); }
.hero-cta:active { transform: translateY(0); }

.hero img {
  border-radius: 8px;
  margin-top: 32px;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.4);
}
@media (min-width: 1024px) {
  .hero img {
    position: absolute;
    right: clamp(16px, 4vw, 48px);
    bottom: clamp(40px, 6vh, 100px);
    width: 42%;
    max-width: 520px;
    margin-top: 0;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 24px 64px -12px rgba(0,0,0,0.5);
  }
}

/* SVG Melt filter (hidden) */
.svg-filters { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Gold divider */
.gold-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  margin: 48px 0; opacity: 0.6;
  animation: gold-shimmer 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .gold-divider { animation: none; background: var(--accent); } }
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* Sections */
section { padding: clamp(60px, 8vw, 120px) 0; }

/* Manifesto */
.manifesto-quote {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.35; color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: clamp(20px, 3vw, 40px);
  max-width: 800px;
}
.manifesto-attribution {
  margin-top: 24px; font-size: 14px;
  color: var(--accent-2); text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Vitrin (flavors) */
.flavor-list { display: flex; flex-direction: column; gap: 48px; overflow-x: clip; }
.flavor-item {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.flavor-item:last-child { border-bottom: none; padding-bottom: 0; }
.flavor-name {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; font-style: italic;
  color: var(--ink); margin-bottom: 12px;
  transition: color 360ms cubic-bezier(.4,0,.2,1);
}
.flavor-item:hover .flavor-name { color: var(--accent); }
.flavor-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(245,240,232,0.7); max-width: 600px;
  line-height: 1.7;
}
.flavor-tag {
  display: inline-block; margin-top: 12px;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  background: rgba(212,160,60,0.1);
  padding: 4px 12px; border-radius: 3px;
}

/* Drop cap */
.drop-cap::first-letter {
  float: left; font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 4.2em; font-weight: 700; font-style: italic;
  line-height: 0.8; color: var(--accent);
  margin-right: 12px; margin-top: 6px;
  text-shadow: 2px 4px 8px rgba(212,160,60,0.2);
}

/* Process section */
.process-text {
  max-width: 720px; margin-bottom: 32px;
  color: rgba(245,240,232,0.85); line-height: 1.8;
}

/* Prices */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%; border-collapse: collapse;
}
th, td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  font-weight: 600; background: rgba(44,40,38,0.5);
}
td { color: var(--ink); font-size: 15px; }
tr:last-child td { border-bottom: none; }
tr { transition: background 300ms cubic-bezier(.4,0,.2,1); }
tr:hover td { background: rgba(212,160,60,0.06); }
td:last-child {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: 18px; color: var(--accent);
}

/* Form */
.form-grid {
  display: grid; gap: 20px;
  max-width: 600px;
}
@media (min-width: 640px) {
  .form-grid--2col { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; padding: 12px 16px;
  color: var(--ink); font-family: inherit; font-size: 15px;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,160,60,0.15), 0 4px 16px -4px rgba(212,160,60,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  flex-direction: row; align-items: flex-start; gap: 12px;
}
.field-checkbox label {
  font-size: 13px; text-transform: none;
  letter-spacing: normal; color: rgba(245,240,232,0.8);
  font-weight: 400; line-height: 1.5;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--bg);
  padding: 14px 36px; font-weight: 600; font-size: 15px;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms, color 240ms, box-shadow 240ms;
}
.btn-submit:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px -4px rgba(212,160,60,0.3); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-success {
  display: none; padding: 20px; background: rgba(212,160,60,0.1);
  border: 1px solid var(--accent); border-radius: 6px;
  color: var(--ink); text-align: center;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none; padding: 12px 16px; background: rgba(180,60,60,0.15);
  border: 1px solid rgba(180,60,60,0.4); border-radius: 4px;
  color: #f0a0a0; font-size: 14px;
}
.form-error.is-visible { display: block; }

/* Section headings */
.section-eyebrow {
  display: block;
  font-size: clamp(11px, 1vw, 12px);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 32px; line-height: 1.1;
}

/* Footer */
.site-footer {
  background: var(--surface); padding: 60px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid; gap: 40px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: 20px; color: var(--ink); margin-bottom: 12px;
}
.footer-text { color: rgba(245,240,232,0.6); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-heading {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  margin-bottom: 16px; font-weight: 600;
  font-style: normal; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(245,240,232,0.7); font-size: 14px; transition: color 240ms, transform 240ms; display: inline-block; }
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px;
  font-size: 13px; color: rgba(245,240,232,0.5);
}
.footer-bottom a { color: rgba(245,240,232,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 20px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-title {
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 13px; color: rgba(245,240,232,0.7);
  line-height: 1.6; margin-bottom: 16px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-btn {
  padding: 10px 18px; border-radius: 4px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: background 240ms, color 240ms, transform 200ms;
}
.cookie-btn--accept { background: var(--accent); color: var(--bg); }
.cookie-btn--accept:hover { background: var(--ink); color: var(--bg); }
.cookie-btn--reject { background: rgba(245,240,232,0.08); color: rgba(245,240,232,0.9); border: 1px solid rgba(212,160,60,0.4); font-weight: 600; }
.cookie-btn--reject:hover { background: rgba(245,240,232,0.14); color: var(--ink); border-color: rgba(212,160,60,0.6); }
.cookie-btn--settings { background: transparent; color: rgba(245,240,232,0.6); border: 1px solid transparent; }
.cookie-btn--settings:hover { color: var(--ink); }

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger { transition-delay: calc(var(--i, 0) * 120ms); }
.reveal[style*="--i"] { transition-delay: calc(var(--i, 0) * 120ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.js .reveal:not(.is-in) {
  animation: reveal-safety 700ms 2.5s cubic-bezier(.16,1,.3,1) both;
}
html.js .reveal.is-in { animation: none; }
@keyframes reveal-safety {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Clip-path heading wipe */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms cubic-bezier(.16,1,.3,1);
}
.clip-reveal.is-in { clip-path: inset(0 0% 0 0); }
html.js .clip-reveal:not(.is-in) {
  animation: clip-safety 900ms 2.5s cubic-bezier(.16,1,.3,1) both;
}
html.js .clip-reveal.is-in { animation: none; }
@keyframes clip-safety {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

/* Gelato-specific animations */
@keyframes drip-ambient {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.6; }
  50% { transform: translateY(12px) scaleY(1.15); opacity: 0.3; }
}
@keyframes cream-swirl {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes scoop-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes frost-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,60,0); }
  50% { box-shadow: 0 0 20px 4px rgba(212,160,60,0.12); }
}

.drip-dot {
  position: absolute; width: 6px; height: 8px;
  background: var(--accent); border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  animation: drip-ambient 3s ease-in-out infinite;
  opacity: 0.5;
}
.drip-dot:nth-child(2) { animation-delay: -1s; left: 30%; }
.drip-dot:nth-child(3) { animation-delay: -2s; left: 60%; }
.drip-dot:nth-child(4) { animation-delay: -0.5s; left: 85%; }

.flavor-item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms, box-shadow 240ms;
  border-radius: 6px; padding: 16px; margin: -16px;
}
.flavor-item:hover {
  transform: translateY(-6px);
  background: rgba(212,160,60,0.03);
  box-shadow: 0 12px 28px -6px rgba(212,160,60,0.18);
}
.flavor-item:hover .flavor-tag { background: rgba(212,160,60,0.18); }

.hero-scoop {
  position: absolute; right: -5%; top: 20%;
  width: clamp(120px, 20vw, 280px); height: clamp(120px, 20vw, 280px);
  border-radius: 50%; opacity: 0.08;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 70%);
  animation: scoop-float 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .drip-dot, .hero-scoop { animation: none; }
}

.gold-shimmer-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--ink) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gold-shimmer-text { animation: none; -webkit-text-fill-color: var(--accent); }
}

/* Frost card effect */
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 24px; text-align: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(212,160,60,0.15);
  animation: frost-pulse 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .price-card:hover { animation: none; }
  .flavor-item, .contact-row { transition: none !important; }
  .hero img { transition: none !important; }
}

/* Melting hero text SVG */
.melt-svg-filter { position: absolute; width: 0; height: 0; overflow: hidden; }
.hero-melt-container { position: relative; display: inline-block; }

/* Contact page */
.contact-channels {
  display: grid; gap: 20px;
}
.contact-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 12px 8px; transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-row:hover { transform: translateX(4px); background: rgba(212,160,60,0.04); border-radius: 6px; }
.contact-row:hover .contact-icon { color: var(--accent); }
.contact-icon {
  width: 20px; height: 20px; color: var(--ink);
  transition: color 240ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0; margin-top: 2px;
}
.contact-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent-2); font-weight: 600;
}
.contact-value { color: var(--ink); font-size: 15px; margin-top: 2px; }
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--accent); }

/* Policy pages */
.policy-content { max-width: 720px; }
.policy-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-top: 48px; margin-bottom: 16px;
}
.policy-content h3 {
  font-size: clamp(17px, 2vw, 22px);
  margin-top: 32px; margin-bottom: 12px;
}
.policy-content p {
  color: rgba(245,240,232,0.8);
  margin-bottom: 16px; line-height: 1.8;
}
.policy-content ul, .policy-content ol {
  padding-left: 24px; margin-bottom: 16px;
  color: rgba(245,240,232,0.8);
}
.policy-content li { margin-bottom: 8px; line-height: 1.7; }

/* 404 */
.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 60px 0;
}
.page-404 h1 { font-size: clamp(80px, 15vw, 200px); color: var(--accent); margin-bottom: 16px; }
.page-404 p { font-size: 18px; color: rgba(245,240,232,0.7); margin-bottom: 32px; }

/* Sitemap page */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 16px; }

/* Buttons generic */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  padding: 12px 28px; font-weight: 600; font-size: 14px;
  border-radius: 4px; border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 240ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px -4px rgba(212,160,60,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 12px 28px; font-weight: 600; font-size: 14px;
  border-radius: 4px; border: 1px solid var(--line); cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--ink); }

/* Word break utility */
.break-word { word-break: break-word; overflow-wrap: anywhere; }

/* ====== HERO: CSS-only entrance (no JS dependency) ====== */
.hero-anim {
  animation: hero-fade-up 750ms cubic-bezier(.16,1,.3,1) both;
}
.hero .hero-eyebrow.hero-anim { animation-delay: 100ms; }
.hero .hero-sub.hero-anim { animation-delay: 550ms; }
.hero .hero-cta.hero-anim { animation-delay: 720ms; }

.hero h1 {
  animation: hero-title-wipe 1000ms cubic-bezier(.16,1,.3,1) both;
  animation-delay: 250ms;
}
.hero img {
  animation: hero-img-rise 900ms cubic-bezier(.16,1,.3,1) both;
  animation-delay: 400ms;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-title-wipe {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes hero-img-rise {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ====== SECTION ALTERNATING BACKGROUNDS ====== */
#manifesto { background: rgba(44,40,38,0.35); position: relative; }
#surecimiz { background: rgba(44,40,38,0.35); position: relative; }
#randevu { background: rgba(44,40,38,0.5); position: relative; }

#manifesto::before,
#surecimiz::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at 100% 20%, rgba(212,160,60,0.03), transparent 70%);
  pointer-events: none;
}

/* ====== SECTION IMAGE STYLING ====== */
#vitrin > .container > img,
#surecimiz > .container > img {
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.45);
}

/* ====== ENHANCED HOVER: WARM GELATO GLOW ====== */
.flavor-item {
  position: relative; z-index: 0;
}
.flavor-item::after {
  content: '';
  position: absolute; inset: -8px;
  background: radial-gradient(ellipse at 20% 100%, rgba(212,160,60,0.07), transparent 65%);
  border-radius: 12px; opacity: 0;
  transition: opacity 500ms cubic-bezier(.16,1,.3,1);
  z-index: -1; pointer-events: none;
}
.flavor-item:hover::after { opacity: 1; }

.contact-row { position: relative; z-index: 0; }
.contact-row::after {
  content: '';
  position: absolute; inset: -4px;
  background: radial-gradient(ellipse at 0% 50%, rgba(212,160,60,0.06), transparent 55%);
  border-radius: 8px; opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  z-index: -1; pointer-events: none;
}
.contact-row:hover::after { opacity: 1; }

.hero-cta:hover {
  box-shadow: 0 8px 32px -4px rgba(212,160,60,0.4), 0 0 24px -6px rgba(212,160,60,0.15);
}
.btn-primary:hover,
.btn-submit:hover {
  box-shadow: 0 8px 32px -4px rgba(212,160,60,0.35), 0 0 20px -4px rgba(212,160,60,0.12);
}

section:not(.hero) img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1), box-shadow 500ms;
}
section:not(.hero) img:hover {
  transform: rotate(0.3deg) scale(1.01);
  box-shadow: 0 20px 60px -12px rgba(212,160,60,0.12);
}

.footer-links a:hover { text-shadow: 0 0 10px rgba(212,160,60,0.25); }

.policy-content a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 400ms cubic-bezier(.16,1,.3,1), color 240ms;
}
.policy-content a:hover { background-size: 100% 1px; }

/* Stagger reveal for flavor items */
.flavor-item.reveal { transition-delay: calc(var(--i, 0) * 150ms); }

/* Stagger for contact rows */
.contact-row:nth-child(1) { transition-delay: 0ms; }
.contact-row:nth-child(2) { transition-delay: 60ms; }
.contact-row:nth-child(3) { transition-delay: 120ms; }
.contact-row:nth-child(4) { transition-delay: 180ms; }
.contact-row:nth-child(5) { transition-delay: 240ms; }

/* Warm cream glow on section images */
#vitrin > .container > img:hover,
#surecimiz > .container > img:hover {
  box-shadow: 0 20px 60px -12px rgba(212,160,60,0.18), 0 0 40px -8px rgba(212,160,60,0.08);
}

/* ====== FOCUS RING IMPROVEMENT ====== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cookie-btn:focus-visible,
.btn-submit:focus-visible {
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(212,160,60,0.2);
}

/* ====== COOKIE BANNER MOBILE ====== */
@media (max-width: 767px) {
  .cookie-banner { bottom: 10px; left: 10px; right: 10px; padding: 16px 18px; }
  .cookie-btn { padding: 10px 14px; min-height: 44px; }
}

/* ====== PREFERS-REDUCED-MOTION: ALL ANIMATIONS ====== */
@media (prefers-reduced-motion: reduce) {
  .hero-anim,
  .hero h1,
  .hero img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .reveal, .clip-reveal {
    animation: none !important;
  }
  section:not(.hero) img { transition: none !important; }
  .flavor-item::after,
  .contact-row::after { transition: none !important; }
  .policy-content a { transition: none !important; background-size: 100% 1px !important; }
  .footer-links a { text-shadow: none !important; transition: none !important; }
}

/* Drawer close button */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.1);
  border-radius: 6px; color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), border-color 240ms;
}
.drawer-close:hover { background: rgba(245,240,232,0.12); border-color: rgba(245,240,232,0.2); }

/* Scroll progress bar */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent);
  width: 0%;
  transition: none;
  pointer-events: none;
}

/* Print */
@media print {
  .site-header, .mobile-drawer, .mobile-backdrop, .cookie-banner, .nav-toggle, .nav-desktop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
