:root {
  --ink: #080806;
  --night: #11100c;
  --paper: #f7efe2;
  --muted: #d7cbb9;
  --copper: #c77745;
  --sage: #7f9672;
  --line: rgba(247, 239, 226, 0.24);
  --shadow: rgba(0, 0, 0, 0.45);
  --font-logo: Georgia, "Times New Roman", serif;
  --font-body: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-image: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=82");
  --image-a: url("https://images.unsplash.com/photo-1551024709-8f23befc6f87?auto=format&fit=crop&w=1200&q=82");
  --image-b: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1200&q=82");
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.brand-word {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px clamp(20px, 3vw, 42px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.76), rgba(8, 8, 6, 0));
  backdrop-filter: blur(2px);
}

.mini-brand {
  position: absolute;
  left: 32px;
  display: none;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 4px;
  text-decoration: none;
}

.top-nav,
.bottom-nav,
.socials {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}

.top-nav a,
.bottom-nav a,
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.15vw, 16px);
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav a,
.bottom-nav a,
.socials a {
  text-shadow: 0 1px 20px var(--shadow);
}

.top-nav a:hover,
.bottom-nav a:hover,
.mobile-menu a:hover {
  color: var(--copper);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 26px;
  width: 52px;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  height: 5px;
  margin: 6px 0;
  background: var(--paper);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(8, 8, 6, 0.97);
  padding: 110px 34px 40px;
}

.mobile-menu nav {
  display: grid;
  gap: 22px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 92px 20px 108px;
  place-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 108px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 72% 48%, rgba(199, 119, 69, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: saturate(92%) contrast(98%);
}

.brand-lockup {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  row-gap: 0;
  width: min(760px, calc(100vw - 36px));
  text-align: center;
  text-shadow: 0 10px 46px rgba(0, 0, 0, 0.82);
}

.hero-controls {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 50%;
  bottom: auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-controls button {
  pointer-events: auto;
  position: relative;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-controls button:hover,
.hero-controls button:focus-visible {
  opacity: 1;
  outline: 0;
}

.hero-arrow {
  width: 58px;
  height: 74px;
}

.hero-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border-top: 2px solid rgba(247, 239, 226, 0.9);
  border-left: 2px solid rgba(247, 239, 226, 0.9);
  content: "";
}

.hero-arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.hero-arrow--next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.hero-controls .hero-pause {
  position: absolute;
  left: 50%;
  top: calc(50% + 310px);
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
}

.hero-pause::before,
.hero-pause::after {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(247, 239, 226, 0.9);
  content: "";
}

.hero-pause::before {
  left: 12px;
}

.hero-pause::after {
  right: 12px;
}

.hero-pause.is-paused::before {
  top: 7px;
  bottom: auto;
  left: 12px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid rgba(247, 239, 226, 0.9);
  background: transparent;
}

.hero-pause.is-paused::after {
  display: none;
}

.brand-lockup > p,
.brand-lockup > span {
  margin: 0;
  color: rgba(247, 239, 226, 0.82);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-lockup h1 {
  margin: clamp(8px, 0.8vw, 12px) 0 clamp(14px, 1.2vw, 20px);
  font-family: var(--font-logo);
  font-size: clamp(78px, 9.4vw, 150px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  justify-self: center;
  text-wrap: balance;
}

.brand-lockup h1 .brand-word {
  display: inline-block;
  color: inherit;
  font-family: var(--font-logo);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none !important;
}

.bottom-rail {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  align-items: center;
  min-height: 68px;
  padding: 14px clamp(18px, 2.5vw, 44px);
  border-top: 1px solid rgba(247, 239, 226, 0.22);
  background: #050504;
  animation: railReveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.socials {
  gap: 18px;
}

.socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.bottom-nav {
  justify-content: space-between;
  gap: clamp(10px, 1.1vw, 22px);
  width: 100%;
  min-width: 0;
}

.bottom-nav a {
  font-size: clamp(11px, 1vw, 15px);
}

.top-nav .brand-word,
.bottom-nav .brand-word {
  display: inline-block;
  font-size: 1.32em;
  line-height: 0.82;
  transform: translateY(0.04em);
  vertical-align: baseline;
}

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

.award-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.award-card {
  min-height: 310px;
  padding: 92px 52px;
  text-align: center;
}

.award-card + .award-card {
  border-left: 1px solid var(--line);
}

.award-card h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.1;
  text-transform: uppercase;
}

.award-card p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr) minmax(280px, 0.78fr);
  background: var(--night);
}

.photo-panel {
  min-height: 720px;
  background-position: center;
  background-size: cover;
}

.photo-panel-a {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 6, 0.25), rgba(8, 8, 6, 0.55)),
    var(--image-a);
}

.photo-panel-b {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 6, 0.2), rgba(8, 8, 6, 0.54)),
    var(--image-b);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.action-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.action-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.action-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.action-card p {
  margin: 0 0 26px;
  max-width: 320px;
  color: var(--muted);
  font-size: 18px;
}

