:root {
  --cream: #fff8ea;
  --cream-2: #fff1d6;
  --vanilla: #ffe9a8;
  --mango: #ffb703;
  --strawberry: #f45b69;
  --mint: #2ec4b6;
  --chocolate: #6f3d2e;
  --cocoa: #3a2018;
  --berry: #8b5cf6;
  --ink: #251b16;
  --muted: #6f6259;
  --glass: rgba(255, 255, 255, 0.66);
  --line: rgba(111, 61, 46, 0.14);
  --shadow: 0 24px 70px rgba(111, 61, 46, 0.18);
  --radius: 28px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cairo", "Tajawal", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.28), transparent 32rem),
    radial-gradient(circle at 10% 12%, rgba(244, 91, 105, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fff 52%, #fff8ea);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--container);
  margin: 16px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(111, 61, 46, 0.1);
}

.brand {
  position: relative;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--chocolate);
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a {
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--strawberry);
}

.menu-toggle {
  position: relative;
  z-index: 32;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  gap: 1.5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle span {
  width: 15px;
  height: 1.5px;
  border-radius: 20px;
  background: var(--chocolate);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle {
  background: var(--chocolate);
}

body.menu-open .menu-toggle span {
  background: #fff;
}

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

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

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

.header-cta,
.btn,
.filter-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta {
  display: none;
  padding: 0 16px;
  color: #fff;
  background: var(--strawberry);
  box-shadow: 0 10px 24px rgba(244, 91, 105, 0.26);
}

.btn {
  padding: 0 22px;
}

.btn--primary {
  color: #fff;
  background: var(--chocolate);
  box-shadow: 0 16px 32px rgba(111, 61, 46, 0.24);
}

.btn--ghost {
  color: var(--chocolate);
  background: #fff;
  border: 1px solid var(--line);
}

.btn:hover,
.header-cta:hover,
.filter-btn:hover {
  transform: translateY(-3px);
}

.hero {
  width: var(--container);
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--strawberry);
  font-weight: 900;
}

.hero h1,
.section-heading h2,
.story h2,
.contact h2,
.taste-banner h2 {
  margin: 0;
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 12vw, 6.3rem);
}

.no-break {
  white-space: nowrap;
}

.hero__lead,
.section-heading p,
.story p,
.industry-card p,
.product-card p,
.founder-card p,
.contact p,
.site-footer p,
.taste-banner p {
  color: var(--muted);
  line-height: 1.9;
}

.hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  text-wrap: pretty;
}

.hero__actions,
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__badges {
  margin-top: 22px;
}

.hero__badges span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--chocolate);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 233, 168, 0.46)),
    radial-gradient(circle at 50% 60%, rgba(46, 196, 182, 0.18), transparent 18rem);
}

.product-float {
  position: relative;
  z-index: 2;
  width: min(420px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: float 4.8s ease-in-out infinite;
  will-change: transform;
}

.product-float img {
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 34px 34px rgba(111, 61, 46, 0.28));
}

.flavor-orbit {
  position: absolute;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
  animation: drift 8s ease-in-out infinite;
}

.flavor-orbit--mango {
  top: 12%;
  right: 10%;
  background: var(--mango);
}

.flavor-orbit--berry {
  bottom: 15%;
  right: 22%;
  background: var(--strawberry);
  animation-delay: -2s;
}

.flavor-orbit--choco {
  top: 22%;
  left: 13%;
  background: var(--chocolate);
  animation-delay: -4s;
}

.hero-card {
  position: absolute;
  z-index: 4;
  width: min(210px, 46vw);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(111, 61, 46, 0.14);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--chocolate);
  font-size: 1.05rem;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card--top {
  top: 13%;
  left: 6%;
}

.hero-card--bottom {
  right: 7%;
  bottom: 12%;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cocoa);
  color: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: slideText 24s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 34px;
  padding-inline: 17px;
}

