:root {
  --green: #10583e;
  --green-deep: #062f23;
  --green-black: #031b14;
  --lime: #b8ef65;
  --acid: #d8ff65;
  --orange: #ef4e13;
  --cream: #fff7dc;
  --gold: #d6a44a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lime);
  background: var(--green);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

.top-ticker {
  position: fixed;
  inset: 0 0 auto;
  z-index: 75;
  height: 28px;
  overflow: hidden;
  background: #08361f;
  border-bottom: 1px solid rgba(184, 239, 101, 0.42);
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 700;
}

.top-ticker div {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  align-items: center;
  height: 100%;
  animation: drift 18s linear infinite;
}

.top-ticker span::before {
  content: "◐";
  margin-right: 6px;
}

.menu-trigger {
  position: fixed;
  top: 44px;
  left: 22px;
  z-index: 85;
  display: grid;
  gap: 4px;
  place-content: center;
  width: 44px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.menu-trigger span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--lime);
  transition: transform 220ms ease, opacity 220ms ease;
}

.drawer-open .menu-trigger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.drawer-open .menu-trigger span:nth-child(2) {
  opacity: 0;
}

.drawer-open .menu-trigger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fixed-order {
  position: fixed;
  top: 44px;
  right: 24px;
  z-index: 85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  height: 42px;
  padding: 0 22px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(3, 27, 20, 0.25);
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 27, 20, 0.58);
  backdrop-filter: blur(3px);
}

.site-drawer {
  position: fixed;
  inset: 28px auto 0 0;
  z-index: 95;
  width: min(430px, 92vw);
  padding: 34px;
  color: var(--lime);
  background: var(--green-black);
  border-right: 1px solid rgba(184, 239, 101, 0.28);
  transform: translateX(-105%);
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: var(--shadow);
}

.drawer-open .site-drawer {
  transform: translateX(0);
}

.drawer-close {
  margin-left: auto;
  display: block;
  border: 1px solid rgba(184, 239, 101, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--lime);
  padding: 8px 14px;
}

.drawer-nav {
  display: grid;
  gap: 6px;
  margin: 44px 0;
}

.drawer-nav a {
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}

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

.drawer-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.drawer-card img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.drawer-card span {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1;
}

.site-drawer p {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-black);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 27, 20, 0.22), rgba(3, 27, 20, 0.5) 62%, rgba(3, 27, 20, 0.95)),
    radial-gradient(circle at 50% 55%, rgba(239, 78, 19, 0.12), transparent 36%);
}

.brand-word {
  position: absolute;
  top: 38px;
  left: 86px;
  z-index: 2;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(34px, 7vw, 98px);
  line-height: 0.85;
  color: var(--lime);
  text-transform: uppercase;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 96px);
  bottom: clamp(92px, 13vh, 150px);
  max-width: 720px;
  animation: rise 900ms ease both;
}

.eyebrow,
.tiny-label {
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(74px, 16vw, 218px);
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--cream);
  font-size: clamp(17px, 2.2vw, 25px);
  line-height: 1.25;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(184, 239, 101, 0.25);
  background: rgba(6, 47, 35, 0.78);
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 64px);
  white-space: nowrap;
}

.hero-marquee div {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: drift 22s linear infinite;
}

.statement-section {
  min-height: 88vh;
  display: grid;
  align-content: center;
  padding: clamp(86px, 13vw, 170px) clamp(22px, 8vw, 110px);
  background: var(--green);
}

.outline-title {
  max-width: 960px;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(72px, 13vw, 190px);
  line-height: 0.84;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 680px;
  margin: 28px 0 0 auto;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.photo-band {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 80px);
  overflow: hidden;
  background: var(--green-black);
}

.photo-band > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 27, 20, 0.9), rgba(3, 27, 20, 0.22));
}

.photo-band-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.photo-band h2,
.section-head h2,
.showcase-intro h2,
.visit h2 {
  margin: 0;
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.9;
}

.photo-band p:last-child,
.sticky-card p {
  color: var(--cream);
  font-size: 18px;
  line-height: 1.55;
}

