/* =========================================================
   Newbridge FX — Design System
   Palette: warm charcoal, ivory, brand grey #9a9c9e, accent #ed771b
   Typography: Fraunces (display) + Inter (body)
   ========================================================= */

:root {
  /* Brand */
  --brand-orange: #e97a20;
  --brand-orange-2: #f5a05c;
  --brand-orange-soft: #fde6d3;
  --brand-orange-wash: #fef1e3;
  --brand-grey: #9a9c9e;
  --brand-grey-2: #b9bbbd;
  --brand-grey-soft: #eef0f2;

  /* Neutrals — warm, not stark */
  --ivory: #faf7f2;
  --cream: #f5f1ea;
  --paper: #ffffff;
  --line: rgba(33, 29, 26, 0.08);
  --line-strong: rgba(33, 29, 26, 0.14);

  /* Text */
  --ink: #211d1a;
  --ink-2: #3a3430;
  --ink-3: #5a534d;
  --ink-4: #7a736c;

  /* Dark surfaces (warm charcoal, never pure black) */
  --char-900: #1c1917;
  --char-800: #2a2523;
  --char-700: #35302d;
  --char-600: #4a433e;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(33, 29, 26, 0.04), 0 1px 3px rgba(33, 29, 26, 0.06);
  --shadow-md: 0 4px 14px -6px rgba(33, 29, 26, 0.1), 0 8px 24px -12px rgba(33, 29, 26, 0.1);
  --shadow-lg: 0 10px 30px -12px rgba(33, 29, 26, 0.16), 0 24px 60px -30px rgba(33, 29, 26, 0.2);
  --shadow-orange: 0 12px 28px -12px rgba(237, 119, 27, 0.35);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 2000;
}
.skip-link:focus {
  left: 0;
}

/* ============== Typography ============== */
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}
h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.375rem);
}
p {
  margin: 0 0 1em;
}
.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.175rem);
  line-height: 1.65;
  color: var(--ink-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--light {
  color: var(--brand-orange-2);
}

.hl {
  background: linear-gradient(120deg, var(--brand-orange), var(--brand-orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease-out),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.35s var(--ease-out),
    border-color 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -14px rgba(237, 119, 27, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--brand-grey-soft);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--dark {
  background: var(--char-900);
  color: #fff;
}
.btn--dark:hover {
  background: var(--char-800);
  transform: translateY(-1px);
}

.btn--link {
  background: transparent;
  color: var(--ink);
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 0;
}
.btn--link:hover {
  color: var(--brand-orange);
}

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #e97a20;
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: #e97a20;
  border-bottom-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px -14px rgba(233, 122, 32, 0.45);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.primary-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__cta .btn--ghost {
  color: #fff;
}
.header__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  position: relative;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition:
    transform 0.35s var(--ease),
    opacity 0.3s var(--ease);
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 1000;
}
.mobile-nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(88vw, 380px);
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  padding: 88px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(33, 29, 26, 0.25);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s var(--ease),
    background 0.3s var(--ease);
}
.mobile-nav__close:hover {
  background: var(--brand-grey-soft);
  transform: rotate(90deg);
}
.mobile-nav__close svg {
  width: 20px;
  height: 20px;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav li a {
  display: block;
  padding: 14px 4px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.3s var(--ease),
    padding-left 0.35s var(--ease);
}
.mobile-nav li a:hover {
  color: var(--brand-orange);
  padding-left: 8px;
}
.mobile-nav__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============== Sections ============== */
.section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
}
.section--soft {
  background: var(--cream);
}
.section--tint {
  background:
    radial-gradient(1200px 500px at 100% 0%, rgba(237, 119, 27, 0.06), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(154, 156, 158, 0.1), transparent 60%), var(--ivory);
}
/* Soft dividers between adjacent sections for cohesion */
.section + .section:not(.section--soft):not(.section--tint)::before,
.section--soft + .section:not(.section--soft):not(.section--tint)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(240px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section__head p {
  color: var(--ink-3);
  font-size: 1.05rem;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(233, 122, 32, 0.16), transparent 55%),
    radial-gradient(900px 700px at -10% 30%, rgba(154, 156, 158, 0.12), transparent 55%),
    linear-gradient(180deg, #fee3d3 0%, #fee3d3 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(254, 227, 211, 0.85));
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy {
  max-width: 620px;
}
.hero__copy h1 {
  margin-bottom: 20px;
}
.hero__copy .lead {
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__reassure {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  color: var(--ink-2);
  font-size: 0.94rem;
}
.hero__reassure li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero__reassure {
    grid-template-columns: 1fr;
  }
}

.tick {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand-orange-soft);
  position: relative;
  flex: none;
}
.tick::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  transform: rotate(45deg);
}

/* Quote card — integrated hero composition */
.quote-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(33, 29, 26, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px -28px rgba(20, 18, 16, 0.22),
    0 8px 24px -18px rgba(20, 18, 16, 0.12);
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(233, 122, 32, 0.12), transparent 45%);
  z-index: -1;
  filter: blur(24px);
  opacity: 0.7;
}
.quote-card__head {
  text-align: left;
  margin-bottom: 22px;
}
.quote-card__head h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.quote-card__head p {
  color: var(--ink-3);
  font-size: 0.94rem;
  margin: 0;
}

