/* Infinite Effort LLC — investor-facing marketing site */
:root {
  --navy: #0f2744;
  --navy-deep: #0a1a2e;
  --navy-mid: #163556;
  --charcoal: #1c2430;
  --ink: #243044;
  --muted: #5a6578;
  --line: #d8dee8;
  --surface: #ffffff;
  --surface-alt: #f4f6f9;
  --gold: #c9a227;
  --gold-dark: #a8841a;
  --gold-soft: #f7f0dc;
  --teal: #1a6b6b;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 39, 68, 0.10);
  --shadow-sm: 0 4px 16px rgba(15, 39, 68, 0.06);
  --shadow-lg: 0 24px 60px rgba(10, 26, 46, 0.28);
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --max: 1160px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--navy); }

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.05rem, 4.2vw, 3.15rem); margin: 0 0 0.85rem; }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.12rem; margin: 0 0 0.4rem; letter-spacing: -0.015em; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.narrow { width: min(100% - 2.25rem, 720px); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100%;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.85rem;
}

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

.section {
  padding: clamp(4rem, 9vw, 6.25rem) 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-head { margin-bottom: 2.75rem; max-width: 40rem; }
.section-head-center {
  margin-inline: auto;
  text-align: center;
  max-width: 42rem;
}
.section-intro { color: var(--muted); margin-bottom: 0; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,222,232,0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-img {
  height: 78px;
  width: auto;
  max-width: min(320px, 62vw);
  object-fit: contain;
  object-position: left center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: -0.01em;
}
.site-nav a:hover { background: var(--surface-alt); color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  margin-left: 0.4rem;
  padding-inline: 1.1rem !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: transparent;
}
.btn-gold:hover { background: #dbb53a; color: var(--navy-deep); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--surface); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-block { width: 100%; }

/* Hero — full-bleed photography + portrait */
.hero {
  position: relative;
  padding: clamp(3.25rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
  color: #eef3f9;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,26,46,0.92) 0%, rgba(10,26,46,0.78) 42%, rgba(15,39,68,0.55) 70%, rgba(15,39,68,0.42) 100%),
    linear-gradient(to top, rgba(10,26,46,0.55) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 { color: #fff; max-width: 18ch; }

.tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--gold);
  font-style: italic;
  margin: 0 0 1.1rem;
}

.lead {
  font-size: 1.08rem;
  color: rgba(232,238,246,0.88);
  max-width: 34rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-portrait {
  justify-self: end;
  width: min(100%, 360px);
}

.portrait-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,162,39,0.35);
  aspect-ratio: 1;
  background: var(--navy-deep);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-meta {
  margin-top: 1.15rem;
  padding: 0 0.15rem;
  text-align: center;
}

.portrait-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.portrait-role {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(232,238,246,0.82);
}

.portrait-creds {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Credibility strip */
.cred-strip {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,162,39,0.22);
  border-bottom: 1px solid rgba(201,162,39,0.12);
  padding: 1.15rem 0;
}

.cred-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
}

.cred-list li {
  display: flex;
  align-items: center;
}

.cred-list li:not(:last-child)::after {
  content: "·";
  margin: 0 1.15rem;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.cred-list span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* Cards / services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.45rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  border-color: rgba(201,162,39,0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.6;
}

/* Who we serve */
.who-section { padding-block: clamp(2.75rem, 6vw, 3.75rem); }
.who-section .section-head { margin-bottom: 1.5rem; }
.who-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.who-pills li {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(201,162,39,0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* Property type band (inline property-type band) */
.property-band {
  padding: clamp(4rem, 9vw, 6rem) 0 0;
  background: var(--navy-deep);
  color: #e8eef6;
}
.property-band .section-head { margin-bottom: 2.5rem; }
.property-band h2 { color: #fff; }
.property-band .eyebrow { color: var(--gold); }
.property-band .section-intro { color: rgba(232,238,246,0.78); }

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 0.65rem 0.65rem;
}

.property-item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
  background: var(--navy);
}

.property-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.property-item:hover img { transform: scale(1.04); }

.property-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.25rem 1.25rem 1.2rem;
  background: linear-gradient(to top, rgba(10,26,46,0.92) 0%, rgba(10,26,46,0.55) 55%, transparent 100%);
}

.property-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.property-caption p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Onboarding strip */
.onboard-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.onboard-strip li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.onboard-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.onboard-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Owner promise */
.promise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.promise-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.promise-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Location */
.location-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-alt) 50%, #fff 100%);
}
.location-block { margin-bottom: 2rem; }
.location-subhead {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--navy);
}
.location-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 52rem;
  margin: 0 auto;
}
.location-cities li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.location-cities-soft li {
  background: var(--gold-soft);
  border-color: rgba(201,162,39,0.35);
  font-weight: 500;
}
.location-note {
  text-align: center;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.98rem;
}
.location-section .section-intro strong { color: var(--navy); }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.why-copy .section-head { margin-bottom: 1.25rem; }
.why-copy p { color: var(--muted); }
.why-copy .btn { margin-top: 0.65rem; }

.pillars {
  display: grid;
  gap: 1rem;
}

.pillars li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
}

.pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.pillars p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-portrait {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  background: var(--surface-alt);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  box-shadow: var(--shadow);
}

.about-logo-mark {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.about-copy p {
  color: var(--muted);
}
.about-copy strong {
  color: var(--navy);
  font-weight: 600;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.about-tags li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}
.about-stats li {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.about-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

/* About — how we think about your property */
.about-approach {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.75rem 1.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-sm);
  max-width: 52rem;
}
.about-approach h3 {
  margin: 0.35rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--navy);
}
.about-approach p { color: var(--muted); }
.about-approach-list {
  margin: 1.15rem 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}
.about-approach-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.97rem;
}
.about-approach-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.about-approach-list strong { color: var(--navy); }
.about-approach-cta { margin-top: 1.25rem; margin-bottom: 0; }


/* Expect */
.expect-list {
  display: grid;
  gap: 0;
  counter-reset: step;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.expect-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.4rem 1.55rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.expect-list li:last-child { border-bottom: 0; }

.expect-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
  grid-row: span 2;
}

.expect-list h3 { grid-column: 2; }
.expect-list p {
  grid-column: 2;
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-right: 3rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--gold-dark);
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }

.faq-list details p {
  margin: 0;
  padding: 0 1.3rem 1.25rem;
  color: var(--muted);
}

/* Contact */
.contact-section {
  background:
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: #e8eef6;
}

.contact-section h2 { color: #fff; }
.contact-section .eyebrow { color: var(--gold); }
.contact-section p { color: rgba(232,238,246,0.85); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-details {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-details a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.contact-details a:hover { color: var(--teal); text-decoration: underline; }
.contact-details span:not(.contact-label) {
  color: var(--ink);
  font-weight: 500;
}

/* Dark homepage contact band keeps light link text */
.contact-section .contact-details a {
  color: #fff;
  font-weight: 500;
}
.contact-section .contact-details a:hover { color: var(--gold); }
.contact-section .contact-details span:not(.contact-label) {
  color: #e8eef6;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.55rem;
  backdrop-filter: blur(8px);
}

.form-note {
  font-size: 0.9rem;
  margin-bottom: 1.25rem !important;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
}

.optional {
  font-weight: 400;
  color: rgba(232,238,246,0.55);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,26,46,0.45);
  color: #fff;
  font: inherit;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(232,238,246,0.4); }
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form .btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  margin-top: 0.35rem;
}
.contact-form .btn-primary:hover {
  background: #dbb53a;
  color: var(--navy-deep);
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: #f0d878;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(232,238,246,0.75);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,162,39,0.2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 22rem;
}
.footer-logo {
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
}
.footer-tagline p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}
.footer-location {
  margin-top: 0.35rem !important;
  font-family: var(--font) !important;
  font-style: normal !important;
  font-size: 0.82rem !important;
  color: rgba(232,238,246,0.65) !important;
}

