:root {
  --ink: #102331;
  --muted: #65727b;
  --line: #dfe5e6;
  --paper: #fbfaf6;
  --warm: #f1eee5;
  --white: #fff;
  --brand: #0d6794;
  --brand-dark: #0c2f4b;
  --accent: #d89a25;
  --green: #567a47;
  --shadow: 0 30px 80px rgba(10, 30, 44, .14);
  --soft: 0 14px 38px rgba(15, 47, 74, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section,
main [id] { scroll-margin-top: 118px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 18px;
}
.nav-pill {
  position: relative;
  width: min(920px, 100%);
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(16, 35, 49, .13);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 18px;
}
.brand img { width: 118px; height: auto; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a,
.nav-call {
  padding: 10px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}
.nav-links a:hover { background: #eef4f5; }
.nav-call { background: var(--brand-dark); color: white; }
.menu-btn {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .16s ease;
}
.menu-btn span:nth-child(1) { transform: translateY(-6px); }
.menu-btn span:nth-child(3) { transform: translateY(6px); }
.nav-open .menu-btn span:nth-child(1) { transform: rotate(45deg); }
.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
.nav-open .menu-btn span:nth-child(3) { transform: rotate(-45deg); }

.hero {
  min-height: 100svh;
  padding: 132px max(20px, calc((100vw - 1180px) / 2)) 60px;
}
.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 40px;
}
.hero-center {
  text-align: left;
  width: 100%;
  margin: 0;
}
.eyebrow,
.idx,
.section-kicker,
.micro {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 900;
}
.hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(50px, 5.1vw, 78px);
  line-height: .94;
  letter-spacing: 0;
}
.hero-lead {
  width: min(720px, 100%);
  margin: 0;
  color: #44515a;
  font-size: clamp(19px, 2vw, 24px);
}
.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  font-weight: 900;
}
.btn.primary { background: var(--brand); border-color: var(--brand); color: white; }
.btn.ghost { background: white; }

.proof-runway {
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(320px, 1.18fr);
  grid-template-rows: 230px 230px;
  gap: 18px;
  align-items: stretch;
}
.runway-card,
.runway-feature,
.area-panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--soft);
  overflow: hidden;
}
.owner-card {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--brand-dark);
  color: white;
}
.owner-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(180deg, #00a6dc 0%, #0581bb 100%);
}
.owner-card div { padding: 18px; }
.owner-card .micro { color: #a9dff4; }
.owner-card strong { display: block; margin-top: 6px; font-size: 22px; line-height: 1.05; }
.runway-feature {
  margin: 0;
  position: relative;
  background: #0d1f2d;
  color: white;
  grid-row: 1 / span 2;
  grid-column: 2;
}
.runway-feature img {
  width: 100%;
  height: 100%;
  min-height: 478px;
  object-fit: cover;
}
.runway-feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(12, 47, 75, .82);
  backdrop-filter: blur(10px);
  font-weight: 800;
}
.stat-card {
  background: #fff;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}
.stat-number {
  font-size: 66px;
  line-height: .9;
  font-weight: 950;
  color: var(--brand-dark);
}
.stat-label { font-size: 22px; font-weight: 900; }
.stat-sub { color: var(--muted); }
.stat-card a { margin-top: 18px; color: var(--brand); font-weight: 900; text-decoration: none; }

.section {
  padding: 96px max(22px, calc((100vw - 1180px) / 2));
}
.trust-panel { background: white; }
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: end;
}
.trust-copy h2,
.ledger-head h2,
.gallery-intro h2,
.section-head h2,
.process-band h2,
.contact-band h2,
.page-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: .95;
  letter-spacing: 0;
}
.trust-copy p,
.ledger-head p,
.gallery-intro p,
.lead {
  color: #4f5d66;
  font-size: 18px;
}
.trust-stack {
  position: relative;
}
.trust-stack img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.trust-note {
  position: absolute;
  left: -22px;
  bottom: 24px;
  background: var(--accent);
  color: #111;
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: var(--soft);
  display: grid;
}
.stat-rail {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-rail div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.stat-rail div:last-child { border-right: 0; }
.stat-rail span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.stat-rail strong { display: block; margin-top: 6px; font-size: 24px; line-height: 1.05; }

.service-ledger {
  background: var(--warm);
}
.ledger-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.ledger-head .section-kicker { grid-column: 1 / -1; }
.ledger-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ledger-item {
  min-height: 390px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  box-shadow: var(--soft);
  isolation: isolate;
}
.ledger-item.is-large { grid-column: span 2; }
.ledger-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}
.ledger-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 24, 35, .08) 10%, rgba(8, 24, 35, .82) 100%);
}
.ledger-item:hover img { transform: scale(1.04); }
.ledger-item span,
.ledger-item strong,
.ledger-item em {
  margin-left: 22px;
  margin-right: 22px;
}
.ledger-item span { color: #ffd37a; font-weight: 950; }
.ledger-item strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
}
.ledger-item em {
  display: block;
  margin-top: 10px;
  margin-bottom: 22px;
  font-style: normal;
  color: rgba(255, 255, 255, .84);
}

