:root {
  --cream: #F7F3EC;
  --cream-dark: #EDE6D9;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-pale: #E8C5A0;
  --espresso: #1E110A;
  --espresso-mid: #3D2618;
  --warm-gray: #9A8F82;
  --sage: #8A9E7E;
  --blush: #C4A492;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper);
  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 5rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-layer--1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 40%, var(--copper-pale) 100%);
}
.hero__bg-layer--2 {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
}
.hero__bg-layer--3 {
  position: absolute;
  left: -5%;
  bottom: -30%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 149, 106, 0.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--espresso);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--espresso-mid);
  max-width: 44ch;
  line-height: 1.7;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Dispenser Illustration */
.hero__dispenser {
  position: relative;
  width: 220px;
  height: 360px;
}
.dispenser__vessel {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 200px;
  background: linear-gradient(160deg, #D4956A 0%, #B87333 30%, #8B5A2B 60%, #B87333 80%, #D4956A 100%);
  border-radius: 8px 8px 12px 12px;
  overflow: hidden;
  box-shadow:
    inset -8px 0 20px rgba(0,0,0,0.15),
    inset 12px 0 15px rgba(255,255,255,0.08),
    0 20px 60px rgba(139, 90, 43, 0.3),
    0 8px 20px rgba(0,0,0,0.1);
}
.dispenser__highlight {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 20px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
  border-radius: 10px;
}
.dispenser__reflection {
  position: absolute;
  bottom: 20px;
  right: 15px;
  width: 8px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.dispenser__base {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: linear-gradient(180deg, #6B3A1F 0%, #4A2810 100%);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.dispenser__spout {
  position: absolute;
  bottom: 70px;
  right: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spout__nozzle {
  width: 14px;
  height: 30px;
  background: linear-gradient(180deg, #D4A574 0%, #8B5A2B 100%);
  border-radius: 0 0 4px 4px;
}
.spout__stream {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, rgba(180, 200, 220, 0.4), rgba(180, 200, 220, 0));
  margin-top: 0;
}
.dispenser__cup {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 40px;
  height: 55px;
  background: linear-gradient(160deg, #E8C5A0 0%, #B87333 50%, #8B5A2B 100%);
  border-radius: 4px 4px 6px 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cup__liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(200,220,235,0.5) 0%, rgba(180,200,220,0.7) 100%);
}

/* PHILOSOPHY */
.philosophy {
  padding: 7rem 5rem;
  background: var(--espresso);
  color: var(--cream);
}
.philosophy__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.philosophy__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  line-height: 1.4;
}
.philosophy__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.philosophy__body {
  font-size: 1.3rem;
  color: var(--copper-pale);
  max-width: 58ch;
  line-height: 1.7;
}

/* PRODUCTS */
.products {
  padding: 7rem 5rem;
  background: var(--cream);
}
.products__inner { max-width: 1300px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--espresso);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}
.products__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  background: var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card__visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card__visual--glass {
  background: linear-gradient(160deg, #E8EEF4 0%, #C5D5E4 100%);
}
.product-card__visual--accessories {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.glass-vessel {
  width: 80px;
  height: 200px;
  background: linear-gradient(160deg, rgba(255,255,255,0.7) 0%, rgba(200,220,240,0.4) 100%);
  border: 2px solid rgba(180,200,220,0.5);
  border-radius: 6px 6px 8px 8px;
  overflow: hidden;
  position: relative;
}
.glass-vessel__water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(180,210,230,0.5) 0%, rgba(160,200,220,0.6) 100%);
}
.accessories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
}
.accessory-item {
  border-radius: 8px;
  background: var(--copper-pale);
  opacity: 0.6;
}
.accessory-item--cup { height: 50px; border-radius: 6px; }
.accessory-item--stand { height: 70px; border-radius: 6px; }
.accessory-item--kit { height: 40px; border-radius: 6px; }
.product-card__dispenser {
  position: relative;
  width: 100px;
  height: 180px;
}
.p-dispenser__body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 140px;
  background: linear-gradient(160deg, var(--copper-light) 0%, var(--copper) 40%, #6B3A1F 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset -4px 0 12px rgba(0,0,0,0.15);
}
.p-dispenser__lid {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: var(--copper);
  border-radius: 4px;
}
.p-dispenser__spout {
  position: absolute;
  bottom: 40px;
  right: -20px;
  width: 10px;
  height: 25px;
  background: var(--copper);
  border-radius: 0 0 3px 3px;
}
.product-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.product-card__content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
}
.product-card__content p {
  font-size: 0.85rem;
  color: var(--espresso-mid);
  line-height: 1.5;
}
.product-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  font-weight: 500;
  border: 1px solid var(--copper);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  width: fit-content;
}
.products__note {
  font-style: italic;
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* CRAFTSMANSHIP */
.craft {
  padding: 7rem 5rem;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.section-kicker {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 1rem;
}
.craft__body {
  font-size: 1.05rem;
  color: var(--espresso-mid);
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
}
.craft__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.craft-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.craft-detail__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  font-weight: 500;
}
.craft-detail__value {
  font-size: 0.9rem;
  color: var(--espresso);
}
.craft__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.craft__hammered {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hammered-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, 0.2);
}
.hammered-ring--1 { width: 280px; height: 280px; }
.hammered-ring--2 { width: 200px; height: 200px; }
.hammered-ring--3 { width: 130px; height: 130px; }
.hammered-texture {
  position: absolute;
  width: 160px;
  height: 200px;
  background: linear-gradient(135deg, #D4956A 0%, #B87333 30%, #8B5A2B 60%, #B87333 80%, #D4956A 100%);
  border-radius: 80px 80px 100px 100px;
  box-shadow:
    inset -12px 0 30px rgba(0,0,0,0.2),
    inset 15px 0 20px rgba(255,255,255,0.1),
    0 20px 60px rgba(139, 90, 43, 0.25);
}
.craft__stats {
  display: flex;
  gap: 4rem;
}
.craft-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.craft-stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--espresso);
}
.craft-stat__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-align: center;
}

