/* =============================================================
   PISTACCHIO V2 — Editorial Italian Warm
   Design System — May 2026
   ============================================================= */

/* ---------- FONTS ---------- */
/* Google font (DM Sans) is loaded via <link rel="stylesheet"> in <head> for non-blocking parallel fetch. */

@font-face {
  font-family: 'Boston Angel';
  src: url('../fonts/Boston-Angel-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Boston Angel';
  src: url('../fonts/Boston-Angel-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Boston Angel';
  src: url('../fonts/Boston-Angel-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Magical Snow';
  src: url('../fonts/Magical-Snow.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Color palette — Pistacchio brand: 4 tonos de cream + 2 verdes + charcoal */
  --cream:        #ECE2D0;  /* primary background */
  --cream-light:  #F7F0E1;  /* lighter sections */
  --cream-warm:   #F7F0E1;  /* alias = cream-light */
  --cream-deep:   #E5D5BC;  /* accent sections */
  --green:        #9DCC3F;  /* PRIMARY GREEN — buttons, badges, CTAs */
  --green-deep:   #6BA02C;  /* SECONDARY GREEN — hover, accents on cream, eyebrows */
  --gold:         #6BA02C;  /* alias to green-deep */
  --gold-deep:    #6BA02C;  /* alias to green-deep */
  --green-leaf:   #6BA02C;  /* alias to green-deep */
  --charcoal:     #2A1F12;  /* main text + dark sections */
  --charcoal-soft:#4A3E2E;  /* body text + soft headlines */
  --gray:         #8A7E6F;  /* meta text */
  --gray-light:   #C9BFB0;  /* dividers + faded text */
  --white:        #FFFFFF;
  --black:        #000000;
  --uber-green:   #6BA02C;  /* Unified to logo green-deep (was Uber #06C167) */

  /* Typography — Boston Angel (decorative) + DM Sans (body) */
  --font-display: 'Boston Angel', 'Times New Roman', serif;
  --font-heading: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-script:  'Boston Angel', 'Brush Script MT', cursive;
  --font-snow:    'Magical Snow', 'Brush Script MT', cursive;

  /* Type scale (clamp for fluid) */
  --fs-display:  clamp(3rem, 8vw, 6.5rem);
  --fs-h1:       clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2:       clamp(2rem, 4.5vw, 3.25rem);
  --fs-h3:       clamp(1.5rem, 3vw, 2.25rem);
  --fs-h4:       1.25rem;
  --fs-lead:     clamp(1.125rem, 1.5vw, 1.4rem);
  --fs-body:     1rem;
  --fs-small:    0.875rem;
  --fs-tiny:     0.75rem;

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Layout */
  --container:    1280px;
  --container-narrow: 980px;
  --radius-sm:    4px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  999px;

  /* Shadow */
  --shadow-soft:  0 4px 20px rgba(42, 31, 18, 0.06);
  --shadow-med:   0 10px 40px rgba(42, 31, 18, 0.10);
  --shadow-deep:  0 24px 60px rgba(42, 31, 18, 0.18);

  /* Motion */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}
p { color: var(--charcoal-soft); }
strong { color: var(--charcoal); font-weight: 700; }
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
/* Boston Angel for big decorative heads (h1, h2). DM Sans for h3/h4 + body. */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}
h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 500; }
h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}
p  { margin-bottom: 1em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-block;
}
.script  { font-family: var(--font-script); font-weight: 500; font-style: italic; }
.italian { font-style: italic; font-weight: 500; color: var(--green-deep); }
em { font-style: italic; }
em.italian { font-style: italic; color: var(--green-deep); }
/* Italic variants in Boston Angel render as light cursive — mantain weight bumps for readability */
h1 em, h1 em.italian { font-weight: 700; color: var(--green-deep); }
h2 em, h2 em.italian { font-weight: 500; color: var(--green-deep); }

/* ---------- LAYOUT HELPERS ---------- */
.container        { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section          { padding: clamp(60px, 8vw, 120px) 0; position: relative; }
.section-tight    { padding: clamp(40px, 5vw, 80px) 0; }
.bg-cream-light   { background: var(--cream-light); }
.bg-cream-warm    { background: var(--cream-warm); }
.bg-charcoal      { background: var(--charcoal); color: var(--cream); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--cream); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-green { background: var(--green); color: var(--charcoal); }
.btn-green:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-med); }
.btn-charcoal { background: var(--charcoal); color: var(--cream); }
.btn-charcoal:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-med); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-uber { background: var(--uber-green); color: var(--white); }
.btn-uber:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-med); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 226, 208, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 31, 18, 0.08);
  transition: padding 0.3s var(--ease-out);
}
.nav.shrunk { padding: 0; box-shadow: var(--shadow-soft); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 110px; width: auto; transition: height 0.3s var(--ease-out); display: block; }
.nav.shrunk .nav-logo img { height: 88px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-deep); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  font-size: 0.82rem !important;
  border-radius: var(--radius-pill);
  color: var(--cream) !important;
  background: var(--charcoal) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta span[data-i18n] { white-space: nowrap; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-deep) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ASYMMETRIC SPLIT ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 90px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 100px;
  gap: 60px;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 50px; height: 2px;
  background: var(--green-deep);
}
.hero-title {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-deep);
  font-weight: 600;
}
.hero-title .green-dot { color: var(--green); }
.hero-lead {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(42, 31, 18, 0.12);
  font-size: 0.85rem;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(163, 123, 59, 0.22);
  border-radius: var(--radius-pill);
  color: var(--charcoal-soft);
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease-out);
}
.hero-meta-item:hover { background: var(--white); border-color: var(--green); transform: translateY(-2px); }
.hero-meta-item .meta-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-meta-item.stars .meta-ic { background: var(--gold); color: var(--white); }
.hero-meta-item strong { color: var(--charcoal); font-weight: 700; }
.hero-meta-item .meta-label { font-size: 0.78rem; }

