:root {
  --ink: #1a1510;
  --muted: #6b6055;
  --paper: #fbf4e6;
  --paper-2: #fff9ec;
  --panel: #fffaf1;
  --line: #ead9be;
  --line-soft: #f2e7d2;
  --sea: #0f333d;
  --sea-deep: #082129;
  --sea-soft: #d8e6e4;
  --tomato: #b23a24;
  --ember: #d9542b;
  --gold: #c9994a;
  --cream: #f6e4c0;
  --sand: #f2e0bd;
  --shadow-lg: 0 34px 90px -30px rgba(24, 16, 8, .35);
  --shadow-md: 0 18px 48px -18px rgba(24, 16, 8, .25);
  --shadow-sm: 0 8px 22px -12px rgba(24, 16, 8, .22);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 92% -5%, rgba(15, 51, 61, .12), transparent 62%),
    radial-gradient(700px 400px at -5% 22%, rgba(217, 84, 43, .06), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper-2) 48%, #f7e9cf);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}
::selection {
  background: var(--sea);
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: 6px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(251, 244, 230, .82);
  border-bottom: 1px solid rgba(234, 217, 190, .7);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(251, 244, 230, .94);
  box-shadow: 0 10px 24px -18px rgba(24, 16, 8, .3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sea);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(180deg, #fffcf5, #fff2d9);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .55), 0 1px 0 rgba(0, 0, 0, .02);
}
.brand-mark svg {
  width: 18px;
  height: 18px;
}
.brand-text strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.005em;
}
.brand-text small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.nav-links a {
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav-links a:hover {
  color: var(--tomato);
}
.nav-links .nav-call {
  padding: 9px 16px;
  color: #fff;
  background: var(--sea);
  border-radius: var(--radius-pill);
  font-variant-numeric: tabular-nums;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-links .nav-call:hover {
  color: #fff;
  background: var(--sea-deep);
  transform: translateY(-1px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 8vw, 100px) clamp(20px, 5vw, 70px) 70px;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--tomato);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-rule {
  display: inline-block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: .75;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 {
  max-width: 760px;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: .96;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sea);
}
h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  font-variation-settings: "opsz" 96;
}
h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.button .btn-ico {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.button.primary {
  color: #fff;
  background: var(--sea);
  box-shadow: 0 12px 28px -10px rgba(15, 51, 61, .5), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.button.primary:hover {
  background: var(--sea-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -12px rgba(15, 51, 61, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.button.secondary {
  color: var(--sea);
  background: #fffaf3;
  border-color: var(--line);
}
.button.secondary:hover {
  border-color: var(--sea);
  background: #fff;
  transform: translateY(-1px);
}
.button.ghost {
  color: var(--sea);
  background: transparent;
  padding: 0 8px;
  min-height: 44px;
  border-radius: 6px;
}
.button.ghost:hover {
  color: var(--tomato);
}
.button.light {
  color: var(--sea);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.button.light:hover {
  background: var(--paper-2);
  transform: translateY(-1px);
}
.button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.button.outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
}
.button.compact {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12.5px;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 36px;
}
.quick-facts div,
.menu-card,
.hours-card {
  background: rgba(255, 250, 243, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}
.quick-facts div {
  padding: 14px 16px;
}
.quick-facts span,
.menu-card span,
.hours-card span {
  display: block;
  color: var(--tomato);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quick-facts strong {
  display: block;
  margin-top: 6px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.005em;
}
.hero-media {
  margin: 0;
  align-self: stretch;
}
.hero-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  width: 100%;
  height: min(72vh, 700px);
  object-fit: cover;
  border-radius: var(--radius);
  transform: scale(1);
  transition: transform 1.2s var(--ease);
}
.hero-media:hover img {
  transform: scale(1.02);
}
.hero-media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  color: var(--sea);
  background: rgba(255, 250, 243, .94);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.hero-media figcaption,
footer p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: "Fraunces", Georgia, serif;
  font-size: 14.5px;
  font-style: italic;
  font-weight: 500;
}
.notice-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(20px, 5vw, 70px);
  padding: 22px 28px;
  color: #fff;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(217, 84, 43, .28), transparent 60%),
    var(--sea);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.notice-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notice-band strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.notice-band span {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.5;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 110px);
  padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 70px);
}
.section-heading p,
.story-copy p,
.menu-section .section-heading p {
  color: var(--muted);
}
.section-heading p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.55;
}
.story-copy {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
}
.story-copy p:first-child {
  margin-top: 0;
}
.menu-section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 70px);
  background: linear-gradient(180deg, transparent, rgba(255, 250, 243, .5) 30%, rgba(255, 250, 243, .8));
}
.section-heading.compact {
  max-width: 800px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.menu-card {
  position: relative;
  min-height: 230px;
  padding: 28px 24px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 58, 36, .3);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, .5);
}
.menu-card span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--tomato);
}
.menu-card h3 {
  margin-top: 18px;
}
.menu-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 70px);
}
.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.gallery img {
  width: 100%;
  height: clamp(260px, 36vw, 520px);
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s var(--ease);
}
.gallery figure:first-child img {
  height: clamp(340px, 46vw, 620px);
}
.gallery figure:hover img {
  transform: scale(1.04);
}
.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(15, 51, 61, .78);
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hours {
  background: linear-gradient(180deg, var(--cream), #fff8ec);
}
.hours-card {
  padding: 6px 4px;
}
.hours-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--line);
}
.hours-card div:last-child {
  border-bottom: 0;
}
.hours-card span {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.hours-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.visit {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 24px;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 70px);
}
.visit-card {
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(400px 260px at 100% 0%, rgba(201, 153, 74, .22), transparent 65%),
    var(--sea);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.visit-card .eyebrow {
  color: var(--gold);
}
.visit-card h2 {
  margin-top: 4px;
  color: #fff;
}
.visit-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, .84);
}
.visit-card .address {
  margin-top: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}
