:root {
  --cream: #f4ead7;
  --cream-light: #fff9ee;
  --green: #103c25;
  --green-dark: #062516;
  --gold: #b68a33;
  --gold-soft: #f4d88a;
  --ink: #18251c;
  --muted: #665f52;
  --line: rgba(16, 60, 37, 0.14);
  --shadow: 0 28px 70px rgba(25, 35, 24, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream-light);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

/* ANNOUNCEMENT */

.announcement-bar {
  background: var(--green-dark);
  color: var(--gold-soft);
  text-align: center;
  padding: 11px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HEADER */

.site-header {
  width: 100%;
  height: 116px;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(180deg, #fff8ea 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(182, 138, 51, 0.32);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 470px;
  max-width: 470px;
  height: 90px;
  overflow: hidden;
}

.brand img {
  width: 470px;
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
}

.main-nav a {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 13px 24px;
  border: 1.4px solid var(--gold);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 60, 37, 0.25);
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

/* HERO */

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 43% 57%;
  background: linear-gradient(90deg, var(--cream-light), #f8edda);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 110px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--green);
  font-size: clamp(4.3rem, 8vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  max-width: 390px;
  margin-bottom: 28px;
}

.ornament span {
  height: 1px;
  background: var(--gold);
  flex: 1;
}

.hero-text {
  max-width: 560px;
  color: #374139;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(182, 138, 51, 0.28);
  background: rgba(255, 249, 238, 0.6);
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn-primary {
  background: var(--green);
  color: var(--gold-soft);
  border: 1px solid rgba(244, 216, 138, 0.22);
  box-shadow: 0 16px 34px rgba(6, 37, 22, 0.2);
  backdrop-filter: blur(8px);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(6, 37, 22, 0.3);
}

.btn-secondary {
  color: var(--green);
  border: 1px solid rgba(16, 60, 37, 0.28);
  background: rgba(255, 249, 238, 0.46);
}

.hero-media {
  min-height: 720px;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.15s linear;
  will-change: transform;
}

/* VALUE STRIP */

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 6vw;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

.value-strip div {
  padding: 0 28px;
  border-right: 1px solid rgba(244, 216, 138, 0.32);
}

.value-strip div:first-child {
  padding-left: 0;
}

.value-strip div:last-child {
  border-right: 0;
}

.value-strip strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.value-strip p {
  color: rgba(255, 249, 238, 0.76);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* FOUNDER BANNER */

.founder-banner {
  width: 100%;
  padding: 0;
  background: #041b10;
  border-bottom: 1px solid rgba(244, 216, 138, 0.12);
}

.founder-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* SECTIONS */

.section {
  padding: 100px 7vw;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 46px;
}

.center-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.feature-copy h2,
.subscribe-section h2,
.launch-section h2,
.club-copy h2 {
  color: var(--green);
  font-size: clamp(2.6rem, 5.2vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.section-heading p,
.feature-copy p,
.subscribe-section p,
.launch-section p,
.club-copy p {
  color: #354036;
  max-width: 720px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
}

/* TEA SECTION */

.teas-section {
  background:
    radial-gradient(circle at top right, rgba(182, 138, 51, 0.12), transparent 30%),
    linear-gradient(180deg, #fff9ee 0%, #f4ead7 100%);
}

.tea-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 22px;
}

.tea-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  background: #0b1d13;
  border: 1px solid rgba(244, 216, 138, 0.18);
  box-shadow:
    0 18px 48px rgba(26, 34, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tea-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 70px rgba(26, 34, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tea-card.fire {
  background: linear-gradient(180deg, #6d3611 0%, #1d0d05 100%);
}

.tea-card.doctor {
  background: linear-gradient(180deg, #1d4d25 0%, #06140b 100%);
}

.tea-card.bloom {
  background: linear-gradient(180deg, #74131d 0%, #1a0508 100%);
}

.tea-card.iron {
  background: linear-gradient(180deg, #4b2a18 0%, #120907 100%);
}

.tea-card.mind {
  background: linear-gradient(180deg, #0b5d63 0%, #041314 100%);
}

.tea-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid rgba(244, 216, 138, 0.12);
}

.tea-card-copy {
  padding: 28px 24px 30px;
}

.tea-number {
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.tea-card h3 {
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.tea-card span {
  display: block;
  color: rgba(255, 249, 238, 0.74);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.tea-card strong {
  display: block;
  color: #fff9ee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tea-card p:last-child {
  color: rgba(255, 249, 238, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FULL SELECTION SHOWCASE */

.selection-showcase {
  background: linear-gradient(180deg, #f4ead7 0%, #fff9ee 100%);
}

.selection-showcase .wide-image {
  margin-top: 18px;
}

/* CLUB SECTION */

.club-section {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 72px;
  align-items: center;
  padding: 110px 7vw;
  background:
    radial-gradient(circle at top left, rgba(244, 216, 138, 0.12), transparent 26%),
    linear-gradient(135deg, #041b10 0%, #103c25 60%, #092315 100%);
  border-bottom: 1px solid rgba(244, 216, 138, 0.1);
}

.club-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 8px 20px rgba(0, 0, 0, 0.24);
}

.club-copy .section-kicker {
  color: var(--gold-soft);
}

.club-copy h2,
.club-copy p {
  color: var(--cream-light);
}

.club-benefits {
  display: grid;
  gap: 16px;
  margin: 36px 0;
}

.club-benefits div {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 216, 138, 0.16);
  backdrop-filter: blur(6px);
}

.club-benefits strong {
  display: block;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.club-benefits span {
  color: rgba(255, 249, 238, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* FEATURE */

.feature-section {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 70px;
  align-items: center;
  padding: 100px 7vw;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.feature-section.reverse {
  grid-template-columns: 50% 50%;
  background: #f1e4cf;
}

.lifestyle-section {
  background: linear-gradient(180deg, #fff9ee 0%, #f4ead7 100%);
}

.feature-image img,
.wide-image {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 620px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

/* LAUNCH */

.launch-section {
  padding: 110px 7vw;
  background: linear-gradient(180deg, #fff9ee 0%, #f4ead7 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.launch-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.launch-section p {
  margin-left: auto;
  margin-right: auto;
}

.founder-counter {
  margin: 34px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-counter strong {
  color: var(--green);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.founder-counter span {
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.launch-grid div {
  background: #fff4df;
  border: 1px solid rgba(182, 138, 51, 0.24);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(26, 34, 23, 0.08);
}

.launch-grid strong {
  display: block;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.launch-grid h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.launch-grid p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

/* SUBSCRIBE */

.subscribe-section {
  padding: 110px 24px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--cream-light);
  text-align: center;
}

.subscribe-inner {
  max-width: 860px;
  margin: 0 auto;
}

.subscribe-section .section-kicker {
  color: var(--gold-soft);
}

.subscribe-section h2,
.subscribe-section p {
  color: var(--cream-light);
  margin-left: auto;
  margin-right: auto;
}

.subscribe-button-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 34px;
  margin-bottom: 22px;
}

.subscribe-btn {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-section small {
  color: rgba(255, 249, 238, 0.7);
  font-family: Arial, Helvetica, sans-serif;
}

/* FOOTER */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 18px;
  background: #041b10;
  color: rgba(255, 249, 238, 0.68);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

/* REVEAL ANIMATIONS */

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

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

/* MOBILE STICKY CTA */

.mobile-sticky-cta {
  display: none;
}

/* TABLET */

@media (max-width: 1360px) {
  .brand {
    flex: 0 0 410px;
    max-width: 410px;
  }

  .brand img {
    width: 410px;
  }

  .main-nav {
    gap: 24px;
  }
}

@media (max-width: 1280px) {
  .tea-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  .site-header {
    height: 100px;
  }

  .brand {
    flex: 0 0 330px;
    max-width: 330px;
    height: 72px;
  }

  .brand img {
    width: 330px;
    max-height: 72px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .hero,
  .feature-section,
  .feature-section.reverse,
  .club-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .value-strip,
  .launch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 216, 138, 0.2);
    padding: 20px;
  }
}

/* MOBILE */

@media (max-width: 780px) {
  .announcement-bar {
    font-size: 0.7rem;
    line-height: 1.4;
    padding: 9px 12px;
  }

  .site-header {
    height: 88px;
    padding: 12px 16px;
  }

  .brand {
    flex: 0 0 250px;
    max-width: 250px;
    height: 60px;
  }

  .brand img {
    width: 250px;
    max-height: 60px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: 88px 0 0 0;
    z-index: 999;
    background: rgba(255, 249, 238, 0.98);
    padding: 32px 24px;
    flex-direction: column;
    gap: 22px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-copy {
    padding: 62px 22px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media img {
    object-position: center top;
  }

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

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .founder-banner img {
    min-height: 340px;
    object-fit: cover;
    object-position: center center;
  }

  .value-strip,
  .tea-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .tea-card {
    min-height: auto;
  }

  .tea-card img {
    height: auto;
  }

  .value-strip {
    padding: 16px 24px;
  }

  .value-strip div {
    padding: 18px 0;
  }

  .section,
  .feature-section,
  .feature-section.reverse,
  .club-section,
  .launch-section {
    padding: 70px 22px;
  }

  .feature-image img,
  .wide-image,
  .club-image img,
  .tea-card {
    border-radius: 24px;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 9999;
  }

  .mobile-sticky-cta a {
    width: 100%;
    background: var(--green);
    color: var(--gold-soft);
    min-height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(6, 37, 22, 0.28);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
