:root {
  --navy-950: #020d15;
  --navy-900: #041622;
  --navy-800: #082738;
  --gold-100: #fff4c5;
  --gold-300: #f3d783;
  --gold-500: #c99536;
  --gold-700: #8f5d16;
  --ivory: #fbf7ec;
  --muted: #b7c1c5;
  --line: rgba(229, 192, 100, .26);
  --glass: rgba(4, 22, 34, .76);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-950); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 70, 90, .28), transparent 34rem),
    var(--navy-950);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.icon::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.icon--menu { --icon: url("assets/icon-utensils.svg"); }
.icon--phone { --icon: url("assets/icon-phone.svg"); }
.icon--at { --icon: url("assets/icon-at-sign.svg"); }
.icon--star { --icon: url("assets/icon-star.svg"); }
.icon--pin { --icon: url("assets/icon-map-pin.svg"); }
.icon--chevron { --icon: url("assets/icon-chevron-right.svg"); }

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #0d3143 0, #051925 38%, #020b12 74%);
  animation: intro-out .75s cubic-bezier(.65,0,.35,1) 2.05s forwards;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 1px;
  left: -30%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(246, 216, 134, .8), transparent);
  transform: rotate(-14deg) scaleX(0);
  animation: glint-line 1.2s ease .42s forwards;
}
.intro::after { transform: rotate(14deg) scaleX(0); animation-delay: .55s; }
.intro__halo {
  position: absolute;
  width: min(74vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 195, 99, .3);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(190, 132, 36, .18), inset 0 0 70px rgba(190, 132, 36, .08);
  animation: halo 1.6s ease both;
}
.intro__mark {
  width: min(58vw, 250px);
  aspect-ratio: 1.075;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .65);
  animation: mark-in 1.15s cubic-bezier(.2,.9,.2,1) .18s forwards;
}
.intro__mark img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.intro p {
  z-index: 1;
  margin: .35rem 0 0;
  color: var(--gold-300);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .38rem;
  opacity: 0;
  animation: fade-rise .9s ease .65s forwards;
}

.ambient { position: fixed; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
.ambient span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 12px 2px rgba(236, 203, 112, .5);
  opacity: 0;
  animation: float 8s linear infinite;
}
.ambient span:nth-child(1) { left: 12%; animation-delay: 1s; }
.ambient span:nth-child(2) { left: 34%; animation-delay: 3.2s; animation-duration: 10s; }
.ambient span:nth-child(3) { left: 58%; animation-delay: .2s; animation-duration: 11s; }
.ambient span:nth-child(4) { left: 78%; animation-delay: 5s; animation-duration: 9s; }
.ambient span:nth-child(5) { left: 92%; animation-delay: 2s; animation-duration: 12s; }