.map-panel {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(340px 220px at 30% 30%, rgba(216, 230, 228, .5), transparent 60%),
    linear-gradient(135deg, transparent 47%, rgba(15, 51, 61, .10) 48%, rgba(15, 51, 61, .10) 52%, transparent 53%),
    linear-gradient(45deg, transparent 47%, rgba(15, 51, 61, .07) 48%, rgba(15, 51, 61, .07) 52%, transparent 53%),
    #fffaf3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.map-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.map-panel .map-pin {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  color: var(--tomato);
}
.map-panel span,
.map-panel small {
  color: var(--tomato);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.map-panel small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .14em;
}
.map-panel strong {
  color: var(--sea);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.02em;
}
footer {
  padding: 28px clamp(20px, 5vw, 70px) 92px;
  border-top: 1px solid var(--line);
}
.mobile-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 250, 243, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px -10px rgba(24, 16, 8, .28);
}
.mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  color: #fff;
  background: var(--sea);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s var(--ease);
}
.mobile-actions a:active {
  background: var(--sea-deep);
}
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 980px) {
  .hero,
  .section-grid,
  .visit {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: clamp(28px, 6vw, 60px);
  }
  .hero-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery figure:first-child {
    grid-column: 1 / -1;
  }
  .gallery figure:first-child img {
    height: clamp(280px, 46vw, 460px);
  }
  .notice-band {
    padding: 20px 22px;
  }
}
@media (max-width: 640px) {
  .topbar {
    min-height: 60px;
    padding: 10px 16px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links a:not(.nav-call) {
    display: none;
  }
  .nav-links .nav-call {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .brand-text strong {
    font-size: 18px;
  }
  .brand-text small {
    font-size: 9.5px;
  }
  .hero {
    padding: 24px 18px 48px;
    gap: 30px;
  }
  h1 {
    font-size: clamp(42px, 11vw, 56px);
    line-height: .98;
  }
  h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .lead {
    margin-top: 20px;
    font-size: 16px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }
  .button {
    width: 100%;
    min-height: 50px;
  }
  .button.ghost {
    width: auto;
    margin: 4px auto 0;
  }
  .quick-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
  }
  .hero-media img {
    height: auto;
    aspect-ratio: 5 / 4;
  }
  .hero-media-badge {
    left: 12px;
    bottom: 12px;
    padding: 6px 12px;
    font-size: 10px;
  }
  .notice-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0 16px;
    padding: 22px;
  }
  .notice-band .button.light {
    width: 100%;
  }
  .section-grid,
  .menu-section,
  .gallery,
  .visit {
    padding: 56px 18px;
  }
  .section-grid {
    gap: 26px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .menu-card {
    min-height: 0;
    padding: 22px;
  }
  .menu-card h3 {
    margin-top: 14px;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery figure:first-child {
    grid-column: auto;
  }
  .gallery img,
  .gallery figure:first-child img {
    height: auto;
    aspect-ratio: 5 / 4;
  }
  .hours-card div {
    padding: 14px 18px;
  }
  .hours-card strong {
    font-size: 19px;
  }
  .visit {
    gap: 18px;
  }
  .visit-card .address {
    font-size: 17px;
  }
  .map-panel {
    min-height: 220px;
    padding: 32px 24px;
  }
  .map-panel .map-pin {
    width: 32px;
    height: 32px;
  }
  .mobile-actions {
    display: grid;
  }
  footer {
    padding-bottom: 96px;
  }
  footer p {
    font-size: 13px;
  }
}
