:root {
  --bg: #0a0806;
  --bg2: #15100b;
  --paper: #d9bf86;
  --paper2: #b98b4c;
  --ink: #f5e6c6;
  --muted: #d7b987;
  --amber: #e69a32;
  --teal: #1fb49d;
  --green: #1e6f54;
  --line: rgba(230,154,50,.35);
  --shadow: 0 25px 80px rgba(0,0,0,.55);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top,#24160c 0,#0a0806 42%,#030302 100%);
  color: var(--ink);
  font-family: 'Source Serif 4',Georgia,serif;
  line-height: 1.62;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px,4vw,52px);
  background: rgba(7,5,4,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  display: grid;
  line-height: 1;
}

.brand span {
  font-family: 'IM Fell English SC',serif;
  font-size: clamp(1.6rem,3vw,2.35rem);
  letter-spacing: .05em;
}

.brand small {
  font-family: Oswald,sans-serif;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
}

.nav {
  display: flex;
  gap: 26px;
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
}

.nav a {
  text-decoration: none;
  color: #ead29e;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  font-size: 1.35rem;
  padding: 4px 10px;
}

.hero {
  min-height: 76vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.28),rgba(0,0,0,.82)),url('assets/site/hero-bar.jpg') center/cover no-repeat;
  filter: saturate(1.1);
}

.hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent,var(--bg));
}

.hero-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 40px 20px;
  padding: clamp(28px,6vw,64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(rgba(16,10,5,.72),rgba(16,10,5,.54));
  box-shadow: var(--shadow);
}

.eyebrow {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--teal);
  font-size: .84rem;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.05;
}

h1 {
  font-family: 'IM Fell English SC',serif;
  font-size: clamp(3.4rem,10vw,7.8rem);
  letter-spacing: .04em;
  text-shadow: 0 6px 20px rgba(0,0,0,.7);
}

h2 {
  font-family: 'IM Fell English SC',serif;
  font-size: clamp(2.15rem,5vw,4.4rem);
  letter-spacing: .03em;
}

h3 {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.35rem;
  color: #f0c06f;
}

.tagline {
  font-size: clamp(1.2rem,2vw,1.65rem);
  color: #f3d9a6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  display: inline-block;
}

.button.primary {
  background: linear-gradient(135deg,#b56724,#e69a32);
  color: #170d04;
  border-color: #f4b55f;
  font-weight: 600;
}

.button.secondary {
  background: rgba(31,180,157,.12);
  color: #f0dcaa;
}

.text-link {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}

.section-pad {
  padding: clamp(48px,8vw,96px) clamp(18px,4vw,52px);
  max-width: var(--max);
  margin: auto;
}

.intro,
.split {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: clamp(24px,5vw,58px);
  align-items: center;
}

.intro-copy p,
.story p {
  font-size: 1.12rem;
  color: #e6cf9e;
}

.rule-card,
.recipe,
.paper-panel {
  background: linear-gradient(145deg,rgba(217,191,134,.95),rgba(161,103,46,.92));
  color: #1b1007;
  border-radius: var(--radius);
  padding: clamp(24px,4vw,42px);
  box-shadow: var(--shadow);
  border: 1px solid #f1c780;
}

.paper-panel .eyebrow {
  color: #1b1007;
}

.rule-card h3,
.recipe h3 {
  color: #2a1608;
}

.rule-card strong {
  display: block;
  margin-top: 16px;
  font-family: 'IM Fell English SC';
  font-size: 1.5rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #110c08;
  border-block: 1px solid var(--line);
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.feature-band div {
  padding: clamp(32px,6vw,70px);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.drink-card {
  background: linear-gradient(#19100a,#0d0906);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.drink-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.drink-card div {
  padding: 22px;
}

.drink-card p {
  color: #dac18f;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.leaderboard-mini,
.leaderboard {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.leaderboard-mini li,
.leaderboard li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(63,33,10,.25);
  padding: 11px 0;
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.leaderboard a {
  color: #1b1007;
  text-decoration: none;
  border: 1px solid rgba(27,16,7,.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.basement {
  opacity: .8;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px,4vw,52px);
  border-top: 1px solid var(--line);
  background: #050403;
  color: #caa66f;
}

.footer a {
  text-decoration: none;
  color: var(--teal);
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: end start;
  padding: 120px clamp(18px,4vw,52px) 70px;
  background: #100b07;
  overflow: hidden;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(3rem,7vw,6.5rem);
}

.page-hero p:not(.eyebrow) {
  font-size: 1.3rem;
  color: #efd5a3;
}

.cocktails-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.7),rgba(0,0,0,.2)),url('assets/site/cocktail-grid.jpg') center/cover;
}

.rum-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.25)),url('assets/site/rum-map.jpg') center/cover;
}

.gallery-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.2)),url('assets/page-photos/IMG_1946.jpg') center/cover;
}