.work-gallery { background: #fff; }
.gallery-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 300px 270px;
  gap: 16px;
}
.gallery-mosaic figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--soft);
  background: #102331;
}
.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic-main { grid-row: span 2; }
.gallery-mosaic figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-weight: 800;
}
.area-panel {
  background: var(--brand-dark);
  color: white;
  padding: 26px;
  display: grid;
  align-content: center;
}
.area-panel .micro { color: #9bd7ee; }
.area-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1;
}
.area-panel p { color: #c9d7df; }

.container { width: min(1180px, 100%); margin: auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 { margin: 0; }
.gr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  box-shadow: var(--soft);
}
.gr-sum-left { display: flex; align-items: center; gap: 16px; }
.gr-logo {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.gr-meta-top { display: flex; align-items: center; gap: 14px; }
.gr-score { font-size: 34px; font-weight: 950; }
.gr-stars { color: #fbbc05; letter-spacing: 1px; }
.gr-sub { color: var(--muted); }
.gr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  color: var(--brand);
}
.gr-cta svg { width: 18px; }
.gr-marquee { overflow: hidden; margin: 14px 0; }
.gr-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.gr-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--soft);
}
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}
.gr-name { font-weight: 900; }
.gr-date { font-size: 13px; color: var(--muted); }
.gr-g-mark { margin-left: auto; }
.gr-stars-row svg { width: 17px; fill: #fbbc05; }
.gr-text { margin: 0; color: #43505a; }

.process-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  background: var(--brand-dark);
  color: white;
}
.process-band .section-kicker,
.process-band h2 { color: white; }
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 20px;
}
.process-list span { grid-row: span 2; color: #8fd4ef; font-weight: 950; }
.process-list strong { font-size: 22px; }
.process-list p { margin: 0; color: #c9d7df; }

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #0b89bd;
  color: white;
  position: relative;
  z-index: 1;
}
.contact-band .idx,
.contact-band h2 { color: white; }
.contact-band .btn.primary {
  background: white;
  color: var(--brand-dark);
  border-color: white;
  flex: 0 0 auto;
  min-width: 188px;
  white-space: nowrap;
}

.page-hero {
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 70px;
  background: linear-gradient(180deg, #fff 0%, #eef4f1 100%);
}
.page-hero p {
  font-size: 20px;
  color: #44515a;
  max-width: 720px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: 44px;
  align-items: center;
}
.service-detail img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 430px;
  width: 100%;
  object-fit: cover;
}
.route-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.route-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.route-list strong { font-size: 22px; }
.route-list span { color: #5c6871; }
.content-section {
  background: #fff;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 44px;
  align-items: center;
}
.two-col h2,
.post-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
  letter-spacing: 0;
}
.two-col p,
.post-copy p {
  color: #46545d;
  font-size: 18px;
}
.two-col img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.licence-panel {
  margin-top: 26px;
  padding: 22px;
  background: var(--brand-dark);
  color: white;
  border-radius: 8px;
  display: grid;
  gap: 7px;
  width: min(360px, 100%);
}
.licence-panel strong { font-size: 22px; }
.licence-panel span { color: #d5e1e8; }
.service-copy-grid,
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-copy-grid article,
.post-copy {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--soft);
}
.service-copy-grid h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
}
.service-copy-grid p { color: #46545d; }
.gallery-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-page-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #102331;
  position: relative;
  min-height: 260px;
  box-shadow: var(--soft);
}
.gallery-page-grid figure:nth-child(1),
.gallery-page-grid figure:nth-child(8) {
  grid-column: span 2;
}
.gallery-page-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.gallery-page-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  font-weight: 850;
}
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 20px;
}
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}
.contact-card,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--soft);
}
.contact-card a {
  display: block;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  color: var(--brand);
  margin: 18px 0;
}
.contact-card span { display: block; color: #5b6871; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfbfa;
}
.form-status { margin: 0; color: var(--brand); font-weight: 800; }

