*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky-25: #f5fbff;
  --sky-50: #edf8ff;
  --sky-100: #dceefe;
  --sky-150: #cfe7fb;
  --sky-200: #bddcf5;
  --sky-300: #8dc2ec;
  --sky-400: #63a8dc;
  --sky-500: #3f8bc8;
  --sky-600: #2870b2;
  --sky-700: #1c5d97;
  --sky-800: #164a79;
  --sky-900: #123b60;
  --ink-900: #10243b;
  --ink-800: #18314b;
  --ink-700: #29455f;
  --ink-600: #456079;
  --ink-500: #64819c;
  --white: #ffffff;
  --glass-border: rgba(255, 255, 255, 0.62);
  --glass-bg: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 18px 60px rgba(16, 36, 59, 0.12);
  --shadow-strong: 0 30px 80px rgba(16, 36, 59, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --easing: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink-800);
  background:
    radial-gradient(circle at 12% 8%, rgba(141, 194, 236, 0.34), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(99, 168, 220, 0.2), transparent 28%),
    linear-gradient(180deg, #f9fdff 0%, #eef7fd 32%, #f7fbff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--sky-700); text-decoration: none; }
button, input, textarea, select { font: inherit; }

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.72;
}

.page-shell::before {
  top: -120px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 194, 236, 0.75) 0%, rgba(141, 194, 236, 0.14) 55%, transparent 72%);
}

.page-shell::after {
  left: -160px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 139, 200, 0.35) 0%, rgba(63, 139, 200, 0.08) 55%, transparent 74%);
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 16px 0;
  transition: padding 0.3s var(--easing);
}

.site-header.is-scrolled { padding: 10px 0; }

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px 16px 22px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(16, 36, 59, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo img { height: 54px; width: auto; }

.logo-mark {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.logo-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-600);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav > a,
.desktop-drop-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--easing), background 0.2s var(--easing), transform 0.2s var(--easing);
}

.desktop-nav > a:hover,
.desktop-drop:hover .desktop-drop-toggle,
.desktop-nav > a.active,
.desktop-drop-toggle.active {
  color: var(--sky-800);
  background: rgba(255,255,255,0.68);
  transform: translateY(-1px);
}

.desktop-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--sky-700), var(--sky-500));
  box-shadow: 0 14px 30px rgba(28, 93, 151, 0.26);
  padding-inline: 22px !important;
}

.desktop-drop { position: relative; }
.desktop-drop-toggle { cursor: default; }

.desktop-drop-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s var(--easing);
}

.desktop-drop:hover .desktop-drop-toggle svg { transform: rotate(180deg); }

.desktop-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 240px;
  padding: 12px;
  border-radius: 24px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 22px 60px rgba(16, 36, 59, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.22s var(--easing), visibility 0.22s var(--easing), transform 0.22s var(--easing);
}

.desktop-drop:hover .desktop-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.desktop-drop-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  transition: background 0.2s var(--easing), color 0.2s var(--easing), transform 0.2s var(--easing);
}

.desktop-drop-menu a.active,
.desktop-drop-menu a:hover {
  background: linear-gradient(135deg, rgba(220, 238, 254, 0.9), rgba(255, 255, 255, 0.7));
  color: var(--sky-800);
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(16, 36, 59, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-800);
  transition: transform 0.22s var(--easing), opacity 0.22s var(--easing);
}

.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 59, 96, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s var(--easing), visibility 0.24s var(--easing);
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-panel {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(360px, calc(100vw - 24px));
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(237,248,255,0.85));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 24px 60px rgba(16, 36, 59, 0.2);
  transform: translateX(106%);
  transition: transform 0.3s var(--easing);
  overflow-y: auto;
}

.mobile-nav.open .mobile-panel { transform: translateX(0); }

.mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.mobile-close button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.86);
  color: var(--ink-800);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 36, 59, 0.08);
}

.mobile-links { display: grid; gap: 8px; }

.mobile-links > a,
.mobile-drop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(99, 168, 220, 0.12);
  background: rgba(255,255,255,0.72);
  color: var(--ink-800);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(16, 36, 59, 0.06);
}

.mobile-links > a.active,
.mobile-drop-btn.active {
  color: var(--sky-800);
  background: rgba(220, 238, 254, 0.78);
}

.mobile-drop-btn {
  cursor: pointer;
  border: none;
}

.mobile-drop-wrap.open .mobile-arrow { transform: rotate(180deg); }
.mobile-arrow { transition: transform 0.22s var(--easing); }

.mobile-drop-menu {
  display: none;
  gap: 8px;
  padding-top: 8px;
}

.mobile-drop-wrap.open .mobile-drop-menu { display: grid; }

.mobile-drop-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(220, 238, 254, 0.6);
  color: var(--ink-700);
  font-weight: 700;
}

.mobile-drop-menu a.active {
  color: var(--sky-800);
  background: rgba(207, 231, 251, 0.92);
}

.mobile-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--sky-700), var(--sky-500)) !important;
  justify-content: center !important;
  box-shadow: 0 18px 30px rgba(28, 93, 151, 0.24) !important;
}

