:root {
  --ink: #060809;
  --ink-soft: #101417;
  --panel: rgba(9, 13, 15, 0.82);
  --line: rgba(232, 197, 129, 0.24);
  --gold: #e8c581;
  --gold-bright: #ffe6aa;
  --teal: #25d4d8;
  --text: #f8f1e7;
  --muted: #b7b1a8;
  --white-soft: rgba(255, 255, 255, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-visible {
  padding-block: 11px;
  background: rgba(5, 8, 9, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: clamp(92px, 10vw, 142px);
  max-height: 112px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  align-items: center;
  padding: 120px clamp(22px, 6vw, 84px) 72px;
  isolation: isolate;
}

.menu-hero,
.contact-hero {
  position: relative;
  display: grid;
  min-height: 40svh;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 6vw, 84px) 52px;
  isolation: isolate;
}

.menu-hero::before,
.contact-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: linear-gradient(90deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.42)),
    linear-gradient(180deg, rgba(3, 5, 6, 0.2), rgba(3, 5, 6, 0.94)),
    url("assets/velazur-terrace.jpeg");
  background-position: center;
  background-size: cover;
}

.menu-hero h1,
.contact-hero h1 {
  max-width: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.36) 48%, rgba(3, 5, 6, 0.28)),
    linear-gradient(180deg, rgba(3, 5, 6, 0.25), rgba(3, 5, 6, 0.92)),
    url("assets/velazur-terrace.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 28px;
  left: clamp(18px, 6vw, 84px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 197, 129, 0.8), rgba(37, 212, 216, 0.7), transparent);
}

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

.hero-logo {
  width: min(340px, 64vw);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 8.5vw, 8rem);
  line-height: 0.9;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.1rem;
}

.hero-copy,
.reservation-copy p,
.intro-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 32px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #081012;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 48%, #46e0df);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(68px, 9vw, 132px) clamp(18px, 6vw, 84px);
  scroll-margin-top: 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.intro {
  background: linear-gradient(180deg, #060809, #0c1113);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-grid div {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(8, 12, 14, 0.95);
}

.intro-grid span,
.contact-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
}

.signature-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: auto;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 212, 216, 0.13), transparent 28%),
    linear-gradient(180deg, #0c1113, #061011);
}

.story-backdrop {
  position: relative;
  order: 2;
  height: clamp(330px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.story-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 6, 7, 0.46)),
    linear-gradient(90deg, rgba(3, 6, 7, 0.12), rgba(3, 6, 7, 0));
}

.signature-story::after {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 34px;
  left: clamp(18px, 6vw, 84px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 197, 129, 0.8), rgba(37, 212, 216, 0.7), transparent);
}

.story-content {
  display: grid;
  order: 1;
  width: min(900px, 100%);
  gap: 0;
}

.story-content h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.story-content p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.78;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin-top: clamp(26px, 3vw, 40px);
}

.story-highlights span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(232, 197, 129, 0.28);
  border-radius: var(--radius);
  color: #fff8e8;
  background: rgba(5, 8, 9, 0.52);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 2.4vw, 34px);
}

