:root {
  --bg: #061a24;
  --bg-soft: #0d2431;
  --card: rgba(9, 24, 34, 0.78);
  --card-strong: rgba(7, 21, 30, 0.92);
  --text: #e7edf0;
  --muted: #aab8c0;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #d5b36d;
  --accent-strong: #f1d89c;
  --aqua: #78c9c9;
  --shadow: 0 18px 80px rgba(0, 0, 0, 0.3);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 201, 201, 0.14), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(213, 179, 109, 0.14), transparent 24%),
    linear-gradient(180deg, #04121a 0%, #061a24 38%, #0a1d29 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 0.5rem;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}

.page-glow-left {
  left: -10rem;
  top: 10rem;
  background: rgba(120, 201, 201, 0.65);
}

.page-glow-right {
  right: -12rem;
  top: 24rem;
  background: rgba(213, 179, 109, 0.65);
}

.site-header,
.hero,
.section,
.trust-strip,
.site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 20, 28, 0.58);
  backdrop-filter: blur(16px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 0.9rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(213, 179, 109, 0.92), rgba(241, 216, 156, 0.88));
  color: #13202c;
  box-shadow: 0 12px 35px rgba(213, 179, 109, 0.25);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.hero-copy,
.hero-panel,
.coverage-panel,
.contact-card,
.contact-form,
.service-card,
.approach-cards article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(6, 26, 36, 0.82), rgba(6, 26, 36, 0.72)),
    linear-gradient(0deg, rgba(10, 29, 41, 0.8), rgba(10, 29, 41, 0.8)),
    url("/assets/images/hero-pool.jpg") center/cover no-repeat;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(6, 26, 36, 0.75));
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1,
.section h2,
.contact-card h3,
.service-card h3,
.approach-cards h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
}

.lead,
.section-heading p,
.service-card p,
.split-copy p,
.coverage-list li,
.contact-card dd,
.form-note {
  color: var(--muted);
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1.5rem 0 0;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 3.2rem;
  padding: 0.95rem 1.3rem;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, rgba(213, 179, 109, 0.95), rgba(241, 216, 156, 0.9));
  color: #13202c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.85rem;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.95), rgba(6, 18, 26, 0.95)),
    radial-gradient(circle at top right, rgba(120, 201, 201, 0.16), transparent 38%);
}

.panel-label,
.service-tag {
  margin: 0;
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-panel-block {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.hero-panel-block span,
.contact-card dt,
.coverage-list p {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero-panel-block a,
.hero-panel-block p {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.trust-logos img {
  height: 2.7rem;
  width: auto;
  opacity: 0.9;
}

.section {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
}

.section-alt {
  padding-top: 4rem;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-heading p {
  margin: 0;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(12, 32, 45, 0.92), rgba(8, 21, 29, 0.95)),
    radial-gradient(circle at top left, rgba(120, 201, 201, 0.08), transparent 34%);
}

.service-card.wide {
  grid-column: span 6;
}

.service-card h3 {
  font-size: 2.25rem;
}

.service-card p,
.service-card li {
  line-height: 1.7;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-link::after,
.inline-link::after {
  content: ">";
  line-height: 1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  align-items: start;
}

.split-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.split-copy p:last-child {
  line-height: 1.8;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.approach-cards article {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.98)),
    radial-gradient(circle at top right, rgba(213, 179, 109, 0.1), transparent 36%);
}

.approach-cards span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.approach-cards h3 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.9rem;
}

.approach-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.96)),
    radial-gradient(circle at bottom left, rgba(120, 201, 201, 0.09), transparent 38%);
}

.coverage-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0;
}

.coverage-list ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.coverage-list li {
  line-height: 1.75;
}

.coverage-list p + ul + p {
  margin-top: 1.3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card,
.contact-form {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.96)),
    radial-gradient(circle at top right, rgba(213, 179, 109, 0.08), transparent 34%);
}

.contact-card h3 {
  font-size: 2.3rem;
}

.contact-card dl {
  margin: 1.5rem 0 0;
}