.quote-card form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-4);
  font-weight: 600;
}
.quote-card form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quote-card input,
.quote-card select {
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  min-width: 0;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 500;
}
.quote-card input:focus,
.quote-card select:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(237, 119, 27, 0.12);
}
.quote-card button[type="submit"] {
  margin-top: 6px;
}
.fineprint {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--ink-4);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.quote-card__success {
  text-align: center;
  padding: 24px 8px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

/* ============== Trust bar (dark, warm charcoal) ============== */
.trust-bar {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  color: #f2ece4;
}
.trust-bar--dark {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(237, 119, 27, 0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(154, 156, 158, 0.14), transparent 60%),
    linear-gradient(160deg, var(--char-900) 0%, var(--char-800) 60%, var(--char-700) 100%);
}
.trust-bar__bg {
  display: none;
}
.trust-bar__head {
  text-align: center;
  margin-bottom: 44px;
}
.trust-bar__head h2 {
  color: #faf4ec;
}
.trust-bar__grid {
  display: grid;
  gap: 28px;
}
.trust-bar__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  text-align: center;
  padding: 24px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-bar__item:first-child {
  border-left: 0;
}
.trust-bar__item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust-bar__item span {
  color: #b8afa6;
  font-size: 0.93rem;
  max-width: 220px;
  display: inline-block;
}

/* ============== About ============== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(36px, 5vw, 52px);
}
.value-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
.value-card:first-child {
  border-top: 1px solid var(--line);
}
.value-card__icon {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  background: transparent;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
}
.value-card__body {
  min-width: 0;
}
.value-card__body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}
.value-card__body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.about__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, rgba(237, 119, 27, 0.18), transparent);
  border-radius: 999px;
  filter: blur(40px);
  z-index: 0;
}
.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about__media figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  font-size: 0.88rem;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
}

/* ============== Features ============== */
.features {
  display: grid;
  gap: 20px;
}
.features--6 {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.feature-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-orange-wash);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__ico svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--ink-3);
  margin: 0;
  font-size: 0.96rem;
}

/* ============== Property ============== */
.property__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.property__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.property__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.property__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.property__badge strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--brand-orange);
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.property__badge span {
  color: var(--ink-3);
  font-size: 0.86rem;
  line-height: 1.4;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticks li {
  padding-left: 32px;
  position: relative;
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand-orange-soft);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  transform: rotate(45deg);
}