main { overflow: hidden; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media { z-index: -3; overflow: hidden; background: #071824; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.92) contrast(1.04) brightness(.78);
  transform: scale(1.05);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(1,9,15,.22) 0%, rgba(2,13,21,.45) 28%, rgba(2,13,21,.96) 86%, var(--navy-950) 100%),
    radial-gradient(circle at 50% 28%, transparent 0 18%, rgba(2,10,16,.4) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(237, 202, 112, .32);
  border-radius: 22px;
  pointer-events: none;
}
.hero__content {
  width: min(100%, 660px);
  padding: max(3.5rem, env(safe-area-inset-top)) 1.25rem calc(2.2rem + env(safe-area-inset-bottom));
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1rem;
  color: var(--gold-300);
  font-size: clamp(.56rem, 2.2vw, .68rem);
  font-weight: 700;
  letter-spacing: .18rem;
}
.eyebrow span { width: 24px; height: 1px; background: var(--gold-500); }
.brand-seal {
  width: clamp(112px, 31vw, 158px);
  aspect-ratio: 1;
  margin: 0 auto .65rem;
  padding: 4px;
  border: 1px solid rgba(241, 209, 125, .58);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,242,197,.16), rgba(3,17,27,.65));
  box-shadow: 0 18px 46px rgba(0,0,0,.45), 0 0 45px rgba(214,164,65,.12);
}
.brand-seal img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; object-position: center 44%; }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 15vw, 6.2rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: .04em;
  color: transparent;
  background: linear-gradient(135deg, #8c5b18 0%, #ffefb5 31%, #c28b2e 52%, #fff1b8 72%, #9b681d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.42));
}
.hero__subtitle {
  margin: .65rem 0 1.1rem;
  color: var(--gold-300);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .42rem;
}
.hero__quote {
  max-width: 390px;
  margin: 0 auto 1.2rem;
  color: rgba(251,247,236,.9);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 4.2vw, 1.3rem);
  font-style: italic;
  line-height: 1.45;
}
.actions { display: grid; gap: .7rem; width: 100%; max-width: 520px; margin: 0 auto; }
.actions__grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
.action {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .72rem .86rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  text-align: left;
  box-shadow: 0 10px 34px rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.action:active { transform: scale(.985); }
.action--primary {
  min-height: 74px;
  color: #07151e;
  border-color: rgba(255,242,192,.62);
  background: linear-gradient(115deg, #f6dfa0 0%, #d8a844 44%, #f5d88b 100%);
  box-shadow: 0 16px 36px rgba(202,150,48,.23);
}
.action--glass { background: linear-gradient(145deg, rgba(17,53,70,.84), rgba(4,20,31,.9)); backdrop-filter: blur(15px); }
.action--review { background: rgba(248,244,234,.96); color: #10202a; border-color: rgba(255,255,255,.7); }
.action__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  opacity: .9;
}
.action span:nth-child(2) { min-width: 0; display: grid; gap: .18rem; }
.action small { font-size: .61rem; font-weight: 800; letter-spacing: .11em; opacity: .7; }
.action strong { font-size: clamp(.78rem, 3.2vw, .98rem); line-height: 1.13; overflow-wrap: anywhere; }
.action__arrow { width: 22px; margin-left: auto; border: 0; }
.action__arrow::before { width: 22px; height: 22px; }
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .38rem;
  margin-top: 1.2rem;
  color: rgba(250,240,209,.68);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.scroll-cue span { width: 1px; height: 24px; background: linear-gradient(var(--gold-300), transparent); animation: cue 1.8s ease-in-out infinite; }

.experience {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 5rem 1.25rem 3.8rem;
}
.experience::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: 14rem;
  left: -18rem;
  border-radius: 50%;
  background: rgba(26,94,116,.18);
  filter: blur(90px);
}
.section-heading { position: relative; text-align: center; margin-bottom: 2rem; }
.section-heading > p {
  margin: 0 0 .9rem;
  color: var(--gold-500);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .28rem;
}
.section-heading h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 8.5vw, 4.1rem);
  font-weight: 400;
  line-height: 1.03;
}
.section-heading em, .final-cta em { color: var(--gold-300); font-weight: 400; }
.gallery {
  position: relative;
  aspect-ratio: 3 / 4.45;
  max-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(238,202,112,.45);
  border-radius: 28px;
  background: #06131c;
  box-shadow: 0 30px 70px rgba(0,0,0,.43), inset 0 0 0 7px rgba(4,22,34,.45);
}
.gallery::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 8;
  border: 1px solid rgba(246,220,150,.2);
  border-radius: 20px;
  pointer-events: none;
}
.gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.gallery__slide.is-active { opacity: 1; visibility: visible; }
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.02) brightness(.9);
  transform: scale(1.06);
  transition: transform 5.5s ease;
}
.gallery__slide.is-active img { transform: scale(1); }
.gallery__slide:nth-child(2) img { object-position: 49% center; }
.gallery__slide figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  padding: 5.5rem 1.55rem 2.15rem;
  text-align: left;
  background: linear-gradient(transparent, rgba(2,13,21,.95));
}
.gallery__slide figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 2rem;
}
.gallery__slide figcaption strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.gallery__slide figcaption small { margin-top: .25rem; color: var(--gold-300); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.gallery__controls {
  position: absolute;
  z-index: 10;
  right: 1.35rem;
  bottom: 2.3rem;
  display: flex;
  gap: .38rem;
}
.gallery__pause {
  position: absolute;
  z-index: 10;
  top: 1.35rem;
  right: 1.35rem;
  min-width: 66px;
  min-height: 44px;
  padding: .55rem .75rem;
  border: 1px solid rgba(244,214,135,.4);
  border-radius: 999px;
  color: var(--gold-100);
  background: rgba(3,17,27,.66);
  backdrop-filter: blur(12px);
  font: 800 .5rem/1 var(--sans);
  letter-spacing: .12em;
  cursor: pointer;
}
.gallery__controls button {
  position: relative;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.gallery__controls button::after {
  content: "";
  position: absolute;
  inset: 50% 4px auto;
  height: 3px;
  border-radius: 9px;
  background: rgba(255,255,255,.42);
  transform: translateY(-50%);
  transition: background .3s ease, transform .3s ease;
}
.gallery__controls button.is-active::after { background: var(--gold-300); transform: translateY(-50%) scaleX(1.35); }
.location-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .95rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(14,49,65,.75), rgba(3,17,26,.91));
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.location-card__pin { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--gold-500); border-radius: 15px; color: var(--gold-300); }
.location-card__pin::before { width: 23px; height: 23px; }
.location-card small { color: var(--gold-500); font-size: .54rem; font-weight: 800; letter-spacing: .15em; }
.location-card h3 { margin: .22rem 0 .1rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.location-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.location-card > a {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--gold-300);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.location-card > a span { font-size: 1rem; }

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 74svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.3rem;
  text-align: center;
  background:
    linear-gradient(rgba(2,13,21,.76), rgba(2,13,21,.93)),
    url("assets/interior-dining.webp") center 45% / cover no-repeat;
  border-block: 1px solid var(--line);
}
.final-cta::before { content: ""; position: absolute; inset: 14px; z-index: -1; border: 1px solid rgba(239,204,115,.3); border-radius: 26px; }
.final-cta__glow { position: absolute; z-index: -1; width: 340px; height: 340px; border-radius: 50%; background: rgba(207,151,44,.13); filter: blur(55px); }
.final-cta img { width: 112px; height: 106px; object-fit: cover; object-position: center 44%; margin-bottom: .9rem; border: 1px solid rgba(238,202,112,.4); border-radius: 50%; box-shadow: 0 14px 42px rgba(0,0,0,.4); }
.final-cta > p { margin: 0 0 .85rem; color: var(--gold-300); font-size: .57rem; font-weight: 800; letter-spacing: .2rem; }
.final-cta h2 { margin-bottom: 1.8rem; }
.final-cta > a:not(.final-cta__phone) {
  width: min(100%, 390px);
  padding: 1.05rem;
  border-radius: 16px;
  color: #081722;
  background: linear-gradient(115deg, #f6dfa0, #d5a13c 48%, #f4d486);
  box-shadow: 0 18px 44px rgba(199,145,39,.2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
}
.final-cta__phone { margin-top: 1.05rem; color: rgba(255,255,255,.86); font-family: var(--serif); font-size: 1.15rem; letter-spacing: .04em; }
footer { padding: 2.4rem 1rem calc(2.4rem + env(safe-area-inset-bottom)); text-align: center; background: #01090e; }
footer span { color: var(--gold-300); font-family: var(--serif); font-size: 1.35rem; letter-spacing: .16em; }
footer p { margin: .45rem 0 0; color: #77858b; font-size: .5rem; font-weight: 700; letter-spacing: .18em; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold-100);
  outline-offset: 4px;
}

@media (hover: hover) {
  .action:hover { transform: translateY(-2px); border-color: rgba(246,215,132,.65); box-shadow: 0 17px 38px rgba(0,0,0,.34); }
  .final-cta > a:not(.final-cta__phone):hover { filter: brightness(1.08); transform: translateY(-2px); }
}

@media (min-width: 720px) {
  .hero__content { padding-inline: 2rem; }
  .hero__media img { object-position: center 52%; }
  .experience { padding-inline: 2rem; }
  .gallery { aspect-ratio: 4 / 5; margin-inline: auto; }
  .location-card { grid-template-columns: auto 1fr auto; padding: 1.4rem; }
  .location-card > a { grid-column: auto; border-top: 0; border-left: 1px solid var(--line); padding: .55rem 0 .55rem 1.25rem; gap: 1.2rem; }
}

@media (min-width: 600px) {
  .actions__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 410px) {
  .hero__content { padding-inline: .95rem; }
  .hero::after { inset: 8px; }
  .action { min-height: 62px; }
  .action strong { font-size: .86rem; }
}

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

@keyframes mark-in { to { opacity: 1; transform: scale(1); } }
@keyframes halo { from { opacity: 0; transform: scale(.65); } to { opacity: 1; transform: scale(1.05); } }
@keyframes glint-line { to { transform: rotate(-14deg) scaleX(1); } }
@keyframes fade-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; } }
@keyframes hero-drift { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.12) translateY(-1.5%); } }
@keyframes cue { 0%,100% { opacity: .35; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes float { 0% { transform: translateY(105vh) scale(.6); opacity: 0; } 12% { opacity: .6; } 82% { opacity: .28; } 100% { transform: translateY(-8vh) scale(1.2); opacity: 0; } }
