:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #111216;
  --surface-2: #18191d;
  --text: #f4f1e9;
  --muted: #a2a2a8;
  --line: #292a30;
  --gold: #dfb936;
  --gold-soft: #f0cd63;
  --ink: #090a0c;
  --max: 1216px;
  --shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #fbf7ef;
  --surface: #ffffff;
  --surface-2: #f1e8d9;
  --text: #161616;
  --muted: #69686a;
  --line: #d9d0c2;
  --shadow: 0 28px 70px rgba(66, 48, 17, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  transition: background .25s ease, color .25s ease;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 116px; height: 46px; object-fit: contain; }
.desktop-nav, .nav-actions { display: flex; align-items: center; gap: 27px; }
.desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--gold); }
.desktop-nav .nav-cta {
  padding: 10px 20px;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.desktop-nav .nav-cta:hover { color: var(--ink); background: var(--gold); }
.icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}
.icon-button:hover { background: var(--surface-2); }
.menu-button { display: none; }
.mobile-nav {
  display: none;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav.open { display: grid; gap: 18px; }
.mobile-nav a { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

main { min-height: 70vh; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section.compact { padding: 76px 0; }
.section-alt { background: var(--surface); }
.page-top { padding-top: 150px; min-height: 66vh; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.display, h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.08; }
h1, h2, h3, p { margin-top: 0; }
.section-title { max-width: 760px; margin-bottom: 48px; }
.section-title.center { margin-inline: auto; text-align: center; }
.section-title h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 58px); }
.section-title p, .lead, .muted { color: var(--muted); }
.lead { font-size: 18px; }
.gold-text, .accent { color: var(--gold); }

.hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  background:
    radial-gradient(circle at 68% 28%, rgba(207, 164, 42, .11), transparent 36%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.hero-copy, .hero-art, .service-hero > *, .split > *, .contact-grid > * { min-width: 0; }
.hero h1 { margin-bottom: 24px; font-size: clamp(54px, 7vw, 86px); letter-spacing: -.035em; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 18px; }
.service-line { margin: 28px 0 18px; color: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-line { overflow-wrap: anywhere; }
.service-line span { color: var(--gold); margin: 0 7px; }
.coverage { color: var(--muted); font-size: 14px; }
.coverage span { color: var(--gold); margin: 0 10px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 50px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--gold); }
.button.primary { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.hero-art { padding: 20px; border: 1px solid rgba(221, 181, 52, .25); border-radius: 32px; transform: rotate(1deg); }
.hero-art img { width: 100%; border: 1px solid rgba(221, 181, 52, .35); border-radius: 22px; box-shadow: var(--shadow); }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.service-card {
  color: inherit;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 32px 76px rgba(0, 0, 0, .38);
  outline: none;
}
.service-card .card-image { transition: transform .35s ease; }
.service-card:hover .card-image,
.service-card:focus-visible .card-image { transform: scale(1.018); }
.card-image { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-number { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.card h3 { margin: 12px 0; font-size: 25px; }
.card p { color: var(--muted); font-size: 14px; }
.text-link { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .visual { order: 2; }
.visual img { width: 100%; max-height: 690px; object-fit: cover; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.stat { padding: 22px; border: 1px solid var(--line); background: var(--surface); }
.stat strong { display: block; margin-bottom: 6px; color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 54px; }
.package { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.package.popular { border-color: var(--gold); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 12px; border-radius: 20px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.package h3 { margin-bottom: 8px; font-size: 28px; }
.price { color: var(--gold); font-size: 24px; font-weight: 800; }
.feature-list { margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; margin: 10px 0; padding-left: 22px; color: var(--muted); font-size: 14px; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.offer { margin-top: 30px; padding: 30px; border: 1px solid var(--gold); border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.offer h3 { margin: 0; font-size: 30px; }

.service-hero { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.service-hero h1 { font-size: clamp(46px, 6vw, 72px); }
.service-hero .visual img { max-height: 610px; object-fit: contain; background: var(--surface); }
.back-link { display: inline-block; margin-bottom: 52px; color: var(--muted); font-size: 14px; }
.detail-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; }
.detail-panel { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.detail-panel h2 { font-size: 34px; }
.meta-block + .meta-block { margin-top: 26px; }
.meta-block strong { display: block; margin-bottom: 7px; color: var(--gold); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.notice { margin-top: 24px; padding: 18px; border-left: 3px solid var(--gold); background: var(--surface-2); color: var(--muted); font-size: 13px; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work-card { min-height: 240px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.work-card h2 { margin-bottom: 10px; font-size: 34px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-links { display: grid; gap: 13px; margin-top: 28px; color: var(--muted); }
.contact-links a:hover { color: var(--gold); }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; color: var(--muted); font-size: 13px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: var(--bg);
  color: var(--text);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 150px; }
.form-message { display: none; margin-bottom: 18px; padding: 13px; border: 1px solid var(--gold); color: var(--gold); }
.form-message.show { display: block; }
.consent-row { margin-top: 18px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.consent-row input { width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--gold); }
.consent-row a, .legal-links a { color: var(--gold); }
.consent-row a:hover, .legal-links a:hover { text-decoration: underline; }

.legal-copy { max-width: 880px; }
.legal-copy > .display { margin-bottom: 14px; font-size: clamp(42px, 6vw, 66px); }
.legal-updated { margin-bottom: 50px; font-size: 13px; }
.legal-copy > section + section { margin-top: 36px; }
.legal-copy > section h2 { margin-bottom: 10px; font-size: 28px; }
.not-found { max-width: 780px; text-align: center; }
.not-found .display { font-size: clamp(46px, 7vw, 72px); }
.not-found .button { margin-top: 24px; }

.site-footer { padding: 76px 0 28px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { width: min(var(--max), calc(100% - 32px)); margin: auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; }
.footer-intro img { width: 150px; margin-bottom: 20px; }
.footer-intro p { max-width: 480px; color: var(--muted); }
.footer-grid h2 { margin-bottom: 18px; font-family: inherit; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-intro) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { width: min(var(--max), calc(100% - 32px)); margin: 50px auto 0; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }

.fade-in { animation: fade-in .35s ease both; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero-grid, .service-hero, .split, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-art { max-width: 620px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .service-hero .visual { order: -1; max-width: 650px; }
  .split.reverse .visual { order: 0; }
}

@media (max-width: 680px) {
  .section { padding: 74px 0; }
  .page-top { padding-top: 126px; }
  .hero { min-height: auto; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: 52px; }
  .cards, .package-grid, .work-grid, .form-grid, .stat-grid { grid-template-columns: 1fr; }
  .offer, .footer-bottom { align-items: stretch; flex-direction: column; }
  .legal-links { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .actions .button { width: 100%; }
  .service-line { line-height: 2; }
  .service-hero { gap: 36px; }
  .back-link { margin-bottom: 28px; }
  .contact-form { padding: 22px; }
}
