/* =============================================
   EL BÚHO — Restaurante Vegetariano
   Stylesheet · San Pedro, Costa Rica
   ============================================= */

/* === VARIABLES === */
:root {
  /* Brand palette from buho.rest Instagram */
  --cream:        #F5EDD9;   /* warm ivory */
  --cream-dark:   #EAE0C6;
  --cream-deeper: #D8CDB0;
  --green-deep:   #233F43;   /* brand dark teal (primary) */
  --green-rich:   #2B4A4E;   /* main teal */
  --green-mid:    #3A686D;
  --green-soft:   #5A9096;
  --gold:         #C8892A;   /* warm amber accent */
  --gold-light:   #E4B86A;
  --terracotta:   #A04535;   /* brand terracotta */
  --sage:         #A8C4BC;   /* brand sage/mint */
  --dusty-rose:   #C9A99B;   /* brand dusty rose */
  --text-dark:    #1A1916;
  --text-mid:     #484538;
  --text-soft:    #78756C;
  --white:        #FEFDF8;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --container: 1160px;
  --radius:    10px;
  --radius-lg: 22px;

  --shadow:    0 4px 24px rgba(35, 63, 67, 0.10);
  --shadow-md: 0 12px 48px rgba(35, 63, 67, 0.15);
  --shadow-lg: 0 32px 80px rgba(35, 63, 67, 0.20);

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.32s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; }
h1 { font-size: clamp(3.4rem, 7.5vw, 6.5rem); font-weight: 400; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4rem);   font-weight: 400; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem);    font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; }
p  { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; }

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title { margin-top: 0.6rem; color: var(--green-deep); }
.text-cream { color: var(--cream); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
}
.btn-primary  { background: var(--gold); color: var(--white); }
.btn-primary:hover  { background: #b07d22; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost   { background: transparent; color: var(--cream); border: 1.5px solid rgba(247,241,227,0.45); }
.btn-ghost:hover   { border-color: var(--cream); background: rgba(247,241,227,0.08); }
.btn-outline { background: transparent; color: var(--green-deep); border: 1.5px solid var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.navbar.scrolled {
  background: var(--green-rich);
  box-shadow: 0 2px 24px rgba(27,51,32,0.22);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.3rem 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
}
.owl-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  color: rgba(247,241,227,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.9rem;
  border: 1.5px solid rgba(247,241,227,0.38);
  border-radius: 100px;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all var(--duration) var(--ease);
}
.lang-toggle:hover { border-color: rgba(247,241,227,0.8); }
.lang-opt { opacity: 0.42; transition: opacity var(--duration) var(--ease); }
.lang-opt.active { opacity: 1; }
.lang-divider { opacity: 0.25; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 3px 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-deep);
  padding: 0.75rem 2rem 1.5rem;
  border-top: 1px solid rgba(247,241,227,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(247,241,227,0.85);
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(247,241,227,0.08);
  transition: color var(--duration) var(--ease);
}
.mobile-menu a:hover { color: var(--cream); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 65% 45%, rgba(46,85,53,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(200,145,42,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(200,145,42,0.09) 0%, transparent 50%),
    var(--green-deep);
}
/* Decorative leaf shapes */
.hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-deco svg {
  position: absolute;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
  max-width: 680px;
  padding-left: clamp(2rem, 8vw, 6rem);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-title {
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.4s forwards;
}
.hero-title em { color: var(--gold-light); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(247,241,227,0.72);
  max-width: 440px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.8s forwards;
}
.hero-owl-deco {
  position: absolute;
  right: max(-2%, calc(50% - 580px));
  top: 50%;
  transform: translateY(-50%);
  width: min(52vh, 480px);
  opacity: 0.065;
  z-index: 1;
  pointer-events: none;
  animation: fadeIn 2s var(--ease) 1s forwards;
  opacity: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(247,241,227,0.55), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* === ABOUT === */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  border: 1px solid rgba(46,85,53,0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.6rem;
  font-weight: 700;
}
.about-text h2 { color: var(--green-deep); margin-bottom: 1.4rem; }
.about-text p   { margin-bottom: 1.1rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.about-value { display: flex; flex-direction: column; gap: 0.4rem; }
.about-value-icon { font-size: 1.8rem; display: flex; align-items: center; margin-bottom: 0.1rem; }
.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
}
.about-value p { font-size: 0.88rem; }

/* === HIGHLIGHTS === */
.highlights {
  background: var(--green-deep);
  padding: 5.5rem 0;
}
.highlights-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.highlights-header .section-label { color: var(--gold-light); }
.highlights-header .section-title { color: var(--cream); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,241,227,0.1);
  border: 1px solid rgba(247,241,227,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.highlight-item {
  padding: 2.25rem 2rem;
  background: rgba(27,51,32,0.55);
  transition: background var(--duration) var(--ease);
}
.highlight-item:hover { background: rgba(46,85,53,0.7); }
.highlight-icon { font-size: 2rem; margin-bottom: 1rem; display: flex; align-items: center; }
.highlight-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.highlight-desc {
  font-size: 0.88rem;
  color: rgba(247,241,227,0.6);
  line-height: 1.6;
}

/* === FEATURED DISHES === */
.featured { background: var(--cream-dark); overflow: hidden; }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.dishes-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.dishes-track::-webkit-scrollbar { display: none; }
.dish-card {
  flex: 0 0 290px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: var(--shadow);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-img {
  height: 195px;
  position: relative;
  overflow: hidden;
}
.dish-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  background: var(--cream-deeper);
}
.dish-card:hover .dish-img-bg { transform: scale(1.06); }
.dish-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dish-badge.green  { background: var(--green-deep); color: var(--cream); }
.dish-badge.gold   { background: var(--gold); color: var(--white); }
.dish-info { padding: 1.5rem; }
.dish-info h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 0.45rem;
}
.dish-info p { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 1rem; line-height: 1.55; }
.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price  { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.dish-tags   { display: flex; gap: 0.3rem; }
.tag {
  font-size: 0.62rem;
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tag-vegan { background: #E6F5E3; color: #27652A; }
.tag-gf    { background: #FDF4E0; color: #7A5C00; }
.tag-veg   { background: #E8F0FF; color: #2A3D8A; }

/* === CONTACT === */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--green-deep); margin-bottom: 2.25rem; }
.contact-detail  { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}
.contact-detail-text h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}
.contact-detail-text p, .contact-detail-text a {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.55;
}
.contact-detail-text a:hover { color: var(--green-mid); }
.hours-table { display: grid; grid-template-columns: auto 1fr; gap: 0.28rem 1.2rem; font-size: 0.9rem; }
.hours-table .day { font-weight: 600; color: var(--text-dark); }
.hours-table .time { color: var(--text-mid); }
.social-links { display: flex; gap: 0.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--duration) var(--ease);
}
.social-link:hover { border-color: var(--green-mid); color: var(--green-mid); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
  background: var(--cream-dark);
  position: sticky;
  top: 5rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
footer { background: var(--green-deep); padding: 3rem 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; color: var(--cream); }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(247,241,227,0.4);
  margin-top: 0.35rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(247,241,227,0.55);
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 0.78rem; color: rgba(247,241,227,0.28); }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-hero {
  background: var(--green-deep);
  padding: 9.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(46,85,53,0.5) 0%, transparent 70%),
    var(--green-deep);
}
.menu-hero-inner { position: relative; z-index: 2; }
.menu-hero h1    { color: var(--cream); }
.menu-hero p     { color: rgba(247,241,227,0.65); margin-top: 1rem; font-size: 1.05rem; }
.menu-hero-tabs  {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.menu-tab {
  padding: 0.65rem 1.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(247,241,227,0.35);
  color: rgba(247,241,227,0.7);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Category jump nav */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 68px;
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 0;
}
.cat-nav-btn {
  padding: 0.9rem 1.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.cat-nav-btn:hover, .cat-nav-btn.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}

/* Menu content area */
.menu-body { padding: 4.5rem 0 6rem; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-section { margin-bottom: 4rem; scroll-margin-top: 130px; }
.menu-section-head { margin-bottom: 2rem; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.menu-section-bar {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.menu-section-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  font-style: italic;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-item {
  background: var(--white);
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--duration) var(--ease);
}
.menu-item:hover { background: var(--cream); }
.mi-left { flex: 1; }
.mi-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.38rem;
}
.mi-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 0.45rem;
}
.mi-opts {
  font-size: 0.8rem;
  color: var(--green-soft);
  font-style: italic;
  line-height: 1.5;
}
.mi-right { text-align: right; flex-shrink: 0; }
.mi-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.mi-badges {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Allergen note */
.allergen-note {
  background: rgba(200,145,42,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Smoothie builder */
.smoothie-builder {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-top: 1.5rem;
}
.smoothie-builder h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
}
.smoothie-bases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.smoothie-base {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
}
.smoothie-base .sb-name { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.3rem; }
.smoothie-base .sb-price { font-weight: 700; color: var(--gold); font-size: 1rem; }
.smoothie-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.smoothie-info-block h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.smoothie-info-block p { font-size: 0.88rem; color: var(--text-mid); }
.extras-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}
.extras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.extra-chip {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.extra-chip span { color: var(--gold); font-weight: 700; margin-left: 0.25rem; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.065; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.28; transform: scaleY(0.88); }
  50%       { opacity: 0.75; transform: scaleY(1.12); }
}
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate.visible { opacity: 1; transform: none; }
.animate.d1 { transition-delay: 0.1s; }
.animate.d2 { transition-delay: 0.2s; }
.animate.d3 { transition-delay: 0.3s; }
.animate.d4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid   { gap: 3.5rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { max-width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-owl-deco { display: none; }

  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr 1fr; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }

  .featured-header { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 320px; position: static; }

  .menu-grid { grid-template-columns: 1fr; }
  .smoothie-bases { grid-template-columns: 1fr 1fr; }
  .smoothie-info  { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .about-values    { grid-template-columns: 1fr; }
  .hero-ctas       { flex-direction: column; }
  .hero-ctas .btn  { justify-content: center; }
  .smoothie-bases  { grid-template-columns: 1fr 1fr; }
}