.featured-grid,
.sticky-showcase,
.visit {
  padding: clamp(70px, 11vw, 140px) clamp(22px, 7vw, 96px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.feature-card {
  min-height: 460px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(184, 239, 101, 0.35);
  background: rgba(3, 27, 20, 0.35);
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.36));
}

.feature-card h3,
.sticky-card h3 {
  margin: 0 0 10px;
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
}

.feature-card p {
  color: var(--cream);
  line-height: 1.45;
}

.sticky-showcase {
  background: var(--green-deep);
}

.showcase-intro {
  max-width: 620px;
  margin-bottom: 34px;
}

.sticky-card {
  position: sticky;
  top: 74px;
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  gap: clamp(22px, 6vw, 80px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(24px, 5vw, 62px);
  border: 1px solid rgba(184, 239, 101, 0.32);
  background: var(--green);
  box-shadow: var(--shadow);
}

.sticky-card:nth-of-type(2) {
  top: 96px;
  background: #0b4935;
}

.sticky-card:nth-of-type(3) {
  top: 118px;
  background: #073529;
}

.sticky-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.visit {
  min-height: 76vh;
  display: grid;
  align-content: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  color: var(--cream);
  font-size: 19px;
  line-height: 1.45;
}

.visit-grid a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-footer,
.menu-footer {
  padding: 44px 24px 0;
  overflow: hidden;
  background: var(--green);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.95;
}

.site-footer p {
  margin: 24px 0 28px;
  color: var(--cream);
}

.site-footer strong,
.menu-footer > strong {
  display: block;
  color: var(--lime);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(70px, 17vw, 250px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-page {
  background: var(--green);
}

.menu-board {
  padding: 94px clamp(18px, 4vw, 60px) 40px;
}

.menu-heading {
  text-align: center;
  margin-bottom: 48px;
}

.menu-heading h1 {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(58px, 8vw, 94px);
  font-weight: 400;
}

.menu-heading p,
.menu-section-title h2 {
  margin: 0;
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-heading span,
.menu-section-title p {
  color: var(--acid);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section {
  margin-bottom: 78px;
}

.menu-section-title {
  margin-bottom: 26px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.menu-grid.appetizers {
  max-width: 1120px;
  margin: 0 auto;
}

.menu-item {
  text-align: center;
}

.menu-item img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid rgba(214, 164, 74, 0.9);
  filter: drop-shadow(0 16px 32px rgba(3, 27, 20, 0.34));
  transition: transform 280ms ease, filter 280ms ease;
}

.menu-item:hover img {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 26px 42px rgba(3, 27, 20, 0.45));
}

.menu-item h3 {
  margin: 0 0 6px;
  color: var(--lime);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
}

.menu-item p {
  min-height: 34px;
  margin: 0 auto 6px;
  max-width: 260px;
  color: var(--cream);
  font-size: 12px;
  line-height: 1.35;
}

.menu-item strong {
  color: var(--acid);
  font-size: 13px;
}

.menu-footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  align-items: start;
  color: var(--cream);
}

.menu-footer p {
  font-size: 13px;
  line-height: 1.5;
}

.menu-footer nav {
  display: grid;
  justify-items: start;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  color: var(--lime);
}

.menu-footer > strong {
  grid-column: 1 / -1;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .brand-word {
    left: 74px;
    max-width: calc(100vw - 150px);
    font-size: clamp(28px, 9vw, 54px);
    overflow-wrap: anywhere;
  }

  .feature-cards,
  .menu-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sticky-card:nth-of-type(2),
  .sticky-card:nth-of-type(3) {
    top: auto;
  }

  .menu-grid {
    gap: 42px;
  }

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

@media (max-width: 560px) {
  .site-drawer {
    padding: 30px 24px;
  }

  .fixed-order {
    right: 12px;
    min-width: 104px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-copy {
    left: 18px;
    right: 18px;
  }

  .drawer-nav a {
    font-size: clamp(34px, 11vw, 46px);
  }

  .outline-title {
    -webkit-text-stroke-width: 1px;
  }

  .feature-card {
    min-height: auto;
  }

  .site-footer strong,
  .menu-footer > strong {
    font-size: 12vw;
  }
}

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