:root {
  --navy: #1B2B4B;
  --deep: #111D33;
  --gold: #C9A84C;
  --gold-light: #D9BC7A;
  --cream: #F8F7F4;
  --paper: #FFFFFF;
  --slate: #4A5568;
  --muted: #718096;
  --line: rgba(27,43,75,.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--navy); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; margin: 0; font-weight: 400; }
p { margin: 0; color: var(--slate); }

.loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--deep); animation: loaderOut .45s ease 1.1s forwards; }
.loader-inner { text-align: center; color: var(--gold); }
.loader-mark { font-family: var(--serif); font-size: 28px; margin-bottom: 18px; letter-spacing: .03em; }
.loader-bar { width: 220px; height: 2px; background: rgba(201,168,76,.2); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 100%; background: var(--gold); transform-origin: left; animation: fillBar 1s ease forwards; }
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 18px 30px; background: rgba(248,247,244,.94); border-bottom: 1px solid rgba(27,43,75,.08); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; letter-spacing: .04em; }
.brand-text strong { display: block; font-family: var(--serif); font-size: 17px; color: var(--navy); font-weight: 600; }
.brand-text span { display: block; font-size: 10px; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.menu-toggle { position: fixed; opacity: 0; pointer-events: none; }
.hamburger { width: 44px; height: 44px; display: grid; align-content: center; justify-items: end; gap: 6px; cursor: pointer; z-index: 1002; }
.hamburger span { height: 2px; background: var(--navy); display: block; transition: .3s ease; }
.hamburger span:nth-child(1) { width: 30px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 26px; }
.menu-panel { position: fixed; inset: 0; z-index: 1001; background: var(--deep); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .35s ease; }
.menu-toggle:checked ~ .menu-panel { opacity: 1; visibility: visible; }
.menu-toggle:checked + .site-nav .hamburger span { background: var(--gold); }
.menu-list { list-style: none; padding: 0; margin: 0; text-align: center; }
.menu-list a { display: block; color: white; text-decoration: none; font-family: var(--serif); font-size: clamp(34px, 6vw, 62px); padding: 7px 0; }
.menu-list a:hover, .menu-list a.active { color: var(--gold); }
.menu-contact { margin-top: 30px; color: rgba(255,255,255,.55); text-align: center; font-size: 14px; }
.menu-contact a { color: var(--gold-light); text-decoration: none; }

.hero { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 24px 70px; background: radial-gradient(circle at 25% 35%, rgba(201,168,76,.08), transparent 35%), linear-gradient(180deg, var(--deep), #162642); color: white; }
.hero h1 { color: white; font-size: clamp(46px, 8vw, 84px); max-width: 920px; margin: 0 auto 22px; }
.hero em { color: var(--gold-light); font-style: italic; }
.hero p { color: rgba(255,255,255,.68); max-width: 650px; margin: 0 auto 34px; font-size: 17px; line-height: 1.75; }
.page-hero { padding: 150px 24px 74px; background: var(--deep); color: white; }
.page-hero .wrap { max-width: 1180px; }
.page-hero h1 { color: white; font-size: clamp(42px, 7vw, 70px); max-width: 850px; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 640px; margin-top: 22px; font-size: 16px; line-height: 1.8; }
.label { display: block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid transparent; background: var(--gold); color: var(--deep); text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.btn.outline { background: transparent; color: white; border-color: rgba(255,255,255,.28); }
.btn.dark { background: var(--navy); color: white; }
.btn.text { background: transparent; padding: 0; color: var(--gold); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); color: white; }
.stat { padding: 42px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.stat strong { display: block; font-family: var(--serif); font-size: 44px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat span { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.56); font-weight: 700; }

section { scroll-margin-top: 88px; }
.section { padding: 86px 24px; }
.wrap { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section h2 { font-size: clamp(34px, 5vw, 54px); color: var(--navy); margin-bottom: 18px; }
.section-head p { font-size: 16px; line-height: 1.75; }
.divider { width: 52px; height: 2px; background: var(--gold); margin: 20px 0; }
.center .divider { margin-left: auto; margin-right: auto; }

.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.pane { background: white; padding: clamp(34px, 6vw, 60px); }
.pane.dark { background: var(--navy); }
.pane.dark h2, .pane.dark h3 { color: white; }
.pane.dark p { color: rgba(255,255,255,.65); }
.pane h2 { font-size: clamp(28px, 4vw, 42px); }
.pane p + p { margin-top: 16px; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px; background: var(--line); }
details.service { background: white; padding: 30px; position: relative; transition: box-shadow .25s ease; }
details.service[open] { box-shadow: inset 3px 0 0 var(--gold); }
details.service summary { list-style: none; cursor: pointer; }
details.service summary::-webkit-details-marker { display: none; }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 14px; }
.num { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.service h3 { font-size: 22px; margin-top: 6px; }
.price { text-align: right; min-width: 118px; }
.price strong { display: block; font-size: 22px; color: var(--navy); }
.price small { display: block; color: var(--muted); font-size: 11px; line-height: 1.35; }
.service-desc { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.continue { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.more { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 18px; }
.more ul { margin: 14px 0 20px; padding-left: 18px; color: var(--slate); }
.more li { margin: 6px 0; font-size: 14px; }

.steps { display: grid; gap: 1px; background: var(--line); }
.step { display: grid; grid-template-columns: 320px 1fr; background: white; }
.step:nth-child(even) { grid-template-columns: 1fr 320px; }
.step-title { background: var(--navy); color: white; padding: 42px; display: grid; align-content: center; }
.step-title span { color: var(--gold); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
.step-title h3 { color: white; margin-top: 10px; font-size: 26px; }
.step-body { padding: 42px; display: grid; align-content: center; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1px; background: var(--line); }
.quote { background: white; padding: 34px; border-left: 3px solid var(--gold); }
.quote p { font-style: italic; font-size: 15px; line-height: 1.75; }
.quote strong { display: block; margin-top: 18px; color: var(--navy); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1px; background: var(--line); }
.contact-card, .form-card { background: white; padding: clamp(34px, 5vw, 54px); }
.contact-line { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line span { display: block; color: var(--gold); font-size: 11px; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; margin-bottom: 5px; }
.contact-line a { text-decoration: none; color: var(--navy); font-weight: 700; }
form { display: grid; gap: 15px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid rgba(27,43,75,.18); background: var(--cream); padding: 13px 14px; font: inherit; color: var(--navy); }
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.success { display: none; background: var(--cream); border-left: 3px solid var(--gold); padding: 24px; margin-top: 18px; }

.legal { max-width: 850px; }
.legal h2 { font-size: clamp(34px, 5vw, 58px); }
.legal h3 { font-family: var(--sans); font-size: 18px; font-weight: 800; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.8; }
.legal ul { padding-left: 20px; color: var(--slate); }

.footer { background: var(--deep); color: white; padding: 54px 24px 28px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer h3 { color: var(--gold); font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; margin-bottom: 14px; }
.footer p, .footer a { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.8; text-decoration: none; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1180px; margin: 22px auto 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.35); font-size: 12px; }
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 48px; height: 48px; display: grid; place-items: center; background: var(--navy); color: white; text-decoration: none; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; border: 1px solid rgba(201,168,76,.35); }
.cookie { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 1003; background: var(--deep); color: white; border: 1px solid rgba(201,168,76,.25); padding: 18px; display: flex; justify-content: space-between; align-items: center; gap: 18px; box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.cookie p { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }
.cookie button { background: var(--gold); color: var(--deep); border: 0; padding: 10px 18px; font-weight: 800; cursor: pointer; }

@media (max-width: 820px) {
  .site-nav { padding: 14px 18px; }
  .brand-text strong { font-size: 15px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .step, .step:nth-child(even) { grid-template-columns: 1fr; }
  .step:nth-child(even) .step-title { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .cookie { display: block; }
  .cookie button { margin-top: 12px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 42px; }
  .stats { grid-template-columns: 1fr; }
  .service-top { display: block; }
  .price { text-align: left; margin-top: 12px; }
  .pane, .contact-card, .form-card { padding: 30px 22px; }
}