:root {
  --primary-blue: #172e8a;
  --deep-navy: #071b5a;
  --royal-gold: #d8aa25;
  --light-gold: #f4d46a;
  --logo-red: #a8322b;
  --natural-green: #168047;
  --white: #ffffff;
  --text-dark: #1f2430;
  --muted: #69718a;
  --surface: #fffaf0;
  --shadow: 0 24px 80px rgba(7, 27, 90, 0.22);
  --soft-shadow: 0 14px 44px rgba(7, 27, 90, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  color: var(--text-dark);
  font-family: "Inter", "Noto Sans Devanagari", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(244, 212, 106, 0.26), transparent 28rem),
    linear-gradient(180deg, #fef8ea 0%, #ffffff 38%, #f6f0de 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(216, 170, 37, 0.08) 12%, transparent 12%),
    linear-gradient(225deg, rgba(216, 170, 37, 0.08) 12%, transparent 12%);
  background-position:
    0 0,
    1.2rem 0;
  background-size: 2.4rem 2.4rem;
  opacity: 0.42;
  content: "";
}

body[data-lang="hi"] {
  font-family: "Noto Sans Devanagari", "Inter", Arial, sans-serif;
}

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

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

figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(216, 170, 37, 0.3);
  background: rgba(7, 27, 90, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.35rem, 1.6vw, 1.5rem);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--light-gold);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-switcher {
  display: inline-flex;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid rgba(244, 212, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-button {
  min-width: 2.2rem;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.62rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-button.is-active {
  color: var(--deep-navy);
  background: var(--light-gold);
}

.language-button:focus-visible,
.button:focus-visible,
.direct-contacts a:focus-visible,
.footer-actions a:focus-visible {
  outline: 3px solid rgba(244, 212, 106, 0.7);
  outline-offset: 3px;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: 100vw;
  min-height: calc(100svh - 7rem);
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(244, 212, 106, 0.24);
  border-bottom: 1px solid rgba(244, 212, 106, 0.24);
  padding: clamp(1.35rem, 4vw, 3.6rem) max(1rem, calc((100vw - 1180px) / 2 + 1rem));
  background:
    radial-gradient(circle at 74% 36%, rgba(244, 212, 106, 0.24), transparent 17rem),
    radial-gradient(circle at 8% 12%, rgba(168, 50, 43, 0.2), transparent 17rem),
    linear-gradient(135deg, #061341 0%, #09236f 48%, #071844 100%);
  box-shadow: 0 30px 90px rgba(7, 27, 90, 0.24);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(135deg, rgba(244, 212, 106, 0.08) 12%, transparent 12%),
    linear-gradient(225deg, rgba(244, 212, 106, 0.07) 12%, transparent 12%);
  background-position:
    0 0,
    1.15rem 0;
  background-size: 2.3rem 2.3rem;
  opacity: 0.36;
}

.hero::after {
  inset: auto -8rem -12rem auto;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(216, 170, 37, 0.16);
  filter: blur(22px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0;
}

.hero-copy::before {
  display: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--logo-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--deep-navy);
  font-family: "Playfair Display", "Noto Sans Devanagari", serif;
  line-height: 0.98;
}

h1 {
  max-width: 640px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 3.9vw, 3.55rem);
}

.hero h1 {
  max-width: 9.6ch;
  margin-bottom: 1rem;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--light-gold);
}

.hero .eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 3.1vw, 3.15rem);
}

h3 {
  color: var(--deep-navy);
  font-size: 1.2rem;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.58;
}

.hero-subline {
  max-width: 560px;
  margin: 0.8rem 0 0;
  color: rgba(244, 212, 106, 0.96);
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.3rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--light-gold), var(--royal-gold));
  box-shadow: 0 16px 34px rgba(216, 170, 37, 0.34);
}

.button-secondary {
  border: 1px solid rgba(244, 212, 106, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-facts span {
  display: grid;
  gap: 0.2rem;
  min-height: 4.1rem;
  border: 1px solid rgba(244, 212, 106, 0.26);
  border-radius: 1.05rem;
  padding: 0.78rem 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.hero-facts strong {
  color: var(--light-gold);
  font-size: 1.05rem;
  line-height: 1;
}

.hero-facts small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(48vw, 610px);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 570px);
  min-height: min(48vw, 610px);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 52%, rgba(244, 212, 106, 0.24), transparent 15rem),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 19rem);
}