.about-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.2)),url('assets/site/exterior-hideaway.jpg') center/cover;
}

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

.recipe ul {
  padding-left: 20px;
}

.recipe-note {
  font-style: italic;
}

.gallery-page {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.gallery-page figure {
  margin: 0;
  background: #130d08;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-page img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}

.gallery-page figcaption {
  padding: 16px 18px;
  color: #e4c891;
}

.story {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #070504;
    padding: 18px;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .intro,
  .split,
  .feature-band,
  .story {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .recipe-grid,
  .gallery-page,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-card {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .feature-band img {
    min-height: 260px;
  }

  .drink-card img,
  .gallery-page img {
    height: 250px;
  }

  .footer {
    flex-direction: column;
  }

  .page-hero {
    min-height: 42vh;
  }
}

.menu-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.76),rgba(0,0,0,.25)),url('assets/page-photos/20220825_222351.jpg') center/cover;
}

.video-hero-storm {
  background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.18)),url('assets/gallery-photos/IMG_0016.jpg') center/cover;
}

.video-hero-awakens {
  background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.18)),url('assets/page-photos/IMG_0014.jpg') center/cover;
}

.video-hero-volcano {
  background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.18)),url('assets/page-photos/PXL_20221226_202545084.jpg') center/cover;
}

.video-hero {
  background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.18)),url('assets/gallery/gallery-bar-main.jpg') center/cover;
}


.menu-frame {
  background: #0f0a06;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(12px,3vw,26px);
  box-shadow: var(--shadow);
}

.menu-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: transform .2s;
}

.menu-lightbox-trigger:hover,
.menu-lightbox-trigger:focus-visible {
  transform: scale(1.01);
  outline: none;
}

.menu-lightbox-trigger img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(230,154,50,.35);
  pointer-events: none;
}

.menu-frame .button.primary {
  cursor: pointer;
}

.lightbox__nav[hidden] {
  display: none;
}

.original-gallery figure a {
  display: block;
}

.video-placeholder {
  min-height: 320px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(145deg,rgba(31,180,157,.08),rgba(230,154,50,.08)),#0f0a06;
  box-shadow: var(--shadow);
}

.video-placeholder span {
  font-family: 'IM Fell English SC';
  font-size: 2.2rem;
  color: #f1c780;
}

.video-placeholder small {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
}

@media (max-width: 1050px) {
  .nav {
    gap: 14px;
    font-size: .72rem;
  }

  .brand span {
    font-size: 1.5rem;
  }
}


/* Last-mile home/nav/gallery/video tuning */

.site-header {
  align-items: stretch;
  padding: 0 clamp(14px,3vw,42px);
  min-height: 86px;
  background: #000;
}

.brand {
  align-self: center;
  padding: 10px 0;
  min-width: 190px;
}

.nav {
  flex: 1;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 10px;
  font-size: clamp(.7rem,1.05vw,.95rem);
  line-height: 1.35;
}

