:root {
  --leaf: #245c3b;
  --leaf-dark: #112f24;
  --moss: #78945f;
  --mint: #e4eee2;
  --cream: #f8f1e5;
  --paper: #fffaf2;
  --ink: #1f2723;
  --muted: #66716a;
  --copper: #aa6b42;
  --gold: #e7c37f;
  --line: rgba(31, 39, 35, 0.12);
  --shadow: 0 22px 55px rgba(21, 59, 45, 0.14);
  --soft-shadow: 0 12px 34px rgba(31, 39, 35, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 132px;
}

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

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

.topline {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  min-height: 34px;
  padding: 7px max(20px, env(safe-area-inset-right)) 7px max(20px, env(safe-area-inset-left));
  color: rgba(255, 255, 255, 0.86);
  background: rgba(17, 47, 36, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 14px clamp(16px, 4vw, 56px) 0;
  padding: 14px clamp(16px, 3vw, 34px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(14, 36, 27, 0.58);
  box-shadow: 0 18px 50px rgba(6, 22, 16, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(231, 195, 127, 0.72);
  border-radius: 50%;
  background: rgba(231, 195, 127, 0.13);
  object-fit: cover;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 170px clamp(20px, 5vw, 72px) 84px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 29, 22, 0.9) 0%, rgba(11, 29, 22, 0.68) 37%, rgba(11, 29, 22, 0.12) 72%),
    linear-gradient(0deg, rgba(14, 31, 24, 0.5), rgba(14, 31, 24, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
}

h1 {
  margin-bottom: 24px;
  font-size: 132px;
  font-weight: 700;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

h2 {
  margin-bottom: 22px;
  font-size: 62px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 24px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 47, 36, 0.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--leaf);
}

.hero .button.primary {
  color: var(--leaf-dark);
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  background: var(--paper);
}

.section-copy p,
.intro-text p,
.product-copy p {
  color: var(--muted);
  font-size: 17px;
}

.centered {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.intro-text {
  display: grid;
  gap: 20px;
  align-content: center;
  max-width: 720px;
}

.origin-note {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 20px 22px;
  border-left: 4px solid var(--copper);
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.origin-note strong {
  color: var(--leaf-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.origin-note span {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbf7ee;
}

.metrics div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

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

.metrics strong {
  color: var(--leaf-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
}

.collection {
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf7ee 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tea-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.tea-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--cream);
}

.tea-card-body {
  display: grid;
  align-content: start;
  min-height: 236px;
  padding: 24px;
}

.tea-tag {
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(170, 107, 66, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--copper);
  background: rgba(170, 107, 66, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tea-card h3 {
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.tea-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.tea-card a {
  align-self: end;
  width: fit-content;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
}

.tea-card a::after {
  content: " ->";
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(228, 238, 226, 0.96), rgba(248, 241, 229, 0.76)),
    var(--mint);
}

.quality .section-copy {
  align-self: center;
}

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

.quality-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(21, 59, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-size: 13px;
  font-weight: 800;
}

.quality-grid p {
  color: var(--muted);
}

.process {
  background: var(--paper);
}

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

.process-steps article {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.process-steps article::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(170, 107, 66, 0.22);
  border-radius: 50%;
  content: "";
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-steps p {
  color: var(--muted);
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(231, 195, 127, 0.14), transparent 30%),
    linear-gradient(115deg, rgba(17, 47, 36, 0.98), rgba(36, 92, 59, 0.92)),
    var(--leaf-dark);
}

.product-band .eyebrow {
  color: var(--gold);
}

.product-copy {
  max-width: 720px;
}

.product-copy p {
  color: rgba(255, 255, 255, 0.77);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.product-panel {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.product-panel div {
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.product-panel div:last-child {
  border-bottom: 0;
}

.product-panel span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-panel strong {
  font-size: 21px;
}

.preparation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: #fbf7ee;
}

.prep-copy {
  max-width: 720px;
}

.prep-copy p {
  color: var(--muted);
  font-size: 17px;
}

.brew-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.brew-card div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.brew-card div:last-child {
  border-right: 0;
}

.brew-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brew-card strong {
  color: var(--leaf-dark);
  font-size: 26px;
  line-height: 1.18;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
}

.contact-details {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin-top: 30px;
}

.contact-details a {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
  font-size: 18px;
  font-weight: 800;
}

.contact-details span {
  color: var(--copper);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 39, 35, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(181, 109, 63, 0.18);
  border-color: var(--copper);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #12241c;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  h1 {
    font-size: 104px;
  }

  h2 {
    font-size: 52px;
  }

  .intro,
  .quality,
  .product-band,
  .preparation,
  .contact {
    grid-template-columns: 1fr;
  }

  .quality-grid,
  .process-steps,
  .product-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brew-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brew-card div:last-child {
    border-bottom: 0;
  }

  .quality-grid article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  section {
    scroll-margin-top: 156px;
  }

  .topline {
    position: absolute;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    white-space: nowrap;
    scrollbar-width: none;
  }

  .topline::-webkit-scrollbar,
  .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header {
    position: absolute;
    top: 34px;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 12px 14px 0;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: block;
  }

  .nav {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

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

  .hero {
    min-height: 100svh;
    padding: 174px 18px 48px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 33, 25, 0.9), rgba(13, 33, 25, 0.68)),
      linear-gradient(0deg, rgba(14, 31, 24, 0.54), rgba(14, 31, 24, 0.12));
  }

  h1 {
    margin-bottom: 16px;
    font-size: 62px;
  }

  h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-badges span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .section,
  .product-band,
  .preparation {
    padding: 64px 18px;
  }

  .centered {
    margin-bottom: 30px;
    text-align: left;
  }

  .hero-actions,
  .feature-list,
  .metrics,
  .quality-grid,
  .product-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .metrics div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .product-band,
  .contact-form {
    border-radius: 0;
  }

  .tea-card img {
    aspect-ratio: 1.18;
  }

  .tea-card-body {
    min-height: auto;
    padding: 21px;
  }

  .tea-card h3 {
    font-size: 30px;
  }

  .quality-grid article,
  .process-steps article {
    min-height: auto;
    padding: 24px;
  }

  .icon,
  .process-steps span {
    margin-bottom: 24px;
  }

  .product-panel div,
  .brew-card div {
    padding: 22px;
  }

  .contact {
    padding-left: 0;
    padding-right: 0;
  }

  .contact .section-copy {
    padding: 0 18px;
  }

  .contact-details {
    max-width: none;
  }

  .contact-details a {
    padding: 16px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 24px 18px;
  }

  input,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .site-header {
    margin-left: 10px;
    margin-right: 10px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    padding-top: 168px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .metrics strong {
    font-size: 40px;
  }

  .brew-card strong {
    font-size: 22px;
  }

  .site-footer {
    padding: 30px 18px;
  }
}

@media (max-width: 360px) {
  .topline {
    font-size: 11px;
  }

  .nav a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 31px;
  }

  .section,
  .product-band,
  .preparation {
    padding-left: 14px;
    padding-right: 14px;
  }
}
