@font-face {
  font-family: "Faculty Glyphic";
  src: url("../fonts/FacultyGlyphic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --gold: #c28a24;
  --cream: #f2eadb;
  --sand: #dfd6bf;
  --charcoal: #171717;
  --ink: #17130e;
  --menu-font-size: 14px;
  --menu-letter-spacing: 0.3em;
}

html {
  background: var(--ink);
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: "Faculty Glyphic", Georgia, serif;
  overflow-x: hidden;
}

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

.tracking-menu {
  font-family: "Jost", sans-serif;
  font-size: var(--menu-font-size);
  line-height: 1;
  letter-spacing: var(--menu-letter-spacing);
  text-transform: uppercase;
  color: var(--sand);
  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.tracking-menu:hover {
  color: var(--gold);
}

.hero-bg {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 13, 9, 0.1), rgba(16, 13, 9, 0.14));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}


.photo {
  background-position: center;
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
}

.brand-logo {
  width: clamp(260px, 32vw, 470px);
  height: auto;
}

.asset-mark {
  display: block;
  width: var(--asset-mark-size, 40px);
  height: var(--asset-mark-size, 40px);
}

.social-icon {
  display: block;
  width: 40px;
  height: 40px;
}

.arrow-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.mark {
  position: relative;
  width: var(--mark-size, 68px);
  aspect-ratio: 1;
  border: max(1px, calc(var(--mark-size, 68px) * 0.028)) solid var(--gold);
  border-radius: 50%;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: max(1px, calc(var(--mark-size, 68px) * 0.024)) solid var(--gold);
}

.mark::after {
  inset: 38%;
  background: var(--gold);
}

.mark span,
.mark span::before,
.mark span::after {
  position: absolute;
  inset: -1px 49%;
  width: max(1px, calc(var(--mark-size, 68px) * 0.022));
  background: var(--gold);
  transform-origin: 50% 50%;
}

.mark span::before,
.mark span::after {
  content: "";
  inset: 0;
}

.mark span:nth-child(1) {
  transform: rotate(0deg);
}

.mark span:nth-child(1)::before {
  transform: rotate(45deg);
}

.mark span:nth-child(1)::after {
  transform: rotate(90deg);
}

.mark span:nth-child(2) {
  transform: rotate(22.5deg);
}

.mark span:nth-child(2)::before {
  transform: rotate(45deg);
}

.mark span:nth-child(2)::after {
  transform: rotate(90deg);
}

.fan {
  position: absolute;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tile-grid {
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 14px 14px;
  border: 1px solid var(--gold);
}

.map-line {
  position: absolute;
  height: 2px;
  background: rgba(163, 126, 55, 0.32);
  transform-origin: left center;
}

.pin {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--ink);
}

.section-line > * {
  border-bottom: 1px solid rgba(194, 138, 36, 0.72);
}

.section-line > *:last-child {
  border-bottom: 0;
}

.drink-trigger {
  display: block;
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.drink-trigger span {
  display: block;
}

/* Hover effects removed as requested */

.drink-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.drink-panel > div {
  overflow: hidden;
}

.drink-item.is-active .drink-panel {
  grid-template-rows: 1fr;
}

.drink-description {
  max-width: 690px;
  padding: 0 50px 34px 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.28;
  color: rgba(242, 234, 219, 0.9);
}

@media (max-width: 767px) {
  .tracking-menu {
    letter-spacing: 0.22em;
  }
}

@keyframes photoReveal {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: scale(1.1);
    filter: brightness(0.5);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1);
    filter: brightness(1);
  }
}

.photo-animating {
  animation: photoReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Auto-scrolling Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-carousel {
  animation: scroll 30s linear infinite;
  width: max-content;
}

.animate-carousel:hover {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .animate-carousel {
    animation-duration: 20s;
  }
}

/* Auto-scrolling Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-carousel {
  animation: scroll 30s linear infinite;
  width: max-content;
}

.animate-carousel:hover {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .animate-carousel {
    animation-duration: 20s;
  }
}

