:root {
  --bg: #080808;
  --panel: #101010;
  --panel-strong: #151515;
  --text: #f5f5f5;
  --muted: #bcbcbc;
  --gold: #c9a34a;
  --gold-soft: #e6ca7f;
  --line: #232323;
  --maxw: 1120px;
  --radius: 16px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(201, 163, 74, 0.12), transparent 35%),
    radial-gradient(circle at 88% 5%, rgba(201, 163, 74, 0.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 45%, #070707 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
}

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

.container {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  min-width: 2.45rem;
  min-height: 2rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold);
  color: #141414;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}

.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  font-family: Manrope, sans-serif;
}

.brand-text {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 10px;
}

.nav-toggle span {
  height: 2px;
  background: var(--text);
  display: block;
}

.main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  display: none;
  background: #0f0f0f;
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 4vw 1rem;
}

.main-nav.open {
  display: grid;
}

.main-nav a {
  padding: 0.8rem 0;
  border-bottom: 1px dashed #242424;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(201, 163, 74, 0.16) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 64px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.3) 10%, rgba(4, 4, 4, 0.9) 65%, #080808 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.hero-content {
  position: relative;
  padding: 3rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 12vw, 5.2rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.7rem, 8vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.55rem;
}

.hero-text {
  max-width: 54ch;
  color: #dedede;
  margin: 1rem 0 1.5rem;
}

.hero-notes {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-notes li {
  position: relative;
  padding-left: 1rem;
  color: #d6c5a7;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border: 1px solid rgba(201, 163, 74, 0.18);
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.82);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #141414;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-soft);
}

.btn-ghost {
  border-color: #494949;
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.section {
  padding: 3.4rem 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--panel) 0%, #0a0a0a 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  color: var(--muted);
  margin-top: -0.4rem;
}

.cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0.45rem 0 0;
  color: #d4d4d4;
}

.price-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: var(--panel);
  border-top: 1px solid #1e1e1e;
}

.price-item:first-child {
  border-top: 0;
}

.price-item span {
  color: #d9d9d9;
  font-weight: 500;
}

.price-item strong {
  color: var(--gold-soft);
  font-weight: 800;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.about-grid p,
.contact-grid p {
  margin: 0.7rem 0 0;
  color: #d6d6d6;
}

.about-panel {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.about-panel ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: #dddddd;
}

.impression {
  background: linear-gradient(180deg, rgba(201, 163, 74, 0.04), rgba(9, 9, 9, 0));
}

.impression-grid {
  display: grid;
  gap: 1rem;
}

.impression-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.88));
}

.impression-card p {
  margin: 0.55rem 0 0;
  color: #d3d3d3;
}

.hours {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.95rem;
  background: var(--panel);
  border-top: 1px solid #1f1f1f;
}

.hours li:first-child {
  border-top: 0;
}

.hours-note {
  color: var(--muted);
  margin-top: 0.65rem;
  font-size: 0.94rem;
}

#contact p[data-i18n="contactNote"] {
  color: #d6d6d6;
  max-width: 36ch;
}

.site-footer {
  padding: 1.2rem 0;
  background: #050505;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

.footer-row a {
  color: var(--gold-soft);
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .main-nav a {
    border: 0;
    padding: 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: start;
  }

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

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