.hero-stage::before {
  position: absolute;
  inset: 8% 4% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 37, 0.22), transparent 64%);
  filter: blur(10px);
  content: "";
}

.gold-orbit {
  display: none;
}

.hero-visual picture {
  position: relative;
  overflow: hidden;
  width: min(100%, 540px);
  aspect-ratio: 0.92;
  border: 1px solid rgba(244, 212, 106, 0.26);
  border-radius: 1.55rem;
  background: rgba(7, 27, 90, 0.34);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.36),
    0 0 0 8px rgba(255, 255, 255, 0.08);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  box-shadow: none;
}

.hero-badge {
  position: absolute;
  right: clamp(0.8rem, 2.4vw, 1.4rem);
  bottom: clamp(0.8rem, 2.4vw, 1.4rem);
  display: grid;
  gap: 0.15rem;
  border: 1px solid rgba(244, 212, 106, 0.42);
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  background: rgba(7, 27, 90, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-badge span {
  color: rgba(244, 212, 106, 0.9);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 0.95rem;
}

.product,
.story,
.benefits,
.cooking,
.quality,
.trust,
.contacts {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  max-width: 760px;
}

.product .section-heading h2,
.trust .section-heading h2 {
  max-width: 680px;
}

.cooking-layout,
.contacts {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 1.2rem;
}

.product-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.48fr);
  align-items: stretch;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  min-height: auto;
  border: 1px solid rgba(244, 212, 106, 0.26);
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  padding: clamp(1.1rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 78% 12%, rgba(244, 212, 106, 0.24), transparent 18rem),
    radial-gradient(circle at 8% 100%, rgba(23, 46, 138, 0.08), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.94));
  box-shadow: 0 26px 72px rgba(7, 27, 90, 0.12);
  isolation: isolate;
}

.product-showcase::before {
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(244, 212, 106, 0.13);
  border-radius: calc(clamp(1.5rem, 3vw, 2.4rem) - 0.45rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(244, 212, 106, 0.08));
  opacity: 0.68;
  content: "";
}

.product-copy,
.product-specs {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.product-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  align-items: stretch;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.product-copy .eyebrow {
  align-self: end;
  grid-column: 1;
  margin-bottom: 0;
  color: var(--logo-red);
}

.product-copy h2 {
  grid-column: 1;
  max-width: 22ch;
  margin-bottom: 0;
  color: var(--deep-navy);
  font-family: "Inter", "Noto Sans Devanagari", Arial, sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: normal;
  text-wrap: balance;
}

.product-card,
.story-card,
.nutrition-card,
.benefit-card,
.trust-card,
.quality-card,
.official-details {
  border: 1px solid rgba(216, 170, 37, 0.35);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 60px rgba(7, 27, 90, 0.08);
}

.story-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.25rem);
  overflow: hidden;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(7, 27, 90, 0.95), rgba(23, 46, 138, 0.86)),
    radial-gradient(circle at 100% 0, rgba(244, 212, 106, 0.24), transparent 22rem);
}

.story-card h2,
.story-card .eyebrow {
  color: var(--white);
}

.story-card .eyebrow {
  color: var(--light-gold);
}

.story-copy {
  display: grid;
  gap: 0.7rem;
}

.story-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.story-media {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  height: clamp(12rem, 25vw, 18rem);
  min-height: 0;
  border: 1px solid rgba(244, 212, 106, 0.38);
  border-radius: 1.3rem;
}

.story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 27, 90, 0.2));
  content: "";
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-content: center;
  gap: 0.7rem;
  min-width: 0;
  border-color: rgba(244, 212, 106, 0.28);
  padding: clamp(1rem, 2.1vw, 1.45rem);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 212, 106, 0.18), transparent 12rem),
    linear-gradient(135deg, #071b5a, #132f86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(7, 27, 90, 0.18);
}