.page-hero {
  padding: 18px 0 28px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 40px;
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(11, 55, 90, 0.88), rgba(28, 93, 151, 0.72)),
    url('photo-1528241441550-c415af94bb3d.avif') center/cover no-repeat;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero-shell::before,
.hero-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-shell::before {
  inset: auto auto -130px -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 68%);
  animation: tidePulse 10s ease-in-out infinite;
}

.hero-shell::after {
  top: -120px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 194, 236, 0.36), transparent 70%);
  animation: tidePulse 12s ease-in-out infinite reverse;
}

.hero-shell > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: end;
  min-height: 100%;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.09);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-subtitle,
.hero-kicker {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  line-height: 1.75;
  max-width: 720px;
}

.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #eaf7ff;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.22s var(--easing), box-shadow 0.22s var(--easing), background 0.22s var(--easing), border-color 0.22s var(--easing), color 0.22s var(--easing);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--white) !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.14)), linear-gradient(135deg, var(--sky-600), var(--sky-400));
  box-shadow: 0 18px 36px rgba(28, 93, 151, 0.28);
}

.btn-ghost {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-soft {
  color: var(--sky-800) !important;
  border-color: rgba(63, 139, 200, 0.18);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 30px rgba(16, 36, 59, 0.08);
}

.hero-sidecard {
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 50px rgba(6, 26, 43, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: var(--white);
  display: grid;
  gap: 14px;
}

.hero-sidecard strong {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-sidecard h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-sidecard p {
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.hero-sidecard .phone-link,
.hero-sidecard .phone-display {
  display: inline-block;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: 42px;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-800);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 168, 220, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(16, 36, 59, 0.08);
}

.section-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-400), var(--sky-600));
  box-shadow: 0 0 0 6px rgba(141, 194, 236, 0.16);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  text-wrap: balance;
}

.section-subtitle {
  max-width: 760px;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.8;
}

.surface {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,251,255,0.78));
  border: 1px solid rgba(99, 168, 220, 0.14);
  box-shadow: var(--shadow-soft);
}

.section-band {
  position: relative;
  padding: 40px;
  border-radius: calc(var(--radius-xl) + 8px);
  overflow: hidden;
}

.section-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(141, 194, 236, 0.16), transparent 35%),
    radial-gradient(circle at 92% 20%, rgba(63, 139, 200, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  pointer-events: none;
}

.section-band > * { position: relative; z-index: 1; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stack-lg { display: grid; gap: 22px; }
.stack-md { display: grid; gap: 16px; }

.card,
.quote-card,
.faq-card,
.pricing-shell,
.contact-card,
.map-shell,
.frame-shell,
.info-card,
.metric-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(237,248,255,0.78));
  border: 1px solid rgba(99, 168, 220, 0.14);
  box-shadow: 0 18px 36px rgba(16, 36, 59, 0.08);
}

.card p,
.faq-card p,
.info-card p,
.frame-shell p,
.contact-card p,
.pricing-line,
.prose p,
.timeline-card p {
  color: var(--ink-700);
  line-height: 1.85;
}

.card p + p,
.faq-card p + p,
.frame-shell p + p,
.timeline-card p + p,
.prose p + p { margin-top: 10px; }

.card strong,
.faq-card strong,
.frame-shell strong,
.timeline-card strong,
.prose strong,
.contact-card strong,
.pricing-line strong { color: var(--sky-800); }

.timeline-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(237,248,255,0.78));
  border: 1px solid rgba(99, 168, 220, 0.14);
  box-shadow: 0 18px 36px rgba(16, 36, 59, 0.08);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-800);
}

.timeline-step::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-400), var(--sky-700));
  box-shadow: 0 0 0 7px rgba(141, 194, 236, 0.16);
}

.timeline-card h3,
.faq-card h3,
.contact-card h3,
.pricing-shell h3,
.frame-shell h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.metric-banner {
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 59, 96, 0.95), rgba(28, 93, 151, 0.9));
  box-shadow: 0 26px 54px rgba(18, 59, 96, 0.24);
  text-align: center;
  color: var(--white);
}

.metric-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice-card {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(220, 238, 254, 0.66));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 16px 36px rgba(16, 36, 59, 0.07);
  text-align: center;
}

.notice-card p {
  color: var(--ink-700);
  line-height: 1.8;
}

.quote-card {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--sky-900);
}

.image-shell {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.72);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  text-align: center;
  display: grid;
  gap: 12px;
}

.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
  background: linear-gradient(135deg, rgba(220, 238, 254, 0.9), rgba(255,255,255,0.66));
  font-size: 30px;
  box-shadow: inset 0 0 0 1px rgba(99, 168, 220, 0.12);
}

