:root {
  --ink: #171411;
  --charcoal: #211d1a;
  --night: #09120f;
  --forest: #12261f;
  --wine: #5a1825;
  --brass: #b98f4b;
  --ivory: #f7f0e5;
  --paper: #fbf7ef;
  --muted: #9f9383;
  --line: rgba(185, 143, 75, 0.28);
  --shadow: 0 24px 80px rgba(9, 18, 15, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: rgba(9, 18, 15, 0.78);
  border-bottom: 1px solid rgba(247, 240, 229, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: sticky;
  background: rgba(9, 18, 15, 0.92);
  border-bottom: 1px solid rgba(185, 143, 75, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 15px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.brand small {
  color: rgba(247, 240, 229, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(247, 240, 229, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  padding: 10px 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.36);
}

.header-action,
.as-button {
  justify-self: end;
  border: 1px solid rgba(185, 143, 75, 0.8);
  padding: 11px 18px;
  color: var(--ivory);
  background: rgba(185, 143, 75, 0.22);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
}

.editorial-hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--night);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-9%, -11%) scale(1.08);
  filter: brightness(1.18) saturate(1.08) contrast(1.02);
}

.hero-food-spot {
  position: absolute;
  z-index: 1;
  left: 49%;
  top: 61%;
  width: clamp(220px, 28vw, 460px);
  aspect-ratio: 1 / 0.72;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 230, 175, 0.3), rgba(255, 211, 128, 0.13) 42%, transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-scrim {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 15, 0.72), rgba(9, 18, 15, 0.34) 46%, rgba(9, 18, 15, 0.08)),
    linear-gradient(0deg, rgba(9, 18, 15, 0.46), rgba(9, 18, 15, 0.02) 58%),
    linear-gradient(120deg, rgba(185, 143, 75, 0.14), rgba(247, 240, 229, 0.04) 38%, transparent 68%);
}

.hero-frame {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  width: 100%;
  padding: 158px clamp(18px, 6vw, 72px) 118px;
}

.hero-content {
  width: min(720px, 100%);
}

.hero-reservation-card {
  border: 1px solid rgba(185, 143, 75, 0.42);
  border-top: 3px solid var(--brass);
  padding: clamp(24px, 3vw, 34px);
  background: rgba(247, 240, 229, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-reservation-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-reservation-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.hero-reservation-card p {
  margin: 18px 0 26px;
  color: rgba(247, 240, 229, 0.72);
}

.hero-reservation-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-reservation-card div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(247, 240, 229, 0.14);
  padding-top: 12px;
}

.hero-reservation-card dt,
.hero-reservation-card dd {
  margin: 0;
}

.hero-reservation-card dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-reservation-card dd {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.hero-service-bar {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 6vw, 72px);
  right: clamp(18px, 6vw, 72px);
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(247, 240, 229, 0.16);
  background: rgba(9, 18, 15, 0.52);
  backdrop-filter: blur(12px);
}

.hero-service-bar span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: rgba(247, 240, 229, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 8vw, 104px);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(36px, 6vw, 76px);
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  font-size: 24px;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(247, 240, 229, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--brass);
  color: #11100f;
}

.button.ghost {
  border-color: rgba(247, 240, 229, 0.42);
  color: var(--ivory);
}

.button.ghost.dark {
  border-color: rgba(18, 38, 31, 0.22);
  color: var(--ink);
}

.intro-band,
.highlights,
.experience,
.events,
.salon,
.reservation,
.menu-shell,
.editor-layout {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 6vw, 72px);
}

.intro-band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.intro-copy {
  color: #5a5148;
  font-size: 18px;
}

.highlights {
  background:
    linear-gradient(180deg, rgba(247, 240, 229, 1), rgba(239, 230, 214, 0.78)),
    var(--paper);
}

.highlights-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 62px);
}

.highlights-heading p {
  margin: 0;
  color: #5a5148;
  font-size: 18px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(18, 38, 31, 0.16);
  border-left: 1px solid rgba(18, 38, 31, 0.16);
}

