:root {
  --rosso: #8f1218;
  --rosso-dark: #5f0b10;
  --verde: #102515;
  --verde-soft: #1f3d27;
  --gold: #b08a4a;
  --cream: #fbf7ef;
  --linen: #efe4d2;
  --ink: #1a1712;
  --muted: #6f665a;
  --shadow: 0 20px 60px rgba(22, 16, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(10, 13, 9, 0.88) 0%, rgba(15, 20, 12, 0.7) 42%, rgba(15, 15, 12, 0.26) 100%),
    url("photos/Background/background.png") center / cover no-repeat;
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(176, 138, 74, 0.3);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(18, 14, 9, 0.08);
}

.brand img {
  width: 128px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--verde);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--rosso);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 37, 21, 0.24);
  background: white;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--verde);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 146px clamp(22px, 7vw, 100px) 70px;
}

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

.eyebrow,
.section-kicker,
.dish-card span,
.contact-panel span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.signature h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  color: #fff7e9;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 247, 233, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--rosso);
  border-color: var(--rosso);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 247, 233, 0.58);
  color: white;
}

.section-band {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: end;
}

.intro {
  border-bottom: 1px solid rgba(176, 138, 74, 0.22);
}

.intro h2,
.section-heading h2,
.signature h2,
.contact h2 {
  margin-top: 8px;
  color: var(--verde);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.intro p:not(.section-kicker),
.signature p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  line-height: 1.45;
}

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

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rosso);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  margin: 0.58em 0 0 12px;
  background: currentColor;
}

.menu {
  background: #fffaf1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.dish-card {
  min-height: 100%;
  background: white;
  border: 1px solid rgba(176, 138, 74, 0.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.dish-card div {
  padding: 22px;
}

.dish-card h3 {
  margin: 8px 0 8px;
  color: var(--verde);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1.05;
}

.dish-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.signature {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(16, 37, 21, 0.92), rgba(16, 37, 21, 0.64)),
    url("photos/Main/Gourmet Grilled Fish with Fresh Vegetables.png") center / cover no-repeat;
  color: white;
}

.signature-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.signature h2 {
  max-width: 660px;
  color: white;
}

.signature p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 247, 233, 0.86);
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(176, 138, 74, 0.26);
  box-shadow: 0 18px 48px rgba(22, 16, 10, 0.13);
}

.gallery-grid img {
  grid-column: span 4;
}

.contact {
  background: var(--verde);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.contact h2 {
  color: white;
}

.contact p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 247, 233, 0.82);
}

.contact-panel {
  padding: 32px;
  background: rgba(255, 247, 233, 0.08);
  border: 1px solid rgba(176, 138, 74, 0.36);
}

.contact-panel div + div {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 247, 233, 0.16);
}

.contact-panel p {
  margin: 9px 0 0;
  color: white;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  background: #0a130c;
  color: rgba(255, 247, 233, 0.78);
  border-top: 1px solid rgba(176, 138, 74, 0.24);
}

.footer-main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(160px, 0.7fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 76px);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand img {
  width: 86px;
  height: 72px;
  object-fit: contain;
}

.footer h2,
.footer h3,
.footer p {
  margin: 0;
}

.footer h2,
.footer h3 {
  color: #fff7e9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.footer h2 {
  max-width: 330px;
  font-size: 1.8rem;
  line-height: 1.05;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.footer p,
.footer a {
  color: rgba(255, 247, 233, 0.74);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
}

.footer-links a {
  width: fit-content;
  padding: 3px 0;
}

.footer a:hover,
.footer a:focus-visible {
  color: white;
}

.footer-contact p {
  display: flex;
  gap: 9px;
}

.footer-contact span {
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 0;
}

.social-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-bottom {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(255, 247, 233, 0.12);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 247, 233, 0.62);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.menu-page {
  min-height: 100vh;
  background: #080806;
  color: white;
  overflow-x: hidden;
}

.admin-page {
  min-height: 100vh;
  background: #080806;
  color: white;
}

.is-hidden {
  display: none !important;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(10, 13, 9, 0.88), rgba(16, 37, 21, 0.74)),
    url("photos/Background/background.png") center / cover no-repeat;
}

.login-card {
  width: min(430px, 100%);
  padding: 36px;
  background: rgba(251, 247, 239, 0.96);
  border: 1px solid rgba(176, 138, 74, 0.35);
  box-shadow: var(--shadow);
  color: var(--verde);
}

