:root {
  --navy-950: #061426;
  --navy-900: #0a1f3c;
  --navy-800: #0f2e58;
  --blue-rtlb: #1764ae;
  --blue-soft: #dcecff;
  --gold: #c19d58;
  --gold-soft: #ead9b5;
  --cream: #f8f4ea;
  --ivory: #fffaf0;
  --paper: #fffdf8;
  --charcoal: #1f2630;
  --muted: #657083;
  --line: rgba(13, 31, 60, 0.13);
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.16);
  --shadow-hover: 0 30px 84px rgba(6, 20, 38, 0.18);
  --glow-blue: 0 0 42px rgba(23, 100, 174, 0.16);
  --glow-gold: 0 0 36px rgba(193, 157, 88, 0.17);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 0%, rgba(23, 100, 174, 0.12), transparent 34rem),
    radial-gradient(circle at 92% 6%, rgba(193, 157, 88, 0.18), transparent 30rem),
    linear-gradient(180deg, #fffaf0 0%, #f6efe3 46%, #fffdf8 100%);
  line-height: 1.6;
}

img, svg, video { max-width: 100%; height: auto; }

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

p { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--navy-900);
  color: white;
  border-radius: 8px;
}

.skip-link:focus { left: 12px; }

.site-shell {
  min-height: 100vh;
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(10, 31, 60, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 60, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 20, 38, 0.88);
  backdrop-filter: blur(18px);
  color: var(--cream);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(193, 157, 88, 0.55);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(23, 100, 174, 0.44), rgba(193, 157, 88, 0.12));
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  box-shadow: 0 0 0 rgba(193, 157, 88, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  border-color: rgba(193, 157, 88, 0.86);
  box-shadow: 0 0 26px rgba(193, 157, 88, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  color: rgba(248, 244, 234, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(248, 244, 234, 0.82);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(248, 244, 234, 0.06);
}

.nav-cta {
  padding: 10px 16px !important;
  margin-left: 8px;
  border: 1px solid rgba(193, 157, 88, 0.65);
  background: rgba(193, 157, 88, 0.12) !important;
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(248, 244, 234, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

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

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 48px;
  padding: 82px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(193, 157, 88, 0.38);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(193, 157, 88, 0.15);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-950);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

h1 {
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  max-width: 850px;
}

h2 { font-size: clamp(2.2rem, 4vw, 4.4rem); }

h3 { font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -0.02em; }

.lede {
  margin-top: 22px;
  max-width: 720px;
  color: #465062;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, color 190ms ease, box-shadow 190ms ease;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: transform 620ms ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(6, 20, 38, 0.16);
}

.button:hover::before { transform: translateX(120%) skewX(-18deg); }


.button-primary {
  background: var(--navy-900);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(10, 31, 60, 0.24);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 20px 42px rgba(10, 31, 60, 0.25), var(--glow-blue);
}

.button-secondary {
  border-color: rgba(10, 31, 60, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy-900);
}

.button-light {
  background: var(--cream);
  color: var(--navy-900);
}

.button-outline-light {
  border-color: rgba(248, 244, 234, 0.34);
  color: var(--cream);
}

.disclaimer-note {
  margin-top: 22px;
  max-width: 780px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(193, 157, 88, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  color: #5a6270;
  font-size: 0.92rem;
}

.disclaimer-note strong { color: var(--navy-900); }

.hero-card {
  position: relative;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.portrait-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 157, 88, 0.46);
  box-shadow: var(--shadow-hover), var(--glow-blue);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px 16px;
  height: 150px;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(6, 20, 38, 0.86), transparent);
  pointer-events: none;
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.45;
  object-fit: cover;
  object-position: 50% 48%;
}

.portrait-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  color: var(--cream);
}

.portrait-caption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  line-height: 1.1;
}

.portrait-caption span {
  display: block;
  color: rgba(248, 244, 234, 0.76);
  margin-top: 5px;
}

.floating-panel {
  position: absolute;
  right: -20px;
  top: 42px;
  width: min(240px, 55%);
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(193, 157, 88, 0.32);
  box-shadow: 0 20px 50px rgba(10, 31, 60, 0.18);
  backdrop-filter: blur(12px);
  color: var(--navy-900);
  font-size: 0.9rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-card:hover .floating-panel {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(10, 31, 60, 0.2), var(--glow-gold);
}

.floating-panel b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.trust-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  padding: 20px;
  box-shadow: 0 14px 36px rgba(10, 31, 60, 0.06);
  transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease, background 230ms ease;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 110px;
  background: radial-gradient(circle, rgba(193, 157, 88, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 230ms ease;
  pointer-events: none;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 157, 88, 0.34);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 54px rgba(10, 31, 60, 0.11), var(--glow-gold);
}

.trust-item:hover::after { opacity: 1; }

.trust-item span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.03rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(10, 31, 60, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(23, 100, 174, 0.08), rgba(193, 157, 88, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 157, 88, 0.38);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 28px 64px rgba(10, 31, 60, 0.13), var(--glow-blue);
}

.card:hover::after { opacity: 1; }

.card > * { position: relative; z-index: 1; }

.card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 100, 174, 0.18), transparent 68%);
}

.card .number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream);
  font-weight: 900;
  margin-bottom: 24px;
}

.card h3 { margin-bottom: 12px; }

.card p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(193, 157, 88, 0.38);
  box-shadow: var(--shadow);
  background: var(--navy-900);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.image-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 157, 88, 0.58);
  box-shadow: var(--shadow-hover), var(--glow-gold);
}

.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.9;
  object-fit: cover;
  object-position: 50% 45%;
}

