:root {
  --bg: #fbf7ec;
  --bg-soft: #f1f8ed;
  --surface: #ffffff;
  --surface-strong: #fffdf7;
  --text: #243126;
  --muted: #657265;
  --green: #166b45;
  --green-2: #2f8d5d;
  --mint: #dff2df;
  --sage: #a9c99c;
  --gold: #e9a947;
  --orange: #e56f35;
  --line: rgba(36, 49, 38, 0.12);
  --shadow: 0 24px 70px rgba(24, 76, 50, 0.14);
  --shadow-soft: 0 14px 40px rgba(24, 76, 50, 0.10);
  --radius: 28px;
  --radius-small: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 242, 223, 0.95), transparent 36rem),
    linear-gradient(180deg, #fbf7ec 0%, #f8fbf4 50%, #fffaf0 100%);
  line-height: 1.72;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  color: var(--text);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(38px, 5.4vw, 72px);
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 3.3vw, 48px);
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.compact-section {
  padding-top: 46px;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0%;
  height: 4px;
  z-index: 1001;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  box-shadow: 0 0 20px rgba(47, 141, 93, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 236, 0.74);
  border-bottom: 1px solid rgba(36, 49, 38, 0.08);
}

.header-inner {
  width: min(1280px, calc(100% - 34px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand img,
.footer-brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(22, 107, 69, 0.07);
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #3f5143;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--mint);
  color: var(--green);
  transform: translateY(-1px);
}

.lang-switch {
  background: var(--green);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 24px rgba(22, 107, 69, 0.20);
}

.menu-dots {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(22, 107, 69, 0.12);
}

.menu-dots span {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  background: rgba(223, 242, 223, 0.82);
  border: 1px solid rgba(22, 107, 69, 0.12);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(233, 169, 71, 0.18);
}

.hero-copy h1 {
  margin-bottom: 24px;
}

.hero-copy p:first-of-type {
  font-size: 20px;
  color: #435443;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 18px 38px rgba(22, 107, 69, 0.27);
}

.secondary-btn {
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 107, 69, 0.16);
  box-shadow: 0 14px 28px rgba(22, 107, 69, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.cta-buy {
  position: relative;
  overflow: hidden;
  min-width: 176px;
}

.cta-buy::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: rotate(18deg);
  transition: left 0.55s ease;
}

.cta-buy:hover::after {
  left: 120%;
}

.order-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.final-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(223,242,223,0.72));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 18%, rgba(233, 169, 71, 0.22), transparent 26rem);
  z-index: -1;
}

.image-shell img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 32px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-bg-orb-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 12%;
  background: rgba(169, 201, 156, 0.38);
}

.hero-bg-orb-two {
  width: 270px;
  height: 270px;
  left: 8%;
  bottom: 6%;
  background: rgba(233, 169, 71, 0.18);
}

.split-card {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(241,248,237,0.92));
  border: 1px solid rgba(22, 107, 69, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.split-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(233, 169, 71, 0.13);
}

.section-kicker {
  width: 112px;
  height: 112px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 34% 30%, #fff 0 14%, transparent 15%),
    linear-gradient(135deg, var(--green), var(--sage));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.23), 0 24px 44px rgba(22, 107, 69, 0.22);
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(241, 248, 237, 0.78), rgba(255, 250, 240, 0.78));
}

.section-head {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.narrow {
  max-width: 760px;
}

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

.benefit-card,
.ingredient-card,
.process-card,
.content-panel {
  border: 1px solid rgba(22, 107, 69, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(22, 107, 69, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card {
  min-height: 178px;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-card:hover,
.ingredient-card:hover,
.process-card:hover,
.content-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 107, 69, 0.28);
  box-shadow: 0 22px 56px rgba(22, 107, 69, 0.14);
}

.wide-card {
  grid-column: span 3;
  min-height: unset;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 68% 28%, var(--gold) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--green), var(--green-2));
}

.benefit-card p {
  margin: 0;
  color: #364938;
  font-weight: 700;
}

.image-break {
  padding: 36px 0;
}

.image-break .container {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 107, 69, 0.12);
  background: #fff;
}

