:root {
  --blue-950: #052336;
  --blue-900: #082b43;
  --blue-700: #17435b;
  --ice: #a8d9ec;
  --paper: #f7f7f3;
  --ink: #14252d;
  --muted: #52666f;
  --line: rgba(20, 37, 45, 0.16);
  --white: #ffffff;
  --focus: #f4d06f;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  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: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 2px solid var(--blue-950);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(5, 35, 54, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand span {
  font-size: 1rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--ice);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
}

.language-switch span,
.language-switch a {
  min-width: 28px;
  justify-content: center;
}

.language-switch span {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 6px;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: auto;
  content: "";
}

.nav-toggle__bars::before {
  transform: translateY(-7px);
}

.nav-toggle__bars::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero__bg,
.hero__bg img,
.hero__shade,
.landscape-band__image,
.landscape-band__image img,
.landscape-band__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg img,
.landscape-band__image img {
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 35, 54, 0.94) 0%, rgba(5, 35, 54, 0.72) 34%, rgba(5, 35, 54, 0.18) 75%),
    linear-gradient(0deg, rgba(5, 35, 54, 0.68) 0%, rgba(5, 35, 54, 0) 36%);
}

.health-warning {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  z-index: 3;
  width: clamp(360px, 27vw, 410px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.health-warning img {
  width: 100%;
  height: auto;
}

.health-warning__translation {
  margin: 0.55rem 0 0;
  padding: 0.5rem 0.65rem;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 300px) minmax(360px, 410px);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: center;
  padding: 6.6rem 0 2.5rem;
}

.hero__copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 680px;
  padding-bottom: 1rem;
}

@media (min-width: 861px) {
  .hero__copy {
    transform: translateY(-1.8rem);
  }
}

.eyebrow,
.section-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-text {
  max-width: 520px;
  margin: 1.5rem 0 0;
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: normal;
}

.button--light {
  background: var(--ice);
  border-color: var(--ice);
  color: var(--blue-950);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

.button--distributor {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

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

.hero-facts {
  margin: 2.2rem 0 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero__bottle {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  width: min(22vw, 320px);
  min-width: 240px;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.42));
}

.hero__bottle img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(650px, calc(88svh - 140px));
  margin-left: auto;
  object-fit: contain;
}

.section {
  scroll-margin-top: 96px;
  padding: 5rem max(1rem, calc((100vw - var(--max)) / 2));
}

.section--light {
  background: var(--paper);
}

.section--paper {
  background: #ffffff;
}

.section--product {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fa 100%);
}

.section-grid,
.product-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.section-grid--reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.section-copy h2,
.product-copy h2,
.landscape-band h2,
.contact-section h2,
.plain-page h1 {
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-copy p,
.product-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.section-image {
  overflow: hidden;
  border-radius: 8px;
}

.section-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-image--soft img {
  aspect-ratio: 3 / 2;
}

.route-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 2px solid var(--ice);
}

.route-list li {
  position: relative;
  padding: 1rem 0.6rem 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-list li::before {
  position: absolute;
  top: -7px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ice);
  content: "";
}

.botanical-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.botanical-list li {
  border-top: 2px solid var(--ice);
  padding-top: 0.8rem;
}

.botanical-list strong,
.botanical-list span {
  display: block;
}

.botanical-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.fine-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.fine-note--light {
  color: rgba(255, 255, 255, 0.74);
}

.product-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-list div {
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  font-weight: 800;
}

.label-detail {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(20, 37, 45, 0.08);
}

.label-detail img {
  width: min(100%, 320px);
}

.landscape-band {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--blue-950);
}

.landscape-band__shade {
  background:
    linear-gradient(90deg, rgba(5, 35, 54, 0.92) 0%, rgba(5, 35, 54, 0.68) 44%, rgba(5, 35, 54, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 35, 54, 0.64), rgba(5, 35, 54, 0.18));
}

.landscape-band__content {
  position: relative;
  width: min(720px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding: 5rem 0;
}

.landscape-band p {
  color: rgba(255, 255, 255, 0.86);
}

.landscape-band__strip {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  scroll-margin-top: 96px;
  padding: 5rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--blue-950);
  color: var(--white);
  text-align: center;
}

.contact-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  justify-content: center;
}

.contact-visible,
.responsibility,
.footer-links {
  margin: 1.5rem 0 0;
}

.footer-links a {
  color: var(--ice);
}

.plain-body {
  background: var(--blue-950);
}

.plain-page {
  min-height: 100svh;
  padding: 9rem max(1rem, calc((100vw - 800px) / 2)) 4rem;
  color: var(--white);
}

.plain-page p,
.plain-page li {
  color: rgba(255, 255, 255, 0.84);
}

.plain-page ul {
  padding-left: 1.2rem;
}

.plain-contact {
  margin: 2rem 0 1.5rem;
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-text {
    font-size: 1.28rem;
  }
}

@media (min-width: 1240px) {
  .hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 66px;
    padding: 0.55rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: rgba(5, 35, 54, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
  }

  .menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a,
  .language-switch {
    min-height: 48px;
    padding: 0 0.7rem;
  }

  .language-switch {
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 35, 54, 0.88) 0%, rgba(5, 35, 54, 0.66) 48%, rgba(5, 35, 54, 0.92) 100%);
  }

  .health-warning {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    justify-self: center;
    width: min(360px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(640px, calc(100% - 2rem));
    padding: 5.2rem 0 3rem;
  }

  .hero__copy {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    transform: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero__bottle {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    justify-self: center;
    width: min(230px, 64vw);
    min-width: 0;
    max-height: none;
    overflow: visible;
  }

  .hero__bottle img {
    max-height: none;
  }

  .section,
  .contact-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-grid,
  .section-grid--reverse,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-grid--reverse .section-image {
    order: 2;
  }

  .botanical-list,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .route-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.4rem;
  }
}

@media (max-width: 420px) {
  .health-warning {
    width: min(260px, calc(100% - 2rem));
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-copy h2,
  .product-copy h2,
  .landscape-band h2,
  .contact-section h2,
  .plain-page h1 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