.product-kicker {
  margin: 0;
  color: var(--light-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 32rem;
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", "Noto Sans Devanagari", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-card p:not(.product-kicker) {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.product-specs {
  display: grid;
  align-content: stretch;
  grid-template-rows: auto 1fr;
  gap: 0.9rem;
}

.product-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.product-chips span {
  display: grid;
  place-items: center;
  min-height: 3.4rem;
  border: 1px solid rgba(216, 170, 37, 0.34);
  border-radius: 1rem;
  padding: 0.55rem 0.45rem;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(7, 27, 90, 0.07);
  font-size: clamp(0.74rem, 0.95vw, 0.88rem);
  font-weight: 850;
  text-align: center;
  overflow-wrap: normal;
  white-space: nowrap;
}

.product-image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: stretch;
  min-width: 0;
  min-height: clamp(24rem, 38vw, 520px);
  border: 1px solid rgba(244, 212, 106, 0.34);
  border-radius: clamp(1.3rem, 2.4vw, 2rem);
  background:
    radial-gradient(circle at 50% 10%, rgba(244, 212, 106, 0.22), transparent 16rem),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 72px rgba(0, 0, 0, 0.25);
}

.product-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-badge {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  left: 2rem;
  max-width: calc(100% - 4rem);
  border: 1px solid rgba(244, 212, 106, 0.5);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--deep-navy);
  background: linear-gradient(135deg, rgba(244, 212, 106, 0.98), rgba(216, 170, 37, 0.94));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.nutrition-card {
  display: grid;
  align-content: start;
  border-color: rgba(216, 170, 37, 0.28);
  padding: clamp(1rem, 2vw, 1.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.92)),
    radial-gradient(circle at 100% 0, rgba(244, 212, 106, 0.22), transparent 12rem);
}

.nutrition-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.2;
}

.nutrition-card dl {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.nutrition-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(105, 113, 138, 0.14);
  border-radius: 0.85rem;
  padding: 0.62rem 0.72rem;
  background: rgba(255, 255, 255, 0.58);
}

.nutrition-card .nutrition-primary {
  align-items: flex-end;
  border-color: rgba(216, 170, 37, 0.32);
  background: linear-gradient(135deg, rgba(244, 212, 106, 0.18), rgba(255, 255, 255, 0.72));
}

.nutrition-primary dd {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
}

.nutrition-card dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.nutrition-card dd {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.trust-card {
  border-color: rgba(22, 128, 71, 0.2);
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 242, 0.95)),
    radial-gradient(circle at 100% 0, rgba(22, 128, 71, 0.1), transparent 14rem);
}

.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--deep-navy);
  background: rgba(22, 128, 71, 0.12);
  font-weight: 900;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.55;
}

.market-visual {
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 8px solid var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--soft-shadow);
}

.market-visual img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  box-shadow: var(--soft-shadow);
}

.benefit-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(244, 212, 106, 0.14);
  content: "";
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--royal-gold);
  font-weight: 900;
}

.benefit-card p,
.contact-copy p,
.quality-card li {
  color: var(--muted);
  line-height: 1.58;
}

.steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cooking-step;
}

.steps li {
  position: relative;
  min-height: 4.6rem;
  border-radius: 1.4rem;
  padding: 1rem 1rem 1rem 4.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
  box-shadow: 0 18px 46px rgba(7, 27, 90, 0.14);
  counter-increment: cooking-step;
}

.steps li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--deep-navy);
  background: var(--light-gold);
  font-weight: 900;
  content: counter(cooking-step);
}

.package-card {
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  max-height: 420px;
}

.package-card picture {
  height: 100%;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3.5vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.95)),
    radial-gradient(circle at 100% 0, rgba(22, 128, 71, 0.12), transparent 24rem);
}

.quality-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
}

.contacts {
  align-items: center;
}

.contact-copy {
  padding-right: clamp(0rem, 4vw, 3rem);
}

.direct-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.direct-contacts a {
  border: 1px solid rgba(216, 170, 37, 0.42);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.legal-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.official-details {
  align-self: start;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.official-details h3 {
  margin-bottom: 0.85rem;
  color: var(--deep-navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.official-details dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.official-details div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.55fr) 1fr;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(105, 113, 138, 0.16);
  padding-bottom: 0.55rem;
}

.official-details dt {
  color: var(--muted);
  font-weight: 500;
}

.official-details dd {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep-navy);
}

.footer-brand,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  justify-content: space-between;
  width: 100%;
}

.footer-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-actions a {
  border: 1px solid rgba(244, 212, 106, 0.25);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-weight: 800;
}

