/*
Theme Name: NewbridgeFX Theme
Theme URI: https://newbridgefx.com/
Author: NewbridgeFX
Author URI: https://newbridgefx.co.uk/
Description: A custom theme for NewbridgeFX – international money transfers.
Version: 1.1.0
License: GPL v2 or later
Text Domain: newbridgefx
Typography: Fraunces (display) + Inter (body)
Palette: warm charcoal, ivory, brand grey #9a9c9e, accent #ed771b
*/


: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 — cool grey, matching the logo */
  --ivory: #f4f5f6;
  --cream: #ebedee;
  --paper: #ffffff;
  --line: rgba(42, 37, 35, 0.08);
  --line-strong: rgba(42, 37, 35, 0.14);

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

  /* Dark surfaces (cool grey, matching the logo) */
  --char-900: #3a3d40;
  --char-800: #4a4d50;
  --char-700: #5a5d60;
  --char-600: #6a6d70;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(42, 37, 35, 0.04), 0 1px 3px rgba(42, 37, 35, 0.06);
  --shadow-md: 0 4px 14px -6px rgba(42, 37, 35, 0.10), 0 8px 24px -12px rgba(42, 37, 35, 0.10);
  --shadow-lg: 0 10px 30px -12px rgba(42, 37, 35, 0.16), 0 24px 60px -30px rgba(42, 37, 35, 0.20);
  --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(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .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 .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: .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 .35s var(--ease-out), background .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease-out), border-color .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, .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,.08); border-color: rgba(255,255,255,.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: #d8dadc;
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid rgba(42, 37, 35, 0.08);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: #d0d2d4;
  border-bottom-color: rgba(42, 37, 35, 0.14);
  box-shadow: 0 12px 30px -14px rgba(42, 37, 35, .18);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 68px;
}
.brand {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%);
  border: 1px solid rgba(42, 37, 35, 0.08);
  box-shadow: 0 1px 2px rgba(42, 37, 35, 0.04), 0 6px 14px -10px rgba(42, 37, 35, 0.18);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.brand:hover { box-shadow: 0 2px 4px rgba(42, 37, 35, 0.05), 0 10px 22px -12px rgba(42, 37, 35, 0.22); }
.brand img { height: 38px; width: auto; display: block; }

.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(42, 37, 35, 0.92); font-weight: 500; font-size: 0.94rem;
  text-decoration: none; border-radius: 999px;
  white-space: nowrap;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.primary-nav a:hover { color: var(--ink); background: rgba(42, 37, 35, 0.08); }

.header__cta { display: flex; align-items: center; gap: 8px; }
.header__cta .btn--ghost { color: var(--ink); }
.header__cta .btn--ghost:hover { background: rgba(42, 37, 35, 0.08); color: var(--ink); }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 37, 35, 0.12);
  padding: 10px;
  border-radius: 12px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .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 .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 .45s var(--ease-out);
  padding: 88px 32px 32px;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(33, 29, 26, .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 .35s var(--ease), background .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 .3s var(--ease), padding-left .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, .06), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(154, 156, 158, .10), 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, .16), transparent 55%),
    radial-gradient(900px 700px at -10% 30%, rgba(154, 156, 158, .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, .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.9rem;
}
.hero__reassure li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  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;
  line-height: 1.35;
}
@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.10);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 32px 80px -34px rgba(20, 18, 16, .30),
    0 14px 36px -18px rgba(20, 18, 16, .18);
}
.quote-card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(233, 122, 32, .12), transparent 45%);
  z-index: -1;
  filter: blur(24px); opacity: .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: .09em;
  color: var(--ink-4); font-weight: 600;
}

.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 .25s var(--ease), background .25s var(--ease), box-shadow .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, .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; }

