* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #FAF7F2; color: #2A2018; line-height: 1; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

:root {
  --terra: #C4522A;
  --moss: #5A6A48;
  --sage: #8A9A78;
  --parchment: #FAF7F2;
  --linen: #F0EAE0;
  --ink: #2A2018;
  --mid: #8A7860;
  --light: #E8E0D4;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 88px;
  background: var(--parchment);
  border-bottom: 1px solid var(--light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 72px; width: auto; mix-blend-mode: multiply; }
.nav-links { display: flex; gap: 2.5rem; font-size: 13px; color: var(--mid); letter-spacing: 0.04em; }
.nav-links a { color: var(--mid); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
}

/* HERO */
.hero {
  padding: 7rem 3rem 6rem;
  text-align: center;
  background: var(--parchment);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 3rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }
.btn-fill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--parchment);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-fill:hover { opacity: 0.8; }
.btn-ghost {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--light);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); }
.flavor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flavor-label { font-size: 11px; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.1em; }
.pill {
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--light);
  color: var(--mid);
  letter-spacing: 0.04em;
}
.pl { background: rgba(220,200,140,0.3); }
.pv { background: rgba(232,220,196,0.4); }
.pc { background: rgba(42,32,24,0.07); }
.ppb { background: rgba(180,130,70,0.15); }
.pa { background: rgba(138,154,120,0.15); }
.divider-pill { color: var(--light); font-size: 14px; }

/* TICKER */
.ticker { background: var(--ink); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: tick 24s linear infinite; }
.ticker-item { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 2rem; }
.ticker-sep { color: var(--terra); opacity: 0.6; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* BOXES */
.boxes { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--light); }
.box { padding: 3rem 2.5rem; border-right: 1px solid var(--light); background: var(--parchment); }
.box:last-child { border-right: none; }
.box-num { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--sage); text-transform: uppercase; margin-bottom: 2rem; }
.box-name { font-family: Georgia, serif; font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.box-desc { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; }
.box-footer { display: flex; align-items: center; justify-content: space-between; }
.box-price { font-size: 14px; font-weight: 600; color: var(--ink); }
.box-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
  display: inline-block;
}

/* DIVIDER SECTION */
.divider-section {
  padding: 5rem 3rem;
  text-align: center;
  background: var(--linen);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.divider-section p {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

/* HOW */
.how { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--light); border-bottom: 1px solid var(--light); }
.how-step { padding: 3rem 2.5rem; border-right: 1px solid var(--light); background: var(--parchment); }
.how-step:last-child { border-right: none; }
.how-num { font-family: Georgia, serif; font-size: 42px; font-weight: 400; color: var(--light); line-height: 1; margin-bottom: 1.25rem; }
.how-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: 0.02em; }
.how-desc { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* REVIEWS */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--light); }
.review { padding: 3rem 2.5rem; border-right: 1px solid var(--light); background: var(--linen); }
.review:last-child { border-right: none; }
.rstars { color: var(--terra); font-size: 12px; margin-bottom: 1rem; letter-spacing: 2px; opacity: 0.8; }
.rtext { font-family: Georgia, serif; font-size: 15px; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 1rem; }
.rname { font-size: 11px; font-weight: 600; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; }

/* EMAIL */
.email-bar {
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--moss);
  border-bottom: 1px solid var(--light);
}
.email-title { font-family: Georgia, serif; font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 4px; }
.email-sub { font-size: 13px; color: rgba(255,255,255,.55); }
.email-form { display: flex; gap: 0; }
.email-input {
  font-size: 13px;
  padding: 12px 20px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 220px;
  outline: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.email-input::placeholder { color: rgba(255,255,255,0.4); }
.email-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: opacity 0.2s;
}
.email-btn:hover { opacity: 0.7; }

/* FOOTER */
.footer {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--parchment);
  border-top: 1px solid var(--light);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img { height: 52px; width: auto; }
.footer-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mid); }
.footer-links { font-size: 12px; color: var(--mid); display: flex; gap: 2rem; letter-spacing: 0.04em; }
.footer-links a { color: var(--mid); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }

/* PAGE HEADER */
.page-header {
  padding: 5rem 3rem 4rem;
  background: var(--parchment);
  border-bottom: 1px solid var(--light);
}
.page-header-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.25rem; }
.page-header-title { font-family: Georgia, serif; font-size: 48px; font-weight: 400; color: var(--ink); margin-bottom: 1.25rem; line-height: 1.1; }
.page-header-title em { font-style: italic; color: var(--terra); }
.page-header-sub { font-size: 15px; color: var(--mid); line-height: 1.75; max-width: 480px; }

/* SHOP */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--light); }
.shop-card { border-right: 1px solid var(--light); background: var(--parchment); }
.shop-card:last-child { border-right: none; }
.shop-card-img {
  height: 220px;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--light);
}
.shop-card-img.s1 { background: #F0E8D0; }
.shop-card-img.s2 { background: #D8E8C8; }
.shop-card-img.s3 { background: #E8D8C0; }
.shop-card-body { padding: 2rem 2.5rem 2.5rem; }
.shop-card-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 1rem; }
.shop-card-name { font-family: Georgia, serif; font-size: 22px; color: var(--ink); margin-bottom: 0.875rem; }
.shop-card-desc { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 0.75rem; }
.shop-card-flavors { font-size: 12px; color: var(--sage); margin-bottom: 2rem; letter-spacing: 0.02em; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; }
.shop-card-price { font-size: 16px; font-weight: 600; color: var(--ink); }

/* FAQ */
.faq-section { padding: 5rem 3rem; max-width: 680px; }
.faq-title { font-family: Georgia, serif; font-size: 36px; font-weight: 400; color: var(--ink); margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--light); padding: 1.75rem 0; }
.faq-q { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
.faq-a { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ABOUT */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--light); min-height: 520px; }
.about-text { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--light); }
.about-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem; }
.about-title { font-family: Georgia, serif; font-size: 34px; font-weight: 400; color: var(--ink); margin-bottom: 2rem; line-height: 1.3; }
.about-title em { font-style: italic; color: var(--terra); }
.about-body { font-size: 14px; color: var(--mid); line-height: 1.9; margin-bottom: 1.25rem; }
.about-sig { font-family: Georgia, serif; font-size: 24px; font-style: italic; color: var(--terra); margin-top: 0.5rem; }
.about-img { background: var(--linen); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.1em; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--light); }
.av { padding: 3rem 2.5rem; border-right: 1px solid var(--light); background: var(--parchment); }
.av:last-child { border-right: none; }
.av-icon { font-size: 22px; margin-bottom: 1.25rem; }
.av-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
.av-desc { font-size: 13px; color: var(--mid); line-height: 1.75; }
.about-quote { padding: 5rem 3rem; text-align: center; background: var(--linen); border-bottom: 1px solid var(--light); }
.about-quote p { font-family: Georgia, serif; font-size: 24px; font-weight: 400; font-style: italic; color: var(--ink); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.55; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; border-bottom: 1px solid var(--light); }
.contact-info { padding: 5rem 3rem; background: var(--linen); border-right: 1px solid var(--light); }
.contact-info-title { font-family: Georgia, serif; font-size: 32px; font-weight: 400; color: var(--ink); margin-bottom: 1rem; }
.contact-info-sub { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 3rem; }
.contact-detail { display: flex; flex-direction: column; gap: 2rem; }
.cd-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.cd-value { font-size: 14px; color: var(--mid); line-height: 1.7; }
.contact-form-wrap { padding: 5rem 4rem; background: var(--parchment); }
.contact-form-title { font-family: Georgia, serif; font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-size: 14px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--light);
  background: transparent;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--terra); }
.form-textarea { height: 100px; resize: none; }
.form-submit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--parchment);
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-title { font-size: 38px; }
  .boxes, .how, .reviews, .about-values, .shop-grid { grid-template-columns: 1fr; }
  .box, .how-step, .review, .av, .shop-card { border-right: none; border-bottom: 1px solid var(--light); }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .about-text, .contact-info, .contact-form-wrap { padding: 3rem 1.5rem; }
  .email-bar { flex-direction: column; padding: 3rem 1.5rem; }
  .footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .faq-section, .page-header { padding: 3rem 1.5rem; }
}