.footer-meta {
  text-align: right;
  font-size: 0.92rem;
}
.footer-meta p { margin: 0 0 0.35rem; }
.footer-meta a {
  color: #e8eef6;
  text-decoration: none;
}
.footer-meta a:hover { color: var(--gold); }
.copyright {
  margin-top: 0.75rem !important;
  font-size: 0.82rem;
  color: rgba(232,238,246,0.5);
}


/* Credibility note under strip */
.cred-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(232,238,246,0.55);
}
.cred-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.cred-note a:hover { text-decoration: underline; color: #dbb53a; }

/* Savings / calculator */
.savings-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-alt) 42%, #fff 100%);
}

.savings-head { max-width: 44rem; }

.savings-framing {
  max-width: 46rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.savings-framing p {
  color: var(--muted);
  font-size: 1.02rem;
}
.savings-framing strong { color: var(--navy); font-weight: 600; }
.savings-framing a { color: var(--teal); text-decoration: none; }
.savings-framing a:hover { text-decoration: underline; }
.savings-framing-emphasis {
  margin-top: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--gold-soft);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius);
  color: var(--navy) !important;
  font-weight: 500;
  line-height: 1.6;
}

.savings-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.savings-controls {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow);
}

.savings-control {
  margin-bottom: 1.65rem;
}
.savings-control:last-of-type { margin-bottom: 1.25rem; }

.savings-control-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.savings-control label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.optional-inline {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.savings-value {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--gold-dark);
  font-weight: 400;
  min-width: 4.5rem;
  text-align: right;
}

.savings-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(201,162,39,0.35));
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(201,162,39,0.25);
}
.savings-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(15,39,68,0.28);
  cursor: grab;
  transition: transform 0.15s;
}
.savings-control input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.08);
}
.savings-control input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(15,39,68,0.28);
  cursor: grab;
}
.savings-control input[type="range"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.savings-assumptions {
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
}
.savings-assumptions p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}
.savings-assumptions-note {
  margin-top: 0.45rem !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
}

.savings-results {
  display: grid;
  gap: 1rem;
}

