@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit.woff2') format('woff2-variations'),
       url('fonts/Outfit.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter.woff2') format('woff2-variations'),
       url('fonts/Inter.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0E2A4E;
  --navy-deep: #091E39;
  --navy-soft: #1a3760;
  --orange: #F28C28;
  --orange-deep: #D9761A;
  --cream: #FAF6F0;
  --cream-warm: #F3ECDF;
  --card-blue: #EEF3FB;
  --ink: #0E2A4E;
  --muted: #5A6B82;
  --line: #E4DBCB;
  --serif: 'Outfit', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 42, 78, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; max-width: 1240px; margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; flex-shrink: 0; }
footer.site .brand-logo { height: 56px; }
nav.top ul {
  display: flex; gap: 32px; list-style: none;
  font-size: 14px; font-weight: 500;
}
nav.top ul a { opacity: 0.85; transition: opacity .2s; }
nav.top ul a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 15px; font-weight: 600;
  letter-spacing: 0.2px;
  transition: color .2s;
}
.nav-phone svg { color: var(--orange); }
.nav-phone:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-toggle { display: none; }
@media (max-width: 1080px) {
  .nav-phone { display: none; }
}
@media (max-width: 860px) {
  nav.top ul, .nav-cta { display: none; }
  .mobile-toggle { display: block; font-size: 20px; color: #fff; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  max-width: 1240px; margin: 0 auto;
  min-height: 640px;
}
.hero-copy {
  padding: 80px 20px 96px 32px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--navy);
}
/* keep accents orange on dark navy sections for contrast */
.hero .eyebrow { color: var(--orange); }
.hero .eyebrow::before { background: var(--orange); }
.cta .eyebrow::before { background: var(--orange); }
h1.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02; letter-spacing: -0.5px;
  margin-bottom: 24px; font-weight: 400;
  text-wrap: balance;
}
h1.hero-title em { color: var(--orange); font-style: normal; font-weight: 500; }
.hero-lede {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 480px; margin-bottom: 28px;
}
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill {
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange);
  border: 1px solid rgba(242, 140, 40, 0.3);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(242,140,40,0.6); }
.btn-ghost {
  color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }
.btn-nav {
  background: #fff; color: var(--navy);
}
.btn-nav:hover { background: var(--cream); transform: translateY(-1px); }

/* hero imagery side */
.hero-media {
  position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #d8c4a8 0%, #c9a987 45%, #a68665 100%);
  display: flex; align-items: center; justify-content: center;
}
/* stylized "carer + client" placeholder */
.hero-scene {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(14,42,78,0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 55%, rgba(242,140,40,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #e8d6ba 0%, #c9a987 50%, #8a6a4d 100%);
  overflow: hidden;
}
.hero-scene::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0, transparent 8px,
      rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px);
}
.photo-tag {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: 11px; color: rgba(255,255,255,0.7);
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(14,42,78,0.4);
  padding: 6px 14px; border-radius: 4px;
  backdrop-filter: blur(6px);
  z-index: 4;
}

/* price badge */
.price-badge {
  position: absolute; top: 60px; right: 40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.4), 0 0 0 6px rgba(255,255,255,0.12);
  z-index: 5;
  font-weight: 600;
}
.price-badge .from { font-size: 13px; opacity: 0.95; }
.price-badge .amt { font-family: var(--serif); font-size: 34px; line-height: 1; margin: 4px 0; }
.price-badge .unit { font-size: 11px; opacity: 0.9; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 380px; }
  .hero-copy { padding: 56px 32px 56px; }
  .price-badge { width: 110px; height: 110px; top: auto; bottom: 24px; right: 24px; }
  .price-badge .amt { font-size: 26px; }
}

/* ---------- EXPERIENCE SECTION ---------- */
.xp-section { background: #fff; }
.xp-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.xp-copy .eyebrow { justify-content: flex-start; }
.xp-copy h2 { text-align: left; }
.xp-copy p {
  color: var(--muted); font-size: 17px;
  margin-bottom: 14px; line-height: 1.65;
}
.xp-media {
  aspect-ratio: 5/4;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #c9a987, #8a6a4d);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(14,42,78,0.3);
}
.xp-media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(242,140,40,0.18), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(14,42,78,0.25), transparent 55%),
    repeating-linear-gradient(45deg,
      transparent 0, transparent 8px,
      rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 16px);
}
.xp-media .tag {
  position: absolute; left: 20px; top: 20px;
  font-family: 'Courier New', monospace;
  font-size: 11px; color: #fff;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(14,42,78,0.55);
  padding: 6px 12px; border-radius: 4px;
}
.xp-stat-card {
  position: absolute; left: 24px; bottom: 24px;
  background: #fff; border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 20px 40px -20px rgba(14,42,78,0.4);
  display: flex; align-items: center; gap: 14px;
}
.xp-stat-card .n {
  font-family: var(--serif);
  font-size: 38px; font-weight: 600;
  color: var(--orange); line-height: 1;
  letter-spacing: -0.5px;
}
.xp-stat-card .l {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy);
  line-height: 1.3; max-width: 110px;
}
@media (max-width: 960px) {
  .xp-grid { grid-template-columns: 1fr; gap: 40px; }
  .xp-media { aspect-ratio: 4/3; }
}