.image-break img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.image-break .container:hover img {
  transform: scale(1.035);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ingredient-card {
  position: relative;
  min-height: 288px;
  padding: 26px;
  border-radius: 26px;
  overflow: hidden;
}

.ingredient-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(223, 242, 223, 0.85);
  transform: rotate(14deg);
  z-index: 0;
}

.ingredient-card h3,
.ingredient-card p {
  position: relative;
  z-index: 1;
}

.supply-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 38px;
  background: linear-gradient(135deg, #173f2e, #2f8d5d);
  box-shadow: var(--shadow);
}

.supply-card h2,
.supply-card p {
  color: #fff;
}

.supply-card p {
  opacity: 0.84;
}

.supply-number {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 46px;
  color: #173f2e;
  background: #fff5d8;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 12px rgba(233, 169, 71, 0.20);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,253,247,0.88));
}

.process-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  margin-bottom: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.content-panel {
  border-radius: 30px;
  padding: clamp(26px, 4vw, 42px);
}

.accent-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(223,242,223,0.70));
}

.warning-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,245,225,0.82));
}

.styled-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.styled-list li {
  position: relative;
  padding: 14px 14px 14px 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  color: #455648;
  border: 1px solid rgba(22, 107, 69, 0.09);
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 13px;
  height: 13px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--gold));
}

.order-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(233,169,71,0.14), transparent 28rem),
    linear-gradient(135deg, rgba(22, 107, 69, 0.06), rgba(255, 255, 255, 0.42));
}

.order-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 40px;
  border: 1px solid rgba(22, 107, 69, 0.14);
  background: rgba(255,255,255,0.90);
  box-shadow: var(--shadow);
}

.order-card .primary-btn {
  border-radius: 26px;
  text-align: center;
  min-height: 118px;
  padding: 24px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border-radius: 22px;
  border: 1px solid rgba(22, 107, 69, 0.14);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(22, 107, 69, 0.06);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 24px;
  font-weight: 850;
  color: #2e4433;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  transition: transform 0.25s ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details p {
  padding: 0 24px 22px;
  margin: 0;
}

.final-cta {
  position: relative;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(233,169,71,0.22), transparent 24rem),
    linear-gradient(135deg, #173f2e, #2f8d5d);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  max-width: 860px;
  margin-inline: auto;
  opacity: 0.88;
}

.site-footer {
  padding: 30px 0;
  background: #fbf7ec;
  border-top: 1px solid rgba(22, 107, 69, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner .lang-switch {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 34px rgba(22, 107, 69, 0.26);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  font-size: 22px;
  font-weight: 900;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    font-size: 13px;
    padding: 10px 11px;
  }

  .benefit-grid,
  .ingredient-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }

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

  .order-card .primary-btn {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 72px;
    width: min(100% - 26px, 1280px);
  }

  .brand img,
  .footer-brand img {
    width: 138px;
  }

  .menu-dots {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    right: 14px;
    top: 80px;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 102px);
    overflow: auto;
    display: grid;
    align-items: stretch;
    gap: 8px;
    border-radius: 28px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .site-nav a {
    padding: 14px 16px;
    font-size: 15px;
  }

  .hero {
    min-height: unset;
    padding-top: 52px;
  }

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

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-actions,
  .order-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .cta-buy {
    min-width: 0;
  }

  .image-shell {
    border-radius: 30px;
  }

  .image-shell img {
    min-height: 290px;
    border-radius: 22px;
  }

  .split-card,
  .supply-card,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    width: 82px;
    height: 82px;
    border-radius: 26px;
  }

  .supply-number {
    width: 118px;
    height: 118px;
    border-radius: 34px;
    font-size: 48px;
  }

  .section-head {
    text-align: left;
  }

  .image-break img {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  p {
    font-size: 16px;
  }

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

  .wide-card {
    grid-column: span 1;
  }

  .benefit-card,
  .ingredient-card,
  .process-card,
  .content-panel {
    border-radius: 22px;
  }

  .ingredient-card {
    min-height: unset;
  }

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

  summary {
    padding-right: 54px;
  }
}

