*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #040b06;
  --bg-soft: #09130d;
  --surface: #162d1b;
  --surface-glass: #162d1bd6;
  --saffron: #2b5a37;
  --gold: #f5c151;
  --cardamom: #3f7a53;
  --text: #e7f1ea;
  --muted: #b9d0c1;
  --ink: #07130b;
  --border-soft: #7fc09135;
  --shadow-soft: 0 16px 36px #040b0763;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-soft);
  color: var(--text);
  font-family: 'Hind Madurai', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  padding: 1rem;
  letter-spacing: 0.02em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, #3d694d18 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 0%, #244d3420 0%, transparent 75%),
    linear-gradient(180deg, #0b160f 0%, #070f0a 50%, #030704 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cg fill='none' stroke='%237fc091' stroke-opacity='0.05'%3E%3Cpath d='M35 8 L62 35 L35 62 L8 35 Z'/%3E%3Ccircle cx='35' cy='35' r='13'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 1;
}

.top-nav {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  margin: 0 auto 2.7rem;
  max-width: 1500px;
  animation: reveal 700ms ease;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Marcellus', serif;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  object-fit: contain;
}

.brand-name {
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  border-bottom-color: #7fc09188;
}

.site-nav a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-ctas {
  display: flex;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 350ms ease, background-color 350ms ease, color 350ms ease, border-color 350ms ease;
}

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

.btn-reserve {
  background: linear-gradient(130deg, #f5c151 0%, #c99d3f 100%);
  color: var(--ink);
  border-color: #9bd4aa3d;
}

.site-nav a.btn-reserve,
.site-nav a.btn-reserve:hover,
.site-nav a.btn-reserve:focus {
  color: var(--ink);
  border-bottom-color: transparent;
}

.btn-reserve:hover {
  background: linear-gradient(130deg, #e0b048 0%, #b58c35 100%);
}

.btn-shop {
  border-color: #f5c1518e;
  color: var(--gold);
  background: transparent;
}

.btn-shop:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle,
.nav-toggle-btn,
.nav-overlay,
.nav-mobile-cta {
  display: none;
}

.container {
  position: relative;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
  padding: 2.25rem clamp(1rem, 3vw, 2.5rem) 3.2rem;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #00300f61 0%, #00180747 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px #040b077a;
  animation: reveal 900ms ease;
}

.hero {
  animation: reveal 1.1s ease;
}

.logo {
  width: clamp(72px, 14vw, 100px);
  height: auto;
  margin-bottom: 2rem;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0.55;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cardamom));
}

.ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--cardamom));
}

.ornament-symbol {
  color: var(--cardamom);
  font-size: 1rem;
  line-height: 1;
}

.label {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: 'Marcellus', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.3rem;
}

h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.subtitle {
  font-family: 'Marcellus', serif;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cardamom), transparent);
  margin: 0 auto 3rem;
  opacity: 0.6;
}

.message {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #cadccc;
  max-width: 420px;
  margin: 0 auto 3rem;
}

.message strong {
  color: var(--text);
  font-weight: 400;
}

.meaning {
  display: inline-block;
  border: 1px solid #2c4a38;
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aac4b2;
  margin-bottom: 3rem;
}

.meaning span {
  color: var(--gold);
}

.menu-actions {
  margin-bottom: 2.6rem;
}

