:root {
  --green-dark: #153d20;
  --green-main: #2b6e3a;
  --green-soft: #edf7ee;
  --green-mist: #f4f8f3;
  --gold: #e7b843;
  --gold-strong: #c89c22;
  --gold-light: #f8e7a1;
  --cream: #f7f2ea;
  --shell: #f3eee7;
  --white: #ffffff;
  --text-dark: #1c271d;
  --shadow-soft: 0 20px 44px rgba(18, 53, 20, 0.12);
  --shadow-card: 0 14px 30px rgba(18, 53, 20, 0.09);
  --container: min(1200px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: radial-gradient(circle at top, #fbf8f3 0%, #f5f0e8 36%, #efeae1 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.18);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.section-tag.green {
  background: rgba(45, 122, 45, 0.12);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 900px;
  font-family: 'Baloo 2', cursive;
  color: var(--green-dark);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 12px rgba(21, 61, 32, 0.04);
}

.light-heading h2 {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 32, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 224, 156, 0.1);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.shadowed {
  box-shadow: 0 12px 36px rgba(11, 32, 14, 0.22);
  background: rgba(18, 53, 28, 0.98);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  color: #f4d67d;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 8px 18px rgba(244, 214, 125, 0.25);
}

.brand-text small {
  color: #e7f7e8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.8rem 1.2rem !important;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(245, 197, 24, 0.28);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.6rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(120deg, rgba(7, 22, 13, 0.58), rgba(25, 72, 33, 0.42), rgba(17, 48, 26, 0.68)),
    url('../assets/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  box-shadow: inset 0 -18px 28px rgba(9, 26, 16, 0.22);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 2.4rem;
  padding: 90px 0 70px;
}

.hero-copy {
  color: var(--white);
  max-width: 620px;
}

.hero-microcopy {
  margin-top: 1rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Baloo 2', cursive;
  font-size: clamp(4rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: #fff7d9;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

.tagline {
  margin: 0.8rem 0 0.5rem;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 620px;
}

.tagline span {
  color: var(--gold-light);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.2rem 0 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.description {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin: 0 0 1.6rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f3d46a);
  color: var(--green-dark);
  box-shadow: 0 16px 30px rgba(231, 184, 67, 0.36);
}

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

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 520px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.trust-item strong {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-light);
}

.trust-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.bottle-card {
  position: relative;
  width: min(100%, 520px);
  padding: 0.8rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 64px rgba(8, 34, 12, 0.45);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
}

.bottle-card::before {
  content: "";
  position: absolute;
  inset: auto 12% -7% 12%;
  height: 26%;
  background: rgba(15, 62, 18, 0.46);
  filter: blur(26px);
  z-index: 0;
}

.image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(248, 227, 147, 0.9);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(231, 184, 67, 0.24);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 84px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 190px;
  padding: 0.7rem 0.8rem;
  border-radius: 18px;
  background: rgba(11, 32, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
}

.floating-note span {
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong {
  color: var(--gold-light);
  font-size: 0.9rem;
  line-height: 1.3;
}

.image-caption {
  position: relative;
  z-index: 2;
  margin-top: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.bottle-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  min-height: 470px;
  filter: saturate(1.2) contrast(1.08) brightness(0.95);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.premium-strip {
  padding-top: 0;
  margin-top: -20px;
}

.premium-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.premium-badge,
.premium-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  min-height: 110px;
  padding: 1rem;
  text-align: center;
}

.premium-badge {
  padding: 1.1rem 1rem;
  background: linear-gradient(135deg, rgba(21,61,32,0.96), rgba(43,110,58,0.92));
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.premium-item {
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(21, 61, 32, 0.08);
  box-shadow: 0 12px 24px rgba(18, 53, 20, 0.04);
}

.premium-item strong {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-strong);
}

.premium-item span {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about {
  background: linear-gradient(180deg, #f7f5ef 0%, #f8f8f4 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media {
  background: linear-gradient(180deg, rgba(231, 184, 67, 0.12), rgba(43, 110, 58, 0.06));
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  font-size: 1.08rem;
}

.about-content p {
  margin: 0 0 1.2rem;
  color: rgba(26, 42, 26, 0.9);
}

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

.stat-box {
  background: var(--white);
  border: 1px solid rgba(45, 122, 45, 0.12);
  border-radius: 22px;
  padding: 1.25rem 0.8rem;
  text-align: center;
  box-shadow: 0 8px 18px rgba(37, 76, 18, 0.05);
}

.stat-box strong {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--green-main);
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 0.32rem;
  font-weight: 700;
}

.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(21, 61, 32, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(20, 56, 24, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 52px rgba(26, 74, 26, 0.16);
  border-color: rgba(231, 184, 67, 0.5);
}

.product-card.premium {
  box-shadow: 0 18px 40px rgba(231, 184, 67, 0.14);
}

.product-card .product-body {
  padding: 1.35rem 1.15rem 1.55rem;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card.premium {
  background: linear-gradient(180deg, #f7f3e8, #fff);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.badge-gold {
  background: var(--gold);
}

.badge-accent {
  background: #ffeb7d;
}

.badge-soft {
  background: #d9f7d8;
}

.badge-premium {
  background: #a7e59c;
}

.product-body {
  padding: 1.2rem 1.1rem 1.5rem;
}

.product-body h3 {
  margin: 0 0 0.45rem;
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  color: var(--green-dark);
  line-height: 1;
}

.product-body p {
  margin: 0;
  color: rgba(26, 42, 26, 0.8);
}

.brand-story {
  background: linear-gradient(180deg, #f7f5ee 0%, #eef5ee 100%);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.story-copy h2 {
  margin: 0 0 1rem;
  font-family: 'Baloo 2', cursive;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.story-copy p {
  margin: 0;
  color: rgba(23, 38, 28, 0.8);
  font-size: 1.08rem;
}

.story-quote {
  margin-top: 1.35rem;
  padding: 1.2rem 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  color: var(--green-dark);
  box-shadow: 0 10px 20px rgba(18, 53, 20, 0.05);
}

.story-quote strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.story-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,249,244,0.8));
  border: 1px solid rgba(21, 61, 32, 0.08);
  box-shadow: 0 12px 24px rgba(18, 53, 20, 0.04);
}

.story-pill strong {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.story-pill span {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.story-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 46px rgba(18, 53, 20, 0.12);
}

.story-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.06);
}

.brand-banner {
  background: linear-gradient(180deg, #f4f3ed 0%, #edf7ef 100%);
  padding-top: 0;
}

.banner-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(18, 53, 27, 1), rgba(40, 103, 58, 0.98), rgba(10, 33, 18, 0.96));
  box-shadow: 0 26px 52px rgba(18, 53, 20, 0.2), inset 0 0 0 1px rgba(248, 231, 161, 0.12);
  border: 1px solid rgba(248, 231, 161, 0.12);
}

.banner-copy {
  flex: 1 1 auto;
  max-width: 720px;
}

.banner-copy p {
  margin: 0.9rem 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.02rem;
  line-height: 1.7;
}

.banner-shell h2 {
  margin: 0;
  font-family: 'Baloo 2', cursive;
  color: var(--white);
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-secondary.dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.why-us {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: var(--white);
}

.why-us .section-heading h2 {
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 1.6rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 24px rgba(6, 27, 15, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 231, 161, 0.4);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.18);
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.store-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f3 100%);
  border-left: 6px solid var(--gold);
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.store-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  font-size: 1.7rem;
}

.store-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.5rem;
}

.store-card span {
  color: rgba(26, 42, 26, 0.7);
  font-weight: 700;
}

.store-card ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  color: rgba(26, 42, 26, 0.8);
}

.store-card li + li {
  margin-top: 0.5rem;
}

.store-card a {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(45, 122, 45, 0.08);
  color: var(--green-dark);
  font-weight: 800;
}

.social {
  background: linear-gradient(135deg, #0f3313 0%, #102f17 46%, #1d3f23 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.6rem, 3vw, 3.2rem);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 62px rgba(4, 20, 11, 0.46);
}

.contact-panel-copy {
  color: var(--white);
}

.contact-panel-copy h2 {
  margin: 0.8rem 0 0.8rem;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
}

.contact-panel-copy p {
  margin: 0;
  max-width: 600px;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(242, 196, 74, 0.18);
  font-size: 1.4rem;
}

.contact-chip div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-chip strong {
  color: rgba(255,255,255,0.72);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-chip a {
  color: var(--white);
  font-weight: 700;
}

.contact-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.btn-large {
  justify-content: center;
  min-height: 58px;
  font-size: 1.05rem;
}

.mini-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.mini-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.mini-social[data-brand="tiktok"] {
  background: rgba(0,0,0,0.5);
}

.mini-social[data-brand="shopee"] {
  background: rgba(238, 77, 45, 0.72);
}

.mini-social[data-brand="zalo"] {
  background: rgba(0, 104, 255, 0.7);
}

.mini-social[data-brand="instagram"] {
  background: linear-gradient(135deg, rgba(254,218,117,0.9), rgba(221,42,123,0.9), rgba(129,52,175,0.9));
}

.site-footer {
  background: linear-gradient(180deg, #0d2a0d, #102d0f);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(248, 231, 161, 0.09);
}

.hero::after,
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 35%, rgba(255,255,255,0.02));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 2rem;
  padding: 3rem 0 1.8rem;
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 1.25rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin: 0.3rem 0;
}

.footer-contact a {
  color: #f3f7f4;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .feature-grid,
  .store-grid,
  .footer-grid,
  .story-layout,
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-trust,
  .contact-info-row,
  .story-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .description {
    margin-inline: 0;
  }

  .banner-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(26, 74, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-wrap {
    position: relative;
    min-height: 76px;
  }

  .hero-inner,
  .about-grid,
  .story-layout,
  .product-grid,
  .feature-grid,
  .store-grid,
  .footer-grid,
  .stats-grid,
  .contact-panel,
  .contact-info-row,
  .story-points,
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 22vw, 5.5rem);
  }

  .tagline {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .bottle-card {
    transform: none;
  }

  .floating-note {
    position: static;
    margin-top: 0.8rem;
    min-width: 0;
  }

  .contact-panel {
    padding: 1.2rem 1rem;
  }

  .contact-panel-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .contact-chip {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-social-row {
    width: 100%;
  }

  .mini-social {
    flex: 1 1 calc(50% - 0.7rem);
    min-width: 0;
  }

  .story-visual img,
  .about-media img,
  .product-card img {
    min-height: 260px;
  }

  .about-content {
    font-size: 1rem;
  }

  .banner-shell {
    padding: 1.5rem 1.1rem;
  }

  .banner-shell h2 {
    font-size: 2rem;
  }
}
