:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  --bg: #0b0b0b;
  --panel: #151413;
  --panel-2: #1e1b18;
  --line: rgba(244, 244, 241, 0.1);
  --accent: #daab7f;
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.62);
}

@font-face {
  font-family: "Farabee Straight";
  src:
    local("Farabee Straight Regular"),
    local("Farabee Straight"),
    url("../assets/fonts/Farabee%20font/Farabee%20Straight%20Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Farabee Straight";
  src:
    local("Farabee Straight Bold"),
    url("../assets/fonts/Farabee%20font/Farabee%20Straight%20Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(circle at 20% 0%, rgba(218, 171, 127, 0.1), transparent 34%),
    var(--bg);
}

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

.menu-shell {
  width: min(1240px, calc(100vw - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 38px 0 54px;
}

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

.menu-logo {
  font-family: "Farabee Straight", "Arial Narrow", Arial, sans-serif;
  color: var(--text);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.menu-hero p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-hero h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

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

.menu-intro p {
  margin: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(244, 244, 241, 0.035);
  color: rgba(244, 244, 241, 0.76);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(218, 171, 127, 0.08), transparent 48%),
    var(--panel);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(218, 171, 127, 0.72);
  background:
    linear-gradient(145deg, rgba(218, 171, 127, 0.16), transparent 52%),
    var(--panel-2);
  outline: none;
  transform: translateY(-2px);
}

.service-card span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h2 {
  margin: 16px 0 0;
  font-size: 1.28rem;
  line-height: 1.05;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-faq h2 {
  margin: 12px 0 4px;
  font-size: 1.5rem;
}

.service-faq details {
  border: 1px solid var(--line);
  background: rgba(244, 244, 241, 0.035);
}

.service-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 900;
}

.service-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-related {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-related h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.service-related nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-related a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-related a:hover,
.service-related a:focus-visible {
  border-color: rgba(218, 171, 127, 0.72);
  color: var(--text);
  outline: none;
}

@media (max-width: 720px) {
  .menu-shell {
    width: min(100% - 22px, 1240px);
    padding-top: 24px;
  }

  .menu-hero {
    display: grid;
    align-items: start;
  }

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

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

  .menu-intro p {
    min-height: 0;
  }
}