.cta-group {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  text-align: left;
  margin: 0 auto 3rem;
  max-width: 520px;
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-block h3 {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  color: #cadccc;
}

.hours-table td {
  padding: 0.2rem 0;
  vertical-align: top;
}

.hours-table td:first-child {
  color: var(--text);
  padding-right: 1rem;
  white-space: nowrap;
}

.hours-table .closed {
  color: var(--muted);
  font-style: italic;
}

.info-block p,
.info-block a {
  font-size: 0.82rem;
  line-height: 1.75;
  color: #cadccc;
  text-decoration: none;
}

.info-block a:hover {
  color: var(--gold);
}

.contact-heading {
  margin-top: 1.5rem;
}

.home-container {
  max-width: 1200px;
  text-align: left;
}

.home-blocks {
  display: grid;
  gap: 2rem;
}

.block-shell {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #00000052;
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.block-shell h2 {
  font-family: 'Marcellus', serif;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  margin-bottom: 0.45rem;
}

.block-subtitle {
  color: #bdd4c6;
  line-height: 1.68;
  font-size: 0.86rem;
}

.home-hero {
  --hero-bg-image: none;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  border-color: #f5c15155;
  background: var(--hero-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 44px #0000004d;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07140ecc 0%, #07140e88 45%, #07140e44 100%);
  pointer-events: none;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  margin-bottom: 0.6rem;
  text-align: left;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.home-lead {
  color: #d4e4da;
  line-height: 1.78;
  max-width: 56ch;
  margin-bottom: 1rem;
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-hero-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #7fc09166;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
}

.home-app {
  position: relative;
  overflow: hidden;
  border-color: #f5c15166;
  background:
    radial-gradient(circle at 18% 0%, #f5c15124 0%, transparent 55%),
    radial-gradient(circle at 82% 100%, #7fc09124 0%, transparent 50%),
    linear-gradient(155deg, #102618e6 0%, #0a1710f0 100%);
}

.home-app::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f5c1510d 0%, transparent 50%, #7fc09112 100%);
  pointer-events: none;
}

.home-app > * {
  position: relative;
  z-index: 1;
}

.app-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #f5c15180;
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.7rem;
}

.home-app h2 {
  margin-bottom: 0.5rem;
}

.app-lead {
  color: #d1e3d7;
  font-size: 0.88rem;
  line-height: 1.68;
  margin-bottom: 1rem;
}

.store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.store-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid #f5c1518c;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(140deg, #183222e8 0%, #0f2418eb 100%);
  padding: 0.95rem 1rem;
  min-height: 88px;
  box-shadow: 0 10px 20px #00000035;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.store-link:hover {
  border-color: #f5c151;
  background: linear-gradient(140deg, #21452f 0%, #153523 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px #0000004a;
}

.store-icon {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  color: var(--gold);
}

.store-copy {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.store-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e6f0e9;
}

.store-note {
  color: #b8d0c0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.story-copy {
  display: grid;
  gap: 0.7rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.story-media {
  margin: 0;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #7fc09155;
}

.story-copy p {
  color: #c6dacd;
  line-height: 1.72;
  font-size: 0.86rem;
}

.signature-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.signature-card {
  border: 1px solid #7fc0913d;
  border-radius: 14px;
  background: #0c1a11c2;
  padding: 0.8rem;
}

.signature-card img {
  width: 100%;
  height: 145px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.signature-card h3 {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-size: 0.98rem;
}

.signature-card p {
  color: #c0d5c7;
  font-size: 0.81rem;
  line-height: 1.62;
  margin-bottom: 0.55rem;
}

.price-tag {
  display: inline-flex;
  border: 1px solid #7fc09155;
  border-radius: 999px;
  padding: 0.23rem 0.62rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-block-block-philosophy,
.home-block-philosophy,
.home-philosophy {
  border-color: #f5c15152;
  background:
    radial-gradient(circle at 14% 14%, #f5c1511a 0%, transparent 54%),
    linear-gradient(160deg, #112316d4 0%, #0a1710da 100%);
  box-shadow: 0 14px 30px #00000042;
  border-radius: 18px;
}

.home-philosophy blockquote {
  font-family: 'Marcellus', serif;
  color: #e4efe7;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  max-width: 64ch;
}

.quote-author {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #7fc09150;
}

.testimonials-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.testimonial-card {
  border: 1px solid #7fc0913d;
  border-radius: 12px;
  background: #0b1810c0;
  padding: 0.9rem;
}

.testimonial-card .quote {
  color: #d2e2d8;
  font-size: 0.84rem;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

.testimonial-card .person {
  color: var(--text);
  display: grid;
  gap: 0.15rem;
}

.testimonial-card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}

.home-reservation {
  text-align: center;
}

.home-reservation .btn {
  margin-top: 0.8rem;
}

.reservation-note {
  margin-top: 0.75rem;
  color: #b9d0c1;
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.7rem;
}

.contact-grid h3 {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0.4rem 0 0.35rem;
}

.contact-grid p,
.contact-grid a {
  color: #c5dace;
  text-decoration: none;
  line-height: 1.72;
  font-size: 0.82rem;
}

.contact-grid a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  margin-top: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #1023178a;
  padding: 1rem;
}

.contact-form-wrap h3 {
  margin-top: 0;
}

.contact-form-wrap > p {
  color: #c5dace;
  margin: 0.1rem 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact-form-wrap .form-field {
  margin-bottom: 0.8rem;
}

.contact-form-wrap label {
  display: block;
  margin-bottom: 0.33rem;
  color: #d8e7df;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%;
  border: 1px solid #7fc0914d;
  border-radius: 10px;
  background: #0b1810d8;
  color: var(--text);
  padding: 0.58rem 0.65rem;
  font: inherit;
}

.contact-form-wrap textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px #d4a43a22;
}

.contact-form-wrap .form-field .checkboxes,
.contact-form-wrap .form-field .radios {
  display: grid;
  gap: 0.4rem;
}

.contact-form-wrap .form-field .checkboxes label,
.contact-form-wrap .form-field .radios label,
.contact-form-wrap .form-field label.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
}

.contact-form-wrap .form-field label.checkbox input[type='checkbox'],
.contact-form-wrap .form-field .checkboxes input[type='checkbox'],
.contact-form-wrap .form-field .radios input[type='radio'] {
  width: auto;
  margin-top: 0.2rem;
}

.contact-form-wrap .buttons {
  margin-top: 0.25rem;
}

.contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-form-wrap .form-errors,
.contact-form-wrap .form-message {
  margin-bottom: 0.75rem;
  border-radius: 10px;
  padding: 0.58rem 0.68rem;
  font-size: 0.78rem;
}

.contact-form-wrap .form-message {
  border: 1px solid #7fc09166;
  background: #7fc0911c;
  color: #d7eadf;
}

.contact-form-wrap .form-errors {
  border: 1px solid #d97a7a80;
  background: #d97a7a1c;
  color: #ffdede;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold);
  padding: 0.65rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.menu-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.page-footer {
  position: relative;
  z-index: 2;
  margin: 1.5rem 0 0.8rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #799683;
  text-transform: uppercase;
}

.page-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.page-footer-copy {
  margin: 0;
}

.page-footer-legal-links {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.page-footer-legal-links a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.page-footer-legal-links a:hover {
  color: #f8cf75;
  border-bottom-color: #f8cf75;
}

.menu-container {
  max-width: 1020px;
}

.legal-container {
  max-width: 920px;
}

.legal-page {
  text-align: left;
}

.legal-page h1 {
  margin-bottom: 1rem;
  text-align: left;
}

.legal-copy {
  color: #c7dbcf;
  font-size: 0.9rem;
  line-height: 1.78;
}

.legal-section {
  margin-bottom: 1.2rem;
}

.legal-section h2 {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-family: 'Marcellus', serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol {
  margin: 0 0 0.9rem;
}

.legal-copy a {
  color: var(--gold);
}

.legal-copy a:hover {
  color: #f8cf75;
}

.menu-page {
  text-align: left;
}

.menu-page h1 {
  text-align: center;
  margin-bottom: 1.4rem;
}

.menu-intro {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: #ccdfd0;
  line-height: 1.7;
}

.menu-categories {
  display: grid;
  gap: 1.25rem;
}

.menu-category {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #1023178a;
  padding: 1.15rem;
}

.menu-category-header h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.menu-category-header p {
  color: #b8d0c0;
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.menu-dishes {
  display: grid;
  gap: 0.85rem;
}

.menu-dish {
  align-items: start;
  border: 1px solid #7fc0912d;
  border-radius: 12px;
  background: #0b1810bd;
  padding: 0.85rem;
}

.menu-dish-image {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #7fc09155;
}

.menu-dish-main {
  min-width: 0;
}

.menu-dish-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.menu-dish-headline h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}

.menu-price {
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.menu-dish-description {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #c3d8c9;
  line-height: 1.62;
}

.menu-dish-meta {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dish-badge,
.dish-allergens {
  display: inline-flex;
  align-items: center;
  border: 1px solid #7fc09155;
  border-radius: 999px;
  padding: 0.23rem 0.6rem;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dish-badge {
  color: var(--gold);
}

.dish-allergens {
  color: #b8d0c0;
  border-style: dashed;
}

.menu-empty {
  color: #b8d0c0;
  font-size: 0.83rem;
  font-style: italic;
}

.blocks-container {
  max-width: 1040px;
}

.blocks-page {
  text-align: left;
}

.blocks-page h1 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.blocks-intro {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: #ccdfd0;
  line-height: 1.72;
}

.content-sections {
  display: grid;
  gap: 1rem;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #0f2015b8;
}

.content-section.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
}

.content-section.is-reverse .content-section-media {
  order: 2;
}

.content-section-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #7fc09155;
}

.content-section-copy h2 {
  font-family: 'Marcellus', serif;
  color: var(--gold);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin-bottom: 0.5rem;
}

.content-section-copy p {
  color: #c7dbcf;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.cards-block {
  margin-top: 1.5rem;
}

.cards-block h2 {
  font-family: 'Marcellus', serif;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.feature-card {
  border: 1px solid #7fc09140;
  border-radius: 14px;
  background: #0c1a11bf;
  padding: 0.9rem;
}

.feature-card h3 {
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: #b8d0c0;
  font-size: 0.8rem;
  line-height: 1.62;
}

.feature-card a {
  margin-top: 0.6rem;
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid #7fc09166;
}

.feature-card a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
  }

  .nav-toggle-btn {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid #7fc0915d;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.23rem;
    cursor: pointer;
    background: #122819;
  }

  .nav-toggle-btn span {
    width: 1.1rem;
    height: 1px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav {
    position: fixed;
    right: 0.75rem;
    left: 0.75rem;
    top: 4.75rem;
    z-index: 25;
    border: 1px solid var(--border-soft);
    background: #0f2115e6;
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1rem 1rem 1.1rem;
    display: grid;
    gap: 0.25rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    font-size: 0.78rem;
    padding: 0.9rem 0.55rem;
    border-bottom: 1px solid #7fc09124;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 0.4rem;
    width: 100%;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 24;
    background: #05110987;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-ctas {
    display: none;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

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

  .menu-dish-image {
    width: 70px;
    height: 70px;
  }

  .content-section,
  .content-section.is-reverse {
    grid-template-columns: 1fr;
  }

  .content-section.is-reverse .content-section-media {
    order: 0;
  }

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

  .store-links {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 480px) {
  body {
    padding: 0.6rem;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .container {
    padding: 1.6rem 0.95rem 2rem;
  }

  .menu-link {
    width: 100%;
  }

  .cta-group {
    width: 100%;
  }

  .menu-category {
    padding: 0.95rem;
  }

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

  .menu-dish-image {
    width: 100%;
    height: 170px;
  }

  .content-section {
    padding: 0.85rem;
  }

  .signature-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