/* Footer upgrade */
.site-footer {
  padding: 46px 0 24px;
  background: linear-gradient(180deg, #fbf7ec 0%, #edf6ea 100%);
  border-top: 1px solid rgba(22, 107, 69, 0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #39503d;
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 107, 69, 0.1);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.footer-nav a:hover {
  transform: translateY(-2px);
  color: var(--green);
  background: #fff;
}

.footer-cta {
  min-height: 48px;
  padding-inline: 20px;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 107, 69, 0.1);
  color: #62705f;
  font-size: 14px;
}

.footer-bottom .lang-switch {
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 800;
}

/* Mobile hero: desktop keeps one right-side banner; mobile keeps one compact banner after the first paragraph */
.hero-mobile-media {
  display: none;
  margin: 18px 0 10px;
}

@media (max-width: 860px) {
  .desktop-hero-media {
    display: none;
  }

  .hero-mobile-media {
    display: block;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    margin-bottom: 14px;
    line-height: 1.08;
  }

  .hero-copy p:first-of-type {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .eyebrow {
    margin-bottom: 12px;
    padding: 8px 13px;
  }

  .hero-mobile-media .image-shell {
    padding: 7px;
    border-radius: 24px;
  }

  .hero-mobile-media .image-shell img {
    min-height: 145px;
    max-height: 185px;
    object-fit: cover;
    border-radius: 18px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-cta {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(25px, 7.8vw, 31px);
  }

  .hero-copy p:first-of-type {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-mobile-media .image-shell img {
    min-height: 122px;
    max-height: 150px;
  }
}

/* Footer redesign: visually different from the light rounded header */
.site-footer {
  position: relative;
  padding: 68px 0 28px;
  color: #f7fff7;
  background:
    radial-gradient(circle at 16% 10%, rgba(233, 169, 71, 0.20), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(223, 242, 223, 0.13), transparent 20rem),
    linear-gradient(135deg, #10291f 0%, #173f2e 48%, #0d241a 100%);
  border-top: 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--green-2), var(--mint));
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(320px, 1fr) minmax(190px, auto);
  align-items: start;
  gap: clamp(24px, 5vw, 58px);
}

.footer-brand {
  width: max-content;
  padding: 15px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.footer-brand img {
  width: 158px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 12px 22px;
  justify-content: stretch;
}

.footer-nav a {
  position: relative;
  padding: 0 0 0 20px;
  border-radius: 0;
  color: rgba(247, 255, 247, 0.82);
  font-weight: 750;
  font-size: 15px;
  line-height: 1.45;
  background: transparent;
  border: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(233, 169, 71, 0.12);
}

.footer-nav a:hover {
  color: #fff;
  background: transparent;
  transform: translateX(4px);
}

.footer-cta {
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 18px;
  white-space: nowrap;
  background: linear-gradient(135deg, #f0b655, #e56f35);
  color: #10291f;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.20);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 255, 247, 0.70);
}

.footer-bottom .lang-switch {
  color: #10291f !important;
  background: #f7fff7;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

@media (max-width: 860px) {
  .site-footer {
    padding: 52px 0 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

/* Hero proportion fix: wider text column and full first-screen composition */
@media (min-width: 861px) {
  :root {
    --container: 1320px;
  }

  .hero.section-pad {
    padding: 38px 0 42px;
  }

  .hero {
    min-height: calc(100svh - 84px);
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
    gap: clamp(34px, 4vw, 58px);
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    max-width: 780px;
    font-size: clamp(42px, 4.05vw, 62px);
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.045em;
  }

  .hero-copy p {
    max-width: 760px;
    margin-bottom: 14px;
  }

  .hero-copy p:first-of-type {
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-copy p:not(:first-of-type) {
    font-size: 16px;
    line-height: 1.58;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 8px 15px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 50px;
    padding: 13px 20px;
  }

  .desktop-hero-media .image-shell {
    padding: 10px;
    border-radius: 34px;
  }

  .desktop-hero-media .image-shell img {
    min-height: 0;
    height: clamp(330px, 31vw, 420px);
    object-fit: cover;
    border-radius: 26px;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero.section-pad {
    padding: 28px 0 34px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 3.65vw, 58px);
    margin-bottom: 14px;
  }

  .hero-copy p:first-of-type,
  .hero-copy p:not(:first-of-type) {
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .desktop-hero-media .image-shell img {
    height: clamp(310px, 29vw, 385px);
  }

  .hero-actions {
    margin-top: 18px;
  }
}
