:root {
  --color-primary: #c4e3f0;
  --color-secondary: #502819;
  --color-accent1: #fbcfc2;
  --color-accent2: #e2be7c;
  --color-cream: #f0e8da;
  --color-brown: #674336;
  --color-gold: #a08552;
  --color-dark: #000003;
  --color-sage: #cdd9c9;
  --color-forest: #3f6253;

  --surface-base: #f4eee4;
  --surface-alt: #efe6d8;
  --surface-accent: #f8f0e2;
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-bg-soft: rgba(255, 255, 255, 0.82);
  --card-border: rgba(103, 67, 54, 0.18);

  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.4rem;
  --shadow-soft: 0 10px 28px rgba(80, 40, 25, 0.14);
  --shadow-strong: 0 20px 50px rgba(0, 0, 3, 0.3);
  --navbar-height: 69px;
  --promo-height: 42px;
  --anchor-offset: calc(var(--navbar-height) + var(--promo-height) + 12px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

section[id],
header[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: var(--color-secondary);
  cursor: url("assets/chocara-pointer.png") 8 8, auto;
  background:
    radial-gradient(circle at 6% 0%, rgba(226, 190, 124, 0.2), transparent 36%),
    radial-gradient(circle at 94% 14%, rgba(196, 227, 240, 0.24), transparent 34%),
    var(--surface-base);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.btn,
.menu-toggle,
.platform-card,
.product-card,
.award-card,
.whatsapp-float,
.instagram-float {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 1.3rem;
  color: var(--color-secondary);
}

p {
  margin-top: 0;
}

.section {
  padding: 4rem 1rem;
  background: var(--surface-base);
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.container--narrow {
  width: min(830px, 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 9999;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--color-secondary);
  color: var(--color-cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}

/* =========================================================
   EFFECT 2 — Navbar scroll shrink
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(196, 227, 240, 0.88);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(103, 67, 54, 0.15);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  background: var(--color-primary);
  box-shadow: 0 4px 20px rgba(80, 40, 25, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand__logo {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(103, 67, 54, 0.12);
  display: grid;
  place-content: center;
  gap: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 1rem;
  list-style: none;
  margin: 0;
  padding: 0.6rem;
  min-width: 190px;
  border-radius: var(--radius-md);
  background: rgba(80, 40, 25, 0.96);
  color: var(--color-cream);
  box-shadow: var(--shadow-soft);
  transform-origin: top right;
  transform: scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links li + li {
  border-top: 1px solid rgba(240, 232, 218, 0.25);
}

/* =========================================================
   EFFECT 10 — Active nav indicator
   ========================================================= */
.nav-links a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--color-accent2);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav-links a.nav-active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(240, 232, 218, 0.14);
}

.nav-open .nav-links {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* =========================================================
   EFFECT 7 — Promo strip marquee
   ========================================================= */
.promo-strip {
  margin-top: 0;
  position: fixed;
  top: var(--navbar-height, 69px);
  left: 0;
  width: 100%;
  z-index: 19;
  background: linear-gradient(90deg, var(--color-accent2), var(--color-accent1));
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(80, 40, 25, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-strip__pause {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 0.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(80, 40, 25, 0.12);
  color: var(--color-secondary);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
}

.promo-strip__pause:hover,
.promo-strip__pause:focus-visible {
  background: rgba(80, 40, 25, 0.25);
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.promo-strip--paused .promo-strip__pause svg rect:first-child {
  /* swap to a play icon via clip-path trick — handled with SVG swap in JS */
}

.promo-strip p {
  margin: 0;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  animation: marquee 28s linear infinite;
  flex: 1;
}

.promo-strip--paused p {
  animation-play-state: paused;
}

.promo-strip p:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.promo-strip__label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.2rem;
}

.promo-strip__message {
  font-weight: 700;
}

.promo-strip a {
  margin-left: 0.35rem;
  text-decoration: underline;
}

.hero {
  padding-top: 2.55rem;
}

/* =========================================================
   EFFECT 4 — Hero brandmark entrance (fade+slide)
   ========================================================= */
.hero__brandmark {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 0.9, 0.36, 1) 0.25s forwards;
  width: min(92vw, 760px);
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.hero__actions {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 0.9, 0.36, 1) 0.72s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 3, 0.45), rgba(0, 0, 3, 0.7));
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-cream);
  padding: 6.5rem 1rem 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-accent2);
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

.btn--secondary {
  background: rgba(240, 232, 218, 0.1);
  color: var(--color-cream);
  border: 1px solid rgba(240, 232, 218, 0.5);
}

.section--quick-facts {
  padding: 1.5rem 1rem 0.85rem;
  background: var(--surface-alt);
}

.quick-facts-layout {
  display: grid;
  gap: 0.9rem;
}

.quick-facts__map {
  height: 100%;
}

.quick-facts__map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.quick-facts {
  display: grid;
  gap: 0.9rem;
}

.quick-facts__item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 24px rgba(72, 40, 24, 0.07);
}

.quick-facts__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 0.55rem 0 0;
  color: var(--color-secondary);
  flex-shrink: 0;
  vertical-align: middle;
}

