:root {
  --green-950: #071c16;
  --green-900: #0b2c22;
  --green-800: #0d3a2d;
  --green-700: #164b3b;
  --cream: #f3dfb8;
  --cream-2: #fff3d6;
  --paper: #efe0bf;
  --red: #a62721;
  --red-dark: #741b18;
  --gold: #d49a26;
  --copper: #b45a2c;
  --ink: #13231c;
  --muted: #6f6048;
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(7, 28, 22, .28);
  --max: 1180px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -10%, rgba(212, 154, 38, .22), transparent 30rem),
    linear-gradient(180deg, #fff2d2 0%, #f4dfb6 18%, #0a261e 18.1%, #071c16 100%);
  color: var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

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

button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 243, 214, .25);
  border-radius: 999px;
  background: rgba(7, 28, 22, .68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(7, 28, 22, .24);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand-script {
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.08em;
  text-shadow: 0 3px 0 rgba(166, 39, 33, .45);
}

.brand-sub {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}

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

.nav a {
  color: rgba(255, 243, 214, .88);
  font-size: .86rem;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover { background: rgba(255, 243, 214, .11); transform: translateY(-1px); }

.nav .nav-cta {
  background: var(--cream-2);
  color: var(--green-900);
  padding-inline: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--cream-2);
  border-radius: 999px;
  cursor: pointer;
  place-items: center;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--green-900);
  border-radius: 99px;
}

.section-panel {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  border-radius: var(--radius-lg);
}

.hero {
  position: relative;
  min-height: 760px;
  margin-top: 16px;
  padding: clamp(110px, 13vw, 155px) clamp(22px, 6vw, 72px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 28, 22, .94) 0%, rgba(7, 28, 22, .76) 42%, rgba(7, 28, 22, .35) 75%),
    url('../assets/coast.jpg') center / cover no-repeat;
  transform: scale(1.04);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 52rem;
  height: 52rem;
  right: -18rem;
  top: -16rem;
  background: radial-gradient(circle, rgba(212, 154, 38, .34), transparent 68%);
}

.hero::after {
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(7, 28, 22, .83), transparent);
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .24em;
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 7.4vw, 6.35rem);
  line-height: .9;
  letter-spacing: -.065em;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 243, 214, .88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions, .age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--cream-2);
  box-shadow: 0 16px 36px rgba(166, 39, 33, .28);
}

.btn-secondary {
  background: rgba(255, 243, 214, .12);
  color: var(--cream-2);
  border-color: rgba(255, 243, 214, .28);
}

.btn-ghost {
  color: var(--green-900);
  border-color: rgba(11, 44, 34, .18);
  background: rgba(11, 44, 34, .05);
}

.hero-product {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  width: min(420px, 86vw);
  height: min(420px, 86vw);
  border: 1px solid rgba(255, 243, 214, .28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 38%, rgba(255, 243, 214, .25), transparent 34%),
    linear-gradient(140deg, rgba(166, 39, 33, .38), rgba(13, 58, 45, .1));
  box-shadow: inset 0 0 80px rgba(255, 243, 214, .07), 0 28px 90px rgba(0, 0, 0, .25);
}

.bottle-img {
  position: relative;
  z-index: 2;
  width: min(292px, 56vw);
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, .35));
}

.badge-card {
  position: absolute;
  z-index: 3;
  top: 15%;
  left: 0;
  width: 110px;
  padding: 18px 16px;
  border-radius: 18px;
  color: var(--green-900);
  background: linear-gradient(180deg, var(--cream-2), var(--paper));
  border: 1px solid rgba(7, 28, 22, .12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.badge-card span {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: .9;
}

.badge-card small {
  display: block;
  margin-top: 6px;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 16%;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.intro-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 243, 214, .15);
  box-shadow: var(--shadow);
}

.intro-strip > div {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 243, 214, .08), rgba(255, 243, 214, .03)),
    var(--green-800);
}

.number {
  display: inline-block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.intro-strip h2 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.04em;
}

.intro-strip p,
.story-text p,
.product-copy p,
.section-heading p,
.stockists-copy p,
.site-footer p {
  color: rgba(255, 243, 214, .74);
}

.story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(255, 243, 214, .09), rgba(255, 243, 214, .03));
  border: 1px solid rgba(255, 243, 214, .12);
}

.story-image {
  min-height: 560px;
  border-radius: calc(var(--radius-lg) - 12px);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  padding: clamp(14px, 3vw, 28px) clamp(8px, 3vw, 28px);
}

.story-text h2,
.product h2,
.section-heading h2,
.stockists h2 {
  margin-bottom: 22px;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: .9;
  letter-spacing: -.07em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 950;
}

.text-link::after {
  content: "↗";
  transition: transform .2s ease;
}

.text-link:hover::after { transform: translate(3px, -3px); }

.people {
  width: min(calc(100% - 32px), var(--max));
  margin: clamp(58px, 9vw, 105px) auto;
}

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

.section-heading.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 340px 340px;
  gap: 18px;
}

