*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #faf7f2;
  color: #2c2419;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --ink: #2c2419;
  --muted: #7a6e60;
  --cream: #faf7f2;
  --cream-dark: #f0e9df;
  --peach: #e8a88a;
  --peach-deep: #d4896a;
  --mint: #7ba89a;
  --mint-deep: #5a8a7a;
  --tea: #8b6914;
  --white: #ffffff;
  --sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --border: rgba(44,36,25,0.1);
}

/* ——— TEA BAG TAG NAV (unique) ——— */
.string-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 0;
}
.string-bar .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.string-bar .brand {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.string-bar .brand em {
  font-style: normal;
  color: var(--mint-deep);
  font-weight: 500;
}
.string-bar .hint {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.string-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tea), transparent);
  opacity: 0.35;
  margin: 8px 0 0;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 12px 16px;
  position: relative;
}
.tags a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
  color: var(--muted);
  transition: color 0.2s;
}
.tags a .string {
  width: 1px;
  height: 18px;
  background: var(--tea);
  opacity: 0.4;
  transition: height 0.25s, opacity 0.25s;
}
.tags a .tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px 2px 8px 8px;
  padding: 10px 6px 12px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(44,36,25,0.06);
  position: relative;
  transition: all 0.25s;
}
.tags a .tag::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--tea);
  background: var(--cream);
}
.tags a .lbl {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tags a:hover { color: var(--ink); }
.tags a:hover .string { height: 24px; opacity: 0.7; }
.tags a:hover .tag { border-color: var(--peach); }
.tags a.active { color: var(--ink); }
.tags a.active .string {
  height: 26px;
  opacity: 1;
  background: var(--mint-deep);
}
.tags a.active .tag {
  background: linear-gradient(180deg, #fff 0%, #f5f0e8 100%);
  border-color: var(--mint-deep);
  box-shadow: 0 4px 12px rgba(90,138,122,0.15);
}
.tags a.active .tag::before {
  border-color: var(--mint-deep);
  background: var(--mint);
}

.mob {
  display: none;
  background: var(--mint-deep);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
}

/* ——— STEEP HERO ——— */
.steep {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 28px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.steep .tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 12px;
}
.steep h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.steep h1 span { color: var(--peach-deep); }
.steep p {
  font-family: var(--sans);
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.steep .cup-frame {
  position: relative;
}
.steep .cup-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 50% 50% 4px 4px / 40% 40% 4px 4px;
  border: 1px solid var(--border);
}
.steep .cup-frame .steam {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  background: rgba(250,247,242,0.9);
  padding: 6px 12px;
  border-radius: 999px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 999px;
}
.btn-mint {
  background: var(--mint-deep);
  color: #fff;
}
.btn-mint:hover { background: var(--ink); }
.btn-peach {
  background: var(--peach);
  color: var(--ink);
}
.btn-peach:hover { background: var(--peach-deep); color: #fff; }
.btn-line {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }

/* ——— NOTE ——— */
.note-band {
  background: var(--cream-dark);
  text-align: center;
  padding: 36px 28px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--ink);
  max-width: 100%;
}
.note-band cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-top: 12px;
}

/* ——— BLENDS ——— */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 28px 56px;
}
.section .tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 28px;
}

.blends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blend {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blend:hover { box-shadow: 0 8px 24px rgba(44,36,25,0.08); }
.blend img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blend .body { padding: 20px; }
.blend .leaf {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: 6px;
}
.blend h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.blend p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— GARDEN ——— */
.garden-top {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px 24px;
  text-align: center;
}
.garden-top .tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 10px;
}
.garden-top h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.garden-top p {
  font-family: var(--sans);
  color: var(--muted);
}
.garden-img {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 0 28px;
}
.garden-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}
.garden-prose {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px 56px;
}
.garden-prose p {
  font-family: var(--sans);
  color: var(--muted);
  margin-bottom: 14px;
}

/* ——— CUP CONTACT ——— */
.cup-wrap {
  max-width: 1080px;
  margin: 28px auto 60px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
}
.cup-side {
  background: var(--mint-deep);
  color: rgba(250,247,242,0.85);
  border-radius: 16px;
  padding: 36px;
}
.cup-side h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 22px;
}
.c-row { margin-bottom: 16px; }
.c-row .lbl {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 4px;
}
.c-row p, .c-row a {
  font-family: var(--sans);
  font-size: 0.95rem;
}
.c-row a:hover { color: #fff; }

.cup-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mint-deep);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ft {
  border-top: 1px solid var(--border);
  padding: 28px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--muted);
}
.ft strong { color: var(--ink); }

@media (max-width: 860px) {
  .tags {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .tags.open { display: flex; }
  .tags a .string { display: none; }
  .tags a { width: auto; }
  .tags a .tag { padding: 10px 14px; border-radius: 8px; }
  .tags a .tag::before { display: none; }
  .string-line { display: none; }
  .mob { display: inline-block; }
  .steep { grid-template-columns: 1fr; }
  .steep .cup-frame img {
    height: 260px;
    border-radius: 12px;
  }
  .blends-grid { grid-template-columns: 1fr; }
  .cup-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .garden-img img { height: 240px; }
}