.savings-result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.savings-result-primary {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow);
}
.savings-result-primary .savings-result-label { color: var(--gold); }
.savings-result-primary .savings-result-figure { color: #fff; }
.savings-result-primary .savings-result-sub { color: rgba(232,238,246,0.72); }

.savings-result-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.savings-result-figure {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.55rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.savings-result-figure.gold { color: var(--gold-dark); }
.savings-result-figure small {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
  letter-spacing: 0;
}

.savings-result-sub {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.savings-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.savings-chips li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.savings-uses {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.savings-uses-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.savings-uses ul {
  display: grid;
  gap: 0.55rem;
}
.savings-uses li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.savings-uses li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.savings-disclaimer {
  margin: 2rem auto 1.25rem;
  max-width: 48rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.savings-footnotes {
  max-width: 48rem;
  margin: 0 auto 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.savings-footnotes p {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}
.savings-footnotes p:last-child { margin-bottom: 0; }

.savings-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .savings-layout {
    grid-template-columns: 1fr;
  }
  .hero-portrait {
    justify-self: start;
    width: min(100%, 300px);
  }
  .hero { min-height: 0; }
  .hero h1 { max-width: none; }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .onboard-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge {
    right: 0.75rem;
    bottom: -0.5rem;
  }
  .footer-meta { text-align: left; }
}

@media (max-width: 720px) {
  .logo-img { height: 58px; max-width: min(240px, 62vw); }
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
    display: none;
    box-shadow: var(--shadow-sm);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .site-nav a { padding: 0.85rem 1rem; }
  .nav-cta { margin-left: 0; text-align: center; }

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

  .cred-list {
    flex-direction: column;
    gap: 0.55rem;
  }
  .cred-list li:not(:last-child)::after {
    display: none;
  }
  .cred-list span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .cred-note { font-size: 0.72rem; }

  .expect-list li {
    grid-template-columns: 1fr;
  }
  .expect-list li::before { grid-row: auto; }
  .expect-list h3,
  .expect-list p { grid-column: 1; }

  .property-grid {
    grid-template-columns: 1fr;
  }
  .property-item,
  .property-item img {
    min-height: 240px;
  }

  .onboard-strip {
    grid-template-columns: 1fr;
  }

  .promise-list {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn, .property-item img { transition: none; }
}


/* Audience path band */
.audience-band {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  font-size: 0.88rem;
}
.audience-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  justify-content: center;
}
.audience-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.audience-link:hover { color: var(--teal); }
.audience-primary { color: var(--navy); }
.audience-secondary { color: var(--muted); font-weight: 600; }
.audience-sep { color: var(--gold); }
.audience-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: 0.35rem;
}

.header-inner { flex-wrap: wrap; }
@media (min-width: 721px) {
  .header-inner { flex-wrap: nowrap; }
}

.analysis-about-link {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}
.analysis-about-link a { font-weight: 600; }

/* Analysis lead magnet */
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.analysis-copy p { color: var(--muted); }
.analysis-bullets {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.analysis-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.98rem;
}
.analysis-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.analysis-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.55rem;
  box-shadow: var(--shadow);
}
.form-note-light {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.15rem !important;
}
.field-light label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.field-light input,
.field-light select,
.field-light textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.field-light input:focus,
.field-light select:focus,
.field-light textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
  background: #fff;
}
.field-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}
.optional-dark {
  font-weight: 400;
  color: var(--muted);
}
.form-status-light {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--teal);
}

/* Vacancies */
.vacancy-card {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.75rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin-inline: auto;
}
.vacancy-status {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.vacancy-copy p { color: var(--muted); margin-bottom: 0; }
.vacancy-copy h3 { margin-bottom: 0.5rem; }
.vacancy-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 200px;
}

/* Standards */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.standard-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Social proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.proof-badge {
  margin: 0;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px dashed rgba(201,162,39,0.55);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.proof-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
.proof-card blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.45;
}
.proof-attr {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.proof-attr span { font-style: italic; }

/* How we work / case cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 900px;
  margin-inline: auto;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.case-label {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.case-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Tenants band */
.tenants-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.75rem;
  align-items: center;
}
.tenants-band p { color: var(--muted); }
.tenants-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 200px;
}

/* Trust cues */
.trust-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-grid li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust-grid a { font-weight: 600; }

/* Insights stub */
.insights-band {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow-sm);
}
.insights-band p { color: var(--muted); margin-bottom: 0; }
.insights-band h2 { margin-bottom: 0.5rem; }

/* Footer portals + trust (existing clients only — quiet) */
.footer-portals {
  text-align: left;
  font-size: 0.82rem;
  opacity: 0.92;
}
.footer-portals-label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-portals-clients {
  margin: 0 0 0.4rem !important;
  font-size: 0.72rem !important;
  color: rgba(232,238,246,0.5) !important;
  font-style: italic;
}
.footer-portals a {
  color: #e8eef6;
  text-decoration: none;
  font-weight: 600;
}
.footer-portals a:hover { color: var(--gold); }
.footer-powered {
  color: rgba(232,238,246,0.5);
  font-weight: 500;
  font-size: 0.75rem;
}
.footer-trust {
  margin-top: 0.55rem !important;
  font-family: var(--font) !important;
  font-style: normal !important;
  font-size: 0.75rem !important;
  color: rgba(232,238,246,0.55) !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .analysis-grid,
  .vacancy-card,
  .tenants-band,
  .insights-band {
    grid-template-columns: 1fr;
  }
  .vacancy-actions,
  .tenants-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
  .proof-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .standards-grid,
  .case-grid,
  .field-row,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .audience-note { width: 100%; margin-left: 0; text-align: center; }
}


