/* Himalayan Crown Orchards — luxury black & gold */

:root {
  --ink: #f4ecd8;
  --ink-soft: #c4b58f;
  --mist: #1f1f1f;
  --fog: #0e0e0e;
  --leaf: #d4af37;
  --leaf-deep: #070707;
  --apple: #d4af37;
  --apple-deep: #e8c547;
  --gold-soft: #e8d9a8;
  --line: rgba(212, 175, 55, 0.24);
  --white: #171717;
  --on-gold: #0a0a0a;
  --bright: #faf4e6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.is-hidden {
  display: none !important;
}

/* ——— Nav ——— */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.is-scrolled,
.nav-solid {
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.page-home .nav:not(.is-scrolled) {
  color: var(--bright);
}

.page-home .nav:not(.is-scrolled) .nav-cta {
  background: var(--apple);
  color: var(--on-gold);
}

.page-home .nav:not(.is-scrolled) .nav-cta:hover {
  background: var(--apple-deep);
  color: var(--on-gold);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo {
  width: clamp(56px, 8vw, 78px);
  height: clamp(56px, 8vw, 78px);
  object-fit: cover;
  object-position: center 12%;
  border-radius: 12px;
  background: #050505;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.nav.is-scrolled .nav-logo,
.nav-solid .nav-logo {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.nav-cta {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--apple);
  color: var(--on-gold);
  opacity: 1;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--apple-deep);
  color: var(--on-gold);
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, #e8c547 0%, #d4af37 45%, #b8942a 100%);
  color: var(--on-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0d56a 0%, #e0c35a 45%, #d4af37 100%);
  color: var(--on-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--bright);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--apple);
}

.btn-block {
  width: 100%;
}

#pay-btn .pay-rzp-icon {
  height: 1.05rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bright);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.14);
}

.hero-slide-logo {
  background: #050505;
  display: grid;
  place-items: center;
  transform: none;
}

.hero-slide-logo.is-active {
  transform: none;
}

.hero-logo-emblem {
  width: min(72vmin, 460px);
  height: min(72vmin, 460px);
  background-repeat: no-repeat;
  /* Zoom into the circular emblem only — baked-in title text stays cropped out */
  background-size: 205% auto;
  background-position: 50% 6%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.42) 45%, rgba(7, 7, 7, 0.28) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 14vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(5.5rem, 11vw, 7.5rem);
  max-width: 820px;
  animation: rise-in 1s var(--ease) both;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  text-wrap: balance;
  color: var(--bright);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 1;
  margin-bottom: 1rem;
}

.hero-lines {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.hero-lines li {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 236, 216, 0.9);
  line-height: 1.45;
}

.hero-lede {
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: rgba(244, 236, 216, 0.88);
  margin-bottom: 1.75rem;
}

.founders-message {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Quality promise */

.promise {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #101010 0%, #0e0e0e 100%);
}

.promise-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.promise-grid.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-bottom: 1.75rem;
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.promise-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--apple);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.promise-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.brix-standard {
  margin: 0;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--apple);
  border-radius: var(--radius);
  background: var(--white);
}

.brix-standard p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0;
}

.brix-standard strong {
  color: var(--apple);
}

.footer-tagline {
  max-width: 34rem;
  margin: 0.35rem auto 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--gold-soft);
}

.footer-closing {
  max-width: 32rem;
  margin: 1rem auto 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 236, 216, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.35rem;
  margin-left: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--apple);
  background: rgba(10, 10, 10, 0.55);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  color: var(--apple);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  animation: hero-scroll-bounce 1.6s ease-in-out infinite;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: #f0d878;
  border-color: #f0d878;
  background: rgba(10, 10, 10, 0.7);
  outline: none;
}

.hero-scroll-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.4rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 2.2rem;
  height: 3px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(212, 175, 55, 0.35);
  cursor: pointer;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.hero-dot.is-active {
  width: 2.8rem;
  background: var(--apple);
}