.site-footer img {
  width: 64px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.footer-brand p {
  margin-left: auto;
}

@media (min-width: 901px) and (max-height: 800px) {
  .site-header {
    padding: 0.55rem 3rem;
  }

  .brand img {
    width: 96px;
  }

  .hero {
    gap: clamp(1.2rem, 3vw, 2.5rem);
    min-height: calc(100svh - 6rem);
    padding: clamp(1.4rem, 3vw, 2.4rem);
  }

  h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.25rem, 3.6vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.85rem, 2.7vw, 2.75rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin: 1rem 0;
  }

  .hero-facts {
    margin-top: 1rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.75rem 1.15rem;
  }

  .hero-facts span {
    padding: 0.45rem 0.72rem;
  }

  .hero-visual picture {
    width: min(39vw, 500px);
    aspect-ratio: 0.92;
  }

  .hero-stage {
    min-height: min(46vw, 560px);
  }

  .product,
  .story,
  .benefits,
  .cooking,
  .quality,
  .trust,
  .contacts {
    padding: 2.5rem 0;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .product-showcase {
    min-height: auto;
    padding: 1.2rem;
  }

  .product-copy h2 {
    font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  }

  .story-card {
    padding: 1.5rem;
  }

  .story-media {
    height: min(24vw, 260px);
  }

  .product-card,
  .nutrition-card,
  .trust-card,
  .benefit-card {
    padding: 1rem;
  }

  .product-card h3 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
  }

  .product-card p:not(.product-kicker),
  .trust-card p,
  .benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .product-image-card {
    min-height: min(38vw, 440px);
  }

  .market-visual img {
    max-height: 260px;
  }

  .steps li {
    min-height: 4.2rem;
  }
}

@media (max-width: 1120px) {
  .product-showcase {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: auto;
  }

  .product-copy {
    grid-template-columns: 1fr;
  }

  .product-copy h2 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 4vw, 2.45rem);
  }

  .product-card {
    grid-column: auto;
    grid-row: auto;
    max-width: 42rem;
  }

  .product-image-card {
    min-height: clamp(22rem, 48vw, 460px);
  }

  .product-specs {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: stretch;
  }

  .nutrition-card dl {
    grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
  }

  .nutrition-card .nutrition-primary {
    grid-row: span 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .brand img {
    width: 112px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    overflow: visible;
    max-width: 100%;
    padding: 0.1rem 0 0.35rem;
  }

  .main-nav a {
    flex: 0 1 auto;
    padding: 0.5rem 0.7rem;
    white-space: nowrap;
  }

  .hero,
  .product-showcase,
  .story-card,
  .cooking-layout,
  .quality-card,
  .trust-grid,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: clamp(1.4rem, 5vw, 2.25rem);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(2.25rem, 8.6vw, 3.25rem);
  }

  .hero-text,
  .hero-subline {
    max-width: min(100%, 34rem);
  }

  .hero-actions {
    max-width: min(100%, 28rem);
  }

  .product-image-card {
    grid-row: auto;
    min-height: 320px;
  }

  .product-showcase {
    min-height: auto;
  }

  .product-copy h2 {
    max-width: 18ch;
    font-size: clamp(1.65rem, 6vw, 2.35rem);
  }

  .product-specs {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-content: stretch;
  }

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

  .nutrition-card dl {
    grid-template-columns: 1fr;
  }

  .nutrition-card .nutrition-primary {
    grid-row: auto;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 0.4rem;
  }

  .gold-orbit {
    display: none;
  }

  .hero-stage {
    width: min(100%, 560px);
    min-height: clamp(25rem, 70vw, 38rem);
    padding: clamp(1rem, 4vw, 1.5rem);
  }

  .hero-visual picture {
    width: min(100%, 520px);
    aspect-ratio: 0.92;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 0.8rem;
    overflow: hidden;
  }

  .brand img {
    width: 98px;
  }

  .main-nav {
    gap: 0.25rem;
    padding-bottom: 0.1rem;
  }

  .main-nav a {
    padding: 0.42rem 0.48rem;
    font-size: 0.82rem;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.02;
  }

  .hero-text,
  .hero-subline {
    max-width: 29ch;
    overflow-wrap: break-word;
  }

  .hero-subline {
    font-size: 0.96rem;
  }

  .language-button {
    min-width: 2rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.78rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 20rem);
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

  .hero-visual picture {
    width: min(100%, 350px);
    aspect-ratio: 0.9;
    border-radius: 1.25rem;
  }

  .hero-visual img {
    transform: scale(1.24);
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: stretch;
    width: min(100%, 350px);
    margin-top: 0.75rem;
  }

  .nutrition-card dl {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand,
  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .official-details div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