.content-stack > * + * { margin-top: 20px; }

.content-stack p { color: var(--muted); font-size: 1.05rem; }

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(193, 157, 88, 0.38);
  background: rgba(255, 255, 255, 0.54);
  color: var(--navy-900);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.badge:hover {
  transform: translateY(-2px);
  border-color: rgba(193, 157, 88, 0.55);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--glow-gold);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(10, 31, 60, 0.12);
  background: rgba(255, 253, 248, 0.78);
  transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease, background 230ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 100, 174, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 230ms ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 100, 174, 0.24);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 58px rgba(10, 31, 60, 0.11), var(--glow-blue);
}

.process-step:hover::before { opacity: 1; }

.process-step > * { position: relative; z-index: 1; }

.process-step span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 12px 0 10px;
  font-size: 1.3rem;
}

.process-step p { color: var(--muted); font-size: 0.94rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  width: min(100% - 32px, var(--max));
  margin: 44px auto 0;
  padding: clamp(30px, 6vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 100, 174, 0.5), transparent 30rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 157, 88, 0.18), transparent 65%);
  opacity: 0.75;
  pointer-events: none;
}

.cta-band:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), var(--glow-blue);
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(248, 244, 234, 0.76); margin-top: 12px; max-width: 720px; }

.page-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 82px 0 46px;
}

.page-hero h1 { max-width: 920px; }
.page-hero .lede { max-width: 780px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sidebar-card,
.form-card,
.notice-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 50px rgba(10, 31, 60, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.sidebar-card:hover,
.form-card:hover,
.notice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 157, 88, 0.34);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 28px 66px rgba(10, 31, 60, 0.12), var(--glow-gold);
}

.sidebar-card {
  padding: 28px;
  position: sticky;
  top: 104px;
}

.sidebar-card h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.sidebar-card p,
.notice-card p { color: var(--muted); }

.sidebar-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sidebar-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4d586a;
}

.sidebar-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.form-card {
  padding: clamp(22px, 4vw, 34px);
}

.form-card h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.form-card > p { color: var(--muted); margin-bottom: 24px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field { display: grid; gap: 8px; }

.field.full { grid-column: 1 / -1; }

label {
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(10, 31, 60, 0.17);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea { resize: vertical; min-height: 130px; }

input:focus,
select:focus,
input:hover,
select:hover,
textarea:hover {
  border-color: rgba(23, 100, 174, 0.34);
  background: rgba(255, 255, 255, 0.86);
}

textarea:focus {
  border-color: var(--blue-rtlb);
  box-shadow: 0 0 0 4px rgba(23, 100, 174, 0.13);
  background: white;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid rgba(193, 157, 88, 0.28);
  border-radius: 16px;
  background: rgba(248, 244, 234, 0.58);
  color: #596274;
  font-size: 0.93rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1 1 260px;
}

.form-status.error { color: #8d2e2e; }
.form-status.success { color: #236240; }

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.legal-box {
  margin-top: 20px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  color: #5b6475;
  font-size: 0.92rem;
}

.notice-wrap {
  width: min(100% - 32px, 860px);
  margin: 0 auto;
  padding: 82px 0;
}

.notice-card {
  padding: clamp(28px, 6vw, 54px);
}

.notice-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

.notice-card p { margin-top: 18px; }

.legal-page {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 82px 0;
}

.legal-page article {
  padding: clamp(24px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 50px rgba(10, 31, 60, 0.08);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.legal-page article:hover {
  border-color: rgba(193, 157, 88, 0.34);
  box-shadow: 0 26px 66px rgba(10, 31, 60, 0.11), var(--glow-gold);
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin-bottom: 22px;
}

.legal-page h2 {
  font-size: 1.65rem;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li { color: var(--muted); }

.legal-page ul { padding-left: 1.2rem; }

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  background: var(--navy-950);
  color: var(--cream);
}

.footer-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-wrap p {
  color: rgba(248, 244, 234, 0.68);
  max-width: 720px;
  margin-top: 10px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(248, 244, 234, 0.72);
  font-weight: 700;
}

.footer-links a:hover { color: white; }

.footer-credit {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 244, 234, 0.11);
  color: rgba(248, 244, 234, 0.42);
  font-size: 0.82rem;
}

.footer-credit a {
  color: rgba(248, 244, 234, 0.62);
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  color: rgba(248, 244, 234, 0.92);
}


/* Cosmetic motion layer: premium, restrained, and accessibility-aware. */
.hero-copy,
.hero-card,
.page-hero,
.notice-card {
  animation: ajbFadeUp 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-card { animation-delay: 100ms; }

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes ajbFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .split,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 56px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .sidebar-card { position: static; }
  .cta-band { justify-items: start; }
}

@media (max-width: 760px) {
  .nav-wrap { min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(6, 20, 38, 0.97);
    box-shadow: 0 28px 60px rgba(6, 20, 38, 0.28);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { border-radius: 12px; }
  .nav-cta { margin-left: 0; }

  .hero,
  .section,
  .page-hero,
  .notice-wrap,
  .legal-page {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    max-width: 100%;
  }
  .page-hero {
    padding-top: 66px;
  }
  .floating-panel { right: 10px; width: min(230px, 62%); }
  .trust-strip,
  .card-grid,
  .process,
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .brand-text small { display: none; }
  .page-hero h1 { font-size: clamp(2.3rem, 10vw, 2.8rem); }
  .eyebrow { font-size: 0.76rem; letter-spacing: 0.1em; }
  .hero-actions, .cta-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .form-footer { align-items: stretch; }
  .form-footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