/* ── Portal pages (Current owners / Current tenants) ───────────────── */
.portal-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3a5c 100%);
  color: #e8eef6;
  padding: 4.5rem 0 3.25rem;
}
.portal-hero-inner { max-width: 42rem; }
.portal-hero h1 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0.35rem 0 1rem;
}
.portal-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(232, 238, 246, 0.88);
  margin: 0;
}
.portal-lead a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.portal-lead a:hover { color: #fff; }

.portal-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}
.portal-copy h2 { margin-bottom: 0.75rem; }
.portal-copy h3 { margin: 0.35rem 0 0.5rem; font-size: 1.15rem; }
.portal-contacts { margin-top: 1.25rem; }

.portal-card {
  background: var(--navy);
  color: #e8eef6;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.85rem 1.7rem;
  box-shadow: var(--shadow);
}
.portal-card h2 {
  color: #fff;
  font-size: 1.45rem;
  margin: 0.25rem 0 0.75rem;
}
.portal-card p { color: rgba(232, 238, 246, 0.88); }
.portal-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.portal-powered {
  margin: 0.85rem 0 0 !important;
  font-size: 0.78rem !important;
  color: rgba(232, 238, 246, 0.55) !important;
  text-align: center;
}
.portal-soft-note {
  margin: 1rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 238, 246, 0.15);
  font-size: 0.88rem !important;
  line-height: 1.5;
  color: rgba(232, 238, 246, 0.7) !important;
}
.portal-card .btn { margin-top: 1.1rem; }

.portal-features { margin-top: 0.5rem; }

.portal-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.portal-bullets li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.55;
}
.portal-bullets li:last-child { border-bottom: 0; }
.portal-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}
.portal-bullets strong { color: var(--navy); }

.portal-next {
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
}
.portal-next h2 { margin-bottom: 0.5rem; }
.portal-next p { color: var(--muted); margin: 0; }
.portal-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.portal-quiet-tenant {
  margin: 0.5rem 0 0 !important;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
}
.portal-quiet-tenant a { font-weight: 600; }

.audience-note a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.audience-note a:hover { color: var(--navy); }

@media (max-width: 900px) {
  .portal-layout { grid-template-columns: 1fr; }
  .portal-hero { padding: 3.5rem 0 2.5rem; }
}


/* Portal pages: contact values always visible on white */
.portal-contacts a,
.portal-copy .contact-details a {
  color: var(--navy) !important;
  font-weight: 600;
}
.portal-contacts a:hover,
.portal-copy .contact-details a:hover {
  color: var(--teal) !important;
}
.portal-contacts span:not(.contact-label),
.portal-copy .contact-details span:not(.contact-label) {
  color: var(--ink) !important;
}


/* Outcome-style proof (no fake testimonials) */
.proof-outcomes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-outcome {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 1.25rem;
}
.proof-outcome h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.3;
}
.proof-outcome p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .proof-outcomes { grid-template-columns: 1fr; }
}


/* High-impact value arguments (savings section) */
.value-grid {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.04);
  display: grid;
  gap: 0.4rem;
}
.value-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.value-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--navy);
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.savings-secondary-label {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.savings-secondary-title {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--navy);
  font-weight: 600;
}
.savings-secondary-label p {
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; }
}


/* Mission / goal band */
.mission-band {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 60%, #1a3a5c 100%);
  color: #e8eef6;
  padding: 3.25rem 0;
}
.mission-inner {
  max-width: 44rem;
  text-align: center;
  margin: 0 auto;
}
.mission-band .eyebrow {
  color: var(--gold);
}
.mission-band h2 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.25;
  margin: 0.4rem 0 1rem;
}
.mission-band p {
  margin: 0;
  color: rgba(232, 238, 246, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}