.hero-dot:hover {
  background: rgba(212, 175, 55, 0.75);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */

.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.85rem;
}

.section h2,
.purchase-header h1,
.order-panel h2,
.payment-panel h2,
.success-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.section-lede {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Story */

.story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.1), transparent 42%),
    radial-gradient(ellipse at 85% 100%, rgba(212, 175, 55, 0.05), transparent 40%),
    linear-gradient(180deg, #121212 0%, #0e0e0e 100%);
}

.story::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}

.section-intro {
  position: relative;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  animation: rise-in 0.85s var(--ease) both;
}

.section-intro .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.founders {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.founder {
  animation: rise-in 0.95s var(--ease) both;
}

.founder-woman {
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
  animation-delay: 0.12s;
}

.founder-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.28);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 7, 0.88) 0%,
    rgba(7, 7, 7, 0.25) 38%,
    transparent 62%
  );
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.founder:hover .founder-portrait img {
  transform: scale(1.05);
}

.founder-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem 1.4rem 1.45rem;
  color: var(--white);
}

.founder-name {
  display: block;
  font-family: var(--font-display);
  color: var(--bright);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.founder-role {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.founder-note {
  margin-top: 1.1rem;
  padding: 0 0.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 34ch;
}

.founder-woman .founder-note {
  margin-left: auto;
  text-align: right;
}

.story-closing {
  position: relative;
  max-width: 40rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  text-align: center;
  animation: rise-in 1s var(--ease) 0.15s both;
}

.story-closing p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.story-closing-tag {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
}

.story-closing em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 600;
}

/* Orchard facts */

.orchard-facts {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08), transparent 45%),
    linear-gradient(180deg, #101010 0%, #0e0e0e 100%);
}

.facts-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.facts-grid.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-bottom: 2rem;
}

.fact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.85s var(--ease) both;
}

.fact-card,
.quality-item,
.journey-step,
.product-card,
.plantation-history,
.contact-form,
.order-panel,
.payment-panel,
.variety-option-body {
  border-color: var(--line);
}

.fact-value,
.quality-value,
.journey-season,
.product-card-price,
.variety-option-price,
.order-total dd {
  color: var(--apple);
}

.fact-card:nth-child(2) { animation-delay: 0.06s; }
.fact-card:nth-child(3) { animation-delay: 0.12s; }
.fact-card:nth-child(4) { animation-delay: 0.18s; }

.fact-value {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--apple);
  margin-bottom: 0.35rem;
}

.fact-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.plantation-history {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.plantation-history h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.plantation-history ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.plantation-history li {
  display: grid;
  grid-template-columns: 5rem 8rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.plantation-year {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--apple);
}

.plantation-count {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.plantation-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cultivar-list {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.cultivar-list span {
  font-weight: 700;
  color: var(--leaf);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-right: 0.25rem;
}

.quality-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 720px;
}

.quality-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.quality-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
}

.quality-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--apple);
  margin-bottom: 0.3rem;
}

.quality-note {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.purchase-quality {
  margin: 0 0 1.75rem;
  max-width: none;
}

.apple-specs {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0.25rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}

.apple-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.apple-specs strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.variety-option-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--leaf);
}

.footer-address {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.9;
}

