:root {
  --navy: #0c2131;
  --navy-deep: #071722;
  --navy-soft: #153247;
  --ink: #132532;
  --muted: #667682;
  --muted-2: #82909a;
  --paper: #f5f4ef;
  --warm: #ece8df;
  --white: #ffffff;
  --line: #d9dee0;
  --line-dark: rgba(255,255,255,.14);
  --gold: #c7a253;
  --gold-light: #e0c27e;
  --gold-deep: #a98133;
  --shadow: 0 22px 60px rgba(7, 23, 34, .09);
  --shadow-strong: 0 34px 90px rgba(7, 23, 34, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(199,162,83,.28); color: var(--navy-deep); }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: var(--navy); color: #fff; padding: .8rem 1rem; border-radius: 3px;
}
.skip-link:focus { top: 1rem; }

.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 252, 252, .92);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(12, 33, 49, .07);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 36px rgba(7,23,34,.08); background: rgba(255,255,255,.96); }
.nav-wrap { min-height: 82px; display: grid; grid-template-columns: 290px 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 268px; height: auto; }
.site-nav { display: flex; justify-content: center; gap: 34px; }
.site-nav a { position: relative; font-size: 13px; font-weight: 600; color: #334550; padding: 30px 0 27px; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 1.5px; background: var(--gold); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.nav-cta { white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--navy); display: block; transition: .25s ease; transform-origin: center; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .78rem;
  min-height: 46px; padding: 0 22px; border-radius: 2px; border: 1px solid transparent;
  font-weight: 700; font-size: 13px; letter-spacing: .01em; transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button-large { min-height: 52px; padding-inline: 26px; }
.button-gold { color: #fff; background: linear-gradient(135deg, #caa757, #b58c39); box-shadow: 0 10px 24px rgba(167, 127, 42, .20); }
.button-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(167,127,42,.26); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.66); background: rgba(8,24,36,.18); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.95); transform: translateY(-2px); }