.hero-visual {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(42, 31, 18, 0.22));
  z-index: 2;
  pointer-events: none;
}

/* Hero image slider — crossfade */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-in-out);
  will-change: opacity, transform;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 12s var(--ease-out) infinite alternate;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}
.hero-slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--green);
  width: 0%;
  z-index: 3;
  transition: width 0.1s linear;
}

.hero-floating-card {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow-med);
  font-size: 0.85rem;
  max-width: 280px;
}
.hero-floating-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
.hero-floating-card strong { color: var(--charcoal); display: block; }
.hero-floating-card span { color: var(--gray); font-size: 0.78rem; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(157, 204, 63, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(157, 204, 63, 0); }
}

.hero-decor-leaf {
  position: absolute;
  width: 180px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}
.hero-decor-leaf.tl { top: 40px; left: -40px; transform: rotate(-15deg); }
.hero-decor-leaf.br { bottom: 40px; right: 30%; transform: rotate(120deg); }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--charcoal);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .star { color: var(--green); font-size: 1rem; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEADINGS ---------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--charcoal-soft); font-size: var(--fs-lead); }
.section-head.left { text-align: left; margin-left: 0; max-width: 600px; }

/* ---------- CATEGORY GRID ---------- */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.cat-grid > .cat-tile {
  flex: 1 1 220px;
  max-width: calc(25% - 18px);
}
@media (max-width: 1100px) {
  .cat-grid > .cat-tile { max-width: calc(33.333% - 16px); }
}
@media (max-width: 768px) {
  .cat-grid > .cat-tile { max-width: calc(50% - 6px); flex-basis: 200px; }
}
@media (max-width: 460px) {
  .cat-grid > .cat-tile { max-width: 100%; flex-basis: 100%; }
}
.cat-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
  isolation: isolate;
}
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
}
.cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 31, 18, 0.85));
  z-index: 1;
}
.cat-tile-content {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  color: var(--cream);
}
.cat-tile-content h3 {
  color: var(--cream);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.05;
}
.cat-tile-content .it {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.cat-tile:hover img { transform: scale(1.08); filter: brightness(1.08) saturate(1.12); }
.cat-tile::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.32) 45%, rgba(157,204,63,0.22) 50%, rgba(255,255,255,0.32) 55%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(25deg);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.9s var(--ease-out);
}
.cat-tile:hover::before { transform: translateX(60%) translateY(60%) rotate(25deg); }
.cat-tile:hover { box-shadow: 0 22px 50px rgba(157, 204, 63, 0.18), 0 8px 20px rgba(42, 31, 18, 0.18); }
.cat-tile { transform: translateY(0); animation: cat-float 6s var(--ease-in-out) infinite; }
.cat-tile:nth-child(2n) { animation-delay: -1.5s; }
.cat-tile:nth-child(3n) { animation-delay: -3s; }
.cat-tile:nth-child(4n) { animation-delay: -4.5s; }
.cat-tile:hover { transform: translateY(-6px); animation-play-state: paused; }
.cat-tile::after { z-index: 1; }
.cat-tile-content { z-index: 3; }
.cat-tile img { transition: transform 0.7s var(--ease-out), filter 0.5s ease; }
@keyframes cat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Auto shimmer sweep for tiles on mobile (no hover) */
@media (hover: none), (max-width: 768px) {
  .cat-tile::before {
    animation: cat-shimmer 7s var(--ease-out) infinite;
  }
  .cat-tile:nth-child(2n)::before { animation-delay: -1.5s; }
  .cat-tile:nth-child(3n)::before { animation-delay: -3s; }
  .cat-tile:nth-child(4n)::before { animation-delay: -4.5s; }
  .cat-tile:nth-child(5n)::before { animation-delay: -6s; }
  @keyframes cat-shimmer {
    0%   { transform: translateX(-100%) translateY(-100%) rotate(25deg); }
    18%  { transform: translateX(60%) translateY(60%) rotate(25deg); }
    100% { transform: translateX(60%) translateY(60%) rotate(25deg); }
  }
  .cat-tile img { animation: cat-img-pulse 6s var(--ease-in-out) infinite; }
  .cat-tile:nth-child(odd) img { animation-direction: alternate; }
  @keyframes cat-img-pulse {
    0%, 100% { filter: brightness(1) saturate(1); transform: scale(1); }
    50%      { filter: brightness(1.06) saturate(1.1); transform: scale(1.04); }
  }
  .cat-tile { animation: cat-float 7s var(--ease-in-out) infinite; }
}