.contact-phone {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-phone a { color: var(--ink-900); }

.phone-display {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-actions .phone-display,
.metric-banner .phone-display,
.footer-address .phone-display {
  color: var(--white);
}

.hero-actions .phone-display { align-self: center; }

.metric-banner .phone-display { margin-bottom: 8px; }

.footer-address .phone-display {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.legal-table .phone-display { color: var(--ink-900); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row.center { justify-content: center; }

.pricing-list {
  display: grid;
  gap: 12px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(99, 168, 220, 0.14);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-label {
  font-size: 18px;
  color: var(--ink-700);
}

.pricing-label small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-500);
}

.pricing-value {
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  color: var(--sky-700);
}

.tag-note {
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 59, 96, 0.95), rgba(28, 93, 151, 0.9));
  color: var(--white);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 24px 50px rgba(18, 59, 96, 0.2);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.map-shell { padding: 16px; }

.map-shell iframe,
.frame-shell iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 22px;
  background: var(--white);
}

.mini-meta {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.84);
}

.mini-meta strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.footer {
  padding: 48px 0 84px;
}

.footer-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(18, 59, 96, 0.95), rgba(28, 93, 151, 0.88));
  color: var(--white);
  box-shadow: 0 28px 60px rgba(18, 59, 96, 0.24);
  text-align: center;
}

.footer-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.footer-title,
.footer-address,
.footer-legal {
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

.footer-address { margin-bottom: 12px; }
.footer-address a { color: var(--white); }
.footer-legal { font-size: 13px; }
.footer-legal a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.22s var(--easing), opacity 0.22s var(--easing);
}

.footer-legal a:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.72);
}

.legal-pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(99, 168, 220, 0.18);
  box-shadow: 0 14px 30px rgba(16, 36, 59, 0.08);
  color: var(--sky-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  display: grid;
  gap: 14px;
}

.legal-card h3,
.legal-prose h3,
.legal-prose h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.legal-card h3,
.legal-prose h3 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 0.98;
}

.legal-prose h4 {
  font-size: 1.5rem;
  line-height: 1.05;
}

.legal-card p,
.legal-prose p,
.legal-prose li,
.legal-meta,
.legal-table td,
.legal-table th {
  color: var(--ink-700);
  line-height: 1.8;
}

.legal-card p,
.legal-prose p,
.legal-meta { font-size: 15px; }

.legal-prose {
  display: grid;
  gap: 18px;
}

.legal-prose section {
  display: grid;
  gap: 10px;
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.legal-list li::marker {
  color: var(--sky-700);
}

.legal-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(220, 238, 254, 0.8), rgba(255,255,255,0.74));
  border: 1px solid rgba(99, 168, 220, 0.18);
}

.legal-note strong {
  color: var(--sky-800);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(99, 168, 220, 0.14);
}

.legal-table th {
  width: 32%;
  padding-right: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-800);
}

.legal-meta {
  display: grid;
  gap: 8px;
}

.legal-meta strong {
  color: var(--ink-900);
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 12px;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 34px rgba(16, 36, 59, 0.18);
  transition: transform 0.22s var(--easing), box-shadow 0.22s var(--easing);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 44px rgba(16, 36, 59, 0.24);
}

.fab svg { width: 26px; height: 26px; }
.fab--sms { background: linear-gradient(135deg, #2c83be, #5db2df); }
.fab--rdv { background: linear-gradient(135deg, #174b7b, #2f79bb); }

[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing), filter 0.8s var(--easing);
  filter: blur(10px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

[data-reveal][data-delay='1'] { transition-delay: 0.08s; }
[data-reveal][data-delay='2'] { transition-delay: 0.16s; }
[data-reveal][data-delay='3'] { transition-delay: 0.24s; }
[data-reveal][data-delay='4'] { transition-delay: 0.32s; }

@keyframes tidePulse {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(0, -14px, 0); }
}

@media (max-width: 1120px) {
  .desktop-nav > a,
  .desktop-drop-toggle { padding-inline: 12px; font-size: 13px; }
  .hero-grid,
  .legal-summary,
  .grid-3,
  .grid-2,
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-bar { padding: 14px 16px 14px 18px; }
  .logo-mark { display: none; }
  .hero-shell { padding: 28px; border-radius: 32px; min-height: auto; }
  .hero-title { font-size: clamp(3rem, 12vw, 4.8rem); }
  .section { padding: 76px 0; }
  .section-band,
  .footer-shell,
  .results-shell { padding: 24px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1200px); }
  .site-header { padding: 10px 0; }
  .header-bar { border-radius: 28px; }
  .page-hero { padding-top: 12px; }
  .hero-shell { padding: 22px; border-radius: 28px; }
  .legal-pill-nav,
  .hero-actions,
  .button-row,
  .btn { width: 100%; }
  .legal-pill { width: 100%; }
  .card,
  .quote-card,
  .faq-card,
  .pricing-shell,
  .contact-card,
  .map-shell,
  .frame-shell,
  .info-card,
  .metric-card,
  .timeline-card,
  .hero-sidecard,
  .footer-shell { padding: 22px; }
  .floating { right: 12px; bottom: 12px; }
  .fab { width: 54px; height: 54px; }
  .pricing-row { grid-template-columns: 1fr; gap: 6px; }
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td { display: block; width: 100%; }
  .legal-table th {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .legal-table td {
    padding-top: 0;
  }
}