.highlight-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 16px;
  border-right: 1px solid rgba(18, 38, 31, 0.16);
  border-bottom: 1px solid rgba(18, 38, 31, 0.16);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.28);
}

.highlight-card span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.highlight-card p {
  margin: 0;
  color: #62584d;
}

.highlight-card a {
  align-self: end;
  margin-top: 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--forest);
  color: var(--ivory);
}

.experience-panel {
  align-self: start;
  max-width: 520px;
}

.experience-panel p:not(.eyebrow) {
  color: rgba(247, 240, 229, 0.72);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--brass);
  font-weight: 700;
}

.menu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.menu-pills a {
  border: 1px solid rgba(247, 240, 229, 0.22);
  padding: 9px 13px;
  color: rgba(247, 240, 229, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-list {
  display: grid;
  gap: 14px;
}

.dish-card,
.menu-item,
.editor-section {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.dish-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px clamp(14px, 2vw, 20px) 14px 14px;
}

.dish-card figure {
  align-self: stretch;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
}

.dish-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.dish-card:hover img {
  filter: brightness(1.05) saturate(1.05);
  transform: scale(1.035);
}

.dish-card span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 28px;
}

.dish-card p {
  margin: 12px 0 0;
  color: rgba(247, 240, 229, 0.68);
}

.events {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  background: var(--paper);
}

.events-intro {
  align-self: start;
}

.event-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(18, 38, 31, 0.16);
}

.event-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid rgba(18, 38, 31, 0.16);
  padding: 26px 0;
}

.event-item time {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.event-item p {
  margin: 9px 0 0;
  color: #62584d;
}

.event-item a {
  border: 1px solid rgba(18, 38, 31, 0.22);
  padding: 10px 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.salon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 48px;
  background: var(--ivory);
}

.salon-details {
  display: grid;
  gap: 16px;
}

.salon-details div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-top: 1px solid rgba(18, 38, 31, 0.18);
  padding-top: 18px;
}

.salon-details strong {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 500;
}

.salon-details span {
  color: #5a5148;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  background: var(--charcoal);
  color: var(--ivory);
}

.reservation-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(247, 240, 229, 0.72);
  font-size: 18px;
}

.reservation-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.reservation-shortcuts a {
  border: 1px solid rgba(247, 240, 229, 0.2);
  padding: 10px 13px;
  color: rgba(247, 240, 229, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(185, 143, 75, 0.34);
  background: rgba(247, 240, 229, 0.06);
  box-shadow: var(--shadow);
}

.reservation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reservation-form label {
  color: rgba(247, 240, 229, 0.72);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  border-color: rgba(247, 240, 229, 0.18);
  background: rgba(247, 240, 229, 0.09);
  color: var(--ivory);
}

.reservation-form textarea::placeholder {
  color: rgba(247, 240, 229, 0.44);
}

.reservation-submit {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.reservation-submit .button {
  width: 100%;
}

.reservation-contact {
  display: grid;
  gap: 5px;
  color: rgba(247, 240, 229, 0.84);
  font-size: 14px;
}

.reservation-contact a,
.reservation-contact span {
  color: rgba(247, 240, 229, 0.84);
}

.reservation-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(247, 240, 229, 0.12);
  padding-top: 16px;
  color: rgba(247, 240, 229, 0.62);
  font-size: 13px;
}

.reservation-note a {
  color: var(--brass);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 72px);
  color: rgba(247, 240, 229, 0.72);
  background: #0b0b0a;
  font-size: 14px;
}

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

