:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff4e8;
  background: #050304;
  --night: #050304;
  --wine: #170812;
  --palm: #0f2117;
  --cream: #fff4e8;
  --mist: rgba(255, 244, 232, 0.76);
  --gold: #e7bd66;
  --amber: #f18d2f;
  --lavender: #c99af4;
  --leaf: #77b46d;
  --line: rgba(231, 189, 102, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #050304 0%, #10160f 42%, #170812 72%, #050304 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 3, 4, 0.82), transparent 22%, transparent 78%, rgba(5, 3, 4, 0.8)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 92px);
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  color: #fff9f0;
  font-size: 6.6rem;
  line-height: 0.88;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.75);
}

h2 {
  margin-bottom: 18px;
  color: #fff8ee;
  font-size: 4.15rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  color: #fff8ee;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--mist);
  line-height: 1.68;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 58px;
  border-bottom: 1px solid rgba(255, 244, 232, 0.12);
  background: rgba(5, 3, 4, 0.72);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: block;
  width: 218px;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 244, 0.24);
  border-radius: 8px;
  background: rgba(5, 3, 4, 0.62);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(1.36)
    contrast(1.2)
    saturate(1.18)
    drop-shadow(0 0 18px rgba(201, 154, 244, 0.42));
}

nav {
  display: flex;
  gap: 32px;
  color: rgba(255, 244, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--gold);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  padding: 132px 58px 62px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.08) brightness(0.96);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 3, 4, 0.94) 0%, rgba(5, 3, 4, 0.72) 36%, rgba(5, 3, 4, 0.2) 66%),
    linear-gradient(180deg, rgba(5, 3, 4, 0.28) 0%, rgba(5, 3, 4, 0.2) 46%, rgba(5, 3, 4, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede {
  width: min(660px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 244, 232, 0.88);
  font-size: 1.24rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 21px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #fff5df, #e7bd66 54%, #f18d2f);
  color: #110805;
  box-shadow: 0 20px 54px rgba(241, 141, 47, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 244, 232, 0.34);
  background: rgba(5, 3, 4, 0.34);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  min-width: 128px;
  border-top: 1px solid rgba(231, 189, 102, 0.5);
  padding-top: 12px;
  color: rgba(255, 244, 232, 0.88);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience,
.gin-poster,
.product-story,
.ingredients,
.service,
.order {
  padding: 92px 72px;
}

.experience {
  background:
    linear-gradient(135deg, rgba(119, 180, 109, 0.16), transparent 42%, rgba(201, 154, 244, 0.1)),
    #08100d;
}

.section-intro {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.section-intro p,
.story-copy > p,
.ingredients-copy p,
.service > div:first-child p,
.order-content p {
  max-width: 680px;
  font-size: 1.08rem;
}

.experience-grid,
.taste-list,
.service-menu {
  display: grid;
  gap: 14px;
}

.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.experience-grid article,
.taste-list article,
.service-menu article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 244, 232, 0.07), rgba(5, 3, 4, 0.18)),
    rgba(5, 3, 4, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.experience-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.experience-grid p,
.taste-list p,
.service-menu p {
  margin: 0;
}

.gin-poster {
  scroll-margin-top: 112px;
  background:
    linear-gradient(180deg, #08100d 0%, #050304 18%, #0a0506 100%);
}

.gin-poster img {
  width: min(1080px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(231, 189, 102, 0.2);
  border-radius: 8px;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(201, 154, 244, 0.12);
}

.product-story,
.ingredients {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
}

.product-story {
  grid-template-columns: 1fr;
  justify-items: center;
  background:
    linear-gradient(90deg, rgba(201, 154, 244, 0.1), transparent 48%, rgba(231, 189, 102, 0.11)),
    var(--wine);
}

.product-art,
.ingredients-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 244, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.ingredients-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.product-art {
  display: flex;
  width: min(1180px, 100%);
  align-self: center;
  justify-content: center;
  padding: clamp(12px, 1.4vw, 18px);
  background: #050304;
}

.product-art img {
  width: auto;
  max-width: 100%;
  max-height: min(620px, 72svh);
  height: auto;
  background: #050304;
}

.story-copy {
  width: min(1180px, 100%);
}

.taste-list {
  margin-top: 28px;
}

.taste-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
}

.taste-list h3 {
  margin: 0;
  color: var(--lavender);
  text-transform: uppercase;
}

.ingredients {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  background:
    linear-gradient(135deg, rgba(231, 189, 102, 0.12), transparent 36%, rgba(119, 180, 109, 0.11)),
    #070706;
}

.ingredients-image img {
  object-position: 58% center;
}

.service {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: 58px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(119, 180, 109, 0.12), rgba(5, 3, 4, 0) 46%, rgba(241, 141, 47, 0.12)),
    #08120d;
}

.service-menu {
  grid-template-columns: 1fr;
}

.service-menu h3 {
  color: var(--gold);
}

.order {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #060405;
  isolation: isolate;
}

.order::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 3, 4, 0.94) 0%, rgba(5, 3, 4, 0.78) 46%, rgba(5, 3, 4, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 3, 4, 0.16), rgba(5, 3, 4, 0.82));
}

.order-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.08);
}

.order-content {
  position: relative;
  width: min(760px, 100%);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 72px;
  border-top: 1px solid rgba(231, 189, 102, 0.22);
  background: #050304;
  color: rgba(255, 244, 232, 0.62);
}

footer img {
  width: 138px;
  filter: brightness(1.24) contrast(1.12);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .experience,
  .gin-poster,
  .product-story,
  .ingredients,
  .service,
  .order,
  footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .experience-grid,
  .product-story,
  .ingredients,
  .service {
    grid-template-columns: 1fr;
  }

  .ingredients-image {
    order: -1;
  }

  .ingredients-image img {
    height: 560px;
  }

  .product-art img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
  }

  .brand-mark {
    width: 138px;
    height: 46px;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: 100%;
    justify-content: start;
    gap: 18px;
    font-size: 0.7rem;
  }

  nav a {
    text-align: center;
  }

  .hero {
    min-height: 92svh;
    padding-top: 138px;
    padding-bottom: 34px;
  }

  .hero-content {
    width: min(560px, 100%);
    padding-right: 0;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 3, 4, 0.92) 0%, rgba(5, 3, 4, 0.68) 62%, rgba(5, 3, 4, 0.36) 100%),
      linear-gradient(180deg, rgba(5, 3, 4, 0.28) 0%, rgba(5, 3, 4, 0.2) 44%, rgba(5, 3, 4, 0.9) 100%);
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lede {
    font-size: 1rem;
    max-width: 320px;
  }

  .hero-actions {
    max-width: 320px;
  }

  .hero-actions,
  .order-actions,
  .button {
    width: 100%;
  }

  .hero-notes li {
    min-width: 0;
    width: calc(50% - 6px);
  }

  .experience,
  .gin-poster,
  .product-story,
  .ingredients,
  .service,
  .order {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .ingredients-image img {
    height: 430px;
  }

  .product-art img {
    height: auto;
  }

  .taste-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.75rem;
  }

  .hero-content {
    width: min(330px, 100%);
  }

  .hero-lede,
  .hero-actions {
    max-width: 306px;
  }

  .site-header,
  .hero,
  .experience,
  .gin-poster,
  .product-story,
  .ingredients,
  .service,
  .order,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-notes li {
    width: 100%;
  }
}
