*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0b0a;
  --bg-2: #131110;
  --text: #f0ebe4;
  --text-2: #8a8078;
  --accent: #c9a96e;
  --accent-2: #a8874f;
  --line: #2a2420;
  --radius: 10px;
  --font: 'Josefin Sans', system-ui, sans-serif;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px; height: 68px;
  background: rgba(13,11,10,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 19px; font-weight: 700; text-decoration: none; color: var(--text); letter-spacing: .02em; }
.brand span { color: var(--accent); }
.nav-toggle { display: none; }
.menu-button { display: none; cursor: pointer; font-size: 22px; margin-left: auto; color: var(--text); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 14px; transition: .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #0d0b0a !important; padding: 9px 20px; border-radius: 8px; font-weight: 700; }
.nav-cta:hover { background: var(--accent-2) !important; }

/* ── Hero ── */
.hero {
  position: relative; min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  background: #0d0b0a url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&h=900&fit=crop') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.88) 45%, rgba(0,0,0,.2)); }
.hero-content { position: relative; z-index: 1; padding: 80px 64px; max-width: 640px; }
.eyebrow { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(44px, 5vw, 74px); line-height: 1.05; margin-bottom: 20px; font-weight: 800; }
.hero-content p { font-size: 17px; color: rgba(240,235,228,.7); margin-bottom: 36px; max-width: 420px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; transition: .2s; }
.btn-gold { background: var(--accent); color: #0d0b0a; }
.btn-gold:hover { background: var(--accent-2); }
.btn-ghost { border: 1.5px solid rgba(240,235,228,.2); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Sections ── */
section:not(.hero) { padding: 88px 64px; }
.section-heading { margin-bottom: 52px; }
.label { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-heading h2 { font-size: clamp(28px, 3vw, 44px); }

/* ── Services ── */
.services { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service-card { padding: 40px 32px; background: var(--bg-2); transition: .2s; }
.service-card:hover { background: rgba(201,169,110,.06); }
.snum { display: block; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .1em; margin-bottom: 20px; }
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: 14px; line-height: 1.75; }

/* ── Pricing ── */
.pricing { background: var(--bg); }
.price-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; border-bottom: 1px solid var(--line); font-size: 15px; transition: .15s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(201,169,110,.05); }
.price { color: var(--accent); font-weight: 600; }
.price-note { margin-top: 16px; font-size: 13px; color: var(--text-2); }

/* ── About ── */
.about { display: grid; grid-template-columns: 1fr 1fr; padding: 0; border-top: 1px solid var(--line); }
.about-image { overflow: hidden; min-height: 480px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text { padding: 72px 56px; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: clamp(26px, 2.5vw, 40px); line-height: 1.2; margin: 12px 0 20px; }
.about-text > p { color: var(--text-2); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.about-hours { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.about-hours p { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); margin: 0; }
.about-hours strong { color: var(--text); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, #1a1612, #0d0b0a);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta h2 { font-size: clamp(24px, 3vw, 36px); margin: 10px 0 8px; }
.cta p { color: var(--text-2); font-size: 15px; }

/* ── Footer ── */
.footer { padding: 28px 64px; border-top: 1px solid var(--line); font-size: 13px; }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { padding: 56px 24px; }
  section:not(.hero) { padding: 56px 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 240px; }
  .about-text { padding: 40px 24px; }
  .cta { flex-direction: column; align-items: flex-start; }
  .site-header { padding: 0 20px; }
  .menu-button { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px; margin-left: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .footer { padding: 24px; }
}