.mobile-reserve {
  position: fixed;
  z-index: 20;
  right: 16px;
  bottom: 16px;
  display: none;
  border: 1px solid rgba(185, 143, 75, 0.88);
  padding: 13px 16px;
  color: #11100f;
  background: var(--brass);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-page,
.editor-page {
  background: var(--ivory);
}

.menu-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: clamp(96px, 11vw, 148px) clamp(18px, 6vw, 72px) clamp(48px, 7vw, 84px);
  background:
    radial-gradient(circle at 82% 42%, rgba(185, 143, 75, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(9, 18, 15, 0.95), rgba(18, 38, 31, 0.9)),
    var(--forest);
  color: var(--ivory);
}

.menu-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.menu-hero h1 {
  max-width: 820px;
}

.menu-hero p:last-child {
  max-width: 680px;
  color: rgba(247, 240, 229, 0.74);
  font-size: 19px;
}

.menu-hero-image {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: clamp(260px, 32vw, 430px);
  overflow: hidden;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.menu-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(1.03) saturate(1.04) contrast(0.96);
  transform: scale(1.05);
}

.menu-hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 15, 0.92), rgba(9, 18, 15, 0.42) 30%, transparent 58%),
    radial-gradient(circle at 50% 48%, transparent 28%, rgba(9, 18, 15, 0.34) 74%);
  pointer-events: none;
}

.menu-hero-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 18, 15, 0.62), transparent 52%);
}

.menu-hero-image figcaption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 6px;
}

.menu-hero-image span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-hero-image strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
}

.menu-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.menu-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  border-left: 2px solid var(--brass);
  padding-left: 22px;
}

.menu-side p,
.menu-side span {
  margin: 0;
  color: #6d6257;
}

.menu-side strong {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.menu-side .button {
  margin-top: 20px;
  width: max-content;
}

.menu-content {
  display: grid;
  gap: 52px;
}

.menu-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
  gap: 24px;
  margin-bottom: 20px;
}

.menu-section-heading p {
  margin: 8px 0 0;
  color: #6d6257;
}

.menu-items {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.menu-item h3 {
  font-size: 23px;
}

.menu-item p {
  margin: 7px 0 0;
  color: #6d6257;
}

.menu-item strong {
  color: var(--wine);
  white-space: nowrap;
}

.loading {
  color: #6d6257;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.editor-intro {
  position: sticky;
  top: 110px;
}

.editor-intro p:not(.eyebrow) {
  color: #6d6257;
  font-size: 18px;
}

.editor-board {
  display: grid;
  gap: 22px;
}

.editor-form,
.editor-sections,
.editor-items {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #5d5248;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 38, 31, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.editor-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.editor-section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.editor-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 1fr) minmax(90px, 120px) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  background: rgba(18, 38, 31, 0.045);
}

.small-button {
  min-height: 45px;
  border: 1px solid rgba(18, 38, 31, 0.22);
  padding: 10px 13px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.small-button.add {
  justify-self: start;
  border-color: rgba(185, 143, 75, 0.62);
  color: var(--wine);
}

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

  .site-header.compact {
    position: sticky;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-grid,
  .highlights-heading,
  .experience,
  .events,
  .salon,
  .reservation,
  .menu-hero,
  .menu-shell,
  .editor-layout,
  .menu-section-heading {
    grid-template-columns: 1fr;
  }

  .menu-side,
  .editor-intro {
    position: static;
  }

  .editor-item {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    padding-bottom: 144px;
  }

  .hero-service-bar {
    grid-template-columns: 1fr;
  }

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

  .event-item {
    grid-template-columns: 1fr;
  }

  .reservation-fields,
  .reservation-submit {
    grid-template-columns: 1fr;
  }

  .menu-hero-image {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-image {
    transform: translate(-7%, -5%) scale(1.08);
  }

  .hero-food-spot {
    left: 48%;
    top: 58%;
    width: min(320px, 76vw);
  }

  .hero-frame {
    padding: 136px 18px 178px;
  }

  .hero-reservation-card {
    padding: 20px;
  }

  .hero-reservation-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-service-bar {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-service-bar span {
    min-height: 44px;
    font-size: 11px;
  }

  .mobile-reserve {
    display: inline-flex;
  }

  .dish-card,
  .highlight-grid,
  .menu-item,
  .salon-details div {
    grid-template-columns: 1fr;
  }

  .dish-card {
    padding: 14px;
  }

  .dish-card figure,
  .dish-card img {
    min-height: 210px;
  }

  .menu-item strong {
    white-space: normal;
  }
}
