:root {
  --bg: #17110b;
  --bg-2: #24180e;
  --text: #241d17;
  --muted: #6b625a;
  --line: #e5ded4;
  --light: #f7f2ea;
  --white: #ffffff;
  --gold: #c98832;
  --gold-2: #f1b45c;
  --shadow: 0 24px 70px rgba(23, 17, 11, .18);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.narrow { max-width: 860px; }
.skip-link { position: absolute; top: -100px; left: 20px; background: var(--gold); color: #160f09; padding: 10px 14px; z-index: 999; }
.skip-link:focus { top: 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 17, 11, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 62px; }
.brand strong { display: block; font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase; }
.brand small { display: block; color: #dfcbb4; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a { text-decoration: none; padding: 12px 14px; border-radius: 999px; color: #f5ede4; font-weight: 700; font-size: .95rem; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: rgba(201, 136, 50, .2); color: var(--gold-2); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; width: 20px; margin: 5px auto; background: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23,17,11,.94), rgba(23,17,11,.78)),
    radial-gradient(circle at 78% 18%, rgba(201,136,50,.28), transparent 28%),
    linear-gradient(90deg, #17110b, #302014);
  padding: clamp(70px, 10vw, 130px) 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 380px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 2px, transparent 2px 22px);
  transform: rotate(-8deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.18fr .82fr; gap: 52px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #eee2d3; max-width: 760px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 2px solid transparent; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #170f08; }
.btn-primary:hover { background: var(--gold-2); }
.btn-secondary { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-secondary:hover { background: rgba(201,136,50,.12); }
.btn-small { min-height: 38px; padding: 0 16px; border: 0; }
.text-link { color: var(--gold); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 30px 0 0; list-style: none; }
.trust-list li { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; color: #f3e8d8; background: rgba(255,255,255,.06); }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-card-top { display: flex; gap: 20px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-card-top img { width: 94px; }
.card-kicker { color: var(--gold-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .76rem; margin: 0 0 6px; }
.service-checks { display: grid; gap: 12px; margin-top: 24px; }
.service-checks span { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.09); }
.service-checks span::before { content: "✓"; margin-right: 10px; color: var(--gold-2); font-weight: 900; }

.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--bg); color: var(--white); }
.split, .two-column { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: start; }
.split.reversed { grid-template-columns: 1fr 1fr; }
.prose p { margin-top: 0; color: var(--muted); font-size: 1.05rem; }
.prose.invert p { color: #ebdecd; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 45px rgba(23,17,11,.08); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon, .service-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #17110b; color: var(--gold-2); font-weight: 900; margin-bottom: 18px; }
.centered-action { margin-top: 32px; }
.feature-list { display: grid; gap: 16px; }
.feature-list div { border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 22px; background: rgba(255,255,255,.06); }
.feature-list strong { display: block; color: var(--gold-2); font-size: 1.1rem; margin-bottom: 6px; }
.feature-list span { color: #f0e5d7; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--white); border-radius: 28px; padding: clamp(28px, 5vw, 52px); box-shadow: 0 20px 70px rgba(23,17,11,.10); }
.cta-panel p { margin-bottom: 0; color: var(--muted); }
.dark-panel { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.dark-panel p { color: #eadfce; }

.page-hero { padding: clamp(70px, 9vw, 120px) 0; color: var(--white); background: linear-gradient(135deg, rgba(23,17,11,.95), rgba(36,24,14,.88)), radial-gradient(circle at 85% 10%, rgba(201,136,50,.32), transparent 30%); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.3rem); }
.service-stack { display: grid; gap: 24px; }
.service-row { display: grid; grid-template-columns: 80px 1fr; gap: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 30px; }
.check-list { padding-left: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; font-weight: 900; }
.steps { display: grid; gap: 16px; }
.steps div { background: var(--light); border-radius: 18px; padding: 22px; border: 1px solid var(--line); }
.steps strong { display: block; color: var(--text); }
.steps span { color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; padding: 0; border: 0; background: transparent; border-radius: 18px; overflow: hidden; cursor: pointer; min-height: 220px; box-shadow: 0 16px 45px rgba(23,17,11,.12); }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; border-radius: 12px; background: rgba(23,17,11,.82); color: var(--white); font-weight: 800; text-align: left; }
.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 30px; background: rgba(0,0,0,.85); }
.lightbox img { max-height: 78vh; border-radius: 16px; }
.lightbox p { color: var(--white); font-weight: 800; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); font-size: 32px; cursor: pointer; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: start; }
.contact-card, .contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 18px 45px rgba(23,17,11,.08); }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--text); font-weight: 800; }
.contact-card hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.small, .form-note { font-size: .92rem; color: var(--muted); }
.contact-form { display: grid; gap: 12px; }
.contact-form label { font-weight: 800; }
.contact-form label span { color: #b15b1a; }
input, select, textarea { width: 100%; border: 1px solid #d4c9bc; border-radius: 12px; padding: 13px 14px; font: inherit; background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(201,136,50,.22); border-color: var(--gold); }
.honeypot { display: none !important; }
code { background: #eee3d6; padding: 2px 6px; border-radius: 6px; }

.site-footer { background: #100b07; color: #f5eadc; padding: 52px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .7fr; gap: 36px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 32px; }
.footer-grid img { width: 62px; margin-bottom: 12px; }
.footer-grid h2 { font-size: 1rem; color: var(--gold-2); text-transform: uppercase; letter-spacing: .12em; }
.footer-grid p { margin: 8px 0; color: #e8dcca; }
.footer-grid a, .footer-bottom a { color: #f3e4d2; text-decoration: none; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; font-size: .9rem; color: #d5c8b8; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300; display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.cookie-banner p { margin: 0; }
.center-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--light); }
.message-box { max-width: 560px; background: var(--white); padding: 40px; border-radius: 24px; box-shadow: var(--shadow); text-align: center; }
.message-box img { margin: 0 auto 20px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; inset: 92px 20px auto; display: none; flex-direction: column; align-items: stretch; padding: 14px; background: #17110b; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { border-radius: 12px; }
  .hero-grid, .split, .split.reversed, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .cards.three, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 82px; }
  .brand img { width: 52px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .68rem; }
  .primary-nav { inset: 82px 14px auto; }
  .hero { padding: 58px 0; }
  .hero-card-top { flex-direction: column; align-items: flex-start; }
  .cards.three, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