/* ---------- SIGNATURE SLIDER ---------- */
.signature {
  background: var(--cream-light);
}
.slider-wrap { position: relative; }
.slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  padding: 8px 4px 36px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}
.slider:active { cursor: grabbing; }
.slider::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 clamp(260px, 30vw, 360px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
  position: relative;
}
.slide-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.slide-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(157, 204, 63, 0.32);
}
.slide-body { padding: 22px 24px 26px; }
.slide-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 8px;
  line-height: 1.15;
  color: var(--charcoal);
}
.slide-body p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.55;
}
.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-link::after { content: '→'; transition: transform 0.3s ease; }
.slide-link:hover::after { transform: translateX(4px); }

/* Slider dots indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(42, 31, 18, 0.18);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease-out);
}
.slider-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}
.slider-dot:hover { background: var(--gold); }
.slider-dot.active:hover { background: var(--green-deep); }

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.slider-arrows { display: flex; gap: 12px; }
.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s var(--ease-out);
}
.slider-arrow:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---------- STORY SECTION ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text .eyebrow { margin-bottom: 14px; }
.story-text h2 { margin-bottom: 24px; }
.story-text p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.story-text .signature-line {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.story-img-stack { position: relative; }
.story-img-stack img { border-radius: var(--radius-lg); box-shadow: var(--shadow-med); }
.story-img-stack .img-1 {
  width: 75%;
}
.story-img-stack .img-2 {
  position: absolute;
  bottom: -50px; right: 0;
  width: 55%;
  border: 8px solid var(--cream);
}

/* ---------- 4-POINT FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.feature {
  text-align: center;
  padding: 12px;
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.feature h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.feature p { font-size: 0.95rem; color: var(--gray); }

/* ---------- TESTIMONIAL CAROUSEL ---------- */
.reviews {
  background: var(--charcoal);
  color: var(--cream);
}
.reviews h2, .reviews .eyebrow { color: var(--green); }
.reviews h2 em.italian { color: var(--green); font-weight: 500; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--cream);
  margin-top: 14px;
}
.reviews-rating .rating-stars {
  color: var(--green);
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.reviews-rating strong { color: var(--green); font-weight: 700; }
.reviews-see-all {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  margin-left: 8px;
  font-size: 0.85rem;
}
.reviews-see-all:hover { color: var(--white); border-bottom-color: var(--white); }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(157, 204, 63, 0.18);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}
.review-card:hover {
  background: rgba(157, 204, 63, 0.08);
  transform: translateY(-4px);
}
.review-stars { color: var(--green); margin-bottom: 14px; letter-spacing: 2px; }
.review-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-author strong { display: block; color: var(--cream); font-weight: 600; }
.review-author span { font-size: 0.8rem; color: var(--gray-light); }

/* ---------- TODAY AT (FRESH BAKED) ---------- */
.today {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.today-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.today-text h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.today-text .timestamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
}
.today-text .timestamp::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite;
}
.today-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.today-item {
  background: rgba(255,255,255,0.8);
  padding: 16px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}
