@font-face {
  font-family: "SoruSerif";
  src: local("Georgia");
  font-display: swap;
}

:root {
  --ink: #2d2a22;
  --ink-soft: #615b4e;
  --paper: #f5efe3;
  --paper-2: #ede2cf;
  --gold: #bd8a2f;
  --gold-soft: #d8b96c;
  --crocus: #7b3346;
  --terra: #9b4b2e;
  --olive: #536445;
  --sea: #173d47;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(45, 42, 34, .18);
  --radius: 28px;
  --radius-small: 16px;
  --container: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.no-js body {
  visibility: visible;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(189, 138, 47, .14), transparent 24rem),
    linear-gradient(180deg, var(--paper), #fff9ef 50%, var(--paper));
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 18px;
  top: 18px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  background:
    linear-gradient(180deg, rgba(13, 17, 14, 0.52), rgba(13, 17, 14, 0.16) 58%, rgba(13, 17, 14, 0));
  transition:
    background .25s ease,
    box-shadow .25s ease,
    backdrop-filter .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 239, 227, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(45, 42, 34, 0.08);
}

.header-inner {
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-family: SoruSerif, Georgia, serif;
  font-size: 1.18rem;
  letter-spacing: .005em;
  font-weight: 700;
  white-space: nowrap;
  color: #fffaf1;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(216, 185, 108, 0.46);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.brand span {
  color: currentColor;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: #34291f;
}

.site-header.is-scrolled .brand span,
.site-header.is-open .brand span {
  text-shadow: none;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  box-shadow: 0 8px 22px rgba(45, 42, 34, 0.10);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding: 8px 0;
  color: rgba(255, 250, 241, 0.90);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: center;
  opacity: .9;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fffaf1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
  color: rgba(45, 42, 34, 0.82);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:focus-visible {
  color: var(--ink);
}

.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.14);
  border: 1px solid rgba(255, 250, 241, 0.20);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(45, 42, 34, 0.10);
}

.lang-btn {
  min-width: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 241, 0.82);
  cursor: pointer;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .08em;
  font-weight: 800;
}

.site-header.is-scrolled .lang-btn,
.site-header.is-open .lang-btn {
  color: var(--ink-soft);
}

.lang-btn.is-active {
  background: #fffaf1;
  color: #252015;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.site-header.is-scrolled .lang-btn.is-active,
.site-header.is-open .lang-btn.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(45, 42, 34, .16);
  background: rgba(255, 250, 241, .78);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fffaf1;
  border-radius: 99px;
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header.is-open .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 34px) 0 52px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 23, 17, 0.86) 0%, rgba(18, 23, 17, 0.58) 42%, rgba(18, 23, 17, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 13, 10, 0.34) 0%, rgba(10, 13, 10, 0.08) 26%, rgba(18, 23, 17, 0.62) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
  padding-top: 28px;
}