/* ============== Steps ============== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  counter-reset: step;
}
.steps--4 {
  grid-template-columns: repeat(4, 1fr);
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px 26px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step__num {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--brand-orange);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--brand-orange-soft);
}
.step h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.step p {
  color: var(--ink-3);
  margin: 0;
  font-size: 0.95rem;
}

/* ============== Completion ============== */
.completion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.completion__visual {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #0b1830;
  background-image:
    linear-gradient(160deg, rgba(11, 24, 48, 0.25) 0%, rgba(11, 24, 48, 0.1) 40%, rgba(11, 24, 48, 0.55) 100%),
    url("platform-bg.webp");
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: var(--shadow-lg);
}
.completion__panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.completion__panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  opacity: 0.6;
}
.completion__panel-glow {
  position: absolute;
  width: 65%;
  height: 60%;
  left: 15%;
  top: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(237, 119, 27, 0.25), transparent 65%);
  filter: blur(50px);
}
.completion__stat {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: min(320px, 78%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
}
.completion__stat-rows {
  margin: 0 0 12px;
}
.completion__stat-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.completion__stat-rows > div:last-child {
  border-bottom: 0;
}
.completion__stat-rows dt {
  color: var(--ink-4);
  margin: 0;
}
.completion__stat-rows dd {
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.completion__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--brand-grey-soft);
  overflow: hidden;
  margin-bottom: 12px;
}
.completion__bar span {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-2));
  border-radius: inherit;
}
.completion__stat-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.completion__stat-foot span {
  color: var(--ink-4);
  font-size: 0.82rem;
}
.completion__stat-foot strong {
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--brand-orange);
  font-size: 1.15rem;
}
.completion__points {
  list-style: none;
  padding: 0;
  margin: 22px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-2);
}
.completion__points li {
  position: relative;
  padding-left: 26px;
}
.completion__pt-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-orange);
  box-shadow: 0 0 0 4px var(--brand-orange-soft);
}

/* ============== Security ============== */
.security__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.security__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.security__list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.security__list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.security__list svg {
  flex: none;
  width: 36px;
  height: 36px;
  fill: var(--brand-orange);
  background: var(--brand-orange-wash);
  padding: 6px;
  border-radius: 10px;
}
.security__list h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.security__list p {
  color: var(--ink-3);
  font-size: 0.92rem;
  margin: 0;
}

/* ============== Carousel ============== */
.carousel {
  max-width: 900px;
  margin: 0 auto;
}
.carousel__viewport {
  overflow: hidden;
  padding: 8px;
}
.carousel__track {
  display: flex;
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
}
.carousel__slide blockquote {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.carousel__slide blockquote::before {
  content: "\201C";
  font-family: "Fraunces", serif;
  position: absolute;
  top: 12px;
  left: 22px;
  font-size: 4rem;
  color: var(--brand-orange-soft);
  line-height: 1;
}
.carousel__slide p {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 20px;
}
.carousel__slide cite {
  color: var(--ink-4);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.carousel__btn:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.carousel__dots {
  display: inline-flex;
  gap: 8px;
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-grey-2);
  border: 0;
  padding: 0;
  transition:
    width 0.35s var(--ease),
    background 0.3s var(--ease);
}
.carousel__dots button.is-active {
  width: 28px;
  background: var(--brand-orange);
}

/* ============== FAQ ============== */
.faq__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.faq__item:hover {
  border-color: var(--line-strong);
}
.faq__item.is-open {
  border-color: rgba(237, 119, 27, 0.35);
  box-shadow: 0 8px 24px -18px rgba(237, 119, 27, 0.35);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.075rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.faq__item > summary::-webkit-details-marker {
  display: none;
}
.faq__item > summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s var(--ease);
}
.faq__item.is-open > summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--brand-orange);
}
.faq__item.is-open > summary {
  color: var(--brand-orange);
}
.faq__body {
  padding: 0 0 18px;
  color: var(--ink-3);
}
.faq__body p {
  margin: 0;
}