.contact-card dl div + div {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-card dd {
  margin: 0.55rem 0 0;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form select {
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(213, 179, 109, 0.9);
  box-shadow: 0 0 0 3px rgba(213, 179, 109, 0.14);
}

.contact-form option {
  color: #061a24;
}

.form-note {
  margin: 0;
  line-height: 1.7;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.link-grid a,
.notice-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.notice-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.97)),
    radial-gradient(circle at top right, rgba(120, 201, 201, 0.1), transparent 38%);
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.notice-card {
  padding: 1.6rem;
}

.page-hero-copy h1,
.detail-card h2,
.cta-panel h2,
.notice-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-hero-copy h1,
.notice-card h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero-copy p,
.page-hero-side p,
.detail-card p,
.detail-card li,
.cta-panel p,
.notice-card p {
  color: var(--muted);
  line-height: 1.75;
}

.page-hero-side dl,
.detail-card ul {
  margin: 1rem 0 0;
}

.page-hero-side div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.page-hero-side dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.page-hero-side dd {
  margin: 0.4rem 0 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.detail-card h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.detail-card ul {
  padding-left: 1.15rem;
}

.cta-panel {
  margin-top: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.link-grid a {
  min-height: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.97)),
    radial-gradient(circle at bottom left, rgba(213, 179, 109, 0.08), transparent 38%);
}

.link-grid strong {
  display: block;
  margin-bottom: 0.45rem;
}

.notice-card {
  margin-top: 1rem;
}

.home-page {
  --home-bg: #f3f7f8;
  --home-surface: rgba(255, 255, 255, 0.94);
  --home-surface-strong: #ffffff;
  --home-surface-alt: #e8f1f4;
  --home-ink: #0f2431;
  --home-ink-soft: #59707d;
  --home-line: rgba(15, 36, 49, 0.12);
  --home-accent: #0d6f8f;
  --home-accent-strong: #0b5e78;
  --home-accent-soft: #dff2f8;
  --home-gold: #c89c57;
  --home-shadow: 0 28px 60px rgba(22, 43, 58, 0.12);
  background:
    radial-gradient(circle at top left, rgba(13, 111, 143, 0.12), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(200, 156, 87, 0.13), transparent 24%),
    linear-gradient(180deg, #eef4f6 0%, #f8fbfc 28%, #eef5f8 100%);
  color: var(--home-ink);
}

.home-page .page-glow {
  opacity: 0.34;
  filter: blur(120px);
}

.home-page .page-glow-left {
  top: 5rem;
  left: -12rem;
  background: rgba(85, 168, 194, 0.42);
}

.home-page .page-glow-right {
  top: 14rem;
  right: -10rem;
  background: rgba(200, 156, 87, 0.32);
}

.home-page .site-header,
.home-hero,
.home-brand-strip,
.home-section,
.home-page .site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.home-page .site-header {
  position: sticky;
  top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(243, 247, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--home-line);
}

.home-page .brand-copy strong {
  color: var(--home-ink);
}

.home-page .brand-copy span:last-child {
  color: var(--home-ink-soft);
}

.home-page .site-nav {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--home-line);
  box-shadow: 0 12px 32px rgba(24, 44, 58, 0.08);
}

.home-page .site-nav a {
  color: var(--home-ink-soft);
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  color: var(--home-ink);
}

.home-page .header-cta {
  background: linear-gradient(135deg, var(--home-accent), #0b88ad);
  color: #fff;
  box-shadow: 0 18px 32px rgba(13, 111, 143, 0.22);
}

.home-page .nav-toggle span {
  background: var(--home-ink);
}

.home-main {
  position: relative;
  z-index: 1;
}

.home-page .eyebrow {
  margin-bottom: 0;
  color: var(--home-accent-strong);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 3.25rem;
}

.home-hero-copy {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--home-line);
  border-radius: 2.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 251, 0.94));
  box-shadow: var(--home-shadow);
}

.home-hero-copy h1,
.home-section-intro h2,
.home-quote-card h2,
.home-coverage-panel h2,
.home-process-panel h2,
.home-contact-intro h2,
.home-contact-card h3,
.home-service-feature h3,
.home-service-card h3,
.home-mini-card h2,
.home-principles h3,
.home-process-list h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-hero-copy h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  color: var(--home-ink);
}

