/* ---------- Brandon Grotesque (embedded) ---------- */
@font-face {
  font-family: "Brandon Grotesque";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(fonts/brandon-grotesque-300.woff2) format("woff2");
}

@font-face {
  font-family: "Brandon Grotesque";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/brandon-grotesque-400.woff2) format("woff2");
}

@font-face {
  font-family: "Brandon Grotesque";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/brandon-grotesque-500.woff2) format("woff2");
}

@font-face {
  font-family: "Brandon Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/brandon-grotesque-700.woff2) format("woff2");
}

@font-face {
  font-family: "Brandon Grotesque";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(fonts/brandon-grotesque-900.woff2) format("woff2");
}

:root {
  /* Shared Friendship Village brand palette, pulled from The Bailey at Bridge Park build */
  --blue: #407EC9;
  --blue-dark: #2f639f;
  --blue-deep: #234f7d;
  --blue-deepest: #173856;
  --cyan: #00AEEF;
  --gold: #D9C756;
  --gold-dark: #c2ab3f;
  --grey: #808285;
  --tan: #D1CCBD;
  --cream: #f4f2ec;
  --blue-tint: #e7f0fb;
  --ink: #41474d;
  --muted: #6a7075;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(35,79,125,.14);
  --shadow-sm: 0 4px 18px rgba(35,79,125,.10);
  --maxw: 1160px;
  --sans: "Brandon Grotesque", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --serif: "Minion Pro", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-deep);
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem,5.6vw,4rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.8rem,3.6vw,2.7rem);
}

h3 {
  font-size: clamp(1.2rem,2vw,1.5rem);
}

.home p {
  color: var(--muted);
  font-size: 1.08rem;
  text-wrap: pretty;
	font-family: "Minion Pro", "Palatino Linotype", Palatino, Georgia, serif !important;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--blue);
}

section {
  padding: clamp(56px,7vw,96px) 0;
}

.section-head {
  text-align: center;
  max-width: 76ch;
  margin: 0 auto 44px;
}

.section-head p {
  margin-top: 12px;
	font-family: var(--serif);
}

.section-head h2 {
  margin-top: 14px;
  position: relative;
  padding-bottom: 26px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85px;
  height: 17px;
  background: url("images/image-01.png") center/contain no-repeat;
}

.bg-cream {
  background: var(--cream);
}

.bg-tint {
  background: var(--blue-tint);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-deepest);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--blue-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e4dccc;
  box-shadow: 0 2px 14px rgba(15,42,69,.06);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}

.topbar .logo {
  height: 42px;
  width: auto;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-top {
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 800;
  color: var(--blue-deep);
}

.phone-top small {
  font-weight: 700;
  color: var(--blue);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-top a {
  font-size: 1.2rem;
}

.topbar .btn {
  padding: 12px 22px;
  font-size: .94rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--blue-deepest);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: clamp(520px,64vh,660px);
}

.hero-copy {
  background: linear-gradient(150deg,var(--blue-deep) 0%,var(--blue-deepest) 78%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(56px,6.5vw,96px) clamp(26px,4.2vw,64px) clamp(80px,7.5vw,112px) clamp(34px,5.4vw,84px);
}

.hero-copy-inner {
  width: 100%;
  max-width: 560px;
}

.hero h1 {
  color: #fff;
  margin: 14px 0 18px;
  max-width: 20ch;
	font-size: clamp(2.4rem, 5.6vw, 4rem);
}

.hero-photo {
  position: relative;
  background-image: url("images/friendship-home-couple-sharing-coffee-couch-home.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero p.lede {
  color: rgba(255,255,255,.92);
  font-size: 1.2rem;
  max-width: 48ch;
font-family: "Minion Pro", "Palatino Linotype", Palatino, Georgia, serif !important;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px,3.2vw,36px);
}

.hero-sub {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-top: 16px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 58px;
  display: block;
}

/* ---------- Briefing band ---------- */
.briefing {
  padding-top: clamp(52px,5.6vw,84px);
}

.briefing .wrap {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(44px,6vw,80px);
  align-items: center;
  padding-left: clamp(0px,1.5vw,20px);
  padding-right: clamp(0px,.7vw,10px);
}

.briefing-stats {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(35,79,125,.16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px clamp(20px,3vw,40px);
}

.briefing-stats .stat {
  text-align: left;
}

.briefing-stats .stat b {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem,3vw,2.3rem);
  color: var(--blue);
  line-height: 1;
}

.briefing-stats .stat span {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

.briefing-copy h2 {
  margin-top: 14px;
}

.briefing-copy p {
  margin-top: 14px;
  max-width: 58ch;
	font-family: "Minion Pro", "Palatino Linotype", Palatino, Georgia, serif;
}

.briefing-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
	    margin-left: 0;
}

.briefing-list li {
  text-wrap: pretty;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-deep);
}

.briefing-list li i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-deepest);
  font-size: .8rem;
  font-weight: 900;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px 26px 28px;
  color: var(--ink);
}