/* ---------- SECTIONS ---------- */
section { padding: 72px 0; }
@media (max-width: 860px) {
  section { padding: 56px 0; }
}
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { background: var(--navy); }
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 48px); line-height: 1.05;
  letter-spacing: -0.5px; color: var(--navy);
  margin-bottom: 16px; text-wrap: balance;
}
h2 em { color: var(--orange); font-style: normal; font-weight: 500; }
.section-lede {
  font-size: 17px; color: var(--muted); line-height: 1.6;
}

/* services + plans split */
.split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px;
  align-items: start;
}
.split > #plans {
  position: sticky; top: 96px;
}
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split > #plans { position: static; top: auto; }
}
.side-head .eyebrow { justify-content: flex-start; }
.side-head .eyebrow::before { background: var(--navy); }
.side-head h2 { font-size: clamp(30px, 3.4vw, 40px); text-align: left; }
.side-head p { color: var(--muted); margin-top: 12px; max-width: 460px; }

/* services list */
.services {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.service-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .2s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover {
  padding-left: 8px;
}
.svc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
  transition: background .2s, color .2s;
}
.service-row:hover .svc-icon {
  background: var(--orange); color: #fff;
}
.svc-label { font-size: 16px; font-weight: 500; color: var(--navy); }

/* plans */
.plans { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.plan {
  position: relative;
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 24px;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(14,42,78,0.1);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.plan:hover {
  transform: translateY(-2px);
  border-color: rgba(14,42,78,0.2);
  box-shadow: 0 16px 32px -20px rgba(14,42,78,0.2);
}
.plan.featured {
  border: 2px solid var(--orange);
  padding: 25px 23px;
  background: #fff;
}
.plan.featured::before {
  content: "Most popular";
  position: absolute; top: -10px; left: 20px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.plan-ico {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(14,42,78,0.06); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.plan.featured .plan-ico { background: rgba(242,140,40,0.12); color: var(--orange); }
.plan-ico svg { width: 28px; height: 28px; }
.plan-main { flex: 1; min-width: 0; }
.plan h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--navy); line-height: 1.2; margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.plan .hours { font-weight: 500; color: var(--muted); margin-bottom: 6px; font-size: 14px; }
.plan .price {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.2px;
}
.plan.featured .price { color: var(--orange-deep); }
.plan p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.plan-select {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--navy);
}
.plan.featured .plan-select { color: var(--orange-deep); }
.plan-select .arrow { transition: transform .2s; }
.plan:hover .plan-select .arrow { transform: translateX(4px); }

/* ---------- TRUST BAR ---------- */
.trust {
  background: var(--navy); color: #fff;
  padding: 88px 0 96px;
  position: relative; overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,140,40,0.18), transparent 70%);
  pointer-events: none;
}
.trust::after {
  content: "";
  position: absolute; bottom: -140px; left: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,140,40,0.10), transparent 70%);
  pointer-events: none;
}
.trust .wrap { position: relative; z-index: 1; }
.trust-head {
  text-align: center; max-width: 640px;
  margin: 0 auto 56px;
}
.trust-head .eyebrow {
  color: var(--orange); justify-content: center;
}
.trust-head .eyebrow::before { background: var(--orange); }
.trust-head h2 {
  color: #fff; text-align: center; margin-top: 12px;
}
.trust-head h2 em { color: #fff; font-style: normal; font-weight: 500; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
.trust-item {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px;
  padding: 30px 26px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.trust-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(242,140,40,0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5);
}
.trust-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(242,140,40,0.16); color: var(--orange);
  border: 1px solid rgba(242,140,40,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-ico svg { width: 26px; height: 26px; }
.trust-item h4 {
  font-size: 17px; font-weight: 600; letter-spacing: 0;
  line-height: 1.3; color: #fff;
  text-transform: none;
}
.trust-item p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin-top: 6px; line-height: 1.5;
}
@media (max-width: 960px) {
  .trust { padding: 72px 0 80px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-head { margin-bottom: 40px; }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item { padding: 24px 22px; }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center;
}
.about-media {
  aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #e8d6ba, #a68665);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(14,42,78,0.3);
}
.about-media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 45%, rgba(14,42,78,0.25), transparent 55%),
    repeating-linear-gradient(45deg,
      transparent 0, transparent 8px,
      rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 16px);
}
.about-media .tag {
  position: absolute; left: 20px; bottom: 20px;
  font-family: 'Courier New', monospace;
  font-size: 11px; color: #fff;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(14,42,78,0.55);
  padding: 6px 12px; border-radius: 4px;
}
.about-stats {
  position: absolute; right: 20px; bottom: 20px;
  background: #fff; border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px -20px rgba(14,42,78,0.4);
  display: flex; gap: 22px;
}
.about-stat .n {
  font-family: var(--serif); font-size: 32px; color: var(--orange); line-height: 1;
}
.about-stat .l { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-copy .eyebrow { justify-content: flex-start; }
.about-copy .eyebrow::before { background: var(--navy); }
.about-copy h2 { text-align: left; }
.about-copy p { color: var(--muted); font-size: 17px; margin-bottom: 16px; line-height: 1.65; }
.about-copy ul { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.about-copy li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--navy);
}
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stats { right: 20px; bottom: 20px; }
}

