@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #04140f;
  --deep: #07241a;
  --emerald: #0f4f3c;
  --emerald-mid: #1a6b52;
  --gold: #d4af6a;
  --gold-soft: #e8d5a3;
  --ivory: #f7f3eb;
  --muted: #9aada4;
  --line: rgba(212, 175, 106, 0.28);
  --glass: rgba(7, 36, 26, 0.72);
  --warn-bg: #f5e6a8;
  --warn-ink: #1a1a1a;
  --nav-h: 4.5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ivory);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 107, 82, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(212, 175, 106, 0.12), transparent 45%),
    linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-main {
  display: none;
}

.site-main.is-visible {
  display: block;
}

.navbar {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 36, 26, 0.95), rgba(4, 20, 15, 0.88));
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at 30% 25%, rgba(232, 213, 163, 0.25), transparent 55%),
    linear-gradient(145deg, var(--emerald-mid), var(--emerald));
  color: var(--gold-soft);
}

.brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: rgba(15, 79, 60, 0.45);
  color: var(--ivory);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--gold-soft);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: clamp(280px, 42vh, 460px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 15, 0.92) 0%, rgba(4, 20, 15, 0.72) 42%, rgba(4, 20, 15, 0.35) 100%),
    linear-gradient(0deg, rgba(4, 20, 15, 0.75) 0%, transparent 55%);
}

.hero-content {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
  max-width: 36rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1.65;
  max-width: 32rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head h2,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-head p,
.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.experience {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 79, 60, 0.18), transparent);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.experience-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.experience-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.experience-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.experience-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.experience-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--ivory);
  font-size: 0.98rem;
}

.experience-list i {
  color: var(--gold);
  margin-top: 0.2rem;
  width: 1.1rem;
  text-align: center;
}

.features {
  background:
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(212, 175, 106, 0.08), transparent 60%),
    transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.features-grid.is-dense {
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 1.6rem 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(15, 79, 60, 0.35), rgba(4, 20, 15, 0.55));
}

.feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 1.1rem;
  background: rgba(212, 175, 106, 0.08);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-media {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 20% center;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), #b8914c);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(212, 175, 106, 0.1);
  filter: none;
}

.cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(15, 79, 60, 0.45), rgba(4, 20, 15, 0.2)),
    radial-gradient(ellipse at left, rgba(212, 175, 106, 0.12), transparent 55%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.cta-inner p {
  color: var(--muted);
  max-width: 34rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.split-media img.is-lounge {
  object-position: 12% center;
}

.mt-lg {
  margin-top: 1.25rem;
}

.faq-more {
  margin-top: 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-item {
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(15, 79, 60, 0.22);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.step-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(15, 79, 60, 0.28), rgba(4, 20, 15, 0.5));
}

.info-card i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.info-card ul {
  display: grid;
  gap: 0.4rem;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(15, 79, 60, 0.4), rgba(4, 20, 15, 0.15)),
    radial-gradient(ellipse at right, rgba(212, 175, 106, 0.1), transparent 50%);
}

.faq-preview {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  padding: 1.15rem 1.25rem;
  background: rgba(4, 20, 15, 0.45);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.faq-item h3 i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.responsible-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: rgba(15, 79, 60, 0.25);
}

.responsible-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.responsible-box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.highlight-list {
  display: grid;
  gap: 0.75rem;
}

.highlight-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ivory);
  font-size: 0.95rem;
}

.highlight-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

@media (max-width: 960px) {
  .steps-grid,
  .info-grid,
  .responsible-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: #020c09;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 106, 0.16);
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.28rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--ivory);
}

.footer-col a i {
  width: 1.1rem;
  margin-right: 0.35rem;
  color: var(--gold);
}

.footer-disclaimer {
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  background: var(--warn-bg);
  color: var(--warn-ink);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-disclaimer a {
  color: var(--warn-ink);
  text-decoration: underline;
}

.footer-legal-notes {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-legal-notes li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-legal-notes i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 10, 8, 0.86);
  backdrop-filter: blur(6px);
}

.overlay.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 440px);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top, rgba(26, 107, 82, 0.28), transparent 55%),
    linear-gradient(180deg, #0a2a1f, #04140f);
  padding: 1.85rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.modal-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.25rem;
}

.modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.modal-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.age-restricted {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(ellipse at center, rgba(15, 79, 60, 0.25), transparent 60%),
    var(--ink);
}

.age-restricted.is-visible {
  display: flex;
}

.restricted-card {
  width: min(100%, 520px);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 79, 60, 0.3), rgba(4, 20, 15, 0.9));
}

.restricted-card .modal-icon {
  margin-bottom: 1.1rem;
}

.restricted-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.85rem;
}

.restricted-card p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  width: min(calc(100% - 2rem), 720px);
  margin-inline: auto;
  border: 1px solid var(--line);
  background: rgba(4, 20, 15, 0.96);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner h3 i {
  color: var(--gold);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-banner p a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 960px) {
  .experience-grid,
  .split,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-visual,
  .experience-visual img,
  .split-media,
  .split-media img {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--glass);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(212, 175, 106, 0.12);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: clamp(260px, 48vh, 400px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 20, 15, 0.55) 0%, rgba(4, 20, 15, 0.88) 100%),
      linear-gradient(90deg, rgba(4, 20, 15, 0.65), transparent 70%);
  }

  .hero-content {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    width: auto;
  }
}

.page-hero {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(26, 107, 82, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(15, 79, 60, 0.2), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.02rem;
}

.page-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.prose {
  max-width: 48rem;
  display: grid;
  gap: 1rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-top: 1.25rem;
  color: var(--gold-soft);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 0.5rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.98rem;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.15rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.menu-card {
  border: 1px solid var(--line);
  padding: 1.4rem 1.3rem;
  background: linear-gradient(160deg, rgba(15, 79, 60, 0.32), rgba(4, 20, 15, 0.55));
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
}

.menu-card .price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.menu-card ul {
  display: grid;
  gap: 0.45rem;
}

.menu-card li {
  color: var(--muted);
  font-size: 0.94rem;
  padding-left: 0.85rem;
  position: relative;
}

.menu-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  background: rgba(15, 79, 60, 0.25);
}

.contact-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.contact-card a.mail {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}

@media (max-width: 860px) {
  .menu-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}