.home-lead,
.home-section-intro p:last-child,
.home-quote-card p,
.home-coverage-panel > p,
.home-process-panel > p,
.home-contact-intro p,
.home-contact-card p,
.home-page .form-note {
  margin: 0;
  color: var(--home-ink-soft);
  line-height: 1.85;
}

.home-lead {
  max-width: 42rem;
  font-size: 1.05rem;
}

.home-page .hero-actions {
  margin-top: 0;
}

.home-page .button-primary {
  background: linear-gradient(135deg, var(--home-accent), #0b88ad);
  color: #fff;
  box-shadow: 0 18px 30px rgba(13, 111, 143, 0.18);
}

.home-page .button-secondary {
  border-color: rgba(15, 36, 49, 0.16);
  color: var(--home-ink);
  background: transparent;
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-stat-grid article {
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--home-line);
  border-radius: 1.4rem;
  background: rgba(232, 241, 244, 0.68);
}

.home-stat-grid strong {
  display: block;
  color: var(--home-ink);
  font-size: 1.35rem;
}

.home-stat-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--home-ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-hero-media {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  gap: 1rem;
}

.home-image-card,
.home-mini-card,
.home-service-feature,
.home-service-card,
.home-quote-card,
.home-principles article,
.home-coverage-panel,
.home-process-panel,
.home-contact-card,
.home-page .home-contact-form {
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-image-card,
.home-mini-card,
.home-service-feature,
.home-service-card,
.home-quote-card,
.home-principles article,
.home-coverage-panel,
.home-process-panel,
.home-contact-card,
.home-page .home-contact-form {
  border-radius: 2rem;
}

.home-mini-card:hover,
.home-service-feature:hover,
.home-service-card:hover,
.home-principles article:hover,
.home-quote-card:hover,
.home-coverage-panel:hover,
.home-process-panel:hover,
.home-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 72px rgba(22, 43, 58, 0.16);
}

.home-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #0f2634;
}

.home-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 27, 39, 0.08), rgba(9, 27, 39, 0.62));
}

.home-image-card img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
}

.home-image-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  max-width: 16rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-mini-card {
  min-height: 100%;
  padding: 1.15rem;
  background: var(--home-surface);
}

.home-mini-card h2 {
  margin-top: 0.65rem;
  font-size: 1.65rem;
  color: var(--home-ink);
}

.home-mini-card-accent {
  background: linear-gradient(135deg, #0f2937, #12394c);
  border-color: transparent;
}

.home-mini-card-accent .service-tag {
  color: #bbe5f0;
}

.home-mini-card-accent h2 {
  color: #f4f7f8;
}

.home-brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 0.6rem;
}

.home-brand-strip p {
  margin: 0;
  max-width: 34rem;
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-page .trust-logos img {
  opacity: 1;
}

.home-section {
  padding-top: 5.5rem;
}

.home-section-alt {
  padding-top: 4.5rem;
}

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: end;
}

.home-section-intro h2,
.home-quote-card h2,
.home-coverage-panel h2,
.home-process-panel h2,
.home-contact-intro h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  color: var(--home-ink);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-service-feature {
  grid-column: span 7;
  padding: 2rem;
  background: linear-gradient(160deg, #0f2836, #123e50);
  color: #eef4f6;
}

.home-service-feature p,
.home-service-feature li {
  color: rgba(239, 244, 246, 0.8);
  line-height: 1.75;
}

.home-service-feature h3,
.home-service-card h3 {
  font-size: 2.3rem;
}

.home-service-feature ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.home-service-feature .service-tag {
  color: #c8ebf7;
}

.home-service-feature .service-link {
  color: #fff;
}

.home-service-card {
  grid-column: span 5;
  padding: 1.6rem;
  background: var(--home-surface);
}

.home-service-card:nth-child(3),
.home-service-card:nth-child(4),
.home-service-card:nth-child(5) {
  grid-column: span 4;
}

.home-service-card p {
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-page .service-tag {
  color: var(--home-accent-strong);
}

.home-page .service-link,
.home-page .inline-link {
  color: var(--home-accent);
}

.home-page .service-link::after,
.home-page .inline-link::after {
  content: "→";
}

.home-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.home-quote-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 241, 244, 0.9));
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-principles article {
  padding: 1.45rem;
  background: var(--home-surface-strong);
}