.site-footer {
  background: #102331;
  color: white;
  padding: 58px max(24px, calc((100vw - 1120px) / 2)) 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}
.footer-logo {
  width: 168px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
}
.site-footer p,
.site-footer span { color: #c9d3d8; }
.site-footer span { display: block; }
.site-footer h3 { margin: 0 0 12px; }
.site-footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 8px 0;
}
.footer-credit a { display: inline; }
.sticky-call { display: none; }
.nav-open .nav-links { display: flex; }
svg { overflow: visible; }

@media (prefers-reduced-motion: no-preference) {
  .gr-track { animation: scrollReviews 42s linear infinite; }
  .gr-marquee-reverse .gr-track { animation-direction: reverse; }
  @keyframes scrollReviews {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

@media (max-width: 960px) {
  .nav-pill {
    width: min(680px, 100%);
    border-radius: 999px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand img { width: 108px; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 24px));
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
    padding: 10px;
    border: 1px solid rgba(16, 35, 49, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 56px rgba(16, 35, 49, .18);
    backdrop-filter: blur(18px);
  }
  .nav-links a {
    background: #f3f6f6;
    padding: 13px 14px;
    text-align: right;
  }
  .nav-call { display: none; }
  .menu-btn {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .hero-editorial,
  .proof-runway,
  .trust-grid,
  .ledger-head,
  .gallery-intro,
  .section-head,
  .process-band,
  .contact-layout,
  .service-detail,
  .two-col {
    grid-template-columns: 1fr;
  }
  .proof-runway {
    width: min(560px, 100%);
    margin: 0 auto;
    grid-template-rows: auto;
  }
  .hero-center { text-align: center; }
  .hero-lead { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .runway-feature { grid-column: auto; grid-row: auto; }
  .runway-feature img { min-height: 320px; }
  .owner-card img { height: 340px; }
  .stat-rail { grid-template-columns: repeat(2, 1fr); }
  .stat-rail div:nth-child(2) { border-right: 0; }
  .ledger-list { grid-template-columns: 1fr; }
  .ledger-item,
  .ledger-item.is-large { grid-column: auto; min-height: 340px; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-main { grid-row: auto; }
  .gallery-mosaic figure { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-copy-grid,
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid figure:nth-child(1),
  .gallery-page-grid figure:nth-child(8) { grid-column: auto; }
}

@media (max-width: 560px) {
  .nav-wrap { top: 12px; padding: 0 12px; }
  .nav-pill { min-height: 58px; padding: 9px 10px 9px 14px; }
  .menu-btn {
    width: 40px;
    height: 40px;
  }
  .hero,
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero { padding-top: 104px; gap: 26px; }
  .hero h1 { font-size: 58px; }
  .hero-lead,
  .page-hero p { font-size: 17px; }
  .hero-actions { justify-content: stretch; }
  .hero-actions .btn { width: 100%; }
  .runway-feature { order: -1; }
  .runway-feature img { min-height: 270px; }
  .owner-card img { height: 300px; }
  .stat-number { font-size: 64px; }
  .trust-copy h2,
  .ledger-head h2,
  .gallery-intro h2,
  .section-head h2,
  .process-band h2,
  .contact-band h2,
  .page-hero h1 {
    font-size: 38px;
  }
  .trust-stack img,
  .service-detail img { height: 260px; }
  .trust-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .stat-rail { grid-template-columns: 1fr; }
  .stat-rail div,
  .stat-rail div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-rail div:last-child { border-bottom: 0; }
  .ledger-item { min-height: 310px; }
  .gallery-mosaic figure { min-height: 250px; }
  .process-list li { grid-template-columns: 1fr; }
  .contact-band { display: grid; }
  .contact-band .btn.primary { width: 100%; min-width: 0; }
  .gr-card { flex-basis: 290px; }
  .route-list a { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-call { display: none; }
}