.menu-section {
  background:
    radial-gradient(circle at 22% 0%, rgba(37, 212, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #0c1113, #050707);
}

.menu-page .menu-section {
  padding-top: clamp(46px, 6vw, 82px);
}

.menu-heading {
  align-items: center;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.menu-tabs button,
.category-rail button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-tabs button {
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-tabs button.active,
.category-rail button.active {
  color: #081012;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--teal));
}

.menu-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.category-rail {
  position: sticky;
  top: 92px;
  display: grid;
  max-height: calc(100svh - 120px);
  gap: 8px;
  overflow: auto;
  padding-right: 4px;
}

.category-rail button {
  min-height: 44px;
  padding: 0 14px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-panel {
  min-width: 0;
}

.menu-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-tools p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.search-field {
  display: grid;
  width: min(460px, 100%);
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-field input,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(232, 197, 129, 0.28);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.search-field input {
  min-height: 48px;
  padding: 0 14px;
}

.menu-list {
  display: grid;
  gap: 32px;
}

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

.category-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.category-title h3 {
  color: var(--gold-bright);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.category-title span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-item {
  display: grid;
  min-width: 0;
  min-height: 138px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.menu-item.has-image {
  grid-template-rows: auto 1fr;
}

.item-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.item-body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.item-top {
  display: flex;
  min-width: 0;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.item-top h4 {
  margin: 0;
  min-width: 0;
  color: #fffaf0;
  font-size: 1rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.price {
  flex: 0 0 auto;
  max-width: min(260px, 44vw);
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.meta {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--panel);
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 8, 9, 0.96), rgba(6, 8, 9, 0.84)),
    url("assets/velazur-terrace.jpeg") center/cover fixed;
}

.reservation-copy {
  position: sticky;
  top: 110px;
}

.reservation-form {
  display: grid;
  width: 100%;
  gap: 15px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 9, 0.76);
  backdrop-filter: blur(14px);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

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

.reservation-form input,
.reservation-form select {
  min-height: 48px;
  padding: 0 13px;
}

.reservation-form textarea {
  min-height: 116px;
  padding: 13px;
  resize: vertical;
}

.contact {
  background: #050707;
}

.contact-page-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(37, 212, 216, 0.14), transparent 30%),
    linear-gradient(180deg, #0b1011, #050707);
}

.contact-page .site-header.scrolled {
  background: rgba(3, 6, 7, 0.94);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.contact-info-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.contact-info-panel {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: clamp(22px, 4vw, 42px);
}

.contact-info-panel h2 {
  font-size: clamp(2rem, 4.2vw, 4.4rem);
}

.contact-detail-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(232, 197, 129, 0.2);
  background: rgba(232, 197, 129, 0.18);
}

.contact-detail-list > div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(5, 8, 9, 0.78);
}

.contact-detail-list span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-list p,
.contact-detail-list a {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-panel {
  min-height: 560px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) saturate(0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-grid > * {
  min-height: 160px;
  padding: 24px;
  background: var(--ink-soft);
}

.site-footer {
  padding: 38px clamp(18px, 6vw, 84px) 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030505;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(190px, 0.65fr) minmax(230px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.footer-brand img {
  width: 132px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-local span,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links,
.footer-local {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-bright);
}

.footer-local span:first-child {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(232, 197, 129, 0.76);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 8, 9, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav.open {
    display: grid;
  }

  .hero {
    min-height: 88svh;
  }

  .section-heading,
  .menu-tools,
  .reservation {
    display: grid;
  }

  .reservation {
    grid-template-columns: 1fr;
    align-items: start;
    background-attachment: scroll;
  }

  .intro-grid,
  .item-grid,
  .signature-story,
  .contact-grid,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 420px;
  }

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

  .category-rail {
    position: static;
    display: flex;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .category-rail button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .reservation-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    padding: 102px 18px 64px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-actions,
  .field-pair {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .reservation {
    padding-block: 58px;
    gap: 26px;
  }

  .reservation h2 {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  .reservation-form {
    padding: 18px;
    gap: 13px;
  }

  .signature-story {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 62px;
    gap: 26px;
  }

  .story-backdrop {
    order: 1;
    height: 250px;
  }

  .story-backdrop img {
    object-position: 58% center;
  }

  .story-content {
    order: 2;
    gap: 17px;
  }

  .story-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
    margin-bottom: 0;
  }

  .story-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .story-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }

  .story-highlights span {
    min-height: 48px;
    padding: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .story-actions {
    display: grid;
    margin-top: 4px;
  }

  .contact-hero {
    min-height: 38svh;
    padding: 142px 16px 34px;
    align-items: end;
  }

  .contact-hero h1 {
    font-size: clamp(3.1rem, 18vw, 4.6rem);
  }

  .contact-hero .hero-copy {
    margin: 16px 0 0;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .contact-page-section {
    padding-top: 34px;
  }

  .contact-info-panel {
    gap: 20px;
    padding: 16px;
  }

  .contact-info-panel h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .contact-detail-list > div {
    gap: 7px;
    padding: 15px;
  }

  .contact-detail-list p,
  .contact-detail-list a {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .contact-actions {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 320px;
  }

  .menu-tabs {
    justify-content: flex-start;
  }

  .menu-tools p {
    white-space: normal;
  }

  .item-top {
    display: grid;
    gap: 8px;
  }

  .item-photo {
    aspect-ratio: 4 / 3;
  }

  .item-body {
    padding: 16px;
  }

  .price {
    max-width: 100%;
    text-align: left;
  }
}
