:root {
  --ink: #203946;
  --ink-deep: #132c38;
  --paper: #f3eee5;
  --paper-soft: #fbf8f2;
  --paper-muted: #e9e1d6;
  --terracotta: #8d6752;
  --terracotta-dark: #74513f;
  --gold: #9d8359;
  --line: rgba(19, 44, 56, .16);
  --line-light: rgba(250, 247, 240, .18);
  --serif: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1200px, calc(100vw - 56px));
  --section-space: clamp(88px, 9vw, 142px);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--terracotta);
  color: #fff;
}

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

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper-soft);
  color: var(--ink-deep);
  box-shadow: 0 8px 24px rgba(19, 44, 56, .14);
  text-decoration: none;
  transition: top .2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  padding: 10px max(28px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  background: rgba(251, 248, 242, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-name {
  width: fit-content;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.site-name strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.site-name small {
  margin-top: 7px;
  color: rgba(32, 57, 70, .66);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
}

.desktop-nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  justify-self: end;
  padding-inline: 5px;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: clamp(650px, calc(100svh - var(--header-height)), 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  grid-template-rows: 1fr auto;
  background: var(--paper);
  overflow: hidden;
}

.hero-copy.shell {
  width: min(620px, calc(100% - 56px));
  margin-inline: auto;
  padding-block: clamp(68px, 8vw, 116px) clamp(54px, 7vw, 86px);
  align-self: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--terracotta-dark);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: grid;
  gap: 4px;
}

.hero-eyebrow span:first-child {
  color: var(--ink-deep);
}

.hero-eyebrow span:last-child {
  color: var(--terracotta-dark);
  font-size: .64rem;
}

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

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.4vw, 5.8rem);
  letter-spacing: -.045em;
}

.hero h1 em {
  color: var(--ink);
  font-weight: 400;
}

.hero-intro {
  max-width: 510px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.35vw, 1.23rem);
  line-height: 1.7;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: 44px;
  min-height: 50px;
  padding: 15px 22px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .115em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-light {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover,
.button-light:hover {
  background: var(--ink-deep);
}

.button-quiet {
  border-color: rgba(19, 44, 56, .24);
}

.button-quiet:hover {
  border-color: var(--ink);
}

.hero-portrait {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 0;
  margin: 0;
  background: var(--ink-deep);
  isolation: isolate;
}

.hero-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 25, 36, .46));
  content: "";
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-portrait figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
}