/* ============== CTA ============== */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(237, 119, 27, 0.25), transparent 55%),
    radial-gradient(700px 400px at 100% 90%, rgba(154, 156, 158, 0.18), transparent 55%),
    linear-gradient(160deg, var(--char-900), var(--char-800));
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #cfc6bd;
  font-size: 1.075rem;
  margin-bottom: 32px;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============== Footer ============== */
.footer {
  background: var(--char-900);
  color: #b8afa6;
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.footer__brand p {
  color: #8a827a;
  font-size: 0.92rem;
  max-width: 340px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact a {
  color: #e6ddd4;
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.3s var(--ease);
}
.footer__contact a:hover {
  color: var(--brand-orange-2);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer__links a {
  color: #b8afa6;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer__links a:hover {
  color: #fff;
}
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8a827a;
  font-size: 0.82rem;
}
.footer__bottom p {
  margin: 0;
}

/* ============== Reveal animations (subtle) ============== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============== Responsive ============== */
@media (max-width: 1024px) {
  .primary-nav,
  .header__cta {
    display: none;
  }
  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .features--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .trust-bar__item:nth-child(-n + 2) {
    border-top: 0;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__grid,
  .property__grid,
  .completion__grid,
  .security__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__media,
  .property__media {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .completion__visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .security__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__bottom {
    justify-content: flex-start;
  }
  .security__list {
    grid-template-columns: 1fr;
  }
  .features--6 {
    grid-template-columns: 1fr;
  }
  .steps--4 {
    grid-template-columns: 1fr;
  }
  .trust-bar__grid--4 {
    grid-template-columns: 1fr;
  }
  .trust-bar__item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .trust-bar__item:first-child {
    border-top: 0;
  }
  .quote-card form .row {
    grid-template-columns: 1fr;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .completion__stat {
    width: 82%;
    right: 9%;
  }
}

/* =========================================================
   Cohesion Pass — Clean white canvas + rounded content shell
   Reduced orange usage; orange reserved for CTAs & accents.
   ========================================================= */

:root {
  --brand-grey-outer: #9a9c9e;
  --brand-grey-outer-2: #a7a9ab;
  /* Clean white body background */
  --page-bg: #ffffff;
  --shell-radius: 40px;
}

body {
  background: var(--page-bg);
}

/* Header — vibrant orange with white text/logo for strong contrast */
.site-header {
  background: #e97a20;
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.site-header.is-scrolled {
  background: #e97a20;
  border-bottom-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px -14px rgba(233, 122, 32, 0.45);
}
.site-header .primary-nav a {
  color: rgba(255, 255, 255, 0.95);
}
.site-header .primary-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.site-header .btn--ghost {
  color: #fff;
}
.site-header .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.burger span {
  background: #fff;
}

/* Hero — soft ivory canvas with just a hint of warmth. Continuous with page bg. */
.hero {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0 clamp(80px, 10vw, 140px);
}
.hero__bg {
  background:
    radial-gradient(1000px 680px at 92% -10%, rgba(233, 122, 32, 0.07), transparent 60%),
    radial-gradient(800px 600px at 8% 20%, rgba(154, 156, 158, 0.08), transparent 62%),
    linear-gradient(180deg, #fbfaf8 0%, #ffffff 100%);
}
.hero__bg::after {
  display: none;
}

/* The rounded content container — floats on the white body */
.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: calc(var(--shell-radius) * -1.8) clamp(16px, 3vw, 40px) 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - clamp(32px, 6vw, 80px));
  background: #ffffff;
  border-radius: var(--shell-radius) var(--shell-radius) 0 0;
  overflow: hidden;
  box-shadow:
    0 40px 80px -50px rgba(20, 18, 16, 0.18),
    0 8px 24px -20px rgba(20, 18, 16, 0.1);
  border-top: 1px solid rgba(33, 29, 26, 0.05);
}
/* Subtle top highlight so the shell reads as a lifted surface */
.page-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 29, 26, 0.08), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Inside the shell: soft neutral sections — no orange washes */
.page-shell .section {
  padding: clamp(72px, 8vw, 120px) 0;
}
.page-shell .section--soft {
  background: #f7f5f1;
}
.page-shell .section--tint {
  background: radial-gradient(1100px 500px at 0% 0%, rgba(154, 156, 158, 0.1), transparent 60%), #fafaf8;
}

/* Trust bar — warm charcoal, no orange wash */
.page-shell .trust-bar--dark {
  background: linear-gradient(160deg, #24201e 0%, #2f2a27 60%, #3a3430 100%);
  color: #f4ece0;
}
.page-shell .trust-bar__item {
  border-left-color: rgba(255, 255, 255, 0.1);
}
.page-shell .trust-bar__item span {
  color: #cbbfb2;
}

/* Section dividers inside the shell — neutral hairline */
.page-shell .section + .section:not(.section--soft):not(.section--tint)::before,
.page-shell .section--soft + .section:not(.section--soft):not(.section--tint)::before {
  background: linear-gradient(90deg, transparent, rgba(33, 29, 26, 0.1), transparent);
}

/* CTA — softer warm palette, integrated with shell */
.page-shell .cta {
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(237, 119, 27, 0.28), transparent 55%),
    radial-gradient(700px 400px at 100% 90%, rgba(255, 235, 215, 0.1), transparent 55%),
    linear-gradient(160deg, #2a2523 0%, #35302d 100%);
}
.page-shell .cta p {
  color: #d8ccbf;
}

/* Footer — full-width charcoal band that sits below the rounded shell.
   The rounded shell ends cleanly above, and the footer anchors the page. */
.footer {
  background: var(--char-900);
  color: #f4ece0;
  padding: 64px 0 32px;
}
.footer__inner,
.footer__bottom {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}
.footer__inner {
  padding: 0 clamp(24px, 4vw, 56px) 40px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bottom {
  padding: 24px clamp(24px, 4vw, 56px) 0;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #a29a91;
  font-size: 0.82rem;
}
.footer__brand p {
  color: #a29a91;
}
.footer__contact a {
  color: #f4ece0;
}
.footer__contact a:hover {
  color: var(--brand-orange-2);
}
.footer__links a {
  color: #cfc6bd;
}
.footer__links a:hover {
  color: #fff;
}

/* Quote card — use more brand orange + grey confidently */
.quote-card {
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
  border-color: rgba(237, 119, 27, 0.18);
}
.quote-card::before {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(237, 119, 27, 0.35), transparent 60%),
    radial-gradient(400px 300px at 0% 100%, rgba(154, 156, 158, 0.3), transparent 60%);
  opacity: 0.9;
}

/* Feature / step / security cards — warmer edges, softer lift */
.page-shell .feature-card,
.page-shell .step,
.page-shell .security__list li,
.page-shell .faq__item {
  border-color: rgba(154, 156, 158, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}
.page-shell .feature-card:hover,
.page-shell .step:hover,
.page-shell .security__list li:hover {
  border-color: rgba(237, 119, 27, 0.35);
  box-shadow:
    0 20px 40px -28px rgba(237, 119, 27, 0.3),
    0 10px 24px -20px rgba(28, 25, 23, 0.18);
}

/* Carousel slide — same warm card treatment */
.page-shell .carousel__slide blockquote {
  border-color: rgba(154, 156, 158, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

/* Responsive — the shell needs breathing room on smaller viewports */
@media (max-width: 900px) {
  :root {
    --shell-radius: 28px;
  }
  .page-shell {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 560px) {
  :root {
    --shell-radius: 22px;
  }
  .page-shell {
    margin-left: 8px;
    margin-right: 8px;
  }
  .footer__inner,
  .footer__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}