/* MANIFESTO */
.manifesto {
  padding: 8rem 5rem;
  background: var(--espresso);
  text-align: center;
}
.manifesto__inner { max-width: 800px; margin: 0 auto; }
.manifesto__quote {
  margin-bottom: 2rem;
}
.manifesto__line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  display: block;
}
.manifesto__line--indent {
  padding-left: 2rem;
  color: var(--copper-pale);
}
.manifesto__attribution {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
}

/* CLOSING */
.closing {
  padding: 8rem 5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}
.closing__inner { max-width: 900px; margin: 0 auto; }
.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.closing__sub {
  font-size: 1.1rem;
  color: var(--espresso-mid);
  max-width: 50ch;
  margin: 0 auto 4rem;
  line-height: 1.6;
}
.closing__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.closing__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.closing__tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--warm-gray);
}

/* FOOTER */
.footer {
  padding: 3rem 5rem;
  background: var(--espresso);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}
.footer__descriptor {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper);
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { order: -1; }
  .hero { padding: 7rem 2rem 4rem; }
  .philosophy { padding: 5rem 2rem; }
  .philosophy__inner { gap: 1.5rem; }
  .philosophy__divider { display: none; }
  .products { padding: 5rem 2rem; }
  .products__grid { grid-template-columns: 1fr; }
  .craft { padding: 5rem 2rem; }
  .craft__inner { grid-template-columns: 1fr; gap: 3rem; }
  .craft__visual { order: -1; }
  .manifesto { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  .footer { padding: 2rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* DISPENSER STOREFRONT */
.dispenser-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.dispenser-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.dispenser-hero__visual .product-card__dispenser {
  width: 120px;
  height: 200px;
}
.dispenser-hero__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dispenser-hero__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.15;
}
.dispenser-hero__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper);
}
.dispenser-hero__description {
  font-size: 0.95rem;
  color: var(--espresso-mid);
  line-height: 1.7;
  max-width: 50ch;
}
.dispenser-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.dispenser-features li {
  font-size: 0.85rem;
  color: var(--espresso-mid);
  padding-left: 1.25rem;
  position: relative;
}
.dispenser-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* ACCESSORIES */
.accessories-list {
  background: var(--cream-dark);
  border-radius: 16px;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.accessories-list__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}
.accessories-list__items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.accessories-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
}
.accessories-list__name {
  font-size: 0.9rem;
  color: var(--espresso);
  font-weight: 400;
}
.accessories-list__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper);
}

/* TRUST BLOCK */
.trust-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.trust-block__section {
  background: var(--cream-dark);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.trust-block__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.trust-block__copy {
  font-size: 0.85rem;
  color: var(--espresso-mid);
  line-height: 1.7;
}
.trust-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-block__list li {
  font-size: 0.85rem;
  color: var(--espresso-mid);
  padding-left: 1.25rem;
  position: relative;
}
.trust-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* STOREFRONT RESPONSIVE */
@media (max-width: 900px) {
  .dispenser-hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .dispenser-hero__visual { order: -1; min-height: 180px; }
  .accessories-list { padding: 1.5rem; }
  .accessories-list__items { flex-direction: column; gap: 1rem; }
  .trust-block { grid-template-columns: 1fr; }
}