.today-item-icon { font-size: 1.6rem; }
.today-item strong { display: block; color: var(--charcoal); font-size: 0.95rem; }
.today-item span { font-size: 0.75rem; color: var(--gray); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/decor/background-pistacchios-pattern.png') center/600px repeat;
  opacity: 0.06;
  pointer-events: none;
}
.final-cta-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1;
}
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.final-cta p {
  color: var(--gray-light);
  font-size: var(--fs-lead);
  max-width: 600px;
  margin: 0 auto 36px;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--green);
  color: var(--charcoal);
  padding: 60px 0;
}
.newsletter-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.newsletter-icon {
  width: 56px; height: 56px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.05;
}
.newsletter-text h3 em.italian {
  color: var(--charcoal);
  font-weight: 600;
  font-style: italic;
}
.newsletter-text p { color: var(--charcoal-soft); margin: 0 0 4px; font-size: 0.95rem; }
.newsletter-text p strong { color: var(--charcoal); font-weight: 700; }
.newsletter-contact { font-size: 0.85rem !important; color: var(--charcoal-soft) !important; }
.newsletter-contact a { color: var(--charcoal); font-weight: 700; text-decoration: underline; }
.newsletter-contact a:hover { color: var(--charcoal-soft); }
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input[type=email],
.newsletter-form input[type=tel] {
  flex: 1;
  min-width: 240px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.96);
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: 2px solid var(--charcoal); outline-offset: 2px; }
.newsletter-form .btn { padding: 14px 28px; }
.newsletter-status { font-size: 0.8rem; color: var(--charcoal); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 160px;
  width: auto;
  margin-bottom: 22px;
  background: var(--cream);
  padding: 12px 22px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  object-fit: contain;
}
.footer-brand .nav-logo, .footer-brand a { display: inline-block; }
.footer-brand .tagline {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; color: var(--gray-light); }
.footer a { transition: color 0.25s ease; }
.footer a:hover { color: var(--green); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--charcoal); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---------- STICKY MOBILE BOTTOM BAR ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(247, 240, 225, 0.94), rgba(236, 226, 208, 0.98));
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 -16px 36px rgba(42, 31, 18, 0.10);
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  border-top: 1px solid rgba(163, 123, 59, 0.22);
}
.mobile-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.6;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.mobile-bar a:active { transform: scale(0.96); }
.mobile-bar a .mb-icon {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-bar a svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-bar a .mb-label { line-height: 1; }
.mobile-bar a.reserve {
  background: var(--charcoal);
  color: var(--cream);
  border: 1.5px solid var(--charcoal);
  box-shadow: 0 6px 18px rgba(42, 31, 18, 0.18);
}
.mobile-bar a.reserve .mb-icon { color: var(--green); }
.mobile-bar a.uber {
  background: var(--cream);
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  box-shadow: 0 6px 18px rgba(42, 31, 18, 0.10);
}
.mobile-bar a.uber .mb-icon { color: var(--uber-green); }
.mobile-bar a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.mobile-bar a:hover::after, .mobile-bar a:focus::after { transform: translateX(110%); }

/* ---------- DESKTOP FLOATING UBER ---------- */
.uber-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  background: var(--uber-green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(6,193,103,0.35);
  animation: fab-in 0.6s 1s var(--ease-out) both, fab-pulse 3s 2s infinite;
  transition: transform 0.3s var(--ease-out);
}
.uber-fab:hover { transform: translateY(-3px) scale(1.03); }
.uber-fab-icon {
  width: 32px; height: 32px;
  background: var(--white);
  color: var(--uber-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.uber-fab-text { line-height: 1.2; }
.uber-fab-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.uber-fab-text span { font-size: 0.65rem; opacity: 0.85; letter-spacing: 0.08em; }
@keyframes fab-in {
  from { transform: translateY(80px) scale(0.7); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 14px 40px rgba(6,193,103,0.35); }
  50% { box-shadow: 0 14px 40px rgba(6,193,103,0.6), 0 0 0 14px rgba(6,193,103,0); }
}

/* ---------- INTRO ANIMATION (PISTACHIO CUT) ---------- */
.intro {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.6s ease 0.2s;
}
.intro.gone { opacity: 0; visibility: hidden; }
.intro-logo {
  height: 130px;
  width: auto;
  animation: intro-cut 1.6s var(--ease-out) forwards;
}
@keyframes intro-cut {
  0%   { transform: scale(0.6); opacity: 0; }
  35%  { transform: scale(1); opacity: 1; }
  60%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0; }
}
.intro::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  animation: intro-line 1.6s var(--ease-out) forwards;
}
@keyframes intro-line {
  0%   { transform: scaleX(0); opacity: 0; }
  20%  { opacity: 0; }
  35%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- MENU PAGE STYLES ---------- */
.page-hero {
  text-align: center;
  padding: 80px 24px 140px;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.page-hero > * { position: relative; z-index: 3; }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 56px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ECE2D0' d='M0 80 L0 50 Q150 0 300 30 T600 30 T900 30 T1200 30 L1200 80 Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  z-index: 2;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 12px;
}
.page-hero .subtitle {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.page-hero .pistacchio-deco {
  position: absolute;
  width: 160px;
  opacity: 0.18;
  pointer-events: none;
}
.page-hero .pistacchio-deco.left  { top: 20px; left: -30px; transform: rotate(-30deg); }
.page-hero .pistacchio-deco.right { bottom: 20px; right: -30px; transform: rotate(170deg); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 31, 18, 0.08);
}
.contact-detail:last-child { border-bottom: 0; }
.contact-icon-circle {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-detail p { color: var(--gray); margin: 0; line-height: 1.55; font-size: 0.95rem; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--cream-light);
  font-size: 0.95rem;
  transition: border 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 24px 80px;
  }
  .hero-visual { height: clamp(320px, 50vh, 480px); }
  .hero-decor-leaf { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-stack .img-2 { display: none; }
  .story-img-stack .img-1 { width: 100%; }
  .today-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-icon { margin: 0 auto; }
  .newsletter-form { justify-content: center; }
}

@media (max-width: 768px) {
  /* Mobile nav: hamburger left, logo centered BIG, lang flags right */
  .nav-inner {
    padding: 12px 12px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 8px;
  }
  .nav-toggle { display: flex; order: 1; justify-self: start; }
  .nav-logo {
    order: 2;
    justify-self: center;
    text-align: center;
  }
  /* hide the desktop lang-switch (inside nav-links menu) on mobile */
  .nav-links .lang-switch { display: none !important; }
  /* mobile-only compact lang-switch placed in header right */
  .lang-switch-mobile {
    order: 3;
    justify-self: end;
    display: inline-flex !important;
    gap: 4px;
    align-items: center;
    background: rgba(255,255,255,0.55);
    padding: 4px;
    border-radius: 999px;
  }
  .lang-switch-mobile button {
    width: 28px; height: 28px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
    opacity: 0.55;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
  }
  .lang-switch-mobile button:hover { opacity: 0.85; }
  .lang-switch-mobile button.active {
    background: var(--green);
    opacity: 1;
    transform: scale(1.06);
  }
  .lang-switch-mobile button:disabled { cursor: default; }
  .lang-switch-mobile .flag { font-size: 1rem; line-height: 1; }
}
.lang-switch-mobile { display: none; }

@media (max-width: 768px) {
  .nav-logo img {
    height: 120px !important;
    margin: 0 auto;
  }
  .nav.shrunk .nav-logo img { height: 95px !important; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    gap: 2px;
    border-bottom: 1px solid rgba(42, 31, 18, 0.1);
    box-shadow: var(--shadow-med);
    text-align: center;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    order: 4;
    grid-column: 1 / -1;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 1.05rem; }
  .nav-links a.nav-cta { margin-top: 14px; padding: 14px 28px !important; align-self: center; display: inline-flex !important; }
  .nav-cta { display: none; }
  .uber-fab { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 84px; }

  .section { padding: clamp(48px, 8vw, 80px) 0; }

  /* Hero mobile refinement */
  .hero-grid { padding: 24px 20px 64px; gap: 32px; }
  .hero-visual { height: 58vh; max-height: 560px; min-height: 360px; border-radius: var(--radius); }
  .hero-floating-card { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 12px 16px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.2rem); line-height: 0.98; }
  .hero-eyebrow::before { width: 30px; }
  .hero-eyebrow .eyebrow { font-size: 0.7rem; }
  .hero-lead { font-size: 1rem; margin-bottom: 28px; }
  .hero-meta {
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(42, 31, 18, 0.1);
    flex-wrap: wrap;
  }
  .hero-meta-item {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    font-size: 0.78rem;
    padding: 10px 12px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius);
  }
  .hero-meta-item:first-child { flex-basis: 100%; }
  .hero-meta-item .meta-label { font-size: 0.7rem; line-height: 1.2; }
  .hero-meta-item strong { font-size: 0.82rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }

  .ticker { padding: 14px 0; }
  .ticker-track { font-size: 1.05rem; gap: 36px; }
  .ticker-track .star { font-size: 0.85rem; }

  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-tile { aspect-ratio: 4 / 5; border-radius: var(--radius); }
  .cat-tile-content { bottom: 14px; left: 14px; right: 14px; }
  .cat-tile-content h3 { font-size: 1.15rem; }
  .cat-tile-content .it { font-size: 0.82rem; }

  .slide { flex: 0 0 78vw; }
  .slide-body { padding: 18px 20px 22px; }
  .slide-body h3 { font-size: 1.25rem; }

  .features { grid-template-columns: 1fr 1fr; gap: 18px; }
  .feature h4 { font-size: 1.1rem; }
  .feature-icon { width: 56px; height: 56px; font-size: 1.5rem; }

  .reviews-track { grid-template-columns: 1fr; }
  .review-card { padding: 22px; }
  .today-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .today-item { padding: 12px 14px; font-size: 0.88rem; }
  .today-item-icon { font-size: 1.3rem; }

  .section-head { margin-bottom: 40px; }

  .menu-section-head h2 { font-size: 1.7rem; }
  .menu-section { padding: 44px 0 20px; }

  .page-hero { padding: 50px 18px 100px; }
  .page-hero h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); margin-bottom: 8px; }
  .page-hero .subtitle { font-size: 0.98rem; line-height: 1.4; padding: 0 14px; max-width: 360px; margin: 0 auto; }
  .page-hero .pistacchio-deco { width: 110px; }
  .page-hero::after { height: 38px; bottom: -1px; }

  .final-cta { padding: 64px 0 80px; }
  .final-cta-script { font-size: clamp(2rem, 8vw, 3rem); }
  .newsletter { padding: 44px 0; }
  .newsletter-text h3 { font-size: 1.4rem; }
}