.marquee span {
  font-weight: 900;
  white-space: nowrap;
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2,
.story h2,
.contact h2,
.taste-banner h2 {
  font-size: clamp(2rem, 7vw, 4rem);
}

.section-heading p {
  max-width: 760px;
  margin: 0;
}

.story {
  display: grid;
  gap: 30px;
  align-items: center;
}

.story__media {
  position: relative;
  min-height: 420px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--vanilla);
  box-shadow: var(--shadow);
}

.story__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.year-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: var(--strawberry);
  box-shadow: 0 20px 40px rgba(244, 91, 105, 0.28);
}

.year-chip strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.year-chip span {
  display: block;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline article,
.industry-card,
.founder-card,
.stat-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(111, 61, 46, 0.1);
}

.timeline article {
  padding: 18px;
}

.timeline span,
.industry-card span,
.founder-card span {
  color: var(--strawberry);
  font-weight: 900;
}

.timeline h3,
.industry-card h3,
.founder-card h3 {
  margin: 8px 0;
}

.timeline p,
.industry-card p,
.founder-card p {
  margin: 0;
}

.stats-band {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(58, 32, 24, 0.96), rgba(111, 61, 46, 0.92)),
    var(--cocoa);
}

.stat-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.stat-card strong {
  color: var(--vanilla);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 20px;
}

.filter-btn {
  flex: 0 0 auto;
  padding: 0 18px;
  color: var(--chocolate);
  background: #fff;
  border: 1px solid var(--line);
}

.filter-btn.is-active {
  color: #fff;
  background: var(--strawberry);
  box-shadow: 0 14px 28px rgba(244, 91, 105, 0.22);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 410px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--glass), rgba(255, 255, 255, 0.34));
  box-shadow: 0 18px 48px rgba(111, 61, 46, 0.12);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 58%;
  border-radius: 50%;
  background: var(--flavor-soft);
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(160deg, var(--flavor-soft), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  background: var(--flavor);
  transform: scale(1.08);
}

.product-card__image {
  position: relative;
  z-index: 1;
  width: 76%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  align-self: center;
  border-radius: 50%;
  filter: drop-shadow(0 24px 22px rgba(111, 61, 46, 0.18));
  transition: transform 0.35s ease;
}

.brand-showcase {
  padding-top: 20px;
}

.showcase-grid {
  display: grid;
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--cocoa);
  box-shadow: 0 22px 56px rgba(58, 32, 24, 0.16);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(37, 27, 22, 0.74));
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-card:hover img {
  transform: scale(1.05);
}

.showcase-card div {
  position: absolute;
  right: 22px;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.showcase-card span {
  color: var(--vanilla);
  font-weight: 900;
}

.showcase-card h3 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.product-card:hover .product-card__image {
  transform: translateY(-16px) scale(1.08) rotate(-3deg);
}

.product-card__body {
  position: relative;
  z-index: 1;
}

.product-card__type {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--flavor);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-card h3 {
  margin: 12px 0 8px;
  font-size: 1.45rem;
}

.product-card.is-hidden {
  display: none;
}

.taste-banner {
  width: var(--container);
  min-height: 420px;
  margin: 36px auto 0;
  padding: 36px;
  display: grid;
  align-items: center;
  gap: 24px;
  border-radius: 42px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 27, 22, 0.86), rgba(37, 27, 22, 0.28)),
    url("assets/product-chocolate.jpg") center/cover;
}

.taste-banner .eyebrow,
.taste-banner p {
  color: rgba(255, 255, 255, 0.82);
}

.taste-banner h2 {
  max-width: 760px;
}

.taste-banner p {
  max-width: 620px;
}

.play-link {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--strawberry);
  box-shadow: 0 22px 46px rgba(244, 91, 105, 0.32);
}

.play-link span {
  width: 0;
  height: 0;
  margin-right: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 20px solid #fff;
}

.industry-grid,
.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.industry-card,
.founder-card {
  padding: 24px;
}

.founder-card--featured {
  display: grid;
  gap: 18px;
  padding: 16px;
}