.home-quiet {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px,8vw,90px) clamp(18px,4vw,52px);
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(24px,5vw,56px);
  align-items: center;
}

.home-mark h1 {
  font-size: clamp(3.5rem,8vw,7rem);
}

.home-mark p {
  font-size: 1.13rem;
  color: #e8cf9d;
}

.home-photo {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.home-links-section {
  padding-top: 20px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.link-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(145deg,rgba(217,191,134,.95),rgba(161,103,46,.9));
  color: #1b1007;
  border: 1px solid #f1c780;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  min-height: 145px;
}

.link-card span {
  display: block;
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.25rem;
  line-height: 1.18;
}

.link-card small {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
}

.link-card:hover {
  transform: translateY(-2px);
  transition: .18s ease;
  filter: saturate(1.08);
}

.video-page-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  align-items: start;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #050403;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-nav a {
  font-family: Oswald,sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .1em;
  border: 1px solid rgba(27,16,7,.35);
  border-radius: 999px;
  padding: 8px 12px;
  color: #1b1007;
}

.masonry-gallery {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0f0a06;
  box-shadow: var(--shadow);
  break-inside: avoid;
  margin: 0 0 18px;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: border-color .2s, transform .2s;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  border-color: var(--amber);
  transform: translateY(-2px);
  outline: none;
}

.gallery-tile img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(3, 3, 2, .92);
  cursor: pointer;
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
}

.lightbox__img {
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(10, 8, 6, .85);
  color: var(--paper);
  font-family: Oswald, sans-serif;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover:not(:disabled),
.lightbox__nav:focus-visible:not(:disabled) {
  background: rgba(230, 154, 50, .2);
  border-color: var(--amber);
  outline: none;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.lightbox__nav:disabled {
  opacity: .35;
  cursor: default;
}

.lightbox__prev {
  left: 16px;
}

.lightbox__next {
  right: 16px;
}

.gallery-page figcaption {
  display: none;
}

.video-placeholder {
  display: none;
}

@media (max-width: 1050px) {
  .site-header {
    min-height: auto;
    align-items: center;
    padding: 14px 18px;
  }

  .nav a {
    min-height: auto;
    display: block;
  }

  .nav {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .home-quiet,
  .video-page-layout {
    grid-template-columns: 1fr;
  }

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

  .home-quiet {
    padding-top: 32px;
  }

  .masonry-gallery {
    columns: 1;
  }

  .site-header {
    position: sticky;
  }

  .nav a {
    padding: 8px 10px;
  }

  .nav {
    gap: 8px;
  }

  .nav.open {
    display: flex;
  }
}


/* Cinematic video page update - removes sidebar and expands embedded videos */

.video-cinematic {
  max-width: 1320px;
  margin: 0 auto;
  display: block;
}

.video-cinematic .cinematic-frame {
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(230,154,50,.45);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 36px rgba(230,154,50,.12);
}

.video-cinematic.volcano-mood .cinematic-frame {
  box-shadow: 0 24px 70px rgba(0,0,0,.58),0 0 42px rgba(230,94,38,.22);
}

.video-cinematic.storm-mood .cinematic-frame {
  box-shadow: 0 24px 70px rgba(0,0,0,.58),0 0 42px rgba(31,180,157,.18);
}

.video-cinematic.awakens-mood .cinematic-frame {
  box-shadow: 0 24px 70px rgba(0,0,0,.58),0 0 42px rgba(241,199,128,.18);
}

.video-aftercopy {
  max-width: 850px;
  margin: 26px auto 0;
  text-align: center;
  color: #e8cf9d;
  font-size: 1.08rem;
  line-height: 1.7;
}

.video-mini-nav {
  justify-content: center;
  margin-top: 18px;
}

.video-mini-nav a {
  color: #f1c780;
  border-color: rgba(230,154,50,.42);
  background: rgba(15,10,6,.55);
}