:root {
  --bg: #fff8f1;
  --bg-alt: #f6ede3;
  --card: rgba(255, 255, 255, 0.78);
  --text: #2c1f1a;
  --muted: #6e5a4e;
  --primary: #8f4b31;
  --primary-dark: #6f341f;
  --accent: #d6a16a;
  --border: rgba(103, 69, 48, 0.12);
  --shadow: 0 20px 50px rgba(82, 46, 28, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 161, 106, 0.33), transparent 26%),
    radial-gradient(circle at right 8%, rgba(143, 75, 49, 0.14), transparent 22%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 100%);
  min-height: 100vh;
}

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

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(246, 237, 227, 0.72));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 241, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 22px rgba(143, 75, 49, 0.24);
}

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

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.bg-orb,
.bg-grid {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.bg-orb {
  border-radius: 50%;
  filter: blur(20px);
}

.orb-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: -80px;
  background: rgba(214, 161, 106, 0.26);
}

.orb-2 {
  width: 220px;
  height: 220px;
  right: -70px;
  top: 170px;
  background: rgba(143, 75, 49, 0.14);
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 31, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 31, 26, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 82%);
}

.hero {
  padding-top: 48px;
}

.hero-grid,
.story-layout,
.cta-box {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(143, 75, 49, 0.11);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.04;
}

h1 {
  margin-top: 20px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.55rem;
}

.lead,
.about-copy p,
.cta-box p,
.promo-card p,
.card p,
.order-step p,
.feature-item span,
.contact-card span {
  color: var(--muted);
  line-height: 1.8;
}

.lead {
  margin: 24px 0 0;
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #a95f3d);
  box-shadow: 0 16px 30px rgba(143, 75, 49, 0.24);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.stats div,
.promo-card,
.card,
.feature-item,
.order-step,
.contact-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stats div {
  border-radius: 22px;
  padding: 18px;
}

.stats strong {
  display: block;
  font-size: 1.55rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(180deg, rgba(255, 241, 226, 0.94), rgba(235, 210, 187, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pill,
.promo-label,
.mini-note {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill {
  background: var(--text);
  color: #fff;
}

.mini-note {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
}

.product-showcase {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(143, 75, 49, 0.28), transparent 40%);
}

.product-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 40px 14px 26px;
}

.cup {
  width: 96px;
  height: 150px;
  border-radius: 42px 42px 28px 28px;
  position: relative;
  box-shadow: 0 18px 28px rgba(91, 51, 32, 0.14);
  background:
    linear-gradient(180deg, #fffaf7 0%, #f4dfc6 48%, #d69060 100%);
}

.cup::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.cup::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.cup-center {
  transform: translateY(-18px);
  width: 108px;
  height: 170px;
}

.cup-left {
  transform: rotate(-7deg);
}

.cup-right {
  transform: rotate(7deg);
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
}

.promo-strip strong,
.promo-strip a {
  display: block;
  font-weight: 700;
}

.promo-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.promo-strip a {
  color: var(--primary-dark);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.promo-grid,
.menu-grid,
.contact-grid,
.order-grid {
  display: grid;
  gap: 18px;
}

.promo-grid,
.menu-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card,
.card,
.feature-item,
.order-step,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.promo-label {
  margin-bottom: 18px;
  background: rgba(143, 75, 49, 0.11);
  color: var(--primary-dark);
}

.card-footer {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-weight: 600;
}

.card-footer a,
.promo-strip a {
  color: var(--primary-dark);
}

.feature-list,
.order-grid {
  display: grid;
  gap: 16px;
}

.story-layout {
  align-items: center;
}

.story-visual {
  min-height: 420px;
}

.story-frame {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(180deg, rgba(255, 241, 226, 0.96), rgba(229, 205, 177, 0.92));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.66);
  overflow: hidden;
}

.story-frame::before,
.story-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.story-frame::before {
  width: 210px;
  height: 210px;
  right: -42px;
  top: 28px;
  background: rgba(143, 75, 49, 0.16);
}

.story-frame::after {
  width: 160px;
  height: 160px;
  left: 34px;
  bottom: 22px;
  background: rgba(214, 161, 106, 0.28);
}

.story-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.story-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 35px rgba(79, 46, 28, 0.12);
}

.story-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-item strong,
.order-step h3,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.order-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(143, 75, 49, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-card {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.cta-section {
  padding-top: 34px;
}

.cta-box {
  border-radius: 36px;
  padding: 36px;
}

.site-footer {
  padding: 24px 0 38px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .story-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .promo-grid,
  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    min-height: 420px;
  }

  .story-frame {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 76px 0;
  }

  .nav-wrap {
    position: relative;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    max-width: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .promo-strip,
  .card-footer,
  .footer-wrap,
  .hero-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