.home-principles span,
.home-process-list span {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-principles span {
  background: var(--home-accent-soft);
  color: var(--home-accent-strong);
}

.home-principles h3 {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  font-size: 1.95rem;
  color: var(--home-ink);
}

.home-principles p {
  margin: 0;
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.home-coverage-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 248, 0.98));
}

.home-coverage-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-coverage-columns p,
.home-contact-card dt {
  margin: 0 0 0.65rem;
  color: var(--home-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-coverage-columns ul {
  margin: 0;
  padding-left: 1.1rem;
}

.home-coverage-columns li {
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-process-panel {
  padding: 2rem;
  background: linear-gradient(160deg, rgba(15, 40, 54, 0.97), rgba(18, 62, 80, 0.96));
}

.home-process-panel h2,
.home-process-panel h3 {
  color: #f4f7f8;
}

.home-process-panel > p {
  color: #c9e2ea;
}

.home-process-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.home-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-process-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-process-list span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-process-list h3 {
  margin-bottom: 0.4rem;
  font-size: 1.65rem;
}

.home-process-list p {
  margin: 0;
  color: rgba(244, 247, 248, 0.78);
  line-height: 1.75;
}

.home-contact-section {
  padding-bottom: 1rem;
}

.home-contact-intro {
  max-width: 46rem;
}

.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  margin-top: 2rem;
}

.home-contact-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 241, 244, 0.95));
}

.home-contact-card h3 {
  color: var(--home-ink);
  font-size: 2.4rem;
}

.home-contact-card dl {
  margin: 0;
}

.home-contact-card dl div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--home-line);
}

.home-contact-card dd {
  margin: 0.45rem 0 0;
  color: var(--home-ink-soft);
  line-height: 1.7;
}

.home-page .home-contact-form {
  padding: 1.6rem;
  background: var(--home-surface-strong);
}

.home-page .contact-form label {
  color: var(--home-ink);
}

.home-page .contact-form input,
.home-page .contact-form select,
.home-page .contact-form textarea {
  border: 1px solid rgba(15, 36, 49, 0.12);
  background: #f8fbfc;
  color: var(--home-ink);
}

.home-page .contact-form input:focus,
.home-page .contact-form select:focus,
.home-page .contact-form textarea:focus {
  border-color: rgba(13, 111, 143, 0.8);
  box-shadow: 0 0 0 3px rgba(13, 111, 143, 0.12);
}

.home-page .contact-form option {
  color: var(--home-ink);
}

.home-page .site-footer {
  margin-top: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(15, 36, 49, 0.08);
  color: var(--home-ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .split-layout,
  .coverage-panel,
  .contact-layout,
  .page-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.wide {
    grid-column: span 6;
  }

  .approach-cards {
    grid-template-columns: 1fr;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-block;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1.4rem;
  }

  .site-nav.is-open {
    display: inline-flex;
  }

  .header-cta {
    grid-area: cta;
    justify-self: start;
  }

  .service-card,
  .service-card.wide {
    grid-column: 1 / -1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .trust-strip,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand img {
    width: 3.7rem;
    height: 3.7rem;
  }

  .hero-copy,
  .hero-panel,
  .coverage-panel,
  .contact-card,
  .contact-form {
    padding: 1.25rem;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 1120px) {
  .home-hero,
  .home-section-intro,
  .home-story-layout,
  .home-coverage-layout,
  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .home-service-feature {
    grid-column: span 12;
  }

  .home-service-card,
  .home-service-card:nth-child(3),
  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: span 6;
  }

  .home-principles,
  .home-coverage-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .home-media-grid,
  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-service-card:nth-child(3),
  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .home-page .site-nav {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 640px) {
  .home-hero,
  .home-brand-strip,
  .home-section,
  .home-page .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-hero {
    padding-top: 2rem;
  }

  .home-hero-copy,
  .home-service-feature,
  .home-service-card,
  .home-quote-card,
  .home-principles article,
  .home-coverage-panel,
  .home-process-panel,
  .home-contact-card,
  .home-page .home-contact-form {
    padding: 1.25rem;
    border-radius: 1.6rem;
  }

  .home-image-card img {
    min-height: 300px;
  }

  .home-image-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .home-brand-strip {
    align-items: flex-start;
  }
}
