
:root {
  --navy-950: #06131e;
  --navy-900: #0a1b2a;
  --navy-800: #10283c;
  --navy-700: #18364d;
  --orange: #ff6a00;
  --orange-dark: #dd5800;
  --ink: #12202d;
  --muted: #5c6771;
  --line: #e5eaef;
  --surface: #ffffff;
  --surface-alt: #f5f8fb;
  --shadow: 0 18px 50px rgba(7, 24, 37, .10);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 82px;
  font-family: Inter, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body { margin: 0; color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
input, textarea, select { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 84px 0; }
.surface-alt { background: var(--surface-alt); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 10000; padding: 10px 14px; border-radius: 8px; background: #fff; color: #000; transform: translateY(-150%); transition: .2s ease; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 1000; min-height: var(--header-h); background: rgba(6, 19, 30, .97); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.header-inner { min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand img { width: min(320px, 32vw); min-width: 210px; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 14px; font-weight: 700; }
.primary-nav a { position: relative; padding: 30px 0 28px; color: rgba(255,255,255,.9); }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { padding: 12px 18px; font-size: 13px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: #fff; transition: .22s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 20px; border: 1px solid transparent; border-radius: 10px; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 24px rgba(255, 106, 0, .22); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(4,16,26,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-outline { color: var(--navy-900); border-color: #cbd5de; background: #fff; }
.btn-outline:hover { border-color: var(--navy-700); }
.btn-block { width: 100%; }

.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.eyebrow-light { color: #ff8b3c; }
.section-heading { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(32px, 4vw, 46px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading p:not(.eyebrow) { color: var(--muted); }

.hero { position: relative; min-height: 620px; color: #fff; overflow: clip; background: var(--navy-950); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 78% 35%, rgba(255,106,0,.12), transparent 28%), linear-gradient(105deg, #05131f 0 54%, #0c283a 54% 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; min-height: 620px; }
.hero-copy { align-self: center; max-width: 580px; padding: 74px 40px 96px 0; z-index: 2; }
.hero h1 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.04em; }
.hero h1 em { display: block; margin-top: 8px; color: var(--orange); font-style: normal; }
.hero-lead { max-width: 620px; margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-media { position: relative; min-height: 620px; overflow: hidden; }
.hero-media::before { content: ""; position: absolute; z-index: 2; inset: 0 auto 0 0; width: 19%; background: linear-gradient(90deg, var(--navy-950), transparent); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 31%; }
.hero-media-badge { position: absolute; right: 22px; bottom: 24px; z-index: 3; display: flex; align-items: baseline; gap: 8px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(5,19,31,.82); backdrop-filter: blur(8px); font-size: 23px; font-weight: 900; }
.hero-media-badge span { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.76); }

.page-hero { position: relative; overflow: clip; padding: 78px 0 68px; background: radial-gradient(circle at 82% 20%, rgba(255,106,0,.16), transparent 26%), linear-gradient(110deg, #05131f 0%, #0e2b40 100%); color: #fff; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr); gap: 46px; align-items: center; }
.page-hero h1 { margin: 0; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -.04em; }
.page-hero p { color: rgba(255,255,255,.8); }
.page-hero-media img { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.breadcrumbs { margin: 0 0 16px; color: rgba(255,255,255,.66); font-size: 14px; }
.breadcrumbs a:hover { color: #fff; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.trust-wrap { position: relative; z-index: 10; margin-top: -38px; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid rgba(8,26,40,.08); border-radius: 16px; box-shadow: var(--shadow); }
.trust-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; min-height: 108px; padding: 20px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 15px; }
.trust-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.line-icon { color: var(--orange); font-size: 35px; line-height: 1; }

.services-section { padding-top: 92px; background: linear-gradient(#fff, #f8fafb); }
.service-grid, .detail-grid, .value-grid, .info-grid, .gallery-grid, .page-card-grid { display: grid; gap: 22px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .detail-card, .value-card, .mini-card, .gallery-card, .info-card { overflow: hidden; border: 1px solid #e7ebef; border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(9, 30, 45, .07); }
.service-card, .detail-card, .value-card, .gallery-card { transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .detail-card:hover, .value-card:hover, .gallery-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(9, 30, 45, .12); }
.service-card > img, .detail-card > img, .gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-body, .detail-body { position: relative; min-height: 236px; padding: 35px 22px 24px; }
.service-icon, .detail-icon { position: absolute; top: -24px; left: 20px; display: grid; place-items: center; width: 47px; height: 47px; border: 4px solid #fff; border-radius: 50%; background: var(--orange); color: #fff; font-size: 21px; font-weight: 900; }
.service-card h3, .detail-card h3 { margin: 0; font-size: 19px; line-height: 1.18; }
.service-card p, .detail-card p, .mini-card p, .info-card p, .value-card p, .gallery-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.detail-grid { grid-template-columns: repeat(2, 1fr); }
.detail-card ul, .check-list, .bullet-list { padding-left: 18px; color: var(--muted); }
.detail-card li, .check-list li, .bullet-list li { margin: 7px 0; }
.detail-footer { padding: 0 22px 24px; }

.why-section { padding-top: 28px; background: #f8fafb; }
.why-card { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy-950); color: #fff; }
.why-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px 48px; }
.why-copy h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.035em; }
.why-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.why-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; object-position: center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.stat { padding: 16px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.03); }
.stat strong { display: block; color: var(--orange); font-size: 27px; line-height: 1; }
.stat span { display: block; margin-top: 7px; color: rgba(255,255,255,.77); font-size: 12px; }

.field-section { padding: 26px 0 62px; background: #f8fafb; }
.field-card, .cta-banner, .story-card, .split-card, .contact-layout { display: grid; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.field-card { grid-template-columns: .82fr 1.18fr; background: #fff; border: 1px solid #e5eaee; }
.field-copy, .story-copy, .split-copy { align-self: center; padding: 46px; }
.field-copy h2, .story-copy h2, .split-copy h2 { margin: 0 0 14px; color: var(--navy-900); font-size: clamp(31px, 3.8vw, 45px); line-height: 1.08; letter-spacing: -.035em; }
.field-copy p:not(.eyebrow), .story-copy p:not(.eyebrow), .split-copy p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); }
.field-media img, .story-media img, .split-media img { width: 100%; height: 100%; min-height: 355px; object-fit: cover; object-position: center; }

.process-section { padding-top: 54px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border: 1px solid #e7ebef; border-radius: 17px; background: #fff; box-shadow: 0 10px 28px rgba(9,30,45,.06); }
.process-item { position: relative; padding: 34px 28px; text-align: center; }
.process-item + .process-item::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--line); }
.step { display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto 13px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; }
.process-icon { display: block; color: var(--navy-900); font-size: 31px; line-height: 1; }
.process-item h3 { margin: 12px 0 7px; font-size: 16px; }
.process-item p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-section { padding-top: 26px; background: linear-gradient(#fff, #f6f8fa); }
.contact-card { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; border-radius: var(--radius); background: var(--navy-950); color: #fff; box-shadow: var(--shadow); }
.contact-copy { align-self: center; padding: 54px 48px; }
.contact-copy h2 { margin: 0 0 26px; font-size: clamp(36px, 4.2vw, 52px); line-height: 1; }
.contact-label { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
.phone-number { display: block; margin: 5px 0 20px; color: var(--orange); font-size: clamp(30px, 4vw, 43px); font-weight: 900; line-height: 1.05; }
.contact-brand { display: block; color: var(--orange); font-size: 19px; }
.contact-copy > p:last-of-type { max-width: 390px; color: rgba(255,255,255,.74); }
.contact-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center 48%; }

.page-card-grid { grid-template-columns: repeat(3, 1fr); }
.mini-card, .info-card, .value-card { padding: 24px; }
.mini-card h3, .info-card h3, .value-card h3 { margin: 0; font-size: 20px; }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 50%; background: rgba(255,106,0,.12); color: var(--orange); font-size: 24px; font-weight: 900; }
.story-card { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); background: #fff; border: 1px solid #e7ebef; }
.story-copy h2 { margin-bottom: 18px; }
.story-media img { min-height: 480px; }
.split-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: #fff; border: 1px solid #e7ebef; }
.highlight-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.highlight-item { padding: 18px; border-radius: 14px; background: var(--surface-alt); }
.highlight-item strong { display: block; margin-bottom: 6px; }

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-card { overflow: hidden; }
.gallery-card button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery-card figure { margin: 0; }
.gallery-card figcaption { padding: 18px 18px 20px; }
.gallery-card h3 { margin: 0; font-size: 18px; }
.gallery-card img { aspect-ratio: 4/3; }

.contact-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); background: #fff; border: 1px solid #e7ebef; }
.contact-panel { padding: 36px; }
.contact-panel h2 { margin: 0 0 12px; font-size: clamp(30px, 3.8vw, 42px); line-height: 1.1; }
.contact-panel p { color: var(--muted); }
.contact-box { margin-top: 18px; padding: 22px; border-radius: 16px; background: var(--surface-alt); }
.contact-box + .contact-box { margin-top: 16px; }
.contact-box h3 { margin: 0 0 8px; font-size: 18px; }
.contact-box a { font-weight: 800; }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: 14px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border: 1px solid #d6dee5; border-radius: 12px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: #8ab0ca; box-shadow: 0 0 0 3px rgba(24,54,77,.08); }
.field textarea { min-height: 154px; resize: vertical; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.map-placeholder { display: grid; place-items: center; min-height: 100%; padding: 28px; background: radial-gradient(circle at 20% 20%, rgba(255,106,0,.12), transparent 22%), linear-gradient(135deg, #0a1b2a, #163852); color: #fff; }
.map-placeholder-inner { max-width: 380px; text-align: left; }
.map-placeholder h3 { margin: 0 0 10px; font-size: 30px; }
.map-placeholder p { color: rgba(255,255,255,.78); }

.cta-banner { grid-template-columns: 1fr auto; align-items: center; padding: 30px 32px; background: linear-gradient(90deg, #081a28, #12334a); color: #fff; }
.cta-banner h2 { margin: 0 0 8px; font-size: clamp(28px, 3.6vw, 40px); }
.cta-banner p { margin: 0; color: rgba(255,255,255,.75); }

.site-footer { padding: 25px 0 12px; background: #05131f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; }
.footer-brand img { width: min(300px, 30vw); min-width: 190px; }
.footer-nav { display: flex; gap: 24px; color: rgba(255,255,255,.78); font-size: 13px; }
.footer-nav a:hover { color: #fff; }
.footer-phone { color: rgba(255,255,255,.7); }
.footer-phone strong { margin-left: 6px; color: var(--orange); font-size: 20px; }
.footer-bottom { margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.09); text-align: right; color: rgba(255,255,255,.5); font-size: 11px; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 3000; max-width: calc(100% - 30px); padding: 12px 16px; border-radius: 10px; background: #071724; color: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: .24s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.lightbox { position: fixed; inset: 0; z-index: 2500; display: none; place-items: center; padding: 24px; background: rgba(3, 10, 17, .88); }
.lightbox.is-open { display: grid; }
.lightbox-inner { position: relative; width: min(1100px, 100%); }
.lightbox img { width: 100%; max-height: min(84vh, 900px); object-fit: contain; border-radius: 16px; background: #0a1722; }
.lightbox-caption { margin-top: 12px; color: rgba(255,255,255,.82); text-align: center; }
.lightbox-close { position: absolute; top: -14px; right: -14px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: #081a28; font-size: 22px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .gallery-grid, .page-card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: var(--header-h); left: 14px; right: 14px; display: none; align-items: stretch; padding: 11px; border-radius: 14px; background: #0a2030; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px 10px; border-radius: 8px; }
  .primary-nav a::after { display: none; }
  .primary-nav a:hover { background: rgba(255,255,255,.06); }
  .brand img { width: min(255px, 52vw); min-width: 185px; }
  .hero-grid, .page-hero-grid, .why-card, .field-card, .contact-card, .story-card, .split-card, .contact-layout, .cta-banner { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; padding: 58px 0 30px; }
  .hero-media { min-height: 510px; margin-inline: -14px; }
  .hero-media::before { inset: 0 0 auto; width: auto; height: 26%; background: linear-gradient(var(--navy-950), transparent); }
  .hero-media img { object-position: 50% 28%; }
  .page-hero { padding: 58px 0 52px; }
  .page-hero-media { order: -1; }
  .trust-wrap { margin-top: -24px; }
  .trust-item { min-height: 100px; padding: 17px; grid-template-columns: 39px 1fr; }
  .line-icon { font-size: 29px; }
  .why-copy, .field-copy, .contact-copy, .story-copy, .split-copy, .contact-panel { padding: 36px 28px; }
  .why-media { order: -1; }
  .why-media img, .field-media img, .story-media img, .split-media img { min-height: 310px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-item + .process-item::before { display: none; }
  .process-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-item:nth-child(even) { border-left: 1px solid var(--line); }
  .form-row, .highlight-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; order: 3; flex-wrap: wrap; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 66px 0; }
  .hero h1, .page-hero h1 { font-size: clamp(34px, 10vw, 46px); }
  .hero-lead { font-size: 15px; }
  .hero-actions, .page-hero-actions { display: grid; }
  .hero-actions .btn, .page-hero-actions .btn { width: 100%; }
  .hero-media { min-height: 430px; }
  .hero-media-badge { right: 12px; bottom: 12px; }
  .trust-strip, .service-grid, .detail-grid, .process-grid, .page-card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .service-body, .detail-body { min-height: 0; }
  .stats { grid-template-columns: 1fr; }
  .process-item:nth-child(even) { border-left: 0; }
  .process-item:nth-child(n+2) { border-top: 1px solid var(--line); }
  .contact-media img { min-height: 350px; }
  .cta-banner { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-phone { justify-self: start; }
  .footer-nav { grid-column: auto; }
  .footer-bottom { text-align: left; }
}