@media (max-width: 460px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr; }
  .nav-logo img { height: 70px; }
  .nav.shrunk .nav-logo img { height: 60px; }
  .nav-cta { display: none !important; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-meta { gap: 10px 18px; }
  .hero-meta-item { font-size: 0.74rem; }
  .mobile-bar a { font-size: 0.72rem; padding: 12px 8px; gap: 8px; }
  .mobile-bar a svg { width: 20px; height: 20px; }
  .today-list { grid-template-columns: 1fr; }
  .review-card { padding: 20px; }
  .discover-content { padding: 22px 22px 22px; }
  .discover-content h3 { font-size: 1.5rem; }
  .marquee-huge .marquee-track { font-size: 4rem; }
  .ticker.ticker-mega .ticker-track { font-size: 1.1rem; }
  .ig-head h2 { font-size: 1.8rem; }
  .footer-bottom { font-size: 0.74rem; }
  .footer-brand img { height: 130px; padding: 12px 20px; margin: 0 auto 20px; }
  .footer-brand { text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ============================================================
   SPECTACULAR LAYER — shapes, blobs, dividers, premium effects
   ============================================================ */

/* ---------- HERO BLOB BACKGROUND ---------- */
.hero { position: relative; }
.hero-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  animation: blob-morph 18s var(--ease-in-out) infinite;
}
.hero-blob.b1 { top: -120px; left: -180px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(157,204,63,0.55), transparent 70%); }
.hero-blob.b2 { bottom: -120px; right: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(163,123,59,0.45), transparent 70%); animation-delay: -6s; }
.hero-blob.b3 { top: 30%; left: 35%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(249,220,173,0.35), transparent 70%); animation-delay: -12s; }
@keyframes blob-morph {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.92); }
}
.hero-grid { position: relative; z-index: 1; }