.eyebrow,
.section-kicker span,
.label-small {
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

.hero h1,
.intro h2,
.product h2,
.method h2,
.land h2,
.drop h2,
.join h2,
.faq h2 {
  font-family: SoruSerif, Georgia, serif;
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.65rem, 4.85vw, 4.95rem);
  line-height: .94;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.hero-text {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: rgba(255, 250, 241, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #171510;
  box-shadow: 0 18px 45px rgba(189, 138, 47, .28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 250, 241, .34);
  background: rgba(255, 250, 241, .08);
  backdrop-filter: blur(8px);
}

.hero-note {
  margin-top: 20px;
  color: rgba(255, 250, 241, .84);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.10);
  border: 1px solid rgba(255, 250, 241, 0.14);
  backdrop-filter: blur(8px);
}

/* Sections */

.section-pad {
  padding: clamp(74px, 9vw, 132px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: .36fr 1fr;
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.intro h2,
.product h2,
.method h2,
.land h2,
.drop h2,
.join h2,
.faq h2 {
  font-size: clamp(2.15rem, 5vw, 4.8rem);
}

.intro p,
.product p,
.method .section-head p,
.land p,
.join p {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.cards {
  margin-top: 58px;
  display: grid;
  gap: 18px;
}

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

.value-card,
.step,
.signup-card,
.faq details,
.saffron-card {
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(45, 42, 34, .11);
  box-shadow: 0 16px 50px rgba(45, 42, 34, .08);
}

.value-card {
  border-radius: var(--radius);
  padding: 28px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(189, 138, 47, .14);
  color: var(--terra);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3,
.step h3 {
  margin: 22px 0 8px;
  font-family: SoruSerif, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.value-card p,
.step p,
.faq p {
  margin: 0;
  color: var(--ink-soft);
}

/* Product */

.product {
  background:
    linear-gradient(180deg, rgba(45, 42, 34, .04), rgba(45, 42, 34, 0)),
    var(--paper-2);
}

.product-grid,
.land-grid,
.join-grid {
  display: grid;
  grid-template-columns: 1.02fr .78fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.small-note {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-size: .98rem !important;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(45, 42, 34, .14);
}

.spec-list strong {
  color: var(--ink);
}

.spec-list span {
  color: var(--ink-soft);
}

.product-visual {
  min-height: 500px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 61, 71, .9), rgba(45, 42, 34, .92)),
    url("/assets/images/vine-leaf.jpg") center/cover;
  padding: 28px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.saffron-card {
  max-width: 340px;
  width: 100%;
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  background: rgba(245, 239, 227, .92);
  backdrop-filter: blur(14px);
}

.saffron-card img {
  margin: 0 auto 18px;
}

.saffron-card h3 {
  margin: 0;
  font-family: SoruSerif, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.saffron-card p {
  margin: 14px 0 0;
  font-size: .98rem;
}

.batch-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 42, 34, .14);
  color: var(--ink-soft);
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Method */

.section-head {
  text-align: center;
  margin-inline: auto;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.step {
  border-radius: var(--radius);
  padding: 25px;
}

.step>span {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .16em;
  font-weight: 900;
}

/* Land */

.land {
  background: var(--ink);
  color: var(--paper);
}

.land .eyebrow {
  color: var(--gold-soft);
}

.land p {
  color: rgba(245, 239, 227, .76);
}

.land-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.land-gallery picture:first-child {
  grid-row: span 2;
}

.land-gallery img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 250, 241, .12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

/* Drops */

.drop-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(28px, 5vw, 64px);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(83, 100, 69, .14), rgba(189, 138, 47, .12)),
    rgba(255, 250, 241, .75);
  border: 1px solid rgba(45, 42, 34, .1);
  box-shadow: var(--shadow);
}

.drop-features {
  display: grid;
  gap: 14px;
}

.drop-features div {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(45, 42, 34, .12);
}

.drop-features strong {
  font-family: SoruSerif, Georgia, serif;
  font-size: 1.25rem;
}

.drop-features span {
  color: var(--ink-soft);
}

/* Join */

.join {
  background:
    linear-gradient(180deg, rgba(245, 239, 227, .8), rgba(237, 226, 207, .88)),
    url("/assets/images/opuntia.jpg") center/cover fixed;
}

.signup-card {
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 250, 241, .9);
  backdrop-filter: blur(18px);
}

.signup-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .92rem;
}

.signup-card input,
.signup-card select {
  width: 100%;
  border: 1px solid rgba(45, 42, 34, .18);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
}

.signup-card input:focus,
.signup-card select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(189, 138, 47, .16);
}

.signup-card .btn {
  width: 100%;
}

.form-note {
  margin: 15px 0 0 !important;
  font-size: .84rem !important;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.faq details {
  border-radius: 20px;
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.01em;
}

.faq p {
  margin-top: 14px;
}

/* Footer */

.site-footer {
  background: #201e19;
  color: rgba(245, 239, 227, .78);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .6fr;
  gap: 34px;
}

.footer-brand {
  color: var(--paper);
}

.footer-grid p {
  max-width: 430px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(245, 239, 227, .72);
  text-decoration: none;
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-heading {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 227, .12);
  font-size: .85rem;
}

/* Animation */

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

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

/* Responsive */

@media (max-width: 900px) {
  .header-inner {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(245, 239, 227, .97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav a {
    color: rgba(45, 42, 34, 0.82);
    text-shadow: none;
    padding: 10px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(45, 42, 34, .07);
    color: var(--ink);
    border-radius: 999px;
  }

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

  .nav-toggle {
    display: block;
  }

  .language-switch {
    margin-left: 0;
  }

  .hero {
    min-height: 720px;
    align-items: center;
    padding-bottom: 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 23, 17, .65), rgba(18, 23, 17, .82)),
      linear-gradient(90deg, rgba(18, 23, 17, .68), rgba(18, 23, 17, .15));
  }

  .hero-content {
    margin-inline: auto;
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 8.5vw, 4.6rem);
    max-width: 680px;
  }

  .intro-grid,
  .product-grid,
  .land-grid,
  .join-grid,
  .drop-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .timeline,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 430px;
  }

  .land-gallery {
    order: 2;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    gap: 10px;
  }

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    transform: scale(.9);
    transform-origin: right center;
  }

  .hero {
    min-height: 680px;
    padding-top: calc(var(--header) + 22px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
    line-height: .96;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .value-card,
  .step,
  .signup-card {
    padding: 22px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .land-gallery {
    grid-template-columns: 1fr;
  }

  .land-gallery picture:first-child {
    grid-row: auto;
  }

  .join {
    background-attachment: scroll;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

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