.gallery-card,
.label-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 243, 214, .12);
  background: rgba(255, 243, 214, .05);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .23);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-card:hover img { transform: scale(1.045); }

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 22, .86), rgba(7, 28, 22, .05) 55%);
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.gallery-caption span {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery-caption p {
  margin: 6px 0 0;
  max-width: 440px;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.label-card {
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 154, 38, .18), transparent 45%),
    linear-gradient(145deg, #f6e7c8, #dbc38c);
}

.label-card img {
  width: auto;
  max-width: 76%;
  max-height: calc(100% - 44px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(7, 28, 22, .22));
}

.product {
  margin-top: 22px;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: clamp(22px, 6vw, 74px);
  background:
    radial-gradient(circle at 80% 25%, rgba(212, 154, 38, .23), transparent 24rem),
    linear-gradient(145deg, #0d3a2d, #071c16);
  border: 1px solid rgba(255, 243, 214, .12);
  overflow: hidden;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 243, 214, .14);
  border-radius: 18px;
  color: rgba(255, 243, 214, .75);
  background: rgba(255, 243, 214, .06);
}

.feature-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: .95;
}

.product-display {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.product-display img {
  position: relative;
  z-index: 2;
  width: min(280px, 58vw);
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, .38));
}

.product-orbit {
  position: absolute;
  width: min(520px, 85vw);
  height: min(520px, 85vw);
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 214, .25);
  background:
    radial-gradient(circle, rgba(255, 243, 214, .16), transparent 56%),
    conic-gradient(from 130deg, rgba(166, 39, 33, .65), rgba(212, 154, 38, .35), rgba(13, 58, 45, .2), rgba(166, 39, 33, .65));
  opacity: .86;
}

.serve {
  width: min(calc(100% - 32px), var(--max));
  margin: clamp(58px, 9vw, 105px) auto;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.serve-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 243, 214, .09), rgba(255, 243, 214, .035));
  border: 1px solid rgba(255, 243, 214, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.serve-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  color: var(--cream-2);
  background: var(--red);
  border-radius: 999px;
  font-weight: 950;
}

.serve-card h3 {
  margin-bottom: 12px;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.3vw, 2.45rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.serve-card p {
  color: rgba(255, 243, 214, .72);
  margin-bottom: 0;
}

.stockists {
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 62px);
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(7, 28, 22, .92), rgba(7, 28, 22, .72)),
    url('../assets/bar.jpg') center / cover no-repeat;
  border: 1px solid rgba(255, 243, 214, .12);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius-md);
  background: rgba(255, 243, 214, .9);
  color: var(--green-900);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .25);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 44, 34, .2);
  border-radius: 14px;
  background: #fffaf0;
  color: var(--green-900);
  outline: none;
  padding: 14px 15px;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(166, 39, 33, .12);
}

.contact-form .btn { border: 0; width: fit-content; }

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  border-radius: var(--radius-md);
  background: #04130f;
  border: 1px solid rgba(255, 243, 214, .1);
}

.footer-brand .brand-script { font-size: 2.1rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: end;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 243, 214, .72);
  font-size: .9rem;
  font-weight: 900;
}

.responsibility {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 243, 214, .1);
  font-size: .86rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(7, 28, 22, .86), rgba(7, 28, 22, .94)),
    url('../assets/coast.jpg') center / cover no-repeat;
}

.age-gate.show { display: grid; }

.age-card {
  width: min(100%, 520px);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid rgba(255, 243, 214, .2);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  color: var(--green-900);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.age-card h2 {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: .94;
  letter-spacing: -.07em;
  margin-bottom: 18px;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-product {
    min-height: 560px;
  }

  .badge-card { left: clamp(0px, 8vw, 90px); }
  .hero-note { right: clamp(0px, 8vw, 90px); }

  .intro-strip,
  .story,
  .product,
  .stockists,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 520px 400px 520px;
  }

  .gallery-card.large { grid-row: span 1; }

  .story-image { min-height: 420px; }
  .product-display { min-height: 560px; }
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #f4dfb6 0%, #0a261e 14%, #071c16 100%);
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    padding: 10px 10px 10px 18px;
  }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border-radius: 26px;
    background: rgba(7, 28, 22, .96);
    border: 1px solid rgba(255, 243, 214, .15);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    padding: 14px 16px;
  }

  .nav .nav-cta { text-align: center; }

  h1 {
    font-size: clamp(3rem, 14vw, 4.85rem);
    line-height: .92;
  }

  .hero {
    min-height: auto;
    width: min(calc(100% - 20px), var(--max));
    border-radius: 24px;
    padding: 106px 20px 34px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 28, 22, .86) 0%, rgba(7, 28, 22, .66) 48%, rgba(7, 28, 22, .94) 100%),
      url('../assets/coast.jpg') center / cover no-repeat;
  }

  .hero-product { min-height: 500px; }

  .bottle-img { width: min(245px, 65vw); }
  .badge-card { top: 8%; left: 0; }
  .hero-note { right: 0; bottom: 10%; }

  .section-panel,
  .intro-strip,
  .people,
  .serve,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
    border-radius: 24px;
  }

  .intro-strip { margin-top: 10px; }
  .story, .product, .stockists { padding: 16px; }
  .story-image { min-height: 320px; }

  .gallery-grid {
    grid-template-rows: 420px 360px 480px;
    gap: 12px;
  }

  .label-card img {
    max-width: 70%;
    max-height: calc(100% - 36px);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .serve-grid { gap: 12px; }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links { justify-content: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