/* Hero visual rectangular — clean slider */
.hero-visual.is-slider { border-radius: var(--radius-lg); }

/* Decorative pistachio leaf — floating animation */
.hero-decor-leaf { animation: leaf-float 7s var(--ease-in-out) infinite; }
.hero-decor-leaf.br { animation-delay: -3.5s; }
@keyframes leaf-float {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-14px); }
}

/* ---------- SECTION DIVIDERS (SVG WAVES) ---------- */
.divider-wave {
  position: relative;
  height: 80px;
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
}
.divider-wave svg { width: 100%; height: 100%; display: block; }
.divider-wave.flip svg { transform: scaleY(-1); }

/* ---------- TICKER MEGA (premium upgrade) ---------- */
.ticker.ticker-mega { padding: 28px 0; }
.ticker.ticker-mega .ticker-track {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
}
.ticker.ticker-mega .ticker-track .star {
  color: var(--green);
  font-size: 1rem;
  display: inline-block;
  animation: spin 5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- DISCOVER MORE (cross-link banners) ---------- */
.discover {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream-deep);
  overflow: hidden;
}
.discover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23A37B3B' fill-opacity='0.04'%3E%3Ccircle cx='100' cy='100' r='2'/%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3Ccircle cx='160' cy='60' r='1.8'/%3E%3Ccircle cx='30' cy='150' r='1.2'/%3E%3Ccircle cx='170' cy='170' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}
.discover-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  z-index: 1;
}
.discover-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
  isolation: isolate;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.discover-card:hover {
  transform: translateY(-8px) rotate(-0.3deg);
  box-shadow: var(--shadow-deep);
}
.discover-card.size-lg { grid-column: span 6; min-height: 480px; }
.discover-card.size-md { grid-column: span 4; }
.discover-card.size-sm { grid-column: span 3; }
.discover-img {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--cream-deep);
}
.discover-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.discover-card:hover .discover-img img { transform: scale(1.1); }
.discover-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(42, 31, 18, 0.85));
  z-index: 1;
}
.discover-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.discover-shape.tl { top: 18px; left: 18px; }
.discover-shape.br { bottom: 18px; right: 18px; transform: rotate(180deg); }
.discover-content {
  position: absolute;
  z-index: 3;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 26px;
  color: var(--cream);
}
.discover-card .eyebrow { color: var(--green); margin-bottom: 8px; }
.discover-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 8px;
}
.discover-content h3 em.italian {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.discover-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  line-height: 1.55;
  max-width: 90%;
}
.discover-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 4px;
}
.discover-cta::after {
  content: '→';
  transition: transform 0.3s var(--ease-out);
}
.discover-card:hover .discover-cta::after { transform: translateX(6px); }

