:root,
html[data-theme="night"] {
  color-scheme: dark;
  --ink: #07110e;
  --forest: #0e221a;
  --pine: #16352a;
  --moss: #1f4a3a;
  --copper: #c45c26;
  --ember: #e08a55;
  --saffron: #e0b15b;
  --cream: #f3ebdd;
  --mist: #b7c4bc;
  --stone: #8a9a92;
  --bg: #07110e;
  --text: #f3ebdd;
  --muted: #b7c4bc;
  --line: rgba(243, 235, 221, 0.1);
  --line-strong: rgba(243, 235, 221, 0.15);
  --ghost-border: rgba(243, 235, 221, 0.25);
  --nav-bg: rgba(7, 17, 14, 0.9);
  --card-bg: rgba(22, 53, 42, 0.4);
  --card-border: rgba(243, 235, 221, 0.1);
  --field-bg: rgba(7, 17, 14, 0.5);
  --overlay-bg: #0e221a;
  --modal-bg: #0e221a;
  --modal-veil: rgba(7, 17, 14, 0.7);
  --badge-bg: rgba(7, 17, 14, 0.7);
  --dot: rgba(243, 235, 221, 0.2);
  --success-bg: rgba(22, 53, 42, 0.6);
  --gather-shade: rgba(14, 34, 26, 0.8);
  --hero-fade: linear-gradient(to bottom, rgba(7, 17, 14, 0.55), rgba(14, 34, 26, 0.55), #07110e);
  --banner-shade: rgba(7, 17, 14, 0.5);
  --glow-a: rgba(196, 92, 38, 0.08);
  --glow-b: rgba(224, 177, 91, 0.06);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --ink: #07110e;
  --forest: #f6efe3;
  --pine: #eadfcb;
  --moss: #d8cbb4;
  --copper: #c45c26;
  --ember: #c45c26;
  --saffron: #9a4a1c;
  --cream: #1a2a22;
  --mist: #4d5f56;
  --stone: #6b7a72;
  --bg: #f6efe3;
  --text: #1a2a22;
  --muted: #4d5f56;
  --line: rgba(26, 42, 34, 0.12);
  --line-strong: rgba(26, 42, 34, 0.18);
  --ghost-border: rgba(26, 42, 34, 0.22);
  --nav-bg: rgba(246, 239, 227, 0.92);
  --card-bg: rgba(255, 252, 246, 0.85);
  --card-border: rgba(26, 42, 34, 0.1);
  --field-bg: rgba(255, 252, 246, 0.9);
  --overlay-bg: #f3ebdd;
  --modal-bg: #fffaf2;
  --modal-veil: rgba(246, 239, 227, 0.72);
  --badge-bg: rgba(246, 239, 227, 0.88);
  --dot: rgba(26, 42, 34, 0.2);
  --success-bg: rgba(224, 177, 91, 0.18);
  --gather-shade: rgba(246, 239, 227, 0.72);
  --hero-fade: linear-gradient(to bottom, rgba(7, 17, 14, 0.45), rgba(14, 34, 26, 0.35), #f6efe3);
  --banner-shade: rgba(7, 17, 14, 0.42);
  --glow-a: rgba(196, 92, 38, 0.1);
  --glow-b: rgba(224, 177, 91, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background-color 0.35s ease, color 0.35s ease;
  background-image:
    radial-gradient(ellipse at 20% 10%, var(--glow-a), transparent 45%),
    radial-gradient(ellipse at 80% 0%, var(--glow-b), transparent 40%);
}

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

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

button,
input,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.dust {
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(224, 177, 91, 0.35), transparent),
    radial-gradient(1px 1px at 70% 18%, rgba(243, 235, 221, 0.25), transparent),
    radial-gradient(1.2px 1.2px at 40% 70%, rgba(196, 92, 38, 0.28), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(224, 177, 91, 0.22), transparent),
    radial-gradient(1.3px 1.3px at 12% 82%, rgba(243, 235, 221, 0.18), transparent);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
}

.serif {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-copper {
  background: linear-gradient(180deg, #e8a070 0%, #c45c26 42%, #9a3f16 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.28);
}

.btn-copper:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  border: 1px solid var(--ghost-border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s;
}

.nav.scrolled,
.nav.open {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: var(--text);
}

.burger {
  width: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  height: 1px;
  background: var(--saffron);
  transition: 0.25s;
}

.nav.open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.open .burger span:nth-child(2) {
  opacity: 0;
}
.nav.open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-word {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.logo-mark {
  width: 72px;
  height: 22px;
  color: var(--saffron);
}

.logo-name {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.22em;
  line-height: 1;
}

.logo-tag {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(224, 177, 91, 0.9);
}

.nav-right {
  display: flex;
  gap: 8px;
  justify-self: end;
  align-items: center;
}

.nav-right .btn {
  padding: 10px 20px;
  font-size: 11px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--ghost-border);
  display: grid;
  place-items: center;
  color: var(--saffron);
  transition: 0.25s ease;
}

.theme-toggle:hover {
  border-color: var(--saffron);
  background: color-mix(in srgb, var(--saffron) 12%, transparent);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

html[data-theme="night"] .icon-moon,
html[data-theme="light"] .icon-sun {
  display: none;
}

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 177, 91, 0.55), transparent);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--overlay-bg);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.overlay.show {
  display: flex;
  pointer-events: auto;
}

.overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 64px;
}

.overlay a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.overlay a:hover,
.overlay a.active {
  color: var(--saffron);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero img.bg,
.banner img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .shade {
  position: absolute;
  inset: 0;
  background: var(--hero-fade);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  padding-top: 96px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(4.4rem, 14vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.hero p.lead {
  margin: 28px auto 0;
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(243, 235, 221, 0.82);
}

.hero .label,
.hero h1,
.hero .hero-actions .btn-ghost,
.scroll-hint {
  color: #f3ebdd;
}

.hero .hero-actions .btn-ghost {
  border-color: rgba(243, 235, 221, 0.35);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 235, 221, 0.7);
}

.scroll-hint span {
  width: 1px;
  height: 40px;
  background: rgba(224, 177, 91, 0.8);
}

.section {
  position: relative;
  padding: 108px 0;
}

.section.tight {
  padding: 72px 0;
}

.split {
  display: grid;
  gap: 56px;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

h2.serif {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 em,
.accent {
  font-style: italic;
  color: var(--saffron);
}

.prose {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.prose + .prose {
  margin-top: 16px;
}

.quote {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 1px solid var(--saffron);
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
}

.round {
  border-radius: 18px;
  overflow: hidden;
}

.round img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.center {
  text-align: center;
}

.plates {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 48px 24px 24px;
}

.plate {
  min-width: 260px;
  flex: 1;
}

.plate img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.plate p {
  margin-top: 12px;
  text-align: center;
  font-family: var(--display);
  font-size: 1.25rem;
}

.grid-2 {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.cat img,
.dish img,
.gallery-grid img,
.interior img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.7s ease;
}

.cat:hover img,
.dish:hover img {
  transform: scale(1.04);
}

.cat img {
  height: 250px;
}

.cat h3,
.dish h3 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 1.85rem;
}

.cat p,
.dish p {
  margin-top: 6px;
  color: var(--muted);
}

.banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner .shade {
  position: absolute;
  inset: 0;
  background: var(--banner-shade);
}

.banner .label,
.banner h2,
.banner .prose {
  color: #f3ebdd;
}

.banner-copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
}

.dish {
  text-align: left;
}

.dish .media {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 18px;
}

.dish .media img {
  height: 100%;
}

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  background: var(--badge-bg);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  backdrop-filter: blur(8px);
}

.stats {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 800px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--saffron);
  font-weight: 400;
}

.stats span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.interior-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 800px) {
  .interior-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.interior img {
  height: 300px;
}

.interior figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.reviews {
  border-block: 1px solid var(--line);
  text-align: center;
}

.score {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--saffron);
}

.stars {
  color: var(--saffron);
  margin: 8px 0;
}

.review-text {
  margin: 40px auto 0;
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
}

.dots {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
}

.dots button.on {
  background: var(--saffron);
}

.gather {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.gather img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.gather .shade {
  position: absolute;
  inset: 0;
  background: rgba(14, 34, 26, 0.8);
}

.gather .label,
.gather h2,
.gather .prose {
  color: #f3ebdd;
}

.cards {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  width: 100%;
}

.card:hover {
  border-color: rgba(224, 177, 91, 0.4);
}

.card h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: 2rem;
}

.card p {
  color: var(--muted);
}

.card .go {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
}

.page-hero {
  padding: 160px 0 40px;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 4.6rem);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.chips button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.chips button:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.menu-block {
  margin-top: 72px;
  scroll-margin-top: 110px;
}

.menu-list {
  margin-top: 28px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.menu-item p {
  margin-top: 4px;
  max-width: 540px;
  font-size: 14px;
  color: var(--muted);
}

.price {
  color: var(--saffron);
  padding-top: 6px;
  white-space: nowrap;
}

.note {
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
}

.gallery-grid {
  columns: 1;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .gallery-grid { columns: 2; }
}
@media (min-width: 960px) {
  .gallery-grid { columns: 3; }
}

.gallery-grid img {
  margin-bottom: 16px;
  break-inside: avoid;
}

.hours {
  margin-top: 32px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.hours span {
  color: var(--muted);
}

.map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  filter: grayscale(40%) contrast(1.15);
}

.field {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--field-bg);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

.field:focus {
  border-color: var(--saffron);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  }
}

.footer h3 {
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer p,
.footer a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer a:hover,
.footer button:hover {
  color: var(--saffron);
}

.footer .btn {
  margin-top: 8px;
}

.copy {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--stone);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--modal-veil);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.modal.show {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: var(--modal-bg);
  padding: 32px;
}

.modal form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.success {
  margin-top: 28px;
  border: 1px solid rgba(224, 177, 91, 0.3);
  background: var(--success-bg);
  border-radius: 12px;
  padding: 20px;
}

.close-link {
  display: block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

body.lock {
  overflow: hidden;
}

html[data-theme="light"] .nav:not(.scrolled) .nav-left,
html[data-theme="light"] .nav:not(.scrolled) .logo-name,
html[data-theme="light"] .nav:not(.scrolled) .theme-toggle {
  color: #f3ebdd;
}

html[data-theme="light"] .nav:not(.scrolled) .logo-tag {
  color: rgba(224, 177, 91, 0.9);
}

html[data-theme="light"] .nav:not(.scrolled) .btn-ghost {
  color: #f3ebdd;
  border-color: rgba(243, 235, 221, 0.35);
}

@media (max-width: 700px) {
  .menu-word,
  .nav-right a.btn-ghost {
    display: none;
  }
  .round img {
    height: 320px;
  }
}