.login-card img {
  width: 118px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.login-card h1,
.admin-panel-copy h1,
.admin-card h2 {
  margin: 8px 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

.login-card h1 {
  font-size: 2.6rem;
  text-align: center;
}

.login-card .section-kicker {
  text-align: center;
}

.login-card label,
.admin-card label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-card input,
.admin-card input,
.admin-card textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(176, 138, 74, 0.28);
  background: #fffaf1;
  color: var(--ink);
  font: 500 0.95rem "Montserrat", Arial, sans-serif;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--verde);
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle .eye-off-icon,
.password-toggle.is-visible .eye-icon {
  display: none;
}

.password-toggle.is-visible .eye-off-icon {
  display: block;
}

.admin-card textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-error,
.form-status {
  min-height: 22px;
  margin: 12px 0;
  color: var(--rosso);
  font-size: 0.9rem;
}

.form-status {
  color: var(--gold);
}

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

.admin-shell {
  height: 100vh;
  margin-left: 188px;
  display: grid;
  grid-template-columns: minmax(440px, 0.54fr) minmax(420px, 0.46fr);
  overflow: hidden;
}

.admin-sidebar {
  color: var(--verde);
}

.admin-nav-button,
.logout-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(16, 37, 21, 0.08);
  background: transparent;
  color: rgba(16, 37, 21, 0.72);
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.admin-nav-button:hover,
.admin-nav-button:focus-visible,
.admin-nav-button.is-active {
  color: var(--rosso);
  background: white;
}

.logout-button {
  margin-top: auto;
  color: var(--rosso);
}

.admin-editor {
  min-height: 100vh;
  padding: clamp(30px, 5vw, 66px);
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.96), rgba(16, 37, 21, 0.88)),
    url("photos/Background/background.png") left center / cover no-repeat;
}

.admin-panel-copy h1 {
  color: #fff7e9;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

.admin-grid,
.landing-form-grid {
  display: grid;
  gap: 16px;
}

.admin-grid {
  grid-template-columns: minmax(220px, 0.55fr) minmax(240px, 0.65fr);
}

.dish-form-card {
  grid-column: 1 / -1;
}

.admin-card {
  padding: 22px;
  background: rgba(255, 247, 233, 0.08);
  border: 1px solid rgba(176, 138, 74, 0.28);
}

.admin-card h2 {
  margin: 0;
  color: #fff7e9;
  font-size: 1.9rem;
}

.admin-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-card button:not(.button),
.compact-upload {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 247, 233, 0.24);
  background: rgba(255, 247, 233, 0.08);
  color: white;
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.danger-link {
  color: #ffb2b6 !important;
}

.admin-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-list-button {
  width: 100%;
  min-height: 44px;
  justify-content: flex-start !important;
  text-align: left;
}

.admin-list-button.is-active {
  border-color: var(--rosso) !important;
  background: var(--rosso) !important;
}

.dish-row {
  gap: 10px;
}

.dish-row span {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
}

.empty-state {
  margin: 0;
  color: rgba(255, 247, 233, 0.65);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button.muted {
  border-color: #fff7e9;
  background: #fff7e9;
  color: var(--rosso);
}

.button.muted:hover,
.button.muted:focus-visible {
  background: white;
  color: var(--rosso-dark);
}

.admin-preview {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #030303;
  overflow-y: auto;
}

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

.favorites-picker {
  max-height: 270px;
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-right: 6px;
}

.check-row {
  min-height: 38px;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  margin: 0 !important;
  color: rgba(255, 247, 233, 0.84) !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.compact-upload {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.compact-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.gallery-admin-list {
  display: grid;
  gap: 10px;
}

.gallery-admin-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 10px;
  align-items: center;
}

.gallery-admin-item img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(176, 138, 74, 0.28);
}

.landing-actions {
  margin-top: 18px;
}

.landing-live-preview {
  height: 100%;
  background: #11110f;
  color: var(--ink);
  overflow: hidden;
}

.landing-preview-toolbar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid rgba(176, 138, 74, 0.26);
  color: var(--verde);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-preview-toolbar a {
  color: var(--rosso);
}

.landing-preview-viewport {
  height: calc(100vh - 50px);
  overflow: auto;
  background: #11110f;
}

.landing-preview-page {
  width: 1440px;
  min-height: 100vh;
  background: var(--cream);
  transform: scale(var(--landing-preview-scale, 0.43));
  transform-origin: top left;
}

.landing-preview-page main,
.landing-preview-page .intro,
.landing-preview-page .gallery {
  background: var(--cream);
}

.landing-preview-page .navbar {
  position: absolute;
}

.landing-preview-page .site-header {
  min-height: 1000px;
}

.landing-preview-page .hero {
  min-height: 1000px;
}

.landing-preview-page .button:hover,
.landing-preview-page .button:focus-visible {
  transform: none;
}

.menu-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 188px;
  display: flex;
  flex-direction: column;
  background: rgba(251, 247, 239, 0.98);
  border-right: 1px solid rgba(176, 138, 74, 0.26);
}

.menu-logo {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid rgba(16, 37, 21, 0.1);
}

.menu-logo img {
  width: 108px;
  height: 76px;
  object-fit: contain;
}

.side-nav {
  display: grid;
}

.side-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid rgba(16, 37, 21, 0.08);
  color: rgba(16, 37, 21, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a.is-active {
  color: var(--rosso);
  background: white;
}

.all-menu-shell {
  min-height: 100vh;
  margin-left: 188px;
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr);
}

.menu-copy-panel {
  min-height: 100vh;
  padding: clamp(34px, 6vw, 74px) clamp(26px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.94), rgba(16, 37, 21, 0.86)),
    url("photos/Background/background.png") left center / cover no-repeat;
  border-right: 1px solid rgba(255, 247, 233, 0.12);
}