/* Contact Form 7 — restyled to match the original static banner quote form. */
.quote-card .wpcf7-form { margin: 0; }
.quote-card .wpcf7-form p {
  display: block;
  margin: 0 0 14px;
}
.quote-card .wpcf7-form label,
.quote-card .wpcf7-form p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink-4);
  font-weight: 600;
}
.quote-card .wpcf7-form br { display: none; }
.quote-card .wpcf7-form input,
.quote-card .wpcf7-form select,
.quote-card .wpcf7-form textarea {
  display: block;
  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 .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  min-width: 0;
  letter-spacing: normal; text-transform: none;
  font-weight: 500;
}
.quote-card .wpcf7-form input:focus,
.quote-card .wpcf7-form select:focus,
.quote-card .wpcf7-form textarea:focus {
  outline: none; background: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(237, 119, 27, .12);
}
/* Sell / Buy side by side on desktop, matching the original .row grid layout. */
.quote-card .wpcf7-form p:has(select) {
  display: flex;
   gap: 20px;
  vertical-align: middle;
  justify-content: space-between;
}
.quote-card .wpcf7-form p:has(select):has(+ p:has(select)) {
  margin-right: 16px;
}
.quote-card .wpcf7-form .wpcf7-submit,
.quote-card .wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-transform: none; letter-spacing: normal;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.quote-card .wpcf7-form .wpcf7-submit:hover,
.quote-card .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -14px rgba(237, 119, 27, .45);
}
.quote-card .wpcf7-form .wpcf7-submit:disabled,
.quote-card .wpcf7-form input[type="submit"]:disabled {
  opacity: 0.7;
  cursor: progress;
}
.quote-card .wpcf7-spinner { margin: 8px auto 0; }
.quote-card .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin: 6px 0 0;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #922b21;
}
.quote-card .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.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, .16), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(154, 156, 158, .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, .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: -.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, .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; object-position: center 25%; }
.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 .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .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; object-position: center 30%; }
.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 .4s var(--ease-out), box-shadow .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: .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.10) 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 {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.completion__panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.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: .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, .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 .3s var(--ease), box-shadow .3s var(--ease), border-color .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: .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 .3s var(--ease), border-color .3s var(--ease), color .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 .35s var(--ease), background .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 .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.faq__item:hover { border-color: var(--line-strong); }
.faq__item.is-open {
  border-color: rgba(237, 119, 27, .35);
  box-shadow: 0 8px 24px -18px rgba(237, 119, 27, .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 .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 .35s var(--ease), border-color .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, .25), transparent 55%),
    radial-gradient(700px 400px at 100% 90%, rgba(154, 156, 158, .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, .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 .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 .3s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__menu,
.footer__legal-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu a,
.footer__legal-menu a {
  color: #b8afa6;
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.footer__menu a:hover,
.footer__legal-menu 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 .8s var(--ease-out), transform .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: .001ms !important; transition-duration: .001ms !important; }
}

/* ============== Responsive ============== */
@media (max-width: 1024px) {
  .primary-nav, .header__cta { display: none; }
  .burger { display: flex; }
  .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,.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: none; width: 100%; margin-left: auto; margin-right: auto; }
  .completion__visual { max-width: none; width: 100%; 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,.06); }
  .trust-bar__item:first-child { border-top: 0; }
  .quote-card form .row { grid-template-columns: 1fr; }
  .quote-card .wpcf7-form p:has(select) {
    display: block;
    width: 100%;
  }
  .quote-card .wpcf7-form p:has(select):has(+ p:has(select)) {
    margin-right: 0;
  }
  .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 — light grey matching the logo, dark text for a calm, premium feel */
.site-header {
  background: #d8dadc;
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  border-bottom: 1px solid rgba(42, 37, 35, 0.08);
}
.site-header.is-scrolled {
  background: #d0d2d4;
  border-bottom-color: rgba(42, 37, 35, 0.14);
  box-shadow: 0 12px 30px -14px rgba(42, 37, 35, .18);
}
.site-header .brand img { filter: none; }
.site-header .primary-nav a { color: rgba(42, 37, 35, 0.92); }
.site-header .primary-nav a:hover { background: rgba(42, 37, 35, .08); color: var(--ink); }
.site-header .btn--ghost { color: var(--ink); }
.site-header .btn--ghost:hover { background: rgba(42, 37, 35, .08); color: var(--ink); }
.burger span { background: var(--ink); }

/* Hero — cool light-grey canvas that echoes the header and logo. */
.hero {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0 clamp(80px, 10vw, 140px);
}
.hero__bg {
  background:
    radial-gradient(1000px 680px at 92% -10%, rgba(154, 156, 158, .12), transparent 60%),
    radial-gradient(800px 600px at 8% 20%, rgba(216, 218, 220, .28), transparent 62%),
    linear-gradient(180deg, #f4f5f6 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) 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 52px 110px -58px rgba(20, 18, 16, .28),
    0 18px 40px -24px rgba(20, 18, 16, .16);
  border-top: 1px solid rgba(33,29,26,.06);
}
/* 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,.08), transparent);
  z-index: 2; pointer-events: none;
}

/* Inside the shell: soft neutral sections — cool grey palette */
.page-shell .section { padding: clamp(72px, 8vw, 120px) 0; }
.page-shell .section--soft {
  background: #f0f1f2;
}
.page-shell .section--tint {
  background:
    radial-gradient(1100px 500px at 0% 0%, rgba(154, 156, 158, .12), transparent 60%),
    #f7f8f8;
}

/* Trust bar — cool dark grey, no orange wash */
.page-shell .trust-bar--dark {
  background: linear-gradient(160deg, #3a3d40 0%, #4a4d50 60%, #5a5d60 100%);
  color: #f0f1f2;
}
.page-shell .trust-bar__item { border-left-color: rgba(255,255,255,.12); }
.page-shell .trust-bar__item span { color: #c8cacc; }

/* 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, .10), transparent);
}

/* CTA — cool dark grey, integrated with shell */
.page-shell .cta {
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(154, 156, 158, .22), transparent 55%),
    radial-gradient(700px 400px at 100% 90%, rgba(216, 218, 220, .10), transparent 55%),
    linear-gradient(160deg, #3a3d40 0%, #4a4d50 100%);
}
.page-shell .cta p { color: #d8dadc; }

/* Footer — full-width cool grey band that sits below the rounded shell.
   The rounded shell ends cleanly above, and the footer anchors the page. */
.footer {
  background: #3a3d40;
  color: #f0f1f2;
  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,.10);
}
.footer__bottom {
  padding: 24px clamp(24px, 4vw, 56px) 0;
  border-radius: 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: #a9abad; font-size: 0.82rem;
}
.footer__brand p { color: #a9abad; }
.footer__contact a { color: #f0f1f2; }
.footer__contact a:hover { color: var(--brand-orange-2); }
.footer__links a { color: #d8dadc; }
.footer__links a:hover { color: #fff; }
.footer__menu a,
.footer__legal-menu a { color: #d8dadc; }
.footer__menu a:hover,
.footer__legal-menu a:hover { color: #fff; }

/* Quote card — cool white with grey accents */
.quote-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
  border-color: rgba(154, 156, 158, .22);
}
.quote-card::before {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(154, 156, 158, .22), transparent 60%),
    radial-gradient(400px 300px at 0% 100%, rgba(216, 218, 220, .35), transparent 60%);
  opacity: .9;
}

/* Feature / step / security cards — cool grey 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, .22);
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%);
}
.page-shell .feature-card:hover,
.page-shell .step:hover,
.page-shell .security__list li:hover {
  border-color: rgba(154, 156, 158, .40);
  box-shadow: 0 20px 40px -28px rgba(154, 156, 158, .25), 0 10px 24px -20px rgba(42, 37, 35, .12);
}

/* Carousel slide — same cool card treatment */
.page-shell .carousel__slide blockquote {
  border-color: rgba(154, 156, 158, .22);
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f6 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; }
}

/* =========================================================
   Final polish pass
   ========================================================= */

/* Equal visible spacing above and below hero__grid.
   The page-shell pulls up by --shell-radius, cancelled by the hero's
   matching margin-bottom, so the hero's bottom padding becomes the
   visible gap. Bottom padding scales up on larger screens where the
   centred grid creates more headroom. */
.hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 8vw, 106px);
  margin-bottom: var(--shell-radius);
}

/* Quote card — stronger definition against light hero background */
.quote-card {
  border: 1px solid rgba(42, 37, 35, 0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 0 rgba(42, 37, 35, 0.02),
    0 30px 60px -28px rgba(20, 18, 16, .28),
    0 12px 28px -18px rgba(20, 18, 16, .18);
}
.quote-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6) inset;
}

/* About — align bottom of copy with image */
@media (min-width: 1025px) {
  .about__grid {
    align-items: stretch;
  }
  .about__copy {
    display: flex; flex-direction: column;
  }
  .about__values { margin-top: auto; }
  .about__media {
    align-self: stretch;
    display: flex;
  }
  .about__media img {
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Completion — let the platform screenshot show through cleanly */
.completion__visual {
  background-image:
    linear-gradient(160deg, rgba(11, 24, 48, 0.08) 0%, rgba(11, 24, 48, 0.00) 45%, rgba(11, 24, 48, 0.30) 100%),
    url("platform-bg.webp");
  background-size: cover, 118%;
  background-position: center, center 35%;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(42, 37, 35, 0.10);
}
.completion__panel-grid { display: none; }
.completion__panel-glow { display: none; }
.completion__stat {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(42, 37, 35, 0.08);
}

/* Card definition — a touch more contrast so white cards read distinctly */
.page-shell .feature-card,
.page-shell .step,
.page-shell .security__list li,
.page-shell .faq__item,
.page-shell .carousel__slide blockquote {
  border-color: rgba(42, 37, 35, 0.10);
  box-shadow:
    0 1px 2px rgba(42, 37, 35, 0.04),
    0 6px 18px -14px rgba(42, 37, 35, 0.14);
}
.page-shell .feature-card:hover,
.page-shell .step:hover,
.page-shell .security__list li:hover {
  border-color: rgba(42, 37, 35, 0.18);
  box-shadow:
    0 2px 4px rgba(42, 37, 35, 0.05),
    0 22px 44px -24px rgba(42, 37, 35, 0.22);
}

/* Mobile polish */
@media (max-width: 900px) {
  /* Full-bleed imagery on tablet and mobile so photos feel larger */
  .about__media,
  .property__media,
  .completion__visual {
    margin-left: calc(clamp(16px, 4vw, 32px) * -1);
    margin-right: calc(clamp(16px, 4vw, 32px) * -1);
    width: auto;
    border-radius: 0;
  }
  .about__media img,
  .property__media img { aspect-ratio: 1/1; }
  .completion__visual { aspect-ratio: 1/1; }
}

@media (max-width: 720px) {
  .header__inner { min-height: 60px; gap: 12px; }
  .brand { padding: 4px 10px; }
  .brand img { height: 30px; }
  .hero { padding: 32px 0 32px; }
  .hero__grid { gap: 28px; }
  .hero__copy h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero__reassure { gap: 10px; }
  .quote-card { padding: 22px; border-radius: 22px; }
  .about__values { margin-top: 28px; }
  .property__badge { left: 12px; bottom: 12px; padding: 12px 14px; max-width: calc(100% - 24px); }
  .completion__stat { width: calc(100% - 24px); right: 12px; bottom: 12px; padding: 14px 16px; }
  .trust-bar__item { padding: 18px 12px; }
  .trust-bar__item strong { font-size: 2rem; }
  .cta h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .carousel__slide blockquote { min-height: 0; padding: 24px 20px; }
  .faq__item { padding: 2px 18px; }
  .faq__item > summary { font-size: 1rem; padding-right: 32px; }
  .page-shell { margin-top: -18px; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  h1 { letter-spacing: -0.015em; }
  .section { padding: 56px 0; }
  .quote-card__head h2 { font-size: 1.3rem; }
}

/* =========================================================
   Content refresh — footer social, address, legal block
   ========================================================= */
.footer__social {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; gap: 10px;
}
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #d8dadc;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--brand-orange); color: #fff; transform: translateY(-1px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__contact address {
  font-style: normal;
  color: #a9abad;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 6px;
}

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  margin-top: 8px;
  color: #9a9c9e;
  font-size: 0.78rem;
  line-height: 1.55;
}
.footer__legal p { margin: 0 0 10px; }
.footer__legal p:last-child { margin-bottom: 0; }

/* Subtle extra definition on the quote card + white content cards
   (keep the refinement gentle — user is happy with current clarity). */
.quote-card {
  border-color: rgba(42, 37, 35, 0.14);
}
.page-shell .feature-card,
.page-shell .step,
.page-shell .security__list li,
.page-shell .faq__item,
.page-shell .carousel__slide blockquote {
  border-color: rgba(42, 37, 35, 0.12);
  box-shadow:
    0 1px 2px rgba(42, 37, 35, 0.05),
    0 8px 22px -16px rgba(42, 37, 35, 0.18);
}

/* =========================================================
   Final content pass — hero fix, language switcher, contact,
   founder portrait sizing, single footer divider.
   ========================================================= */

/* Prevent the italic descender of "confidence" being clipped
   on some browsers by giving the highlighted span breathing room
   and ensuring the heading itself never clips overflow. */
.hero__copy h1 {
  overflow: visible;
  padding-right: 0.05em;
}
.hero .hl {
  display: inline-block;
  padding-right: 0.12em;
  margin-right: -0.05em;
}

/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 37, 35, 0.10);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.lang-switch:hover {
  background: #fff;
  border-color: rgba(42, 37, 35, 0.20);
  transform: translateY(-1px);
}
.lang-switch__flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
  display: inline-flex;
}
.lang-switch__flag svg { width: 100%; height: 100%; display: block; }
.lang-switch--block {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  background: #fff;
  border-color: var(--line);
}
.mobile-nav__cta { gap: 12px; }

/* ---------- About founder portrait: 70% of copy height, centred, balanced ---------- */
@media (min-width: 1025px) {
  .about__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch; /* row height follows the left copy column */
  }
  .about__copy {
    display: flex;
    flex-direction: column;
  }
  .about__values { margin-top: auto; }
  .about__media {
    align-self: center;
    height: 70%;
    min-height: 280px;
    max-height: 520px;
    max-width: 420px;
    width: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: block;
  }
  .about__media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-position: center 20%;
  }
}
@media (max-width: 1024px) {
  .about__media {
    max-width: 380px;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: var(--radius-xl) !important;
  }
  .about__media img { aspect-ratio: 1 / 1; object-position: center 20%; }
}

/* ---------- Contact section ---------- */
.contact { padding: clamp(64px, 8vw, 104px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
  border: 1px solid rgba(42, 37, 35, 0.12);
  border-radius: var(--radius-xl);
  padding: 24px 24px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 1px 2px rgba(42, 37, 35, 0.05),
    0 10px 26px -18px rgba(42, 37, 35, 0.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 37, 35, 0.22);
  box-shadow:
    0 2px 4px rgba(42, 37, 35, 0.06),
    0 22px 44px -24px rgba(42, 37, 35, 0.24);
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-orange-wash);
  color: var(--brand-orange);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__body { min-width: 0; }
.contact-card__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-card__value {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.contact-card__value a { color: inherit; text-decoration: none; }
.contact-card__value a:hover { color: var(--brand-orange); }
.contact-card__meta {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--ink-3);
}
.contact-card__cta {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: 0.02em;
}
.contact-card__copy {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.contact-card__copy:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.contact-card__copy.is-copied {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
@media (max-width: 640px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact-card { padding: 20px; }
}

/* Utility: show/hide on small screens */
.show-mobile { display: none; }
@media (max-width: 640px) {
  .show-mobile { display: block; }
  .hide-mobile { display: none; }
}

/* ---------- Footer: keep a single divider line ---------- */
.footer__inner { border-bottom: 0; padding-bottom: 32px; }
.footer__legal { margin-top: 0; }

/* ---------- Mobile refinements ---------- */
@media (max-width: 1024px) {
  .header__cta { display: none; }
}
@media (max-width: 720px) {
  .hero__copy h1 { padding-right: 0.08em; }
  .contact-card__value { font-size: 1.15rem; }
}

@media (max-width: 640px) {
  .contact-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
  .contact-card__icon { width: 40px; height: 40px; }
  .contact-card__icon svg { width: 20px; height: 20px; }
  .contact-card__value { font-size: 1.05rem; letter-spacing: -0.005em; }
  .contact-card__value a { display: inline-block; max-width: 100%; }
  .contact-card__meta { font-size: 0.82rem; }
  .contact-card__cta { margin-top: 10px; font-size: 0.82rem; }
  .contact-card__copy { margin-top: 10px; }
}


.quote-card .label-hint {
  color: var(--ink-4);
  font-weight: 400;
  font-size: 0.82em;
  margin-left: 4px;
}
.quote-card button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: progress;
}
