@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap");

:root {
  --ink: #0b0c0e;
  --slate: #141618;
  --char: #1c1e21;
  --hairline: #23262a;
  --bone: #f4f1ea;
  --fog: #9aa0a6;
  --mist: #c6cad0;
  --lichen: #a7e0c2;
  --moss: #4d6b5b;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

ul {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 1px solid var(--lichen);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--bone);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-bar {
  border-bottom: 1px solid var(--hairline);
  color: var(--fog);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px var(--gutter);
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 12, 14, 0.92);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-width: 132px;
}

.brand img,
.footer-logo {
  width: 100%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.site-menu a:not(.nav-cta) {
  padding-block: 10px;
}

.site-menu a:hover {
  color: var(--bone);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta {
  background: var(--bone);
  color: var(--ink);
  padding: 12px 18px;
}

.button {
  padding: 13px 22px;
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--bone);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--hairline);
  color: var(--bone);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--fog);
  background: var(--char);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  color: var(--bone);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin-inline: auto;
  content: "";
}

.menu-toggle__line::before {
  transform: translateY(-6px);
}

.menu-toggle__line::after {
  transform: translateY(5px);
}

.section-rule {
  border-bottom: 1px solid var(--hairline);
}

.hero {
  min-height: calc(100svh - 115px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}

.hero-copy {
  max-width: 780px;
}

.kicker,
.card-label,
.fact span,
.event-panel span,
.route-ledger span,
.contact-rail span {
  color: var(--lichen);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(3.45rem, 9.2vw, 7.6rem);
}

h2 {
  font-size: clamp(2.5rem, 5.9vw, 5.05rem);
}

h3 {
  color: var(--bone);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 600;
}

.hero-lede,
.section-heading p,
.restaurant-copy > p,
.owner-grid p {
  max-width: 66ch;
  margin-top: 24px;
  color: var(--mist);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media,
.restaurant-media,
.gallery-item,
.room-card {
  background: var(--slate);
  border: 1px solid var(--hairline);
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-media img,
.restaurant-media img,
.gallery-item img,
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(11, 12, 14, 0.82);
  border: 1px solid rgba(244, 241, 234, 0.14);
  color: var(--fog);
  font-size: 12px;
}

.media-caption strong {
  color: var(--bone);
  font-family: var(--mono);
  font-size: 12px;
}

.contact-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline);
}

.contact-rail a,
.fact,
.route-ledger div,
.menu-panel a {
  transition: background-color 160ms ease, border-color 160ms ease;
}

.contact-rail a {
  padding: 22px;
  border-right: 1px solid var(--hairline);
  color: var(--mist);
}

.contact-rail a:last-child {
  border-right: 0;
}

.contact-rail a:hover,
.menu-panel a:hover {
  background: var(--char);
}

.contact-rail span {
  display: block;
  margin-bottom: 8px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 188px;
  padding: 28px;
  border-left: 1px solid var(--hairline);
}

.fact:last-child {
  border-right: 1px solid var(--hairline);
}

.fact strong {
  display: block;
  margin-top: 14px;
  color: var(--bone);
  font-size: 20px;
  line-height: 1.2;
}

.fact p,
.room-card p,
.room-list li,
.event-panel p,
.route-ledger p,
.site-footer p {
  color: var(--fog);
}

.fact p {
  margin-top: 12px;
}

.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 38px;
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 62px);
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 740px;
}

.section-heading p {
  margin-top: 0;
}

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

.room-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card img {
  aspect-ratio: 1.24 / 1;
}

.room-card div {
  padding: 24px;
}

.room-card h3 {
  margin-top: 10px;
}

.room-card p:last-child {
  margin-top: 12px;
}

.featured-room {
  grid-row: span 2;
}

.featured-room img {
  aspect-ratio: 1 / 1.2;
}

.room-list {
  grid-column: span 2;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, rgba(77, 107, 91, 0.18), rgba(20, 22, 24, 0.68));
}

.room-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 22px;
  list-style: none;
}

.room-list li {
  position: relative;
  padding-left: 18px;
}

.room-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--lichen);
  border-radius: 999px;
  content: "";
}

.restaurant {
  background: var(--slate);
}

.restaurant-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 20px;
}

.restaurant-copy,
.menu-panel,
.location-card,
.owner-grid {
  border: 1px solid var(--hairline);
  background: var(--ink);
}

.restaurant-copy {
  padding: clamp(30px, 6vw, 58px);
}

.restaurant-copy h2 {
  margin-top: 16px;
}

.restaurant-media {
  min-height: 520px;
  overflow: hidden;
}

.event-panel {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.event-panel strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 500;
}

.menu-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr) auto;
  align-items: center;
}

.menu-panel h3,
.menu-panel a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--hairline);
}

.menu-panel h3 {
  font-size: 18px;
}

.menu-panel a {
  color: var(--mist);
  font-size: 14px;
  font-weight: 600;
}

.menu-panel .button {
  min-height: 44px;
  margin: 16px;
  white-space: nowrap;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
}

.location-card {
  padding: clamp(28px, 5vw, 52px);
}

.location-card h2 {
  margin-top: 14px;
}

address {
  margin-top: 26px;
  color: var(--mist);
  font-style: normal;
  font-size: 18px;
  line-height: 1.65;
}

.route-ledger {
  border: 1px solid var(--hairline);
}

.route-ledger div {
  min-height: 33.333%;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--hairline);
}

.route-ledger div:last-child {
  border-bottom: 0;
}

.route-ledger p {
  max-width: 70ch;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.owner-cta {
  padding: clamp(56px, 8vw, 88px) 0;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.owner-grid h2 {
  margin-top: 14px;
}

.owner-grid .button {
  white-space: nowrap;
}

.site-footer {
  padding: 44px 0;
  background: var(--slate);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.7fr;
  gap: 36px;
}

.footer-logo {
  width: 132px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: table;
  margin-top: 8px;
  color: var(--mist);
}

.site-footer a:hover {
  color: var(--bone);
}

@media (max-width: 1100px) {
  .hero-grid,
  .restaurant-grid,
  .location-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .fact-grid,
  .room-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-room,
  .room-list {
    grid-column: span 2;
    grid-row: auto;
  }

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

  .menu-panel h3,
  .menu-panel a {
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 760px) {
  .concept-bar {
    font-size: 10px;
    line-height: 1.4;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    width: 126px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-menu {
    position: fixed;
    top: calc(68px + 31px);
    left: var(--gutter);
    right: var(--gutter);
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--slate);
    border: 1px solid var(--hairline);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-menu a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--hairline);
  }

  .site-menu a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 0;
    padding: 54px 0;
  }

  .hero-lede,
  .section-heading p,
  .restaurant-copy > p,
  .owner-grid p {
    font-size: 16px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .contact-rail,
  .fact-grid,
  .room-layout,
  .room-list ul,
  .gallery-grid,
  .owner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-rail a,
  .fact,
  .fact:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .contact-rail a:last-child,
  .fact:last-child {
    border-bottom: 0;
  }

  .fact {
    min-height: auto;
    padding: 24px 0;
  }

  .featured-room,
  .room-list,
  .gallery-item.wide {
    grid-column: auto;
  }

  .restaurant-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .menu-panel h3,
  .menu-panel a {
    border-right: 0;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    aspect-ratio: 4 / 3;
    grid-row: auto;
  }

  .owner-grid .button {
    white-space: normal;
  }
}

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