:root {
  --bg: #0c0d10;
  --panel: #16181d;
  --line: #2a2d34;
  --text: #f3f1ec;
  --muted: #a8a59c;
  --accent: #d4a017;
  --accent-2: #f0c14b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Barlow, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1100px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 13, 16, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
}
.logo {
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { color: var(--accent); margin-left: 0.25em; }
.nav { display: flex; gap: 18px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--text); }
.menu-btn {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 11px 10px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #1a1404;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}
.btn:hover { background: var(--accent-2); }
.btn-sm { padding: 8px 12px; font-size: 0.9rem; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,0.25) 10%, rgba(12,13,16,0.88) 100%);
}
.hero-copy {
  position: relative;
  padding: 48px 0 64px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 10px;
}
h1, h2, h3, .table-title { line-height: 1.15; }
h2, h3, .table-title {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1 {
  font-family: Barlow, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
  margin: 0 0 16px;
}
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 16px; }
.lead { max-width: 38rem; color: #ddd9ce; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.services, .prices, .gallery, .contact { padding: 80px 0; }
.services { background: #101216; }
.service-grid, .gallery-grid {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card h3, .card p { padding-inline: 18px; }
.card h3 { margin: 16px 0 8px; }
.card p { color: var(--muted); margin: 0 0 20px; }

.note, .muted { color: var(--muted); }
.table-title { margin: 36px 0 12px; font-size: 1.1rem; color: var(--accent); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; background: #12141a; }
.featured td { color: var(--accent-2); font-weight: 700; }
.addons { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); }
.addons li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.addons li:last-child { border-bottom: 0; }
.addons em { color: var(--muted); font-style: normal; font-weight: 400; }

.gallery-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.gallery-grid figure { margin: 0; background: var(--panel); border: 1px solid var(--line); }
.gallery-grid img { height: 240px; width: 100%; object-fit: cover; }
.gallery-grid .wide { grid-column: 1 / -1; }
.gallery-grid .wide img { height: 320px; }
figcaption { padding: 10px 14px; color: var(--muted); font-size: 0.92rem; }

.contact { background: #101216; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
address { font-style: normal; background: var(--panel); border: 1px solid var(--line); padding: 24px; }
address a { color: var(--accent-2); }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .header-inner .btn-sm { display: none; }
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #111318;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .service-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid .wide img { height: 220px; }
}