.text-button,
.footer-reserve,
.signup-form button,
.modal-submit {
  max-width: 100%;
  min-height: 46px;
  border: 1px solid var(--copper);
  background: transparent;
  color: var(--paper);
  padding: 13px 24px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-button:hover,
.footer-reserve:hover,
.signup-form button:hover,
.modal-submit:hover {
  background: var(--copper);
  color: var(--ink);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 88px 7vw;
  background:
    linear-gradient(90deg, rgba(127, 150, 114, 0.16), transparent 55%),
    var(--ink);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-family: var(--font-accent);
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
}

.signup-section h2,
.modal-card h2 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.signup-form,
.modal-card {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.signup-form {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  align-items: end;
}

.signup-form > * {
  min-width: 0;
}

.signup-form button {
  justify-self: start;
  min-width: 180px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 239, 226, 0.34);
  border-radius: 0;
  background: rgba(247, 239, 226, 0.08);
  color: var(--paper);
  padding: 10px 12px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

select option {
  color: var(--ink);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--sage);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 68px;
  padding: 28px 36px;
  border-top: 1px solid var(--line);
  background: #050504;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  font-family: var(--font-display);
  letter-spacing: 6px;
}

.site-footer span {
  color: var(--muted);
}

.reservation-modal {
  width: min(720px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  padding: 0;
  overflow: auto;
}

.reservation-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  background: var(--night);
  padding: clamp(26px, 5vw, 36px);
  overflow: hidden;
}

.modal-close {
  justify-self: end;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: normal;
}

.subhero {
  position: relative;
  display: grid;
  min-height: 72svh;
  place-items: end start;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.9) 100%),
    var(--subhero-image);
  background-position: center;
  background-size: cover;
  padding: 128px 7vw 82px;
}

.subhero-copy {
  width: min(900px, 100%);
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.72);
}

.subhero h1,
.content-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.04;
  text-transform: uppercase;
}

.subhero h1 {
  font-size: clamp(48px, 6vw, 96px);
  max-width: min(100%, 12ch);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.subhero-copy > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.content-band {
  padding: 86px 7vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.content-band h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(34px, 4.4vw, 62px);
}

.content-band > p,
.split-band p,
.form-band p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

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

.inner-card-grid,
.menu-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.inner-card-grid article,
.menu-groups article {
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inner-card-grid h3,
.menu-groups h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.inner-card-grid p,
.menu-groups li,
.feature-list li {
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.menu-groups ul,
.feature-list {
  margin: 0;
  padding-left: 20px;
}

.menu-groups li + li,
.feature-list li + li {
  margin-top: 10px;
}

.form-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.inline-form {
  grid-template-columns: 1fr 1fr;
}

.inline-form label:nth-child(3) {
  grid-column: 1 / -1;
}

.inner-page .site-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .top-nav {
    display: none;
  }

  .mini-brand,
  .menu-toggle {
    display: block;
  }

  .bottom-rail {
    display: none;
  }

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

  .split-band,
  .form-band {
    grid-template-columns: 1fr;
  }

  .inner-card-grid,
  .menu-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-panel {
    min-height: 420px;
  }

  .card-grid {
    max-width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .signup-section {
    grid-template-columns: 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr 1fr;
  }

  .signup-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 86px;
    padding: 20px clamp(18px, 6vw, 28px);
  }

  .subhero {
    min-height: 64svh;
    padding: 108px clamp(18px, 6vw, 26px) 58px;
  }

  .subhero h1 {
    font-size: clamp(32px, 8.2vw, 42px);
    letter-spacing: 1px;
    max-width: 100%;
  }

  .content-band {
    padding: 64px clamp(18px, 6vw, 26px);
  }

  .content-band h2 {
    font-size: clamp(30px, 8.8vw, 34px);
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .inner-card-grid,
  .menu-groups,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .inner-card-grid article,
  .menu-groups article {
    min-height: 0;
    padding: 28px clamp(18px, 6vw, 24px);
  }

  .split-band img {
    min-height: 300px;
  }

  .mini-brand {
    display: none;
  }

  .menu-toggle {
    right: clamp(18px, 6vw, 24px);
    top: 24px;
  }

  .hero {
    min-height: 86svh;
    background-position: 58% center;
  }

  .hero-controls {
    left: 14px;
    right: 14px;
  }

  .hero-arrow {
    width: 44px;
    height: 60px;
  }

  .hero-arrow::before {
    width: 20px;
    height: 20px;
  }

  .hero-controls .hero-pause {
    top: calc(50% + 230px);
  }

  .brand-lockup {
    transform: none;
    width: min(340px, calc(100vw - 48px));
  }

  .brand-lockup > p,
  .brand-lockup > span {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .brand-lockup h1 {
    font-size: clamp(60px, 17vw, 86px);
    letter-spacing: 0;
  }

  .award-strip {
    grid-template-columns: 1fr;
  }

  .award-card {
    min-height: 250px;
    padding: 72px clamp(20px, 7vw, 28px);
  }

  .award-card + .award-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .award-card h2 {
    font-size: clamp(29px, 9vw, 34px);
    letter-spacing: clamp(1.5px, 0.8vw, 3px);
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .award-card p {
    font-size: 21px;
  }

  .photo-panel {
    max-width: 100%;
    min-height: 360px;
  }

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

  .action-card {
    max-width: 100%;
    min-height: 300px;
    padding: 38px clamp(18px, 6vw, 26px);
  }

  .action-card:nth-child(odd) {
    border-right: 0;
  }

  .signup-section {
    grid-template-columns: 1fr;
    padding: 72px clamp(18px, 6vw, 26px);
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding: clamp(20px, 6vw, 26px);
  }

  .reservation-modal {
    width: min(420px, calc(100vw - clamp(20px, 8vw, 32px)));
    max-height: calc(100svh - clamp(20px, 8vw, 32px));
  }

  .modal-card {
    padding: clamp(18px, 6vw, 26px);
  }

  .modal-card h2 {
    font-size: clamp(27px, 7.4vw, 38px);
    letter-spacing: clamp(1px, 0.45vw, 2px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .modal-close {
    font-size: 13px;
  }

  .modal-submit {
    justify-self: stretch;
    width: 100%;
  }
}

/* hide footer content only; keep bottom rail visible */
.site-footer > div,
.site-footer .footer-reserve { display: none; }
.bottom-rail { display: grid !important; }

.inline-contact-link {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-underline-offset: 0.18em;
}

.inline-contact-link:hover,
.inline-contact-link:focus-visible {
  color: var(--copper);
}