.hero-aside {
  min-height: 60px;
  padding-inline: max(28px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.greek-name {
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
}

.dot {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--terracotta);
}

.facts {
  background: var(--paper-muted);
  border-block: 1px solid var(--line);
}

.facts-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-grid > div {
  padding: 28px clamp(22px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.facts-grid > div:first-child {
  padding-left: 0;
}

.facts-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.facts span {
  color: rgba(32, 57, 70, .68);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.facts strong {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 400;
  line-height: 1.05;
}

.section {
  padding-block: var(--section-space);
}

.section-heading h2,
.visit h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.85rem, 5vw, 5.15rem);
  letter-spacing: -.045em;
}

.restaurant {
  background: var(--paper-soft);
}

.restaurant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(50px, 8vw, 112px);
}

.restaurant-copy {
  padding-top: 42px;
}

.lead {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.42;
}

.restaurant-copy > p:not(.lead) {
  max-width: 590px;
  color: rgba(19, 44, 56, .78);
}

.origin-note {
  margin-top: 30px;
  padding: 24px 0 0 36px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.58;
}

.origin-note span {
  display: block;
  margin: 0 0 5px -36px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .2em;
}

.takeaway {
  margin-top: 32px;
  color: var(--ink) !important;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.takeaway span {
  margin-right: 9px;
  color: var(--gold);
}

.menu-panel {
  position: relative;
  grid-column: 1 / -1;
  margin-top: clamp(6px, 2vw, 24px);
  padding: clamp(42px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: minmax(260px, .98fr) minmax(300px, 1.02fr);
  gap: 26px clamp(45px, 7vw, 96px);
  align-items: end;
  background: var(--paper);
  border-block: 1px solid var(--ink);
  isolation: isolate;
}

.menu-panel::before {
  position: absolute;
  top: 0;
  right: clamp(28px, 5vw, 70px);
  width: 1px;
  height: 36px;
  background: var(--gold);
  content: "";
}

.menu-kicker {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: var(--terracotta-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.menu-panel h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -.035em;
}

.menu-panel ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.menu-panel li {
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.story {
  background: var(--paper);
}

.story-heading {
  margin-bottom: clamp(50px, 6vw, 78px);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.portrait {
  width: min(100%, 420px);
  margin: 0;
}

.portrait img {
  width: 100%;
  height: clamp(420px, 43vw, 560px);
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.035);
}

.portrait figcaption {
  min-height: 48px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--ink);
  font-size: .64rem;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.portrait figcaption strong {
  font-weight: 700;
}

.portrait figcaption span {
  color: rgba(19, 44, 56, .6);
  text-align: right;
}

.story-text {
  max-width: 660px;
  padding-right: clamp(0px, 3vw, 36px);
}

.story-number {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
  line-height: .9;
}

.story-number::after {
  width: min(120px, 20%);
  height: 1px;
  background: var(--gold);
  content: "";
}

.story-text p:not(.story-number) {
  max-width: 58ch;
  margin-bottom: 22px;
  color: rgba(19, 44, 56, .82);
  font-size: clamp(1.04rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.pension {
  background: var(--paper-soft);
}

.pension-intro {
  margin-bottom: clamp(48px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: end;
}

.room-features {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.room-features li {
  min-height: 40px;
  padding: 9px 14px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1.52fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.room-gallery figure {
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-muted);
}

.room-gallery .room-main {
  grid-row: 1 / span 2;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.room-gallery figure:hover img {
  transform: scale(1.02);
}

.booking-band {
  min-height: 172px;
  padding: 36px clamp(28px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--paper-muted);
  border-bottom: 1px solid var(--line);
}

.booking-band .eyebrow {
  margin-bottom: 10px;
}

.booking-band h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
}

.button-outline-light {
  border-color: rgba(19, 44, 56, .35);
  color: var(--ink);
}

.button-outline-light:hover {
  border-color: var(--ink);
}

.visit {
  padding-block: clamp(88px, 9vw, 136px);
  background: var(--ink-deep);
  color: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(390px, .95fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.visit-intro {
  grid-row: 1 / span 2;
  padding-right: clamp(28px, 7vw, 105px);
  align-self: center;
}

.visit .eyebrow {
  color: #c8ac7e;
}

.visit h2 {
  color: #fff;
}

.visit-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 34px;
  color: rgba(246, 240, 229, .72);
}

.visit-card {
  padding: clamp(30px, 3.8vw, 46px);
  border: 1px solid var(--line-light);
}

.card-label {
  margin-bottom: 24px;
  color: #c8ac7e;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hours {
  margin: 0;
}

.hours > div {
  padding-block: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  border-top: 1px solid rgba(246, 240, 229, .14);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(246, 240, 229, .7);
  font-size: .78rem;
}

.hours dd {
  text-align: right;
  font-family: var(--serif);
}

.hours .closed dd {
  color: #c8ac7e;
}

.contact-card address {
  margin-bottom: 24px;
  color: rgba(246, 240, 229, .74);
  font-style: normal;
}

.contact-card address strong {
  color: #fff;
}

.contact-links {
  display: grid;
}

.contact-links a {
  min-height: 50px;
  padding-block: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(246, 240, 229, .14);
  text-decoration: none;
}

.contact-links span {
  color: rgba(246, 240, 229, .58);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-links strong {
  min-width: 0;
  font-size: .84rem;
  text-align: right;
  overflow-wrap: anywhere;
}

.site-footer {
  padding-block: 50px 26px;
  background: #081d29;
  color: var(--paper);
}

.footer-top {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(246, 240, 229, .12);
}

.footer-top > p {
  margin: 0;
  color: rgba(246, 240, 229, .62);
  font-family: var(--serif);
  text-align: center;
}

.footer-name {
  display: flex;
  flex-direction: column;
  text-align: left !important;
}

.footer-name strong {
  color: var(--paper);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-name small {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  font-family: var(--serif);
  font-size: 1.36rem;
  text-decoration: none;
}

.legal {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: flex-start;
  color: rgba(246, 240, 229, .55);
  font-size: .68rem;
  letter-spacing: .04em;
}

.legal details {
  max-width: 460px;
}

.legal summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: rgba(246, 240, 229, .78);
  font-weight: 700;
  list-style-position: inside;
  text-transform: uppercase;
}

.legal details div {
  padding: 8px 0 10px;
  line-height: 1.65;
  letter-spacing: 0;
}

.legal details p:last-child {
  margin-bottom: 0;
}

.legal a {
  overflow-wrap: anywhere;
}

.legal details a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.legal > span {
  margin: 12px 0 0 auto;
}

.mobile-actions {
  display: none;
}

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

  .desktop-nav,
  .header-call {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    width: 100%;
    height: 1px;
    margin-top: -10px;
    background: var(--ink);
    content: "";
    transform: scaleX(.72);
    transition: transform .2s ease;
  }

  .mobile-menu[open] summary::after {
    transform: scaleX(1);
  }

  .mobile-menu nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 18px max(28px, calc((100vw - 1200px) / 2)) 24px;
    display: grid;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(13, 39, 56, .1);
  }

  .mobile-menu nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.18rem;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  }

  .hero-copy.shell {
    width: min(560px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.2vw, 4.8rem);
  }

  .story-layout {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 40px, 1200px);
    --section-space: clamp(76px, 12vw, 108px);
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .mobile-menu nav {
    padding-inline: 20px;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-copy.shell {
    order: 1;
    width: var(--shell);
    padding-block: clamp(54px, 9vw, 76px) clamp(48px, 8vw, 66px);
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(3.1rem, 8.5vw, 4.5rem);
  }

  .hero-portrait {
    order: 2;
    width: 100%;
    height: clamp(300px, 44vw, 380px);
  }

  .hero-portrait img {
    object-position: 55% 43%;
  }

  .hero-aside {
    order: 3;
    min-height: 58px;
    padding-inline: 20px;
  }

  .restaurant-grid,
  .pension-intro,
  .visit-grid {
    display: block;
  }

  .restaurant-copy {
    max-width: 650px;
  }

  .story-layout {
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    gap: 46px;
  }

  .portrait img {
    height: clamp(390px, 58vw, 500px);
  }

  .pension-intro > div:last-child {
    max-width: 650px;
    margin-top: 36px;
  }

  .room-gallery {
    grid-template-rows: 290px 190px;
  }

  .room-gallery .room-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .room-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .room-gallery figure {
    min-height: 0;
  }

  .booking-band {
    display: block;
  }

  .booking-actions {
    margin-top: 26px;
  }

  .visit-intro {
    margin-bottom: 48px;
    padding-right: 0;
  }

  .visit-card + .visit-card {
    margin-top: 16px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1200px);
    --header-height: 70px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-name strong {
    font-size: .92rem;
  }

  .site-name small {
    font-size: .52rem;
  }

  .mobile-menu nav {
    padding: 14px 16px 20px;
  }

  .hero-copy.shell {
    padding-block: 50px 48px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: .62rem;
    letter-spacing: .16em;
  }

  .hero-eyebrow span:last-child {
    font-size: .58rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    line-height: .98;
  }

  .hero-intro {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 13px;
    font-size: .66rem;
    letter-spacing: .09em;
  }

  .hero-portrait {
    height: clamp(270px, 76vw, 350px);
  }

  .hero-portrait figcaption {
    right: 18px;
    bottom: 16px;
    font-size: .86rem;
  }

  .hero-aside {
    min-height: 62px;
    padding-block: 12px;
    padding-inline: 16px;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: .56rem;
    line-height: 1.35;
  }

  .facts-grid {
    min-height: 106px;
  }

  .facts-grid > div,
  .facts-grid > div:first-child,
  .facts-grid > div:last-child {
    min-width: 0;
    padding: 20px 10px;
    border-right: 1px solid var(--line);
  }

  .facts-grid > div:first-child {
    padding-left: 0;
  }

  .facts-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .facts span {
    font-size: .52rem;
    letter-spacing: .09em;
  }

  .facts strong {
    font-size: clamp(1rem, 4.7vw, 1.3rem);
    line-height: 1.12;
  }

  .section-heading h2,
  .visit h2 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
    line-height: 1.02;
  }

  .restaurant-copy {
    padding-top: 34px;
  }

  .origin-note {
    padding-left: 24px;
  }

  .origin-note span {
    margin-left: -24px;
  }

  .menu-panel {
    margin-top: 44px;
    padding: 38px 24px;
    display: block;
  }

  .menu-kicker {
    margin-bottom: 24px;
  }

  .menu-panel h3 {
    margin-bottom: 30px;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .story-heading {
    margin-bottom: 38px;
  }

  .story-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .portrait {
    width: min(100%, 430px);
  }

  .portrait img {
    height: clamp(310px, 92vw, 400px);
    object-position: 50% 17%;
  }

  .story-text {
    max-width: 620px;
    padding: 0;
  }

  .story-number {
    margin-bottom: 26px;
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .story-text p:not(.story-number) {
    font-size: 1.04rem;
    line-height: 1.78;
  }

  .room-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 270px 165px;
    gap: 8px;
  }

  .booking-band {
    padding: 34px 22px;
  }

  .booking-actions {
    display: grid;
  }

  .booking-actions .button {
    width: 100%;
  }

  .visit-card {
    padding: 28px 22px;
  }

  .hours > div {
    gap: 12px;
  }

  .hours dt {
    font-size: .76rem;
  }

  .contact-links a {
    min-height: 58px;
    display: grid;
    gap: 2px;
  }

  .contact-links strong {
    text-align: left;
  }

  .footer-top {
    padding-bottom: 32px;
    display: block;
  }

  .footer-top > p {
    margin: 24px 0;
    text-align: left;
  }

  .footer-name {
    margin-top: 0 !important;
  }

  .footer-phone {
    justify-self: start;
  }

  .legal {
    display: grid;
    gap: 2px;
  }

  .legal details {
    max-width: 100%;
  }

  .legal summary {
    width: 100%;
  }

  .legal > span {
    margin: 12px 0 0;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 -8px 28px rgba(13, 39, 56, .18);
  }

  .mobile-actions a {
    min-height: 64px;
    display: grid;
    place-items: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, .32);
  }
}

@media (max-width: 390px) {
  .site-name small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.8vw, 3.35rem);
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 48px;
    font-size: .61rem;
  }

  .room-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .room-gallery .room-main {
    grid-column: auto;
  }

  .hours > div {
    grid-template-columns: minmax(0, 1fr) minmax(94px, auto);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
