:root {
  --bg: #140905;
  --bg-soft: #21100a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #fff7ed;
  --muted: rgba(255, 247, 237, 0.72);
  --muted-strong: rgba(255, 247, 237, 0.86);
  --gold: #f4b63f;
  --gold-dark: #d47b00;
  --orange: #e58200;
  --line: rgba(244, 182, 63, 0.22);
  --white-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Satisfy", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 6%, rgba(244, 182, 63, 0.14), transparent 32rem),
    radial-gradient(circle at 82% 40%, rgba(212, 123, 0, 0.15), transparent 24rem),
    linear-gradient(180deg, #140905 0%, #1c0d07 44%, #0f0704 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 8vw, 120px) 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #170a05;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(20, 9, 5, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--white-line);
  background: rgba(20, 9, 5, 0.92);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(244, 182, 63, 0.08);
  box-shadow: inset 0 0 28px rgba(244, 182, 63, 0.08);
}

.brand strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(2) {
  top: 15px;
}

.nav-toggle span:nth-child(3) {
  top: 22px;
}

.nav-toggle span:nth-child(4) {
  top: 29px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding-top: clamp(58px, 7vw, 96px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 22%, rgba(244, 182, 63, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(20, 9, 5, 0.25), rgba(20, 9, 5, 0.88)),
    url("data:image/svg+xml,%3Csvg width='900' height='700' viewBox='0 0 900 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f4b63f' stroke-opacity='.09'%3E%3Ccircle cx='710' cy='210' r='92'/%3E%3Ccircle cx='710' cy='210' r='132'/%3E%3Cpath d='M58 520h780M110 573h670M173 626h540'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.85;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-size: clamp(4.3rem, 8vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

h1 span {
  display: block;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0;
  transform: rotate(-2deg);
  transform-origin: left center;
  text-shadow: 0 0 30px rgba(244, 182, 63, 0.24);
}

.hero-lead {
  max-width: 690px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #190b04;
  background: linear-gradient(135deg, #ffc857, var(--orange));
  box-shadow: 0 18px 36px rgba(229, 130, 0, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 46px rgba(229, 130, 0, 0.4);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 660px;
  margin-top: 44px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white-line);
}

.hero-proof article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 44% 36%, rgba(244, 182, 63, 0.25), transparent 20rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 12%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 182, 63, 0.13), transparent 68%);
}

.plate-visual {
  position: absolute;
  inset: 50px 20px 120px;
}

.plate {
  position: absolute;
  width: min(78%, 360px);
  aspect-ratio: 1;
  left: 50%;
  top: 44%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09) 0 28%, transparent 29% 100%),
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.15), transparent 21%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.28),
    0 30px 80px rgba(0, 0, 0, 0.36);
}

.sauce {
  position: absolute;
  left: 48%;
  top: 45%;
  width: 126px;
  height: 126px;
  border-radius: 44% 56% 48% 52%;
  background: linear-gradient(135deg, #8b120b, #f4b63f);
  transform: translate(-50%, -50%) rotate(18deg);
  filter: blur(0.2px);
}

.leaf {
  position: absolute;
  display: block;
  width: 90px;
  height: 34px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #f2da86, #4b8a54);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.leaf-one {
  left: 58%;
  top: 28%;
  transform: rotate(-22deg);
}

.leaf-two {
  left: 32%;
  top: 58%;
  transform: rotate(148deg);
}

.opening-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: rgba(20, 9, 5, 0.72);
  backdrop-filter: blur(18px);
}

.opening-card p {
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.opening-card strong {
  display: block;
  font-size: 1.5rem;
}

.opening-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

/* Sections */

.intro-grid,
.events-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.intro-copy {
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.feature-card,
.review-card,
.dish-card,
.events-panel,
.quote-card,
.booking-form,
.contact-card {
  border: 1px solid var(--white-line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(244, 182, 63, 0.12);
}

.feature-card p,
.review-card p,
.dish-card p,
.events-panel p,
.quote-card p,
.reservation p,
.site-footer p {
  color: var(--muted);
}

/* Menu */

.menu-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    radial-gradient(circle at 50% 0%, rgba(244, 182, 63, 0.08), transparent 30rem);
}

.section-heading {
  max-width: 820px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading .section-kicker::before {
  display: none;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.dish-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 182, 63, 0.42);
}

.dish-card.featured {
  background: rgba(244, 182, 63, 0.08);
}

.dish-visual {
  min-height: 230px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(244, 182, 63, 0.1), rgba(255, 255, 255, 0.04));
  position: relative;
  overflow: hidden;
}

.dish-visual::before {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 60% 42%, rgba(244, 182, 63, 0.7), transparent 9%),
    radial-gradient(circle at 42% 56%, rgba(145, 28, 18, 0.9), transparent 15%),
    radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 55%);
}

.visual-two::before {
  background:
    radial-gradient(circle at 43% 42%, rgba(244, 182, 63, 0.72), transparent 12%),
    radial-gradient(circle at 56% 56%, rgba(77, 131, 72, 0.8), transparent 14%),
    radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 55%);
}

.visual-three::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 246, 210, 0.78), transparent 12%),
    radial-gradient(circle at 47% 56%, rgba(139, 18, 11, 0.78), transparent 18%),
    radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 55%);
}

.dish-content {
  padding: 24px;
}

.dish-content div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.dish-content strong {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.7rem;
}

/* Events */

.events-panel,
.quote-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
}

.events-panel {
  background:
    linear-gradient(135deg, rgba(244, 182, 63, 0.1), rgba(255, 255, 255, 0.04));
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted-strong);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #150904;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
}

.quote-card {
  min-height: 390px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 76% 18%, rgba(244, 182, 63, 0.16), transparent 15rem),
    var(--panel);
}

.quote-card p {
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.quote-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Reviews */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

/* Reservation */

.reservation {
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 182, 63, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.025);
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.contact-card a {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.booking-form {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(244, 182, 63, 0.7);
  box-shadow: 0 0 0 4px rgba(244, 182, 63, 0.1);
}

::placeholder {
  color: rgba(255, 247, 237, 0.42);
}

.error-message {
  min-height: 18px;
  color: #ffb4a8;
  font-weight: 700;
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.success-message {
  margin-top: 18px;
  padding: 0;
  border-radius: 16px;
  color: #160b05;
  background: var(--gold);
  font-weight: 900;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.success-message.is-visible {
  max-height: 120px;
  padding: 14px 16px;
}

/* Footer */

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--white-line);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 14px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

/* Responsive */

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: 88px 16px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--white-line);
    border-radius: 24px;
    background: rgba(20, 9, 5, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-menu a {
    padding: 15px 16px;
    font-size: 1.05rem;
  }

  .hero-grid,
  .intro-grid,
  .events-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 440px;
  }

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

  .dish-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) 1fr;
  }

  .dish-visual {
    min-height: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 78px;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .nav-menu {
    inset-top: 78px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .hero-proof article {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
  }

  .hero-card {
    display: none;
  }

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

  .dish-visual {
    min-height: 190px;
  }

  .form-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