.quick-facts__icon svg {
  width: 100%;
  height: 100%;
}

.quick-facts__item h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.06rem, 1.25vw, 1.22rem);
  color: var(--color-primary-dark);
  vertical-align: middle;
}

.quick-facts__item p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.quick-facts__item a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.quick-facts__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-facts__item a:hover,
.quick-facts__item a:focus-visible {
  color: var(--color-primary);
}

.section--platforms {
  background: var(--surface-base);
}

.platforms-grid,
.products-grid {
  display: grid;
  gap: 1rem;
}

.platform-card {
  background: var(--card-bg-soft);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.platform-card__emoji {
  font-size: 1.5rem;
}

.platform-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
}

.platform-card__icon svg {
  width: 100%;
  height: 100%;
}

.platform-card__icon--instagram {
  color: #c13584;
}

/* =========================================================
   EFFECT 3 — Product & space image zoom on hover
   ========================================================= */
.product-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: float 4s ease-in-out infinite;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.8s; }
.products-grid .product-card:nth-child(4) { animation-delay: 1.2s; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(80, 40, 25, 0.2);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.07);
}

.space-grid img {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.36, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.space-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(80, 40, 25, 0.2);
}

.product-card h3,
.product-card p {
  padding-inline: 1rem;
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
}

.product-card p {
  margin-bottom: 1.2rem;
}

.badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--color-forest);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.section--space {
  background: var(--surface-alt);
}

.space-grid {
  display: grid;
  gap: 0.8rem;
}

.space-grid img {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.space-grid__feature {
  object-position: center 35%;
}

.space-grid__card {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.space-grid__caption {
  margin: 0;
  padding-inline: 0.25rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-brown);
}

.section--awards {
  background: linear-gradient(165deg, var(--surface-accent), rgba(226, 190, 124, 0.2));
}

.awards-intro {
  max-width: 600px;
  margin-bottom: 1.8rem;
}

.awards-grid {
  display: grid;
  gap: 1rem;
}

/* =========================================================
   EFFECT 6 — Award card shimmer on hover (one-directional,
   per-medal color: bronze / silver / rose-gold special)
   ========================================================= */
.award-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid rgba(160, 133, 82, 0.28);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: float 5s ease-in-out infinite;
}

.awards-grid .award-card:nth-child(1) { animation-delay: 0.2s; }
.awards-grid .award-card:nth-child(2) { animation-delay: 0.6s; }
.awards-grid .award-card:nth-child(3) { animation-delay: 1s; }
.awards-grid .award-card:nth-child(4) { animation-delay: 1.4s; }

/* shared shimmer layer — no color here, no transition */
.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  transform: skewX(-20deg);
  pointer-events: none;
}

/* per-medal shimmer colors */
.award-card--bronze::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(205, 127, 50, 0.5) 50%,
    transparent 100%
  );
}

.award-card--silver::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(192, 192, 210, 0.6) 50%,
    transparent 100%
  );
}

/* 4th place: warm rose-gold, unique to the brand palette */
.award-card--special::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(251, 207, 194, 0.75) 50%,
    transparent 100%
  );
}