.grade-table-wrap {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.grade-table-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.grade-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.grade-chips span {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 7.5rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.grade-chips strong {
  color: var(--apple);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grade-tier-note {
  margin-top: 0.95rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.pricing-tables:not(.row) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pricing-tables.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.25rem 1.45rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  --bs-table-bg: transparent;
  --bs-table-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.price-table th,
.price-table td {
  padding: 0.7rem 0.45rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
}

.price-table td:nth-child(2),
.price-table td:nth-child(3),
.price-table th:nth-child(2),
.price-table th:nth-child(3) {
  text-align: right;
  white-space: nowrap;
  color: var(--apple);
  font-weight: 600;
}

.price-table th:nth-child(2),
.price-table th:nth-child(3) {
  color: var(--leaf);
  font-weight: 700;
}

.price-table td:first-child {
  color: var(--ink);
  font-weight: 500;
}

/* Journey */

.journey {
  background:
    linear-gradient(180deg, #0e0e0e 0%, #121212 100%);
}

.journey-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.journey-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.85s var(--ease) both;
}

.journey-step:nth-child(2) { animation-delay: 0.06s; }
.journey-step:nth-child(3) { animation-delay: 0.12s; }
.journey-step:nth-child(4) { animation-delay: 0.18s; }

.journey-season {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apple);
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.journey-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Harvest */

.harvest {
  background:
    linear-gradient(180deg, #0e0e0e, #121212);
}

.product-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-grid.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: rise-in 0.85s var(--ease) both;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card-media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card-media {
  transform: scale(1.04);
}

.product-gala {
  background-image:
    linear-gradient(180deg, transparent 55%, rgba(20, 32, 26, 0.2)),
    url("https://images.unsplash.com/photo-1560806887-1e4cd0b6cbd6?auto=format&fit=crop&w=1000&q=80");
}

.product-red {
  background-image:
    linear-gradient(180deg, transparent 55%, rgba(20, 32, 26, 0.2)),
    url("https://images.unsplash.com/photo-1570913149827-d2ac84ab3f9a?auto=format&fit=crop&w=1000&q=80");
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.35rem 1.45rem;
  flex: 1;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-card-body > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-card-price {
  font-weight: 700;
  color: var(--apple);
  font-size: 1.2rem;
}

.product-card-price small {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--on-gold);
  background: linear-gradient(135deg, #e8c547 0%, #d4af37 45%, #b8942a 100%);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.28);
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.product-card-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
  display: inline-block;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0d56a 0%, #e0c35a 45%, #d4af37 100%);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.4);
  outline: none;
}

.product-card-link:hover::after,
.product-card-link:focus-visible::after {
  transform: translateX(3px);
}

.pricing-card .product-card-link {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
}

/* Contact */

.contact {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(212, 175, 55, 0.08), transparent 45%),
    linear-gradient(180deg, #101010 0%, #0e0e0e 100%);
}

.contact > .section-inner {
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.contact-form {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.85s var(--ease) both;
}

.contact-form .form-note {
  min-height: 1.2em;
  color: var(--leaf);
  font-weight: 600;
}

.footer-phone {
  margin-top: 0.65rem;
}

.footer-phone a {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-phone a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Purchase ——— */

.purchase {
  padding: calc(5.5rem + 1vw) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 980px;
  margin: 0 auto;
}

.purchase-header {
  margin-bottom: 2.5rem;
  animation: rise-in 0.8s var(--ease) both;
}

.purchase-form {
  display: grid;
  gap: 1.5rem;
}

.varieties {
  border: none;
  display: grid;
  gap: 1rem;
}

.variety-option {
  cursor: pointer;
}

.variety-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variety-option-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.15rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.variety-option:hover .variety-option-body {
  transform: translateY(-2px);
}

.variety-option input:checked + .variety-option-body {
  border-color: var(--apple);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), var(--shadow);
}

.variety-option-media {
  border-radius: 14px;
  min-height: 120px;
  background-size: cover;
  background-position: center;
}

.variety-gala {
  background-image: url("https://images.unsplash.com/photo-1560806887-1e4cd0b6cbd6?auto=format&fit=crop&w=600&q=80");
}

.variety-red {
  background-image: url("https://images.unsplash.com/photo-1570913149827-d2ac84ab3f9a?auto=format&fit=crop&w=600&q=80");
}

.variety-option-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding-right: 0.5rem;
}

.variety-option-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.variety-option-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.variety-option-price {
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--apple);
  font-size: 1.15rem;
}

.variety-option-price small {
  font-weight: 500;
  color: var(--ink-soft);
}

.order-panel,
.payment-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  animation: rise-in 0.85s var(--ease) both;
}

.payment-panel {
  animation-delay: 0.08s;
}

.order-panel h2,
.payment-panel h2 {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label,
.field .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.field input,
.field select,
.field textarea,
.field .form-control,
.field .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: calc(1.5em + 1.7rem + 2px);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field .form-control:focus,
.field .form-select:focus {
  border-color: var(--apple);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  background: #1c1c1c;
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder,
.field .form-control::placeholder {
  color: rgba(196, 181, 143, 0.5);
}

.field select option,
.field .form-select option {
  background: #171717;
  color: var(--ink);
}

.field-row:not(.row) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-row.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
}

.qty-control .form-control {
  border: none;
  border-radius: 0;
  min-height: 48px;
  height: 48px;
  padding: 0;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.qty-control .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 44px 72px 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--fog);
  width: fit-content;
}

.qty-btn {
  height: 48px;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}

.field-hint {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.qty-control input {
  height: 48px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.order-summary {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.75rem;
}

.order-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
}

.order-summary dt {
  color: var(--ink-soft);
}

.order-summary dd {
  font-weight: 600;
  text-align: right;
}

#summary-variety {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
}

.order-total {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.order-total dd {
  color: var(--apple);
  font-size: 1.35rem;
}

.form-note {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(8px);
}

.success-card {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: rise-in 0.45s var(--ease) both;
}

.success-card p:not(.eyebrow) {
  color: var(--ink-soft);
  margin: 0.75rem 0 1.5rem;
}

/* ——— Footer ——— */

.footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  background: #070707;
  color: rgba(244, 236, 216, 0.72);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.35rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}

.footer-meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ——— Responsive ——— */

@media (max-width: 860px) {
  .founders {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .founder-woman {
    margin-top: 1.25rem;
  }

  .founder-note {
    font-size: 0.92rem;
    max-width: none;
  }

  .product-grid:not(.row),
  .journey-timeline,
  .facts-grid:not(.row),
  .promise-grid:not(.row),
  .pricing-tables:not(.row) {
    grid-template-columns: 1fr 1fr;
  }

  .quality-guide {
    grid-template-columns: 1fr;
  }

  .plantation-history li {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.35rem 1rem;
  }

  .plantation-note {
    grid-column: 2;
  }

  .contact-map {
    min-height: 360px;
    height: 360px;
  }

  .variety-option-body {
    grid-template-columns: 1fr;
  }

  .variety-option-media {
    min-height: 160px;
  }
}

@media (max-width: 640px) {
  .nav-brand span {
    display: none;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .founders {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .founder-woman {
    margin-top: 0;
  }

  .founder-woman .founder-note {
    text-align: left;
    margin-left: 0;
  }

  .facts-grid:not(.row),
  .product-grid:not(.row),
  .journey-timeline,
  .promise-grid:not(.row),
  .pricing-tables:not(.row) {
    grid-template-columns: 1fr;
  }

  .plantation-history li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .plantation-note {
    grid-column: auto;
  }

  .field-row:not(.row) {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    padding: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide,
  .hero-slide.is-active {
    transform: none;
  }
}

/* ——— Bootstrap coexistence (keep orchard design on top) ——— */

body {
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
  background: var(--fog) !important;
}

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

.nav {
  flex-wrap: nowrap;
  margin-bottom: 0;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  list-style: none;
}

.btn,
a.btn,
button.btn {
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary,
a.btn-primary,
button.btn-primary {
  background-image: linear-gradient(135deg, #e8c547 0%, #d4af37 45%, #b8942a 100%);
  background-color: #d4af37;
  border: none;
  color: var(--on-gold);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
a.btn-primary:hover,
button.btn-primary:hover {
  background-image: linear-gradient(135deg, #f0d56a 0%, #e0c35a 45%, #d4af37 100%);
  background-color: #e8c547;
  border: none;
  color: var(--on-gold);
}

.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--bright);
  border: 1px solid rgba(212, 175, 55, 0.5);
}