.form-card h3 {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form-card .sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 16px;
	font-family: var(--serif);
}

/* AD FORM */
.activedemand-wrapper {
		padding: 0 !important;
	}
	.ad-form-field,
	.column-inner  {
		padding: 0 !important;
	}
    .ad-form-field {
      margin-bottom: 9px !important;
		    padding: 0 5px !important;
    }
	
    .activedemand-label {
          display: block !important;
    font-weight: 700;
    font-size: .82rem !important;
    color: var(--blue-deep);
    margin-bottom: 4px !important;
		font-family: "Brandon Grotesque", "Montserrat", "Helvetica Neue", Arial, sans-serif;
		 
    }
	.activedemand-page .container-fluid .column{
		padding: 0 !important;
	}
	.column{
			padding: 0;
	}

	.radio, .checkbox{
			line-height: 1;
	}

	.activedemand-input {
		 width: 100%;
	  padding: 11px 13px;
	  border: 1.5px solid #d5dce3;
	  border-radius: 6px;
	  font-family: var(--sans);
	  font-size: .98rem;
	  color: var(--ink);
	  background: #fff;
	  transition: border-color .15s, box-shadow .15s;
	}
	
	.activedemand-input::placeholder {
		 color: transparent; 
	}
	
	.radio label,
	.checkbox label{
		  display: block;
		  font-family: var(--sans);
		  font-weight: 700;
		  font-size: .82rem;
		  color: var(--blue-deep);
		  margin-bottom: 4px;
	}
	.activedemand-button{
		font-family: var(--sans) !important;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: .5rem;
		font-weight: 700 !important;
		font-size: 1rem !important;
		padding: 15px 28px !important;
		border-radius: 0 !important;
		border: 2px solid transparent !important;
		cursor: pointer !important;
		transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
		text-align: center;
		    background: var(--gold) !important;
    color: var(--blue-deepest) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22) !important;
		    width: 100% !important;

	}
	.error{
			font-size: 12px !important;
		color: red;
		margin: 0 0 0 2px;
	}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.field input,
.field select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #d5dce3;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(64,126,201,.16);
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}

.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 2rem;
}

.form-success h3 {
  color: var(--blue);
}

.stat-quote {
  margin-top: 30px;
  position: relative;
  background: var(--blue);
  color: #fff;
  padding: 34px clamp(26px,3.4vw,40px) 30px;
  border-bottom: 4px solid var(--gold);
}

.stat-quote blockquote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem,1.9vw,1.42rem);
  line-height: 1.4;
  color: #fff;
  text-wrap: pretty;
	margin: 0;
}

.stat-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.stat-quote .kicker {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.04rem;
  color: rgba(255,255,255,.7);
  text-wrap: pretty;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--blue-deepest);
  padding: clamp(40px,4.5vw,64px) 0;
}

.trust .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px,5vw,64px);
  flex-wrap: wrap;
  padding: 0 22px;
}

.trust .stat {
  text-align: center;
  max-width: 20ch;
}

.trust .stat b {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.1rem,4vw,2.6rem);
  color: #fff;
  line-height: 1;
}

.trust .stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

/* ---------- Benefit cards (photo reveal on hover) ---------- */
.bcards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.bcard {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  padding: 42px 34px;
  transition: transform .25s, box-shadow .25s;
}

.bcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .45s ease, transform .6s ease;
}

.bcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,rgba(23,56,86,.9),rgba(23,56,86,.6));
  opacity: 0;
  transition: opacity .45s ease;
}

.bcard:hover,
.bcard:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bcard:hover::before,
.bcard:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.bcard:hover::after,
.bcard:focus-within::after {
  opacity: 1;
}

.bcard .tag {
  font-family: var(--sans);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color .35s ease;
}

.bcard h3 {
  font-size: 1.3rem;
  margin: 12px 0 10px;
  transition: color .35s ease;
}

.bcard p {
  font-size: 1rem;
  transition: color .35s ease;
	font-family: var(--serif);
}

.bcard:hover h3,
.bcard:hover p,
.bcard:focus-within h3,
.bcard:focus-within p {
  color: #fff;
}

.bcard:hover .tag,
.bcard:focus-within .tag {
  color: var(--gold);
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px,4vw,56px);
  align-items: center;
}

.split.rev .txt {
  order: 2;
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}

.split .txt h2 {
  margin: 14px 0;
}