/* hover-IN only: animation fires once, no reverse on mouse-out */
.award-card:hover::before {
  animation: shimmerSlide 0.55s ease forwards;
}

@keyframes shimmerSlide {
  from { left: -75%; }
  to   { left: 130%; }
}

.award-card:hover {
  transform: translateY(-3px);
}

.award-card--bronze:hover {
  box-shadow: 0 14px 36px rgba(205, 127, 50, 0.22);
}

.award-card--silver:hover {
  box-shadow: 0 14px 36px rgba(160, 160, 180, 0.22);
}

.award-card--special:hover {
  box-shadow: 0 14px 36px rgba(251, 207, 194, 0.35);
}

.award-card--bronze {
  border-left: 4px solid #cd7f32;
}

.award-card--silver {
  border-left: 4px solid #a0a0b0;
}

.award-card--special {
  border-left: 4px solid var(--color-accent1);
}

.award-card__medal {
  width: clamp(84px, 12vw, 106px);
  height: clamp(84px, 12vw, 106px);
  flex: 0 0 clamp(84px, 12vw, 106px);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(160, 133, 82, 0.26);
}

.award-card__medal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.award-card__competition {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  font-weight: 700;
}

.award-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Playfair Display", serif;
  color: var(--color-secondary);
}

.award-card__detail {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-brown);
}

.product-card__award-image {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  margin-top: 0.7rem;
  border: 1px solid rgba(103, 67, 54, 0.2);
  box-shadow: 0 7px 20px rgba(72, 40, 24, 0.12);
}

.award-card__source {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.award-card__source:hover,
.award-card__source:focus-visible {
  color: var(--color-secondary);
}

.section--about {
  background: var(--surface-base);
}

.section--about h3 {
  margin: 1.8rem 0 0.45rem;
  color: var(--color-brown);
}

.section--location {
  background: var(--surface-alt);
}

.location-layout {
  display: grid;
  gap: 1rem;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  min-height: 320px;
}

.location-info {
  background: var(--card-bg-soft);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.location-info p {
  margin: 0.35rem 0;
}

.location-info h3 {
  margin: 1rem 0 0.55rem;
  color: var(--color-brown);
  font-size: 1rem;
}

.location-info .contact-list {
  margin-top: 0.2rem;
}

.btn--location {
  margin-top: 0.8rem;
  background: var(--color-secondary);
  color: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.section--payments {
  background: linear-gradient(165deg, var(--surface-accent), rgba(251, 207, 194, 0.22));
}

.payments-grid {
  display: grid;
  gap: 1rem;
}

.payments-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.payments-card h3 {
  margin-bottom: 0.65rem;
}

.payments-card p {
  margin-bottom: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.icon-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 1.2rem;
}

.icon-logo svg {
  width: 100%;
  height: 100%;
}

.icon-logo--whatsapp {
  color: #25d366;
}

.icon-logo--call {
  color: var(--color-forest);
}

.icon-logo--instagram {
  color: #c13584;
}

.contact-list a {
  color: var(--color-forest);
  font-weight: 700;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  text-decoration: underline;
}

.footer {
  margin-top: 0;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 2.6rem 1rem 2.5rem;
  border-top: 1px solid rgba(103, 67, 54, 0.15);
}

.footer__layout {
  display: grid;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__logo {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  object-fit: contain;
}

.footer__logo--name {
}

.footer__brand p {
  margin: 0;
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  text-decoration: underline;
}

.footer__copy {
  margin: 0;
  text-align: right;
  color: rgba(80, 40, 25, 0.65);
}

/* =========================================================
   EFFECT 9 — WhatsApp floating button pulse ring
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-strong);
  z-index: 40;
  transition: transform 0.2s ease;
}

.instagram-float {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c13584;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-strong);
  z-index: 40;
  transition: transform 0.2s ease;
}

.instagram-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #c13584;
  opacity: 0.45;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =========================================================
   EFFECT 11 — Floating/bobbing animation for cards
   ========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-5px); }
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible,
.instagram-float:hover,
.instagram-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg,
.instagram-float svg {
  width: 30px;
  height: 30px;
}

/* =========================================================
   EFFECT 1 — Scroll-reveal (JS adds .revealed)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.9, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Dietary badges — hero + 2×2 grid
   ========================================================= */
.dietary-hero {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--surface-accent);
  color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1rem;
  max-width: 540px;
  margin: 0 auto 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(80, 40, 25, 0.16);
  border-left: 6px solid var(--color-gold);
}

.dietary-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.dietary-hero__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.dietary-hero__icon img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}

.dietary-hero__title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-secondary);
}