.menu-copy-panel h1 {
  margin: 8px 0 0;
  color: #fff7e9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.menu-intro {
  max-width: 380px;
  margin: 22px 0 26px;
  color: rgba(255, 247, 233, 0.74);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.48;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.category-tab {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 247, 233, 0.24);
  background: rgba(255, 247, 233, 0.05);
  color: rgba(255, 247, 233, 0.76);
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.category-tab:hover,
.category-tab:focus-visible,
.category-tab.is-active {
  background: var(--rosso);
  border-color: var(--rosso);
  color: white;
}

.dish-list {
  display: grid;
  border-top: 1px solid rgba(255, 247, 233, 0.14);
}

.empty-menu-note {
  margin: 18px 0 0;
  color: rgba(255, 247, 233, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.dish-name-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 247, 233, 0.14);
  background: transparent;
  color: rgba(255, 247, 233, 0.78);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.26rem, 1.8vw, 1.62rem);
  line-height: 1.1;
  text-align: left;
  transition: color 180ms ease, padding-left 180ms ease;
}

.dish-name-button span {
  min-width: 28px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.dish-name-button:hover,
.dish-name-button:focus-visible,
.dish-name-button.is-active {
  color: white;
  padding-left: 10px;
}

.menu-preview-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.menu-preview-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 42%);
  pointer-events: none;
}

.menu-preview-panel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 360ms ease, transform 520ms ease;
}

.menu-preview-panel img.is-fading {
  opacity: 0.18;
  transform: scale(1.025);
}

.menu-preview-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  color: white;
}

.menu-preview-top p,
.menu-preview-top a {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-preview-top a {
  padding: 10px 16px;
  background: rgba(143, 18, 24, 0.92);
}

.preview-caption {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: clamp(24px, 5vw, 68px);
  z-index: 3;
  width: min(520px, calc(100% - 44px));
  color: white;
  text-align: right;
}

.preview-caption span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.preview-caption h2 {
  margin: 10px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.94;
}

.preview-caption p {
  margin: 0 0 0 auto;
  max-width: 430px;
  color: rgba(255, 247, 233, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .signature-inner {
    display: block;
  }

  .signature .button {
    margin-top: 28px;
  }

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

  .gallery-grid img:nth-child(n) {
    grid-column: span 6;
    grid-row: span 1;
  }

  .menu-sidebar {
    position: static;
    width: 100%;
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .menu-logo {
    min-height: 82px;
    width: 150px;
    flex: 0 0 150px;
    border-bottom: 0;
    border-right: 1px solid rgba(16, 37, 21, 0.1);
  }

  .menu-logo img {
    width: 96px;
    height: 58px;
  }

  .side-nav {
    flex: 1;
    display: flex;
    overflow-x: auto;
  }

  .side-nav a {
    min-height: 82px;
    flex: 0 0 auto;
    padding: 0 18px;
  }

  .all-menu-shell {
    min-height: auto;
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .menu-copy-panel {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 36px;
    order: 2;
  }

  .menu-preview-panel,
  .menu-preview-panel img {
    min-height: 560px;
    height: 68vh;
    order: 1;
  }

  .admin-shell {
    height: auto;
    margin-left: 0;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .admin-preview {
    position: static;
    height: auto;
    min-height: auto;
  }

  .admin-grid,
  .landing-form-grid {
    grid-template-columns: 1fr;
  }

  .landing-live-preview {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .navbar {
    min-height: 76px;
    padding: 10px 18px;
  }

  .brand img {
    width: 104px;
    height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px 18px;
    background: rgba(251, 247, 239, 0.98);
    border: 1px solid rgba(176, 138, 74, 0.34);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 16px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

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

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .menu-sidebar {
    display: block;
  }

  .menu-logo {
    width: 100%;
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 37, 21, 0.1);
  }

  .menu-logo img {
    width: 104px;
    height: 52px;
  }

  .side-nav a {
    min-height: 52px;
  }

  .menu-copy-panel h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

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

  .category-tab {
    width: 100%;
  }

  .preview-caption {
    right: 22px;
    left: 22px;
    text-align: left;
  }

  .preview-caption p {
    margin-left: 0;
  }

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

  .admin-editor {
    padding: 34px 20px;
  }

  .gallery-admin-item {
    grid-template-columns: 64px 1fr;
  }

  .gallery-admin-item button {
    grid-column: 2;
  }

}
