:root {
  --cream: #f6edcf;
  --cream-2: #fff9e8;
  --green-900: #062e14;
  --green-800: #0b441c;
  --green-700: #145b25;
  --green-500: #5c8f22;
  --lime: #d6e736;
  --gold: #c6a63a;
  --text: #17321d;
  --muted: #6f735c;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(6, 46, 20, 0.22);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(214, 231, 54, 0.16), transparent 32rem),
    linear-gradient(135deg, var(--cream-2), var(--cream));
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(198, 166, 58, 0.35);
  border-radius: 999px;
  background: rgba(255, 249, 232, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(6, 46, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--green-900);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--cream);
  font-family: Georgia, serif;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--green-800);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
  color: var(--green-900);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 70px);
  padding: 74px 0 82px;
}

.eyebrow,
.small-label,
.card-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-900);
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.25rem;
}

.hero-text,
.section-text,
.band p,
.story-card p,
.cocktail-card p,
.taste-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  font-size: 1.22rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: var(--green-900);
  color: var(--cream-2);
  box-shadow: 0 16px 30px rgba(6, 46, 20, 0.18);
}

.btn.secondary,
.btn.ghost {
  border-color: rgba(6, 46, 20, 0.18);
  background: rgba(255, 255, 255, 0.45);
  color: var(--green-900);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.label-orbit {
  position: relative;
  width: min(510px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(246, 237, 207, 0.2)),
    radial-gradient(circle, rgba(214, 231, 54, 0.18), transparent 62%);
  box-shadow: var(--shadow);
}

.label-orbit::before,
.label-orbit::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(198, 166, 58, 0.5);
  border-radius: 50%;
}

.label-orbit::after {
  inset: 20px;
  border-color: rgba(6, 46, 20, 0.16);
}

.label-orbit img {
  width: 84%;
  border-radius: 50%;
  box-shadow: 0 22px 70px rgba(6, 46, 20, 0.2);
}

.floating-note {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(198, 166, 58, 0.34);
  border-radius: 999px;
  background: rgba(255, 249, 232, 0.88);
  color: var(--green-900);
  box-shadow: 0 18px 45px rgba(6, 46, 20, 0.13);
  font-size: 0.9rem;
  font-weight: 900;
}

.note-one {
  top: 13%;
  left: -6%;
}

.note-two {
  right: -3%;
  bottom: 18%;
}

.band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: center;
  margin: 0 auto 42px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--cream-2);
}

.band h2,
.band p {
  color: var(--cream-2);
}

.band p {
  margin-bottom: 0;
  opacity: 0.86;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 92px 0;
}

.taste-grid {
  display: grid;
  gap: 18px;
}

.taste-card,
.cocktail-card,
.story-card,
.contact-form {
  border: 1px solid rgba(198, 166, 58, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 249, 232, 0.68);
  box-shadow: 0 16px 40px rgba(6, 46, 20, 0.08);
}

.taste-card {
  padding: 26px;
}

.taste-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(214, 231, 54, 0.22);
  color: var(--green-900);
  font-weight: 900;
}

.cocktails {
  padding: 56px 0 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cocktail-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.cocktail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(214, 231, 54, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(246, 237, 207, 0.28));
  pointer-events: none;
}

.cocktail-card > * {
  position: relative;
}

.cocktail-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(6, 46, 20, 0.96), rgba(20, 91, 37, 0.94)),
    var(--green-900);
}

.cocktail-card.featured h3,
.cocktail-card.featured p {
  color: var(--cream-2);
}

.story {
  padding: 110px 16px;
  background:
    linear-gradient(rgba(6, 46, 20, 0.84), rgba(6, 46, 20, 0.84)),
    radial-gradient(circle at 70% 10%, rgba(214, 231, 54, 0.22), transparent 35%);
}

.story-card {
  width: min(850px, 100%);
  margin: 0 auto;
  padding: 46px;
  background: rgba(255, 249, 232, 0.92);
}

.contact {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 56px;
  padding: 96px 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 46, 20, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-900);
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(92, 143, 34, 0.12);
}

.form-status {
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(16px, calc((100vw - 1180px) / 2));
  background: var(--green-900);
  color: rgba(255, 249, 232, 0.8);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(rgba(6, 46, 20, 0.84), rgba(6, 46, 20, 0.84)),
    url("assets/makha-label.jpeg") center/cover;
}

.age-gate.hidden {
  display: none;
}

.age-card {
  width: min(520px, 100%);
  padding: 36px;
  border: 1px solid rgba(198, 166, 58, 0.5);
  border-radius: 30px;
  background: rgba(255, 249, 232, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
}

.age-card p {
  color: var(--muted);
  line-height: 1.7;
}

.age-actions {
  justify-content: center;
}

.age-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact,
  .band {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 54px;
  }

  .hero-copy {
    order: 2;
  }

  .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

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

  .btn {
    width: 100%;
  }

  .floating-note {
    display: none;
  }

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

  .cocktail-card.featured {
    grid-column: auto;
  }

  .story-card {
    padding: 28px;
  }

  .footer {
    flex-direction: column;
  }
}