/* ---------- BLOB SHAPES (reusable masks) ---------- */
.blob-mask-1 {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M44 -57 C 60 -42 78 -28 79 -8 C 80 11 64 32 49 51 C 35 70 21 87 1 86 C -19 85 -38 67 -54 49 C -70 30 -82 12 -78 -7 C -73 -25 -52 -42 -32 -56 C -12 -71 8 -83 26 -78 C 43 -72 28 -71 44 -57 Z' transform='translate(100 100)'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M44 -57 C 60 -42 78 -28 79 -8 C 80 11 64 32 49 51 C 35 70 21 87 1 86 C -19 85 -38 67 -54 49 C -70 30 -82 12 -78 -7 C -73 -25 -52 -42 -32 -56 C -12 -71 8 -83 26 -78 C 43 -72 28 -71 44 -57 Z' transform='translate(100 100)'/%3E%3C/svg%3E") center/contain no-repeat;
}
.blob-mask-2 {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M52 -41 C 68 -22 81 0 79 24 C 76 47 56 71 33 78 C 9 86 -16 78 -38 64 C -60 50 -78 30 -76 8 C -73 -14 -50 -36 -28 -52 C -7 -68 13 -78 30 -73 C 47 -68 36 -60 52 -41 Z' transform='translate(100 100)'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M52 -41 C 68 -22 81 0 79 24 C 76 47 56 71 33 78 C 9 86 -16 78 -38 64 C -60 50 -78 30 -76 8 C -73 -14 -50 -36 -28 -52 C -7 -68 13 -78 30 -73 C 47 -68 36 -60 52 -41 Z' transform='translate(100 100)'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- CATEGORY TILES — alternating clip-paths ---------- */
.cat-tile.shape-blob {
  border-radius: 60% 40% 65% 35% / 50% 60% 40% 50%;
}
.cat-tile.shape-blob:hover {
  border-radius: 50% 50% 60% 40% / 55% 45% 55% 45%;
}
.cat-tile { transition: border-radius 0.7s var(--ease-out), transform 0.5s ease; }

/* ---------- MARQUEE TEXT (huge typo decorative) ---------- */
.marquee-huge {
  position: relative;
  padding: 60px 0;
  background: var(--cream-light);
  overflow: hidden;
  border-top: 1px solid rgba(42, 31, 18, 0.12);
  border-bottom: 1px solid rgba(42, 31, 18, 0.12);
}
.marquee-huge .marquee-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 0.95;
  animation: ticker 18s linear infinite;
  gap: 60px;
}
.marquee-huge .marquee-track span { display: inline-flex; gap: 60px; align-items: center; }
.marquee-huge .marquee-track .dot { color: var(--green); -webkit-text-stroke: 0; font-size: 0.5em; }

/* ---------- SLIDE — SHAPE OVERLAY ---------- */
.slide-img::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 40' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 40 L0 22 Q300 0 600 22 T1200 22 L1200 40 Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* ---------- SCROLL REVEAL VARIANTS ---------- */
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { transform: translate(0) scale(1); }

/* ---------- PAGE GALLERY — slider entre page-hero y next section ---------- */
.page-gallery {
  position: relative;
  padding: 24px 0 32px;
  background: var(--cream);
  overflow: hidden;
}
.page-gallery::before, .page-gallery::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 3;
  pointer-events: none;
}
.page-gallery::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.page-gallery::after  { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.page-gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  padding: 4px 24px 16px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}
.page-gallery-track:active { cursor: grabbing; }
.page-gallery-track::-webkit-scrollbar { display: none; }
.page-gallery-item {
  flex: 0 0 clamp(220px, 28vw, 340px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: var(--cream-deep);
  box-shadow: 0 8px 22px rgba(42, 31, 18, 0.10);
  transition: transform 0.5s var(--ease-out);
}
.page-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}
.page-gallery-item.is-tall { aspect-ratio: 3 / 5; }
.page-gallery-item.is-wide { aspect-ratio: 5 / 4; }
@media (max-width: 768px) {
  .page-gallery-item { flex: 0 0 70vw; aspect-ratio: 4 / 5; }
  .page-gallery::before, .page-gallery::after { width: 24px; }
  .page-gallery-track { padding: 4px 16px 14px; gap: 10px; }
}