.dietary-hero__tagline {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  color: var(--color-brown);
  opacity: 0.9;
}

.dietary-subtitle {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--color-brown);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dietary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dietary-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  background: var(--surface-accent);
  border: 1px solid rgba(80, 40, 25, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-secondary);
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.dietary-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 40, 25, 0.12);
}

.dietary-badge__icon {
  width: 1.95rem;
  height: 1.95rem;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--color-gold);
  border-radius: 50%;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   Product category cards — new grid with carousels
   ========================================================= */
.products-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .products-grid-new {
    grid-template-columns: 1fr 1fr;
  }
}

.product-card-new {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(80, 40, 25, 0.2);
}

/* ── Carousel ──────────────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface-alt);
  flex-shrink: 0;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.carousel__track img,
.carousel__track .carousel__placeholder {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel__track img {
  object-fit: cover;
  cursor: zoom-in;
}

.carousel__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-brown);
  background: var(--surface-alt);
  text-align: center;
  padding: 0.5rem;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.87);
  color: var(--color-secondary);
  border: none;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(80, 40, 25, 0.2);
  transition: background 0.18s ease;
  z-index: 2;
  padding: 0;
  line-height: 1;
}

.carousel__btn:hover,
.carousel__btn:focus-visible {
  background: rgba(255, 255, 255, 1);
}

.carousel__btn--prev {
  left: 0.45rem;
}

.carousel__btn--next {
  right: 0.45rem;
}

.carousel__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.38rem;
  z-index: 2;
}

.carousel__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.22s ease, transform 0.22s ease;
}

.carousel__dot--active {
  background: #fff;
  transform: scale(1.25);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox--visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 90dvh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  cursor: default;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

/* ── Card body ─────────────────────────────────────────────── */
.product-card-new__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-new__body h3 {
  margin: 0 0 0.28rem;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--color-secondary);
}

.product-card-new__body p {
  font-size: 0.84rem;
  color: var(--color-brown);
  margin: 0 0 0.85rem;
  flex: 1;
}

.product-card-new__body .btn {
  align-self: flex-start;
  font-size: 0.82rem;
  padding: 0.45rem 0.95rem;
}

/* stagger children inside a reveal container */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.9, 0.36, 1);
}

.reveal-group.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group.revealed > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-group.revealed > * { opacity: 1; transform: none; }

@media (min-width: 768px) {
  .section {
    padding: 5rem 1.5rem;
  }

  .navbar {
    padding: 0.8rem 1.5rem;
  }

  .promo-strip {
    top: var(--navbar-height, 69px);
    overflow: hidden;
  }

  .promo-strip p {
    font-size: 0.97rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    min-width: auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: var(--color-secondary);
    gap: 0.35rem;
  }

  .nav-links li + li {
    border-top: 0;
  }

  .nav-links a::after {
    bottom: 3px;
    left: 0.7rem;
    right: 0.7rem;
  }

  .nav-links a {
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(80, 40, 25, 0.08);
  }

  .platforms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-facts-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
    align-items: stretch;
  }

  .quick-facts__map iframe {
    height: 100%;
    min-height: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .products-grid-new {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .dietary-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .space-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .awards-intro {
    max-width: none;
  }

  .space-grid__feature {
    grid-row: span 2;
    min-height: 480px;
  }

  .space-grid img:not(.space-grid__feature) {
    min-height: 230px;
  }

  .space-grid__caption {
    grid-column: 2 / 4;
  }

  .location-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .payments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__layout {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
  }
}

/* =========================================================
   Accessibility — respect user motion preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
