:root {
  --page-bg: #f7f0e8;
  --soft-panel: #f8f2eb;
  --card: rgba(255,255,255,0.2);
  --ink: #1d1a18;
  --muted: #3b332f;
  --orange: #f3a45a;
  --orange-deep: #ea7d2d;
  --yellow: #f5d35d;
  --brown: #3c2417;
  --boba: #341f17;
  --white: #fff;
  --line: rgba(30, 20, 18, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255,255,255,0.12);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.logo-box {
  width: 118px;
  flex-shrink: 0;
}

.logo-box img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(30, 20, 18, 0.08);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(234,125,45,0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(21,20,20,0.08);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
  padding: 34px 0 26px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--orange-deep);
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
  color: var(--brown);
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.photo-panel {
  position: relative;
  width: min(520px, 100%);
  height: 480px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(26,20,17,0.08);
  box-shadow: 0 28px 50px rgba(35,25,18,0.1);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.04);
}

.floating-tag {
  position: absolute;
  left: 20px;
  top: 22px;
  background: rgba(255,255,255,0.85);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  box-shadow: 0 14px 22px rgba(234,125,45,0.14);
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 22px;
  align-items: center;
  padding: 14px 0 18px;
}

.story-copy {
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 30px rgba(38,27,20,0.04);
}

.story-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--brown);
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  background: rgba(234, 125, 45, 0.1);
  color: var(--brown);
  border: 1px solid rgba(234, 125, 45, 0.18);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(243,164,90,0.18));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 28px rgba(38,27,20,0.04);
}

.mini-card span {
  font-weight: 700;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.mini-card strong {
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.photo-story {
  padding: 8px 0 10px;
}

.photo-story-box {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(38,27,20,0.06);
  background: #f5efe7;
}

.photo-story-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-section {
  padding: 10px 0 18px;
}

.story-section h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--brown);
}

.story-section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.signature {
  padding: 18px 0 50px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.offer-card {
  background: rgba(255,255,255,0.18);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  padding-bottom: 18px;
}

.drink-cover {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.drink-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f9f3ee;
  padding: 10px;
}

.offer-body {
  padding: 18px 18px 0;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
}

.card-actions a {
  color: var(--orange-deep);
  font-weight: 800;
}

.mini-order {
  background: rgba(234,125,45,0.1);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
}

.site-footer {
  background: #1d1a18;
  color: rgba(255,255,255,0.86);
  padding: 18px 0 26px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.footer-brand img {
  width: 56px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .hero,
  .story-layout,
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .main-nav {
    gap: 12px 18px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 20, 18, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    gap: 12px;
  }

  .nav-wrap.nav-open .main-nav {
    display: flex;
  }

  .header-order {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .story-copy,
  .mini-card {
    padding: 20px 18px;
  }

  .feature-list {
    gap: 8px;
  }

  .feature-list span {
    padding: 0.65rem 0.8rem;
    font-size: 0.75rem;
  }

  .photo-panel {
    height: 360px;
  }

  .photo-story-box img {
    height: 260px;
  }

  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .logo-box {
    width: 110px;
  }

  .main-nav {
    font-size: 0.82rem;
    gap: 8px 12px;
  }

  .story-copy h2 {
    font-size: 1.8rem;
  }

  .mini-card strong {
    font-size: 1.35rem;
  }

  .offer-card h3 {
    font-size: 1.6rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