/* ---------- VIDEO BACKGROUND SECTION ---------- */
.video-section {
  position: relative;
  min-height: 420px;
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 18, 0.35) 0%, rgba(42, 31, 18, 0.65) 60%, rgba(42, 31, 18, 0.85) 100%);
  z-index: 2;
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-section .container { position: relative; z-index: 3; }
.video-section h2 { color: var(--cream); }
.video-section h2 em.italian { color: var(--green); }
.video-section .eyebrow { color: var(--green); }
.video-section p { color: rgba(255,255,255,0.88); font-size: var(--fs-lead); max-width: 600px; margin: 0 auto 28px; }

/* ---------- TRANSLATOR WIDGET (UI ONLY — disabled until activated) ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 31, 18, 0.12);
  border-radius: var(--radius-pill);
  margin-right: 8px;
}
.lang-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1rem;
  background: transparent;
  border: 0;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.lang-switch button.active {
  opacity: 1;
  background: var(--green);
  box-shadow: 0 2px 6px rgba(157, 204, 63, 0.35);
  cursor: default;
}
.lang-switch button:hover:not(.active) { opacity: 0.85; transform: scale(1.05); }
.lang-switch button:hover::after {
  content: 'Coming soon';
  position: absolute;
  top: -32px; left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 200;
}
.lang-switch .flag {
  display: inline-block;
  font-style: normal;
  font-feature-settings: "liga";
  font-size: 1rem;
}
@media (max-width: 768px) {
  .lang-switch {
    margin: 0;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 6px;
  }
  .lang-switch button { width: 28px; height: 28px; }
}

/* ---------- INSTAGRAM SLIDER ---------- */
.ig-section {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.ig-head h2 { margin-bottom: 8px; }
.ig-head p { color: var(--charcoal-soft); font-size: var(--fs-lead); margin-bottom: 0; max-width: 480px; }
.ig-slider-wrap { position: relative; }
.ig-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 14px;
  padding: 4px 4px 24px;
  scrollbar-width: none;
}
.ig-slider::-webkit-scrollbar { display: none; }
.ig-card {
  flex: 0 0 clamp(220px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out);
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.ig-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(42, 31, 18, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-card .ig-overlay {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
}
.ig-card .ig-overlay { opacity: 1; transform: translateY(0); }
.ig-card .ig-overlay svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ig-skeleton {
  flex: 0 0 clamp(220px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(110deg, var(--cream-deep) 30%, var(--cream-light) 50%, var(--cream-deep) 70%);
  background-size: 200% 100%;
  animation: skeleton 1.6s ease-in-out infinite;
}
@keyframes skeleton { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.ig-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .ig-head { flex-direction: column; align-items: stretch; }
  .ig-head .btn { align-self: flex-start; }
  .ig-card { flex: 0 0 70vw; }
  .ig-skeleton { flex: 0 0 70vw; }
}

/* ---------- DECORATIVE PISTACHIO PATTERN ---------- */
.deco-pattern {
  position: absolute;
  inset: 0;
  background: url('../images/decor/background-pistacchios-pattern.png') center/300px repeat;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ---------- MOBILE OVERRIDES SPECTACULAR ---------- */
@media (max-width: 980px) {
  .discover-grid { grid-template-columns: 1fr 1fr; }
  .discover-card.size-lg, .discover-card.size-md, .discover-card.size-sm { grid-column: span 1; min-height: 320px; }
}
@media (max-width: 600px) {
  .discover-grid { grid-template-columns: 1fr; gap: 16px; }
  .discover-card { min-height: 280px !important; }
  .discover-card.size-lg { min-height: 340px !important; }
  .hero-blob { filter: blur(60px); opacity: 0.45; }
  .hero-blob.b1 { width: 360px; height: 360px; }
  .hero-blob.b2 { width: 320px; height: 320px; }
  .hero-blob.b3 { display: none; }
  .marquee-huge { padding: 40px 0; }
  .ticker.ticker-mega { padding: 18px 0; }
  .ticker.ticker-mega .ticker-track { font-size: 1.3rem; }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.no-select { user-select: none; }

/* ---------- MOBILE CAROUSEL: uniform format across all carousels ---------- */
@media (max-width: 768px) {
  /* Single shared width + 1:1 aspect ratio so every card is identical */
  .slide,
  .page-gallery-item,
  .ig-card {
    flex: 0 0 78vw !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    background: var(--cream-deep);
  }

  /* Signature slider card body sits below the square image */
  .slide-img {
    aspect-ratio: 1 / 1 !important;
    background: var(--cream-deep);
    flex-shrink: 0;
  }
  .slide-img img,
  .page-gallery-item img,
  .ig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transform: none !important;
    filter: none !important;
  }

  /* Page-gallery is-tall/is-wide modifiers neutralized on mobile */
  .page-gallery-item.is-tall,
  .page-gallery-item.is-wide { aspect-ratio: 1 / 1 !important; }

  /* Slide on signature slider needs to grow taller because of body text */
  .slide { aspect-ratio: auto !important; height: auto !important; }
}