/* ---------- TESTIMONIALS ---------- */
.testim-bg {
  background: var(--cream-warm);
  position: relative; overflow: hidden;
}
.testim-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(242,140,40,0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14,42,78,0.06), transparent 40%);
  pointer-events: none;
}
.testim-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.quote {
  background: #fff; border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 14px 30px -22px rgba(14,42,78,0.25);
  border: 1px solid rgba(14,42,78,0.04);
  display: flex; flex-direction: column;
  position: relative;
}
.quote .mark {
  font-family: var(--serif); font-size: 64px; line-height: 0.8;
  color: var(--orange); margin-bottom: 8px;
}
.quote p {
  font-size: 15.5px; color: var(--navy); line-height: 1.6;
  flex: 1;
}
.quote footer {
  margin-top: 20px; display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.avatar.v2 { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.avatar.v3 { background: linear-gradient(135deg, #8a6a4d, #5a4533); }
.quote .who { font-size: 14px; font-weight: 600; color: var(--navy); }
.quote .loc { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }
@media (max-width: 860px) {
  .testim-track { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  padding: 24px 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-size: 17px; font-weight: 600; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .25s;
  font-weight: 300; font-size: 18px;
}
.faq[open] .plus { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq .body {
  padding: 0 8px 24px; color: var(--muted);
  font-size: 15px; line-height: 1.7;
  max-width: 640px;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: 80px 0;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
.cta h2 { color: #fff; text-align: left; }
.cta h2 em { color: var(--orange); }
.cta-copy p { color: rgba(255,255,255,0.75); font-size: 17px; margin-top: 12px; }
.cta-contact {
  margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.cta-contact a {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff; font-size: 16px;
}
.cta-contact .ico {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--orange); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-contact .big {
  font-family: var(--serif); font-size: 28px; line-height: 1;
}

/* form */
.form-card {
  background: #fff; color: var(--navy);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.form-card h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  margin-bottom: 6px;
}
.form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 15px; color: var(--navy);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242,140,40,0.15);
}
.field textarea { resize: vertical; min-height: 80px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
  width: 100%; margin-top: 8px;
  background: var(--orange); color: #fff;
  padding: 15px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.form-privacy {
  margin-top: 12px; font-size: 12px; color: var(--muted);
  text-align: center; line-height: 1.5;
}
.form-ok {
  display: none; padding: 40px 20px; text-align: center;
}
.form-ok.show { display: block; }
.form-ok .circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 12px;
}
.form-ok h3 { color: var(--navy); margin-bottom: 6px; }

@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .row2 { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
/* (foot-tagline removed) */
.foot-brand {
  text-align: center; max-width: 520px; margin: 0 auto 40px;
}
.foot-brand .brand { justify-content: center; }
.foot-brand p {
  font-size: 14px; line-height: 1.6; margin-top: 16px;
}
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* scroll fade-ins */
.fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade.in { opacity: 1; transform: translateY(0); }