section.nav-bleed {
  padding: 0;
}

.navsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.navsplit .txt {
  padding: clamp(56px,7vw,96px) clamp(30px,4vw,56px) clamp(56px,7vw,96px) max(22px,calc((100vw - var(--maxw))/2 + 22px));
}

.navsplit .media {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.navsplit .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.navsplit.rev .txt {
  order: 2;
  padding: clamp(56px,7vw,96px) max(22px,calc((100vw - var(--maxw))/2 + 22px)) clamp(56px,7vw,96px) clamp(30px,4vw,56px);
}

.navsplit .txt h2+p {
  margin-top: 14px;
	font-family: var(--serif);
}

.checks {
  list-style: none;
  margin: 22px 0 0;
	font-family: var(--serif);
}

.checks li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 1.02rem;
  color: var(--ink);
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--blue);
  font-family: var(--sans);
  font-weight: 800;
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blue-deep);
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin-top: 26px;
}

/* ---------- Service columns ---------- */
.svc-acc {
  display: grid;
  grid-template-columns: 2.2fr .9fr .9fr;
  gap: 18px;
  align-items: stretch;
  transition: grid-template-columns .5s cubic-bezier(.4,0,.2,1);
	    height: 550px;
}

.svc {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  background: var(--cream);
  border: 1px solid #e7ecef;
  padding: 30px 26px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: var(--gold);
  transition: width .5s ease;
}

.svc:hover {
  background: var(--blue-tint);
}

.svc[aria-expanded="true"] {
  background: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.svc[aria-expanded="true"]::before {
  width: 100%;
}

.svc .ic {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 16px;
  flex: none;
  transition: color .3s ease;
}

.svc .ic svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  transition: font-size .4s ease;
}

.svc[aria-expanded="true"] h3 {
  font-size: 1.6rem;
}

.svc .svc-teaser {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}

.svc ul {
  list-style: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-height .4s ease, margin-top .4s ease;
}

.svc[aria-expanded="true"] ul {
  opacity: 1;
  max-height: 640px;
  margin-top: 18px;
  transition: opacity .35s ease .5s, max-height .5s cubic-bezier(.4,0,.2,1) .5s, margin-top .5s ease .5s;
}

.svc li {
  position: relative;
  padding: 8px 0 9px 22px;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
  border-top: 1px solid #eef1f3;
	font-family: var(--serif);
}

.svc li:first-child {
  border-top: none;
}

.svc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.svc li b {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 2px;
}

.svc .svc-mark {
  margin-top: auto;
  align-self: flex-start;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(35,79,125,.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--blue);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .4s ease;
}

.svc[aria-expanded="true"] .svc-mark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-deepest);
  transform: rotate(45deg);
}

/* ---------- Feature note panel ---------- */
.feature-note {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 30px;
  background: var(--blue-deepest);
  color: #fff;
  padding: clamp(30px,4vw,44px) clamp(26px,3.4vw,40px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
}

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

.feature-note::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img);
  background-size: cover;
  background-position: 50% 38%;
  opacity: .55;
}

.feature-note::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right,rgba(23,56,86,.9),rgba(23,56,86,.5));
}

.feature-note h3 {
  color: #fff;
  margin: 8px 0 10px;
  font-size: 1.6rem;
}

.feature-note p {
  color: rgba(255,255,255,.88);
	font-family: var(--serif);
}

.feature-note ul {
  list-style: none;
  font-size: .98rem;
  color: rgba(255,255,255,.94);
	font-family: var(--serif);
}

.feature-note li {
  padding: 6px 0 6px 24px;
  position: relative;
	
}

.feature-note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 800;
}

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: #fff;
  border: 1px solid #e0e6ea;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.plan .ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--blue-deepest);
  font-family: var(--sans);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.plan h3 {
  font-size: 1.24rem;
}

.plan .pct {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
  margin: 14px 0 4px;
}

.plan .pct small {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.plan ul {
  list-style: none;
  margin: 18px 0 0;
  flex: 1;
	font-family: var(--serif);
}

.plan li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: .95rem;
  color: var(--muted);
}

.plan li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-weight: 700;
}

.plan-foot {
  text-align: center;
  margin-top: 32px;
}

.plan-foot p {
  font-size: .92rem;
  max-width: 70ch;
  margin: 0 auto 20px;
	font-family: var(--serif);
}

/* ---------- Steps ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--tan);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 18px;
}

.step .num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step p {
  font-size: .98rem;
	font-family: var(--serif);
}

/* ---------- Testimonials ---------- */
.quotes {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--blue-deepest);
}

.quotes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: .4;
}