.founder-card--featured img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(58, 32, 24, 0.14);
}

.industry-card {
  min-height: 245px;
}

.contact {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-list a,
address {
  color: var(--chocolate);
  font-weight: 800;
}

address {
  font-style: normal;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--chocolate);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
}

.contact-form input,
.newsletter input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter input:focus {
  border-color: var(--strawberry);
  box-shadow: 0 0 0 4px rgba(244, 91, 105, 0.12);
}

.site-footer {
  margin-top: 40px;
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--cocoa);
}

.footer-grid,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: var(--vanilla);
}

.newsletter {
  display: grid;
  gap: 10px;
}

.newsletter button {
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--strawberry);
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.32);
  animation: pulse 2.4s ease-out infinite;
}

.whatsapp-float svg {
  position: relative;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.42);
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
}

.page-hero {
  min-height: 430px;
  margin-top: 28px;
  padding: 24px;
  display: grid;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 60px rgba(111, 61, 46, 0.12);
}

.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.page-hero h1 + p {
  margin-top: 24px;
}

.page-hero p:not(.eyebrow),
.rich-copy p,
.product-catalog p {
  color: var(--muted);
  line-height: 1.9;
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 28px;
}

.page-section {
  padding: 58px 0;
}

.two-col {
  display: grid;
  gap: 24px;
  align-items: center;
}

.rich-copy h2,
.contact__content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  text-wrap: balance;
}

.info-panel {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  background: var(--chocolate);
  box-shadow: var(--shadow);
}

.info-panel strong {
  display: block;
  color: var(--vanilla);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
}

.info-panel span {
  font-weight: 900;
}

.timeline-page,
.text-grid,
.product-catalog {
  display: grid;
  gap: 16px;
}

.timeline-page article,
.text-grid p,
.product-catalog article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(111, 61, 46, 0.1);
}

.timeline-page article,
.text-grid p {
  padding: 22px;
}

.timeline-page span,
.product-catalog span {
  color: var(--strawberry);
  font-weight: 900;
}

.product-catalog {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-catalog article {
  overflow: hidden;
}

.product-catalog img,
.page-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-catalog article span,
.product-catalog article h3,
.product-catalog article p {
  margin-inline: 20px;
}

.product-catalog article span {
  display: inline-block;
  margin-top: 18px;
}

.product-catalog article p {
  margin-bottom: 22px;
}

.compact-footer {
  margin-top: 52px;
  padding-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -24px, 0) scale(1.12);
  }
}

@keyframes slideText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.86);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.24);
    opacity: 0;
  }
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .main-nav,
  .header-cta {
    display: flex;
  }

  .hero,
  .story,
  .contact {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero__visual {
    min-height: 590px;
  }

  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .taste-banner {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.75fr 0.85fr 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .showcase-card--wide {
    grid-row: span 2;
    min-height: 736px;
  }

  .founder-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(360px, 0.8fr) 1fr;
    align-items: center;
    gap: 32px;
    padding: 24px;
  }

  .founder-card--featured img {
    height: 100%;
    min-height: 300px;
    max-height: 360px;
  }

  .founder-card--featured div {
    max-width: 620px;
    justify-self: start;
  }

  .founder-card:not(.founder-card--featured) {
    grid-column: span 1;
  }

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

  .page-hero,
  .two-col {
    grid-template-columns: 1fr 0.85fr;
  }

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

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

@media (max-width: 759px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 31;
    width: 100%;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 8px;
    padding: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 248, 234, 0.97);
    box-shadow: 0 22px 60px rgba(58, 32, 24, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 14px 16px;
    border: 1px solid rgba(111, 61, 46, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 1.08rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 24px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__badges span {
    text-align: center;
    flex: 0 0 auto;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin: -22px auto 0;
  }

  .hero-card--bottom {
    display: none;
  }

  .stats-band {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .taste-banner {
    padding: 24px;
    border-radius: 32px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

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