.hero { position: relative; min-height: 655px; color: #fff; overflow: hidden; background: var(--navy-deep); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.22); }
.hero-image { position: absolute; inset: 0 0 0 37%; background-image: url('assets/hero.webp'); background-size: cover; background-position: 57% center; transform: scale(1.012); }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(5,19,29,.98) 0%, rgba(6,21,32,.96) 29%, rgba(6,22,34,.80) 46%, rgba(6,22,34,.30) 72%, rgba(6,22,34,.13) 100%),
  linear-gradient(180deg, rgba(4,18,28,.10), rgba(4,18,28,.20));
}
.hero-content { position: relative; min-height: 655px; padding-block: 92px 74px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-kicker span { display: block; width: 34px; height: 1px; background: var(--gold-light); }
.hero-kicker p { margin: 0; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .24em; }
.hero h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
.hero h1 { max-width: 790px; margin: 8px 0 23px; font-size: clamp(52px, 5.7vw, 80px); line-height: .99; text-wrap: balance; }
.hero-lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; margin: 0 0 32px; color: rgba(255,255,255,.88); font-weight: 400; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-services { display: flex; align-items: center; gap: 15px; margin-top: 56px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-services i { width: 22px; height: 1px; background: rgba(224,194,126,.7); }

.eyebrow { margin: 0 0 10px; color: var(--gold-deep); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.gold { color: var(--gold-light); }
.center { text-align: center; }
.section { padding: 100px 0; }
h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.02; color: var(--navy); }

.service-section { background: linear-gradient(180deg, #fff 0%, #fbfbfa 100%); }
.section-intro { margin-bottom: 42px; }
.two-col-intro { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: end; }
.intro-copy { margin: 0; color: #52616c; max-width: 640px; font-size: 17px; line-height: 1.7; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card { background: #fff; border: 1px solid #e4e7e8; box-shadow: 0 16px 44px rgba(7,23,34,.06); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: #d6dadc; }
.service-media { position: relative; height: 248px; overflow: hidden; background: #e8ecee; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.25,1); }
.service-card:hover .service-media img { transform: scale(1.035); }
.service-number { position: absolute; right: 18px; top: 18px; display: grid; place-items: center; min-width: 46px; height: 32px; padding: 0 10px; background: rgba(9,28,43,.82); backdrop-filter: blur(10px); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-copy { padding: 30px 32px 32px; display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #dfe4e6; }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.mini-label { margin: 0 0 7px !important; color: #a38446 !important; font-size: 10px !important; font-weight: 800; letter-spacing: .13em; }
.service-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 27px; line-height: 1.05; color: var(--navy); }
.service-card p { margin: 0 0 20px; color: #5f6d77; font-size: 14px; }
.text-link, .price-link { display: inline-flex; gap: 8px; align-items: center; color: var(--gold-deep); font-size: 13px; font-weight: 800; }
.text-link span, .price-link span { transition: transform .2s ease; }
.text-link:hover span, .price-link:hover span { transform: translateX(4px); }

.trust-wrap { padding-top: 96px; }
.trust-heading { margin-bottom: 48px; }
.trust-heading h2 { font-size: clamp(36px, 3.3vw, 48px); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { padding: 34px 42px 38px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-index { display: inline-block; color: var(--gold-deep); font-size: 11px; font-weight: 900; letter-spacing: .12em; margin-bottom: 22px; }
.trust-item h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 23px; color: var(--navy); }
.trust-item p { margin: 0; color: #65737d; font-size: 14px; }

.split-band { display: grid; grid-template-columns: .93fr 1.07fr; min-height: 500px; background: var(--navy); color: #fff; }
.split-copy { display: flex; justify-content: flex-end; position: relative; }
.split-copy::before { content: ""; position: absolute; width: 180px; height: 180px; left: 8%; bottom: -70px; border: 1px solid rgba(255,255,255,.06); transform: rotate(45deg); }
.split-copy-inner { width: min(620px, 100%); padding: 74px 76px 72px 32px; position: relative; z-index: 1; }
.split-band h2 { color: #fff; font-size: clamp(44px, 4.4vw, 64px); margin-bottom: 20px; }
.split-band p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.79); margin: 0 0 26px; font-size: 16px; }
.split-points { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-bottom: 28px; }
.split-points span { position: relative; padding-left: 14px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }
.split-points span::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; background: var(--gold-light); }
.split-image { min-height: 500px; background: linear-gradient(rgba(7,23,34,.03),rgba(7,23,34,.03)), url('assets/plans.webp') center/cover no-repeat; }

.inspection-section { background: #fff; }
.inspection-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.inspection-title > p:last-child { max-width: 500px; margin: 24px 0 0; color: #63717b; font-size: 16px; }
.inspection-panel { background: var(--paper); padding: 40px 44px; border-top: 3px solid var(--gold); box-shadow: 0 18px 50px rgba(7,23,34,.05); }
.panel-lead { margin: 0 0 26px; color: #42525e; font-size: 17px; }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; }
.check-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid #d9d9d3; color: #374752; font-size: 14px; }
.check-list li:first-child { border-top: 0; }
.check-list li span { color: var(--gold-deep); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.small-note { margin: 25px 0 0; padding-top: 20px; border-top: 1px solid #d9d9d3; color: #7a858d; font-size: 12px; }

.pricing { background: #f3f4f2; border-top: 1px solid #eaebe8; }
.pricing-head { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.pricing-head > p { margin: 0 0 4px; color: #68757f; max-width: 500px; justify-self: end; font-size: 14px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-panel { background: #fff; padding: 36px 38px 34px; border: 1px solid #dde1e2; box-shadow: 0 14px 40px rgba(7,23,34,.045); }
.price-heading { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid #dfe3e4; }
.price-heading > span { display: grid; place-items: center; width: 40px; height: 40px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.price-heading p { margin: 1px 0 3px; color: var(--gold-deep); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.price-heading h3 { margin: 0; font-family: var(--serif); font-size: 25px; color: var(--navy); }
.price-list { margin-top: 13px; }
.price-row { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid #e1e4e5; color: #53616b; }
.price-row strong { color: #172833; font-size: 14px; font-weight: 800; white-space: nowrap; }
.price-note { min-height: 62px; color: #6d7a83; font-size: 12px; margin: 18px 0 20px; }
.price-link { border-top: 1px solid #e1e4e5; padding-top: 18px; width: 100%; justify-content: space-between; }

.contact { position: relative; background: linear-gradient(115deg, #091a27, #153247 72%, #19394e); color: #fff; padding: 88px 0; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; left: -180px; bottom: -310px; }
.contact-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), rgba(199,162,83,.12) 40%, transparent 80%); }
.contact-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.contact h2 { color: #fff; font-size: clamp(42px, 4.2vw, 58px); margin-bottom: 16px; }
.contact-copy > p:not(.eyebrow):not(.contact-footnote) { color: rgba(255,255,255,.76); margin: 0 0 32px; max-width: 440px; font-size: 16px; }
.contact-link { display: inline-flex; align-items: center; gap: 14px; color: #fff; }
.contact-link .contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(224,194,126,.38); }
.contact-link svg { width: 19px; height: 19px; fill: none; stroke: var(--gold-light); stroke-width: 1.6; }
.contact-link span:last-child { display: grid; gap: 1px; font-weight: 650; font-size: 14px; }
.contact-link small { font-size: 9px; letter-spacing: .15em; color: var(--gold-light); }
.contact-footnote { margin: 26px 0 0 !important; color: rgba(255,255,255,.48) !important; font-size: 12px !important; }
.form-shell { background: rgba(255,255,255,.985); color: var(--ink); padding: 34px 36px 36px; box-shadow: 0 28px 70px rgba(0,0,0,.20); }
.form-head { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #e1e4e6; }
.form-head p { margin: 0; color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.form-head span { color: #849099; font-size: 12px; }
.contact-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-size: 12px; color: #4b5a65; font-weight: 650; }
.contact-form label > span { font-size: 11px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d6dde0; background: #fbfcfc; color: #182b37; border-radius: 1px; padding: 12px 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9ba4aa; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,162,83,.13); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 116px; }
.form-submit-row { display: flex; align-items: center; gap: 22px; margin-top: 4px; }
.form-submit-row p { margin: 0; color: #87939a; font-size: 10px; line-height: 1.45; max-width: 310px; }
.hidden-field { display: none !important; }

.site-footer { background: #fff; }
.footer-main { min-height: 130px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 30px; }
.footer-left::after { content: ""; width: 1px; height: 32px; background: #dfe3e4; order: 1; }
.footer-brand { order: 0; }
.footer-left p { order: 2; margin: 0; color: #78848c; font-size: 11px; letter-spacing: .045em; }
.footer-brand img { width: 235px; }
.footer-nav { display: flex; gap: 27px; font-size: 12px; color: #52616b; }
.footer-nav a:hover { color: var(--gold-deep); }
.footer-bottom { min-height: 58px; border-top: 1px solid #e5e7e8; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-bottom p, .footer-bottom a { margin: 0; color: #8a959c; font-size: 10px; }
.footer-bottom a:hover { color: var(--gold-deep); }

.reveal { opacity: 0; transform: translateY(14px); animation: heroReveal .75s cubic-bezier(.22,.75,.2,1) forwards; }
.reveal-delay-1 { animation-delay: .10s; }
.reveal-delay-2 { animation-delay: .20s; }
.reveal-delay-3 { animation-delay: .30s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s cubic-bezier(.22,.75,.2,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; justify-self: end; }
  .site-nav { position: fixed; top: 82px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 12px 32px 26px; background: rgba(255,255,255,.99); border-bottom: 1px solid #e2e6e8; box-shadow: 0 24px 40px rgba(11,30,46,.10); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; font-size: 14px; }
  .site-nav a::after { bottom: 8px; }
  .hero-image { left: 31%; }
  .two-col-intro { gap: 60px; }
  .contact-grid { gap: 50px; }
  .footer-left p, .footer-left::after { display: none; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 36px, 1240px); }
  .brand img { width: 235px; }
  .hero { min-height: 650px; }
  .hero-image { inset: 0; background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,18,28,.96), rgba(5,18,28,.77) 72%, rgba(5,18,28,.48)); }
  .hero-content { min-height: 650px; padding-block: 72px 55px; justify-content: flex-end; }
  .hero-services { margin-top: 38px; }
  .two-col-intro, .inspection-layout, .pricing-head, .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-media { height: 280px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 20px; }
  .trust-item:last-child { border-bottom: 0; }
  .split-band { grid-template-columns: 1fr; }
  .split-copy-inner { width: 100%; padding: 62px 30px; }
  .split-image { min-height: 360px; }
  .inspection-panel { padding: 32px; }
  .pricing-head > p { justify-self: start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-note { min-height: 0; }
  .contact { padding: 72px 0; }
  .form-shell { padding: 30px; }
  .footer-main { min-height: 112px; }
  .footer-nav { display: none; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 74px; }
  .section { padding: 76px 0; }
  .site-header .shell { width: calc(100% - 24px); }
  .nav-wrap { min-height: 74px; }
  .site-nav { top: 74px; padding-inline: 20px; }
  .brand img { width: 210px; }
  .hero { min-height: 640px; }
  .hero-content { min-height: 640px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 58px); }
  .hero-lead br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; width: min(310px,100%); }
  .hero-services { font-size: 10px; flex-wrap: wrap; }
  .service-media { height: 218px; }
  .service-copy { padding: 24px; grid-template-columns: 1fr; }
  .service-icon { display: none; }
  .trust-wrap { padding-top: 72px; }
  .split-copy-inner { padding: 54px 20px; }
  .split-image { min-height: 300px; }
  .inspection-panel { padding: 26px 22px; }
  .price-panel { padding: 28px 22px; }
  .price-row { align-items: flex-start; }
  .price-row strong { white-space: normal; text-align: right; max-width: 48%; }
  .form-shell { padding: 24px 20px; }
  .form-head { display: block; }
  .form-head span { display: block; margin-top: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { display: grid; }
  .form-submit-row .button { width: 100%; }
  .footer-main { justify-items: center; text-align: center; }
  .footer-bottom { min-height: 80px; flex-direction: column; justify-content: center; gap: 5px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-delay: 0ms !important; }
  .reveal, .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}


.form-success {
  padding: 2rem;
  border: 1px solid rgba(184, 148, 72, .35);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.form-success h3 { margin: .35rem 0 .65rem; }
.form-success p:last-child { margin-bottom: 0; }
