:root {
  color-scheme: light;
  --ink: #17211d;
  --ink-soft: #3e4a43;
  --paper: #fffaf1;
  --paper-2: #f5efe3;
  --dark: #10201d;
  --dark-2: #172923;
  --amber: #d68635;
  --amber-2: #f1b15c;
  --green: #2f7f62;
  --green-2: #dbeadf;
  --coral: #c85c48;
  --line: rgba(23, 33, 29, 0.16);
  --line-light: rgba(255, 250, 241, 0.18);
  --shadow: 0 18px 50px rgba(16, 32, 29, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 186px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.header-call,
.btn,
.category-pills a,
.social-row a,
.text-link,
.link-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
}

.site-nav a {
  padding: 9px 13px;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--green-2);
}

.header-call {
  padding: 10px 16px;
  color: #fff;
  background: var(--dark);
}

.header-call:hover {
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section,
.hero,
.page-hero,
.legal-hero,
.legal-content {
  padding: 80px max(20px, calc((100vw - var(--max)) / 2));
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 134, 53, 0.18), transparent 32%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.section-muted {
  background: var(--paper-2);
}

.hero h1,
.page-hero h1,
.legal-hero h1 {
  margin: 8px 0 18px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 850;
}

.page-hero h1,
.legal-hero h1 {
  font-size: 3rem;
}

.section h2,
.contact-card h2,
.contact-form h2,
.legal-content h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.15;
}

.section h3,
.menu-item h3,
.feature-card h3,
.info-grid h3,
.site-footer h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.site-footer h2 {
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber-2);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.section:not(.section-dark) .eyebrow,
.legal-hero .eyebrow {
  color: var(--green);
}

.lead {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: 1.2rem;
  color: rgba(255, 250, 241, 0.88);
}

.hero-copy > p:not(.eyebrow),
.section p,
.legal-content p {
  color: var(--ink-soft);
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 250, 241, 0.86);
}

.section-dark .hero-copy > p:not(.eyebrow),
.section-dark .page-hero > p:not(.eyebrow),
.section-dark div > p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.86);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 1px solid transparent;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--coral);
}

.btn-primary:hover {
  background: #ad4837;
}

.btn-secondary {
  color: var(--dark);
  background: var(--amber-2);
}

.btn-secondary:hover {
  background: #e3a14c;
}

.btn-ghost {
  color: var(--paper);
  border-color: var(--line-light);
  background: rgba(255, 250, 241, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 250, 241, 0.14);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.hero-facts li {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts span {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.93rem;
}

.image-frame,
.card-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: #20342d;
  box-shadow: var(--shadow);
}

.image-frame img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image,
.page-hero-image {
  aspect-ratio: 4 / 3;
}

.split,
.page-hero,
.contact-band,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}

.about-section {
  background: linear-gradient(90deg, var(--paper), #fff);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.feature-grid,
.info-grid,
.amenity-grid,
.menu-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.info-grid article,
.contact-card,
.contact-form,
.menu-item,
.legal-box,
.menu-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.88);
}

.feature-card {
  min-height: 380px;
  overflow: hidden;
}

.feature-card > div {
  padding: 18px;
}

.card-image {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
}

.centered-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

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

.amenity-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 750;
}

.contact-band {
  background: var(--green-2);
}

.contact-card,
.contact-form {
  padding: 24px;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
}

.text-link,
.link-button {
  color: var(--green);
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link:hover,
.link-button:hover {
  color: var(--coral);
}

.page-hero {
  min-height: 540px;
}

.menu-tools {
  padding-bottom: 34px;
}

.search-label {
  display: block;
  font-weight: 850;
  margin: 22px 0 8px;
}

.menu-search {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-pills a {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.category-pills a:hover {
  border-color: var(--green);
  color: var(--green);
}

.menu-list {
  padding-top: 24px;
}

.menu-category {
  scroll-margin-top: 100px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.menu-category:first-child {
  border-top: 0;
}

.menu-category-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.menu-category-head h2 {
  margin: 0;
}

.menu-category-head p {
  max-width: 520px;
  margin: 0;
}

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

.menu-item {
  min-height: 128px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.menu-item p {
  margin: 0;
  color: var(--ink-soft);
}

.price {
  flex: 0 0 auto;
  align-self: flex-start;
  min-width: 74px;
  padding: 6px 9px;
  border-radius: var(--radius);
  color: var(--dark);
  background: var(--amber-2);
  text-align: center;
  font-weight: 850;
}

.menu-note {
  margin-top: 34px;
  padding: 18px;
  background: var(--green-2);
}

.contact-layout {
  align-items: start;
  grid-template-columns: 0.9fr 0.8fr 1.1fr;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--green);
  border: 1px solid currentColor;
}

.social-row a:hover {
  color: var(--coral);
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 12px 0;
  font-weight: 750;
}

.form-status.is-error {
  color: #9f3129;
}

.form-status.is-ok {
  color: var(--green);
}

.small-note {
  font-size: 0.92rem;
}

.legal-hero {
  background: var(--green-2);
}

.legal-hero p {
  max-width: 760px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 34px;
}

.legal-box {
  padding: 20px;
  background: #fff;
}

.site-footer {
  color: var(--paper);
  background: var(--dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.8fr;
  gap: 28px;
  padding: 58px max(20px, calc((100vw - var(--max)) / 2));
}

.site-footer p,
.site-footer li,
.site-footer span {
  color: rgba(255, 250, 241, 0.78);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  display: inline-flex;
  padding: 4px 0;
  color: rgba(255, 250, 241, 0.84);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--amber-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-light);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  color: var(--paper);
  background: var(--dark);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0 0 14px;
}

.mobile-sticky {
  display: none;
}

[data-menu-item][hidden],
[data-menu-section][hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .header-call {
    justify-self: end;
  }

  .hero,
  .page-hero,
  .split,
  .contact-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .feature-grid,
  .amenity-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    align-items: stretch;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 158px;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .section,
  .hero,
  .page-hero,
  .legal-hero,
  .legal-content {
    padding: 54px 16px;
  }

  .hero h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 2.55rem;
  }

  .section h2,
  .contact-card h2,
  .contact-form h2,
  .legal-content h2 {
    font-size: 1.65rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-facts,
  .feature-grid,
  .amenity-grid,
  .menu-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .menu-category-head,
  .menu-item,
  .footer-bottom {
    display: block;
  }

  .menu-item > div {
    margin-bottom: 12px;
  }

  .price {
    display: inline-flex;
  }

  .cta-row,
  .centered-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .centered-actions .btn {
    width: 100%;
  }

  .hours-list div {
    align-items: baseline;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
  }

  .mobile-sticky a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--paper);
    text-decoration: none;
    font-weight: 850;
  }
}

@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;
  }
}
