:root {
  --ink: #102332;
  --ink-soft: #526572;
  --navy: #071a28;
  --navy-2: #0c2e43;
  --blue: #176b9c;
  --cyan: #2cc5c9;
  --cyan-dark: #0b6971;
  --paper: #f6f7f3;
  --white: #fff;
  --line: #d9e1e2;
  --mist: #eaf1f1;
  --success: #6fe0c1;
  --shadow: 0 24px 70px rgba(7, 26, 40, .12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 16px; color: var(--navy); background: var(--white);
  transform: translateY(-150%); border-radius: 8px;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section-compact { padding: clamp(54px, 7vw, 90px) 0; }
.surface { background: var(--white); }
.dark { color: var(--white); background: var(--navy); }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400; line-height: 1.08; letter-spacing: -.025em;
}
h1 { max-width: 930px; margin-bottom: 28px; font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 4vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.lede { max-width: 690px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.dark .lede { color: #b8c8d0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  color: var(--cyan-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
.dark .eyebrow { color: var(--cyan); }

.site-header {
  position: sticky; top: 0; z-index: 100; height: 78px;
  color: var(--navy); background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; height: 78px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; color: var(--navy); text-decoration: none; }
.brand-logo { width: clamp(184px, 18vw, 232px); height: auto; }
.brand-mark {
  display: grid; width: 38px; height: 38px; place-items: center;
  color: var(--navy); background: var(--cyan); border-radius: 10px;
  font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700;
}
.brand-name { display: grid; line-height: 1.05; }
.brand-name strong { font-size: .96rem; letter-spacing: .02em; }
.brand-name span { color: #93a9b4; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 10px 13px; color: var(--ink-soft); font-size: .86rem; font-weight: 650; text-decoration: none; border-radius: 8px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy); background: var(--mist); }
.site-nav .nav-cta { margin-left: 8px; padding-inline: 18px; color: var(--white); background: var(--navy); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--navy-2); }
.nav-toggle { display: none; padding: 10px; color: var(--navy); background: transparent; border: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; }

.hero { position: relative; overflow: hidden; padding: clamp(95px, 12vw, 170px) 0 clamp(90px, 11vw, 150px); }
.hero::before, .page-hero::before {
  position: absolute; inset: 0; pointer-events: none; content: "";
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000, transparent 86%);
}
.hero::after {
  position: absolute; width: 580px; height: 580px; right: -180px; top: -190px; content: "";
  border: 1px solid rgba(44,197,201,.26); border-radius: 50%; box-shadow: 0 0 0 90px rgba(44,197,201,.035), 0 0 0 180px rgba(44,197,201,.025);
}
.hero .container, .page-hero .container { position: relative; z-index: 1; }
.hero h1 em { color: var(--cyan); font-weight: 400; }
.hero-copy { max-width: 710px; color: #bfd0d7; font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 23px;
  color: var(--navy); background: var(--cyan); border: 1px solid var(--cyan); border-radius: 10px;
  font-size: .9rem; font-weight: 750; text-decoration: none; transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { background: #6bdcdf; border-color: #6bdcdf; transform: translateY(-2px); }
.button-secondary { color: var(--white); background: transparent; border-color: #526a76; }
.button-secondary:hover { background: rgba(255,255,255,.07); border-color: #8ba0aa; }
.button-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button-dark:hover { background: var(--navy-2); border-color: var(--navy-2); }

.trust-strip { color: var(--white); background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 27px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 3px; color: var(--cyan); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.trust-item span { color: #afc0c8; font-size: .82rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 54px; }
.section-head > div:first-child { max-width: 750px; }
.section-head p { max-width: 500px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.card-num { margin-bottom: 52px; color: var(--cyan-dark); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }
.card-link { display: inline-flex; margin-top: 24px; color: var(--blue); font-size: .86rem; font-weight: 750; text-decoration: none; }
.card-link::after { margin-left: 8px; content: "\2192"; transition: transform .2s; }
.card-link:hover::after { transform: translateX(4px); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(46px, 8vw, 100px); align-items: center; }
.split-copy p { color: var(--ink-soft); }
.signal-panel { position: relative; min-height: 470px; padding: 48px; overflow: hidden; color: var(--white); background: var(--navy); border-radius: 24px; }
.signal-panel::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 90% 15%, rgba(44,197,201,.2), transparent 40%); }
.signal-line { position: relative; display: flex; gap: 20px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.signal-line:last-child { border-bottom: 0; }
.signal-dot { width: 10px; height: 10px; margin-top: 8px; flex: 0 0 auto; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 6px rgba(44,197,201,.12); }
.signal-line strong { display: block; margin-bottom: 4px; }
.signal-line span { color: #a9bdc6; font-size: .88rem; }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
.principle { padding: 38px; background: var(--white); }
.principle strong { display: block; margin-bottom: 9px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.principle p { margin: 0; color: var(--ink-soft); }

.cta { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 120px) 0; }
.cta h2 { max-width: 780px; }
.cta p { max-width: 620px; color: #b8c8d0; }
.cta::after { position: absolute; width: 360px; height: 360px; right: -80px; bottom: -220px; content: ""; border: 60px solid rgba(44,197,201,.08); border-radius: 50%; }

.page-hero { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 130px) 0; color: var(--white); background: var(--navy); }
.page-hero h1 { max-width: 880px; font-size: clamp(2.8rem, 6vw, 5.7rem); }
.page-hero p { max-width: 700px; color: #b8c8d0; font-size: 1.15rem; }

.service-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; padding: 58px 0; border-top: 1px solid var(--line); }
.service-row:first-child { border-top: 0; padding-top: 0; }
.service-row h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.service-index { color: var(--cyan-dark); font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.service-detail > p { max-width: 720px; color: var(--ink-soft); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; padding: 0; margin: 28px 0 0; list-style: none; }
.feature-list li { position: relative; padding-left: 22px; font-size: .92rem; }
.feature-list li::before { position: absolute; left: 0; top: .68em; width: 8px; height: 8px; content: ""; background: var(--cyan-dark); border-radius: 50%; }

.empty-state { max-width: 830px; padding: clamp(36px, 7vw, 72px); margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; margin-bottom: 24px; color: var(--cyan-dark); background: #e3f6f3; border-radius: 999px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-pill::before { width: 8px; height: 8px; content: ""; background: var(--cyan-dark); border-radius: 50%; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); }
.contact-list { padding: 0; margin: 38px 0 0; list-style: none; }
.contact-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list small { display: block; color: var(--ink-soft); font-size: .75rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.contact-list a { color: var(--blue); font-weight: 700; text-decoration: none; }
.inquiry-panel { padding: clamp(34px, 5vw, 54px); color: var(--white); background: var(--navy); border-radius: 24px; }
.inquiry-panel h2 { font-size: clamp(2rem, 3vw, 3.1rem); }
.inquiry-panel p { color: #b8c8d0; }
.inquiry-options { display: grid; gap: 12px; margin-top: 32px; }
.inquiry-option { padding: 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); border-radius: 12px; }
.inquiry-option strong { display: block; color: var(--cyan); }
.inquiry-option span { color: #b8c8d0; font-size: .88rem; }

.prose h2 { margin-top: 58px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--blue); }

.site-footer { padding: 65px 0 28px; color: var(--ink-soft); background: var(--white); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; padding-bottom: 48px; }
.footer-brand p { max-width: 410px; margin-top: 20px; font-size: .9rem; }
.footer-heading { margin-bottom: 16px; color: var(--navy); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--ink-soft); font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; font-size: .78rem; border-top: 1px solid var(--line); }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 78px 0 0; display: none; align-items: stretch; padding: 28px 20px;
    background: var(--white); flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px; font-size: 1rem; }
  .site-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .cards, .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .service-row { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .brand-name span { display: none; }
  .brand-logo { width: 178px; }
  .hero::after { display: none; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .principles, .feature-list, .footer-grid { grid-template-columns: 1fr; }
  .signal-panel { min-height: 0; padding: 30px; }
  .footer-grid { gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
