:root {
  --black: #050505;
  --charcoal: #0e0f0d;
  --panel: #141610;
  --panel-soft: #1b1d16;
  --gold: #d4af37;
  --gold-light: #f1d987;
  --green: #0f3d2e;
  --green-light: #1f6b50;
  --cream: #f7efe2;
  --muted: #b8ad9c;
  --line: rgba(212, 175, 55, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 107, 80, 0.38), transparent 34rem),
    radial-gradient(circle at 85% 0%, rgba(212, 175, 55, 0.2), transparent 32rem),
    linear-gradient(135deg, #030303 0%, #090a08 45%, #10120d 100%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

input,
select,
button {
  font: inherit;
}

.section-padding {
  padding: 110px 7%;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 16px 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.logo {
  letter-spacing: -0.04em;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
  white-space: nowrap;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.8vw, 24px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(15, 61, 46, 0.55));
  color: var(--cream) !important;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding-top: 150px;
}

.hero::before {
  position: absolute;
  inset: 13% 4% auto auto;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

.hero-content,
.hero-visual,
.section-heading,
.about-content,
.reservation-panel,
.contact-card,
.contact-details {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  line-height: 1;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.06em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #fff0ae);
  box-shadow: 0 14px 38px rgba(212, 175, 55, 0.24);
  color: #12110c;
}

.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(212, 175, 55, 0.34);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.btn-secondary:hover {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.1);
}

.hero-stats {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.hero-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 44px;
  transform: rotate(-4deg);
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.65), rgba(212, 175, 55, 0.12));
}

.hero-visual img {
  height: min(66vh, 720px);
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 44px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: -8%;
  bottom: 9%;
  width: min(270px, 78%);
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.floating-card span,
.tag {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1;
}

.floating-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow .eyebrow {
  justify-content: center;
}

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

.dish-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: var(--shadow);
}

.dish-card img {
  height: 280px;
  transition: transform 0.45s ease;
}

.large-card img {
  height: 430px;
}

.dish-card:hover img {
  transform: scale(1.06);
}

.dish-info {
  padding: 26px;
}

.dish-info h3 {
  margin: 9px 0 10px;
}

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

.dish-info strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.menu {
  background:
    linear-gradient(180deg, rgba(15, 61, 46, 0), rgba(15, 61, 46, 0.16), rgba(15, 61, 46, 0)),
    rgba(255, 255, 255, 0.015);
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-column {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(5, 5, 5, 0.46);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.featured-column {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(15, 61, 46, 0.2));
}

.menu-column h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--gold-light);
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

.menu-item span {
  color: var(--gold-light);
  font-weight: 850;
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.about-image {
  position: relative;
}

.about-image::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  width: 76%;
  height: 76%;
  content: "";
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, var(--green), rgba(212, 175, 55, 0.32));
}

.about-image img {
  height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.about-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--gold-light);
  font-weight: 850;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  height: 260px;
  border: 1px solid var(--line);
  border-radius: 26px;
  filter: saturate(0.95) contrast(1.06);
  transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.38);
  filter: saturate(1.1) contrast(1.08);
}

.gallery-tall {
  grid-row: span 2;
  height: 536px !important;
}

.gallery-wide {
  grid-column: span 2;
}

.reservations {
  padding-top: 70px;
}

.reservation-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 60px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.7), rgba(5, 5, 5, 0.76)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1400&q=85") center/cover;
  box-shadow: var(--shadow);
}

.reservation-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(12px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.booking-form select option {
  background: #111;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(212, 175, 55, 0.68);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.booking-form .btn {
  grid-column: span 2;
  width: 100%;
}

.contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
  gap: 22px;
}

.contact-card,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.contact-card {
  padding: 34px;
}

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

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.contact-details div {
  padding: 30px;
  background: rgba(5, 5, 5, 0.72);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 7%;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--gold-light);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero,
  .about,
  .reservation-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-visual img {
    height: 560px;
  }

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

  .large-card {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .section-padding {
    padding: 82px 5%;
  }

  .site-header {
    position: absolute;
    top: 14px;
    width: calc(100% - 24px);
    align-items: flex-start;
    border-radius: 28px;
  }

  .main-nav {
    max-width: 330px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 8px 14px;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .hero-stats,
  .dish-grid,
  .menu-board,
  .booking-form,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .large-card,
  .booking-form .btn {
    grid-column: auto;
  }

  .hero-visual img,
  .about-image img,
  .large-card img {
    height: 430px;
    min-height: auto;
  }

  .floating-card {
    right: 16px;
    bottom: 16px;
  }

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

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    height: 260px !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 210px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual img,
  .about-image img {
    height: 360px;
    border-radius: 28px;
  }

  .dish-card,
  .menu-column,
  .reservation-panel,
  .contact-card,
  .contact-details {
    border-radius: 26px;
  }

  .dish-info,
  .menu-column,
  .contact-card,
  .contact-details div {
    padding: 22px;
  }

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

  .gallery-grid img,
  .gallery-tall,
  .gallery-wide {
    height: 280px !important;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