.quotes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(23,56,86,.86),rgba(35,79,125,.9));
}

.quotes h2,
.quotes .eyebrow {
  color: #fff;
}

.quotes .eyebrow {
  color: var(--gold);
}

.quotes.js-bg::before {
  opacity: 0;
}

.qbg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.qbg.active {
  opacity: .4;
}

.tcarousel {
  position: relative;
  display: grid;
  max-width: 940px;
  margin: 0 auto;
}

.tslide {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8px,1.6vw,20px) clamp(16px,5vw,64px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease;
}

.tslide.active {
  opacity: 1;
  visibility: visible;
}

.tslide blockquote {
  text-wrap: pretty;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem,2.1vw,1.6rem);
  line-height: 1.45;
  color: #fff;
  max-width: 46ch;
}

.twho {
  margin-top: clamp(22px,2.8vw,32px);
  font-family: var(--sans);
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
}

.twho span {
  display: block;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: 3px;
}

.tdots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(28px,3.4vw,42px);
}

.tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}

.tdot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.tnote {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 22px;
}

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--blue-deepest);
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: .5;
}

.final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(23,56,86,.88),rgba(35,79,125,.92));
}

.final .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px,4vw,48px);
  align-items: center;
}

.final h2 {
  color: #fff;
  margin-top: 12px;
}

.final h2+p {
  margin-top: 14px;
	font-family: var(--serif);
}

.final p {
  color: rgba(255,255,255,.9);
  font-size: 1.12rem;
}

.final .contact-line {
  margin-top: 22px;
  font-family: var(--sans);
  font-weight: 700;
}

.final .contact-line a {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--sans);
  font-weight: 700;
}

.final .contact-line span {
  display: block;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--blue-deepest);
  color: rgba(255,255,255,.8);
  padding: 44px 0 26px;
}

footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

footer img.logo {
  height: 80px;
  margin-bottom: 14px;
}

footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

footer a {
  display: block;
  color: rgba(255,255,255,.8);
  margin-bottom: 7px;
  font-size: .95rem;
	font-family: var(--serif);
}

footer a:hover {
  color: var(--gold);
}

footer p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  max-width: 44ch;
	font-family: var(--serif);
}

.disclosure {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 30px;
  line-height: 1.6;
  max-width: none;
}

.disclosure a {
  display: inline;
  color: rgba(255,255,255,.78);
  text-decoration: underline;
}

.legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: .82rem;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: none;
  background: var(--blue-deepest);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  padding: 10px;
  gap: 10px;
}

.sticky-mobile a {
  flex: 1;
  padding: 13px;
  font-family: var(--sans);
  font-weight: 800;
  text-align: center;
  font-size: .98rem;
}

.sm-call {
  background: #fff;
  color: var(--blue-deep);
}

.sm-tour {
  background: var(--gold);
  color: var(--blue-deepest);
}

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .1s;
}

.reveal.d2 {
  transition-delay: .2s;
}

.reveal.d3 {
  transition-delay: .3s;
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn: hover, .bcard: hover, .plan: hover, .svc: hover {
    transform: none;
  }
  .tslide, .qbg {
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media(max-width:980px) {
  .final .wrap {
    grid-template-columns: 1fr;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    justify-content: flex-start;
    padding-bottom: clamp(48px,6vw,72px);
  }
  .hero-copy-inner {
    max-width: none;
  }
  .hero-photo {
    min-height: 340px;
    order: 2;
  }
  .hero h1 {
    max-width: 24ch;
  }
  .briefing .wrap {
    grid-template-columns: 1fr;
  }
  .briefing-stats {
    gap: 22px;
  }
  .navsplit {
    grid-template-columns: 1fr;
  }
  .navsplit .txt, .navsplit.rev .txt {
    padding: clamp(48px,6vw,72px) 22px;
  }
  .navsplit.rev .txt {
    order: 1;
  }
  .navsplit .media {
    min-height: 360px;
  }
  .bcards, .steps {
    grid-template-columns: 1fr 1fr;
  }
  .svc-acc {
    grid-template-columns: 1fr!important;
  }
  .svc {
    min-height: 0;
  }
  .plans {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split.rev .txt {
    order: 0;
  }
  .feature-note {
    grid-template-columns: 1fr;
  }
  .steps: :before {
    display: none;
  }
  footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:620px) {
  .phone-top {
    display: none;
  }
  .bcards, .steps, .plans {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .sticky-mobile {
    display: flex;
  }
  body {
    padding-bottom: 68px;
  }
  footer .cols {
    grid-template-columns: 1fr;
  }
  .trust .wrap {
    gap: 26px;
  }
  .trust .stat {
    flex: 1 1 40%;
  }
}
