:root {
    --bg: #0A0B0E;
    --bg-2: #111318;
    --bg-3: #1A1D24;
    --line: rgba(255,255,255,0.06);
    --line-2: rgba(255,255,255,0.12);
    --text: #EDEAE3;
    --text-dim: rgba(237,234,227,0.62);
    --text-mute: rgba(237,234,227,0.40);
    --accent: #FF7A45;
    --accent-soft: rgba(255,122,69,0.14);
    --accent-deep: #E5602A;
    --accent-glow: rgba(255,122,69,0.35);

    --sans: 'Geist', -apple-system, sans-serif;
    --display: 'Fraunces', Georgia, serif;
    --mono: 'Geist Mono', ui-monospace, monospace;

    --max: 1340px;
    --pad: clamp(20px, 4vw, 56px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    background: var(--bg); color: var(--text);
    font-family: var(--sans); font-size: 15px; line-height: 1.55;
    overflow-x: hidden;
    background-image:
      radial-gradient(1200px 600px at 80% -10%, rgba(255,122,69,0.10), transparent 60%),
      radial-gradient(900px 500px at 0% 30%, rgba(255,122,69,0.04), transparent 60%);
    background-attachment: fixed;
  }
  ::selection { background: var(--accent); color: var(--bg); }
  a { color: inherit; text-decoration: none; }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none; z-index: 0;
    mask-image: radial-gradient(ellipse 100% 70% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 30%, black 30%, transparent 80%);
  }

  /* ---------- LOGO ---------- */
  .logo-mark {
    display: inline-block;
    color: var(--accent);
  }
  .logo-mark svg { display: block; }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,11,14,0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 16px var(--pad);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    font-size: 14.5px; font-weight: 500; letter-spacing: -0.005em;
  }
  .brand-name {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.012em;
    color: var(--text);
    line-height: 1;
    white-space: nowrap;
  }
  .brand-divider {
    width: 1px; height: 22px;
    background: var(--line);
    flex-shrink: 0;
  }
  @media (max-width: 720px) {
    .brand-name, .brand-divider { display: none; }
  }
  .nav-links {
    display: flex; gap: 28px;
    font-size: 13.5px; font-weight: 400; color: var(--text-dim);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    padding: 10px 18px;
    background: var(--accent);
    color: var(--bg);
    font-size: 13px; font-weight: 500;
    border-radius: 6px;
    transition: all .2s;
  }
  .nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 20px -8px var(--accent-glow); }
  @media (max-width: 820px) { .nav-links { display: none; } }

  /* ---------- HERO ---------- */
  .hero { position: relative; z-index: 1; }
  .hero-inner {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(60px, 10vw, 130px) var(--pad) clamp(50px, 7vw, 100px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
  }
  @media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.06em; color: var(--text-mute);
    padding: 6px 12px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 100px;
    margin-bottom: 32px;
    animation: rise .7s ease-out .1s both;
  }
  .eyebrow .dot {
    width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2.4s infinite;
  }
  .eyebrow .div { color: var(--line-2); }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  h1.tech {
    font-size: clamp(48px, 7.4vw, 104px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.045em;
  }
  h1.tech .accent {
    font-family: var(--display);
    font-weight: 350;
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    letter-spacing: -0.03em;
  }
  h1.tech span { display: block; overflow: hidden; }
  h1.tech span > i {
    display: inline-block; font-style: normal;
    animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
  }
  h1.tech span:nth-child(1) > i { animation-delay: .15s; }
  h1.tech span:nth-child(2) > i { animation-delay: .3s; }
  h1.tech span:nth-child(3) > i { animation-delay: .45s; }
  @keyframes rise {
    from { transform: translateY(105%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .hero-meta-line {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px; align-items: center;
    margin-top: 36px; padding-top: 32px;
    border-top: 1px solid var(--line);
    animation: rise .9s ease-out .65s both;
  }
  .hero-stat {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-mute);
    line-height: 1.5;
  }
  .hero-stat .v {
    display: block; font-family: var(--sans);
    font-size: 28px; font-weight: 500;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
  }
  .hero-stat .v em { font-style: normal; color: var(--accent); }

  .hero-sub {
    margin-top: 28px;
    max-width: 540px;
    font-size: 16px;
    color: var(--text-dim);
    animation: rise .9s ease-out .55s both;
  }

  .hero-cta {
    margin-top: 32px;
    display: flex; gap: 12px; flex-wrap: wrap;
    animation: rise .9s ease-out .75s both;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    font-size: 13.5px; font-weight: 500;
    border-radius: 6px;
    transition: all .25s; cursor: pointer; border: none;
    font-family: inherit;
  }
  .btn-primary { background: var(--accent); color: var(--bg); }
  .btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--accent-glow); }
  .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
  .btn-ghost:hover { border-color: var(--text-dim); }
  .btn .arrow { transition: transform .25s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- HERO IMAGE / ESTIMATOR STACK ---------- */
  .hero-right {
    position: relative;
    animation: rise 1s ease-out .7s both;
  }
  .hero-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line-2);
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  }
  .hero-image-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
    z-index: 1;
  }
  .hero-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.95);
  }
  .hero-image-tag {
    position: absolute; bottom: 24px; left: 24px;
    z-index: 2;
    font-family: var(--mono); font-size: 10.5px;
    color: var(--text-mute);
    letter-spacing: 0.06em;
  }
  .hero-image-tag::before {
    content: '— '; color: var(--accent);
  }

  .estimator-floating {
    position: absolute;
    right: -20px; bottom: 40px;
    width: min(420px, calc(100% - 40px));
    background: rgba(17,19,24,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 22px;
    z-index: 3;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
  }
  @media (max-width: 600px) {
    .estimator-floating { position: static; width: 100%; margin-top: -60px; }
  }

  .est-bar {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10.5px;
    color: var(--text-mute);
    letter-spacing: 0.06em;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .est-bar .live {
    display: flex; align-items: center; gap: 6px;
    color: var(--accent);
  }
  .est-bar .live::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 8px var(--accent);
  }

  .est-section { margin-top: 16px; }
  .est-section .lbl {
    font-family: var(--mono); font-size: 10px;
    color: var(--text-mute);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .asset-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
  }
  .asset-cell {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 9px 6px;
    text-align: center;
    font-size: 10.5px; font-weight: 500;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .2s;
  }
  .asset-cell:hover { background: rgba(255,255,255,0.04); color: var(--text); }
  .asset-cell.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
  }
  .asset-cell svg { display: block; margin: 0 auto 4px; }

  .est-display {
    margin-top: 16px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .est-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 14px;
  }
  .est-card .lbl {
    font-family: var(--mono); font-size: 9.5px;
    color: var(--text-mute); letter-spacing: 0.08em;
    margin-bottom: 6px; text-transform: uppercase;
  }
  .est-card .v {
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.025em; line-height: 1;
  }
  .est-card .v .accent { color: var(--accent); }
  .est-card .v .small { font-size: 12px; color: var(--text-dim); }

  .est-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    outline: none;
    margin-top: 12px;
  }
  .est-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%; cursor: pointer;
    border: 2.5px solid var(--bg-3);
    box-shadow: 0 0 0 1px var(--accent), 0 0 12px var(--accent-glow);
    transition: transform .15s;
  }
  .est-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
  .est-marks {
    display: flex; justify-content: space-between;
    font-family: var(--mono); font-size: 9.5px;
    color: var(--text-mute); margin-top: 6px;
  }

  .est-foot {
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 10px;
    color: var(--text-mute); line-height: 1.5;
  }

  /* ---------- COVERAGE STRIP ---------- */
  .coverage {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    position: relative; z-index: 1;
  }
  .coverage-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 36px var(--pad);
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
  }
  @media (max-width: 820px) { .coverage-inner { grid-template-columns: repeat(2, 1fr); } }
  .cov {
    background: var(--bg-2);
    padding: 14px 22px;
  }
  .cov .v {
    font-size: 36px; font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
  }
  .cov .v .accent {
    font-family: var(--display);
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 350;
  }
  .cov .l {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--text-mute); letter-spacing: 0.06em;
    margin-top: 8px;
  }

  /* ---------- SECTIONS ---------- */
  .section {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(70px, 10vw, 140px) var(--pad);
    position: relative; z-index: 1;
  }
  .section-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: 56px; align-items: end;
  }
  @media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }
  .section-tag {
    font-family: var(--mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .section-tag::before { content: '/ '; opacity: 0.5; }
  .section-title {
    font-size: clamp(32px, 4.4vw, 60px);
    font-weight: 500; line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .section-title .accent {
    font-family: var(--display);
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 380;
  }
  .section-lede {
    color: var(--text-dim); font-size: 16px;
    max-width: 480px; line-height: 1.6;
  }

  /* ---------- ASSETS ---------- */
  .asset-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px; overflow: hidden;
  }
  @media (max-width: 1000px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .asset-grid { grid-template-columns: 1fr; } }
  .asset-card {
    background: var(--bg);
    transition: all .3s;
    cursor: pointer;
    position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .asset-card:hover { background: var(--bg-2); }
  .asset-card .card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #050608;
    border-bottom: 1px solid var(--line);
  }
  .asset-card .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .4s;
    filter: brightness(0.92) saturate(0.95);
  }
  .asset-card:hover .card-img img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
  }
  .asset-card .card-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,11,14,.55) 100%);
    pointer-events: none;
  }
  .asset-card .icon {
    position: absolute;
    bottom: 14px; left: 16px;
    width: 26px; height: 26px;
    color: var(--accent);
    z-index: 2;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,.6));
  }
  .asset-card .card-body {
    padding: 22px 26px 26px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .asset-card .name {
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  .asset-card .meta {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-mute);
    line-height: 1.5;
  }
  .asset-card .ltv {
    margin-top: auto; padding-top: 16px;
    font-family: var(--mono); font-size: 11px;
    color: var(--accent);
  }
  .asset-card .ltv span { color: var(--text-mute); }
  .asset-card .arrow {
    position: absolute; top: 14px; right: 16px;
    color: var(--text-mute); opacity: 0;
    transform: translateX(-6px); transition: all .3s;
    z-index: 2;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,.6));
  }
  .asset-card:hover .arrow { opacity: 1; transform: translateX(0); color: var(--accent); }

  /* ---------- ATMOSPHERIC IMAGE BAND ---------- */
  .atmosphere {
    position: relative;
    height: clamp(280px, 38vw, 460px);
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    z-index: 1;
  }
  .atmosphere img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: contrast(1.08) brightness(0.85) saturate(0.9);
  }
  .atmosphere::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
    z-index: 1;
  }
  .atmosphere::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
    z-index: 1;
  }
  .atmosphere-text {
    position: absolute; inset: 0;
    z-index: 2;
    display: grid; place-items: center;
    text-align: center;
    padding: var(--pad);
  }
  .atmosphere-text h3 {
    font-family: var(--display);
    font-weight: 320;
    font-size: clamp(28px, 4vw, 56px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 22ch;
    font-variation-settings: "opsz" 144;
  }
  .atmosphere-text h3 em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }

  /* ---------- PROCESS ---------- */
  .process {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative; z-index: 1;
  }
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; position: relative;
  }
  .steps::before {
    content: ''; position: absolute;
    top: 22px; left: 22px; right: 22px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.5;
  }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 36px; } .steps::before { display: none; } }
  .step .n {
    width: 44px; height: 44px;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--mono); font-size: 13px; font-weight: 500;
    border-radius: 50%;
    display: grid; place-items: center;
    margin-bottom: 22px;
    position: relative; z-index: 1;
  }
  .step h3 {
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.015em; margin-bottom: 8px;
  }
  .step p {
    font-size: 14px; color: var(--text-dim);
    line-height: 1.55;
  }

  /* ---------- WHY (with image) ---------- */
  .why {
    position: relative; z-index: 1;
  }
  .why-grid {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(70px, 10vw, 140px) var(--pad);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
  }
  @media (max-width: 1000px) { .why-grid { grid-template-columns: 1fr; } }
  .why-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line-2);
    position: sticky; top: 100px;
  }
  .why-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.1) brightness(0.85);
  }
  .why-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  }
  .why-image-tag {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    z-index: 2;
    font-family: var(--mono); font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .why-image-tag .accent { color: var(--accent); }

  .why-lead {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 500; line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 40px;
  }
  .why-lead .accent {
    font-family: var(--display);
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 380;
  }
  .why-points { display: grid; gap: 28px; }
  .why-point {
    border-left: 2px solid var(--accent);
    padding: 4px 0 4px 22px;
  }
  .why-point h4 {
    font-size: 17px; font-weight: 500;
    letter-spacing: -0.01em; margin-bottom: 6px;
  }
  .why-point p {
    color: var(--text-dim); font-size: 14px;
    line-height: 1.6;
  }

  /* ---------- LOCATIONS ---------- */
  .locations {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative; z-index: 1;
  }
  .loc-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 820px) { .loc-strip { grid-template-columns: repeat(2, 1fr); } }
  .loc {
    background: var(--bg-2); padding: 30px 28px;
    transition: all .25s;
    position: relative;
  }
  .loc:hover { background: var(--bg-3); }
  .loc .num {
    position: absolute; top: 22px; right: 22px;
    font-family: var(--mono); font-size: 10px;
    color: var(--text-mute);
    letter-spacing: 0.06em;
  }
  .loc .city {
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  .loc .det {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-mute); line-height: 1.5;
  }
  .loc .det .accent { color: var(--accent); }

  .nationwide {
    max-width: var(--max); margin: 0 auto;
    padding: 50px var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
  }
  .nationwide-text {
    font-family: var(--display);
    font-weight: 350;
    font-size: clamp(20px, 2.4vw, 30px);
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-variation-settings: "opsz" 144;
    max-width: 580px;
  }
  .nationwide-text em {
    font-style: italic; color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .nationwide-tag {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.08em;
  }
  .nationwide-tag::before { content: '/ '; color: var(--accent); }

  /* ---------- CTA ---------- */
  .cta {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad);
    text-align: center;
    position: relative; z-index: 1;
  }
  .cta-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 500; line-height: 1;
    letter-spacing: -0.04em; margin-bottom: 20px;
  }
  .cta-title .accent {
    font-family: var(--display);
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 380;
  }
  .cta-sub {
    color: var(--text-dim); font-size: 17px;
    max-width: 520px; margin: 0 auto 36px;
  }
  .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 60px var(--pad) 30px;
    position: relative; z-index: 1;
  }
  .foot-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
    gap: 32px; padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 1180px) {
    .foot-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
    .foot-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .foot-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .foot-brand { grid-column: 1 / -1; }
  }
  .foot-brand .brand { margin-bottom: 16px; }
  .foot-tag {
    font-size: 13.5px; line-height: 1.55; max-width: 320px;
    color: var(--text-dim);
  }
  .foot-col h5 {
    font-family: var(--mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.08em;
    margin-bottom: 16px; font-weight: 500;
  }
  .foot-col h5::before { content: '/ '; opacity: 0.5; }
  .foot-col ul { list-style: none; display: grid; gap: 9px; }
  .foot-col a {
    font-size: 13.5px; color: var(--text-dim);
    transition: color .2s;
  }
  .foot-col a:hover { color: var(--text); }

  .foot-legal {
    max-width: var(--max); margin: 30px auto 0;
    display: flex; flex-wrap: wrap; gap: 20px;
    justify-content: space-between;
    font-family: var(--mono); font-size: 10.5px;
    color: var(--text-mute); line-height: 1.6;
  }
  .foot-legal .compliance {
    flex: 1 1 100%;
    margin-bottom: 14px;
    color: var(--text-dim);
    font-family: var(--sans); font-size: 12px;
  }
  .swg-mark {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-mute);
    font-size: 11px;
  }
  .swg-mark:hover { color: var(--text-dim); }
  .swg-mark .m {
    width: 14px; height: 14px;
    background: var(--line-2); border-radius: 2px;
    display: grid; place-items: center;
    font-family: var(--mono); font-size: 8px; font-weight: 500;
    color: var(--text-dim);
  }

  /* Logo refinements */
  .brand { gap: 14px; }
  .brand .logo-mark svg { display: block; }

  /* SWG mark — actual brand icon, filtered white */
  .swg-mark img {
    height: 22px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity .25s;
  }
  .swg-mark:hover img { opacity: 0.95; }

/* ============================================================
   PAGE TEMPLATES — added for /loans/, /serving/, /locations/, etc.
   ============================================================ */

main.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 0;
}
@media (max-width: 720px) {
  main.page { padding: 56px 20px 0; }
}

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero.solo { grid-template-columns: 1fr; max-width: 760px; }
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 60px; }
}
.page-hero-text .kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-text .kicker a { color: var(--accent); }
.page-hero-text .kicker a:hover { color: var(--text); }
.page-hero-text h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}
.page-hero-text .lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 540px;
}
.page-hero-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #050608;
  border: 1px solid var(--line);
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.prose {
  max-width: 760px;
  padding: 56px 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}
.prose h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 48px 0 16px;
  font-variation-settings: "opsz" 144;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 32px 0 8px;
  letter-spacing: -0.01em;
}
.prose p { margin: 0 0 18px; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(255,122,69,0.25); }
.prose a:hover { border-bottom-color: var(--accent); color: var(--accent-deep); }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 1.4em; }
.prose ul li, .prose ol li { margin: 6px 0; }
.prose strong { color: var(--text); font-weight: 500; }
.prose em { font-style: italic; color: var(--text-mute); }

.examples-table, .travel-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 32px;
  font-size: 14px;
  font-family: var(--sans);
}
.examples-table th, .travel-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-mute);
  text-transform: uppercase;
  padding: 12px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.examples-table td, .travel-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.examples-table tr:last-child td, .travel-table tr:last-child td { border-bottom: none; }
.examples-table td:nth-child(2) { color: var(--accent); font-family: var(--mono); font-size: 13px; }

.subbrand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0 32px;
}
.subbrand-card {
  background: var(--bg);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .25s;
  position: relative;
}
.subbrand-card:hover { background: var(--bg-2); }
.subbrand-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}
.subbrand-card .arrow {
  color: var(--text-mute);
  transition: color .25s, transform .25s;
}
.subbrand-card:hover .arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.cross-link {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin: 32px 0;
}
.cross-link h3 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-mute);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.cross-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.cross-grid a {
  background: var(--bg);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .25s;
}
.cross-grid a:hover { background: var(--bg-2); color: var(--accent); }
.cross-grid a span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 1px;
}

.cta-band {
  margin: 60px 0;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.cta-band p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.cta-band p a { color: var(--accent); }
.cta-band .cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #0A0B0E;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: background .25s, transform .25s;
}
.cta-band .cta-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }

.address-block {
  margin: 28px 0;
  padding: 24px;
  background: var(--bg-2);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
}
.address-block p { margin: 8px 0; font-size: 14px; }
.address-block strong {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-block;
  width: 90px;
}

.city-list, .model-list, .asset-quick-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.city-list li, .model-list li {
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12.5px;
}
.asset-quick-list { grid-template-columns: 1fr; }
.asset-quick-list li {
  padding: 0;
  background: transparent;
}
.asset-quick-list li a {
  display: block;
  padding: 14px 18px;
  background: var(--bg-2);
  border-radius: 4px;
  border-bottom: none;
  color: var(--text-dim);
  transition: background .25s;
}
.asset-quick-list li a:hover { background: rgba(255,122,69,0.08); color: var(--text); }
.asset-quick-list li a strong { color: var(--accent); }

.process-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.process-list li {
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.65;
}
.process-list li:last-child { border-bottom: none; }
.process-list strong { color: var(--accent); margin-right: 8px; }

.faq-list { margin: 24px 0; }
.faq-list dt {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin: 28px 0 8px;
  letter-spacing: -0.01em;
}
.faq-list dd {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
  padding-left: 0;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.office-block {
  padding: 20px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px solid var(--line);
}
.office-block h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 8px;
}
.office-block h3 span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  margin-top: 2px;
}
.office-block p { font-size: 13px; margin: 6px 0; line-height: 1.5; }
.office-block a { color: var(--accent); font-size: 13px; }

.state-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.state-city-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  display: block;
  position: relative;
  transition: background .25s, border-color .25s;
}
.state-city-card:hover { border-color: var(--accent); background: rgba(255,122,69,0.05); }
.state-city-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--text);
}
.state-city-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0 0 14px;
}
.state-city-card .arrow {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--accent);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.state-city-card:hover .arrow { opacity: 1; transform: translateX(2px); }

.foot-email {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-top: 14px;
}
.foot-email a {
  color: var(--accent);
  border-bottom: 1px solid rgba(255,122,69,0.3);
  padding-bottom: 1px;
}
.foot-email a:hover { border-bottom-color: var(--accent); }

.prose.legal { font-size: 14.5px; }
.prose.legal h2 { font-size: 22px; margin-top: 32px; }

/* ============================================================
   TRAVEL PROGRAM — home page feature section
   ============================================================ */
.travel-feature {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #050608 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.travel-feature .section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.travel-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
}
.travel-card::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(255,122,69,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.travel-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--mono);
}
.travel-card-pin {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-mute);
  text-transform: uppercase;
}
.travel-card-h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144;
}
.travel-card-h2 .accent-italic {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.travel-card-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 0 40px;
}
.travel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 36px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .travel-tiers { grid-template-columns: 1fr; }
  .travel-card { padding: 36px 28px 32px; }
}
.tier {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.tier-amount {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.tier-amount span {
  font-size: 18px;
  color: var(--text-mute);
  margin-left: 2px;
}
.tier-detail {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12.5px;
}
.travel-markets {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.travel-markets-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  white-space: nowrap;
}
.travel-markets-list {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
}
.travel-markets-list a {
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .25s, color .25s;
}
.travel-markets-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.travel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0A0B0E;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .25s, transform .25s;
  position: relative;
  z-index: 1;
}
.travel-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.travel-cta .arrow {
  transition: transform .25s;
}
.travel-cta:hover .arrow {
  transform: translateX(3px);
}

/* ============================================================
   /travel-program/ page-specific styles
   ============================================================ */
.travel-hero {
  padding: 100px 32px 60px;
  text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,122,69,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--line);
}
.travel-hero-inner { max-width: 800px; margin: 0 auto; }
.travel-hero-meta .kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  margin-bottom: 28px;
}
.travel-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1;
  margin: 0 0 28px;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}
.travel-hero h1 .accent-italic {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.travel-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}
.travel-tiers-section {
  padding: 56px 32px;
  border-bottom: 1px solid var(--line);
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.market-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  transition: background .25s, border-color .25s;
}
.market-card:hover {
  border-color: var(--accent);
  background: rgba(255,122,69,0.05);
}
.market-card h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.market-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
  font-family: var(--mono);
}


  .foot-top {
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }
  .foot-cols {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  .foot-meta {
    padding-top: 12px;
  }
  @media (max-width: 1100px) {
    .foot-top { grid-template-columns: 1fr; gap: 28px; }
    .foot-cols { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  }
  @media (max-width: 720px) {
    .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }
  @media (max-width: 480px) {
    .foot-cols { grid-template-columns: 1fr; gap: 20px; }
  }


/* Footer sub-headings within a column */
.foot-col h5.sub {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,122,69,0.18);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
}
.foot-col li {
  margin: 0 0 8px;
}
.foot-col a {
  font-size: 13.5px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  transition: color .2s;
}
.foot-col a:hover { color: var(--text); }
.foot-tag {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 16px;
}
.foot-email {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 0;
}
.foot-email a {
  color: var(--accent);
  border-bottom: 1px solid rgba(255,122,69,0.3);
  padding-bottom: 1px;
}
.foot-email a:hover { border-bottom-color: var(--accent); }
.foot-brand .brand .logo-mark { color: var(--text); }


/* /travel-program/ VIP image band */
.travel-vip-band {
  position: relative;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.travel-vip-band img {
  width: 100%;
  height: clamp(280px, 36vw, 460px);
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.92);
}
.travel-vip-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,0.4) 0%, transparent 30%, transparent 70%, rgba(10,11,14,0.85) 100%);
  pointer-events: none;
}
.travel-vip-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .travel-vip-caption { font-size: 9px; letter-spacing: 2px; bottom: 14px; }
}


/* /estimator/ standalone page */
.estimator-fullsize {
  display: flex;
  justify-content: center;
  padding: 24px 0 60px;
  border-bottom: 1px solid var(--line);
}
.estimator-standalone {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  width: min(640px, 100%) !important;
  margin: 0 auto !important;
  padding: 32px !important;
}
.estimator-standalone .asset-row { gap: 8px; }
.estimator-standalone .est-display { padding: 20px; gap: 24px; }

/* ============================================================
   QUOTE REQUEST FORM (replaces estimator calculator)
   ============================================================ */
.form-section {
  padding: 24px 0 56px;
  border-bottom: 1px solid var(--line);
}
.quote-form { max-width: 760px; margin: 0 auto; }
.form-card {
  background: rgba(17,19,24,0.94);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
@media (max-width: 600px) { .form-card { padding: 24px 18px; } }
.form-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.form-bar .live {
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.form-bar .live::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.form-banner {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form-banner.success {
  background: rgba(80,200,120,0.12);
  border: 1px solid rgba(80,200,120,0.4);
  color: #aef0c2;
}
.form-banner.error {
  background: rgba(240,90,80,0.12);
  border: 1px solid rgba(240,90,80,0.4);
  color: #ffb5af;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid-3 .span-2 { grid-column: span 2; }
@media (max-width: 600px) {
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .form-grid-3 .span-2 { grid-column: span 1; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-lbl {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text);
  font-family: var(--sans);
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.form-field select { padding: 11px 12px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-mute) 50%), linear-gradient(135deg, var(--text-mute) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,122,69,0.04);
}
.form-field textarea { resize: vertical; min-height: 92px; }
.form-field input[type="file"] {
  background: var(--bg);
  border: 1px dashed var(--line-2);
  border-radius: 5px;
  padding: 14px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
}
.form-field input[type="file"]:hover { border-color: var(--accent); }
.form-hint {
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--sans);
  line-height: 1.5;
}
.form-foot {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
}
.form-submit {
  background: var(--accent);
  color: #0A0B0E;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-disclaimer {
  flex: 1;
  margin: 0;
  font-size: 11.5px;
  color: var(--text-mute);
  line-height: 1.5;
  min-width: 220px;
}
.form-disclaimer a { color: var(--text-dim); border-bottom: 1px solid var(--line-2); }
.form-disclaimer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* 4-tier travel layout (added $50K-250K) */
.travel-tiers-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  .travel-tiers-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .travel-tiers-4 { grid-template-columns: 1fr !important; }
}
.tier.tier-soft .tier-amount {
  color: var(--text-dim) !important;
}
.tier.tier-soft .tier-amount span {
  color: var(--text-mute);
}
.tier.tier-soft {
  background: rgba(255,255,255,0.015) !important;
}

/* Buy-asset callout on asset overview pages */
.buy-asset-callout {
  background: rgba(255,122,69,0.06);
  border: 1px solid rgba(255,122,69,0.25);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 32px;
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
}
.buy-asset-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(255,122,69,0.12);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.buy-asset-callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
  flex: 1;
  min-width: 280px;
}
.buy-asset-callout strong { color: var(--text); }
.buy-asset-callout a { color: var(--accent); border-bottom: 1px solid rgba(255,122,69,0.3); }

/* Home page floating widget — converted to CTA card */
.quote-cta-card .asset-row a.asset-cell {
  text-decoration: none;
  cursor: pointer;
}
.quote-cta-card .asset-row a.asset-cell:hover {
  background: rgba(255,122,69,0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.quote-cta-pitch {
  margin: 18px 0 16px;
  padding: 14px 16px;
  background: rgba(255,122,69,0.06);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
}
.quote-cta-pitch p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}
.quote-cta-pitch strong { color: var(--text); font-weight: 500; }
.quote-cta-btn {
  display: flex;
  align-items: center; justify-content: space-between;
  background: var(--accent);
  color: #0A0B0E;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  transition: background .2s, transform .2s;
}
.quote-cta-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.quote-cta-btn .arrow { transition: transform .2s; }
.quote-cta-btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   QUOTE PAGE — Hybrid estimator + form (v2)
   ============================================================ */
.quote-form { max-width: 880px; margin: 24px auto 0; padding: 0 20px 60px; }
.quote-card {
  background: rgba(17,19,24,0.94);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 36px 36px 32px;
  margin-bottom: 20px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.55);
}
@media (max-width: 700px) { .quote-card { padding: 24px 20px; } }

.qc-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.qc-bar .live {
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.qc-bar .live::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.qc-section { margin-bottom: 24px; }
.qc-label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.qc-label-soft {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  font-weight: 400;
}

.asset-row-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 760px) { .asset-row-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .asset-row-6 { grid-template-columns: repeat(2, 1fr); } }

.asset-row-6 .asset-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  position: relative;
}
.asset-row-6 .asset-cell input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.asset-row-6 .asset-cell svg {
  color: var(--text-mute);
  transition: color .2s;
}
.asset-row-6 .asset-cell.active {
  background: rgba(255,122,69,0.10);
  border-color: var(--accent);
  color: var(--accent);
}
.asset-row-6 .asset-cell.active svg { color: var(--accent); }
.asset-row-6 .asset-cell:hover { border-color: var(--accent); color: var(--accent); }
.asset-row-6 .asset-cell:hover svg { color: var(--accent); }

.est-display {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 540px) { .est-display { grid-template-columns: 1fr; } }
.est-result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
}
.er-label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.er-value {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
}
.er-value.accent { color: var(--accent); }
.er-soft {
  font-size: 18px;
  color: var(--text-mute);
}

.qc-disclaimer {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* Form fields (qc namespace) */
.qc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.qc-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) {
  .qc-grid-2, .qc-grid-3 { grid-template-columns: 1fr; gap: 14px; }
}
.qc-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
  margin-bottom: 0;
}
.qc-fl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.qc-field input[type="text"],
.qc-field input[type="email"],
.qc-field input[type="tel"],
.qc-field select,
.qc-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--text);
  font-family: var(--sans);
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.qc-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-mute) 50%), linear-gradient(135deg, var(--text-mute) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.qc-field input:focus,
.qc-field select:focus,
.qc-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,122,69,0.04);
}
.qc-field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.qc-field {
  margin-bottom: 16px;
}
.qc-hint {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.5;
  font-family: var(--sans);
}

/* File input — pretty wrapper */
.qc-file-wrap { position: relative; }
.qc-file-wrap input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.qc-file-pretty {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px;
  background: var(--bg);
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-dim);
  transition: border-color .2s, background .2s;
}
.qc-file-wrap:hover .qc-file-pretty {
  border-color: var(--accent);
  background: rgba(255,122,69,0.04);
  color: var(--text);
}
.qc-file-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,122,69,0.15);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500;
  flex-shrink: 0;
}
.qc-file-text { flex: 1; }
.qc-file-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.qc-honeypot {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

.qc-submit-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.qc-submit {
  background: var(--accent);
  color: #0A0B0E;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .2s;
}
.qc-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.qc-submit .arrow { transition: transform .2s; }
.qc-submit:hover .arrow { transform: translateX(3px); }
.qc-submit-row .qc-disclaimer {
  flex: 1; min-width: 240px;
  margin: 0; padding: 0; border: none;
}

.form-banner {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form-banner.success { background: rgba(80,200,120,0.12); border: 1px solid rgba(80,200,120,0.4); color: #aef0c2; }
.form-banner.error { background: rgba(240,90,80,0.12); border: 1px solid rgba(240,90,80,0.4); color: #ffb5af; }
.form-banner a { color: inherit; border-bottom: 1px solid currentColor; }

.loc-strip a.loc {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .25s, background .25s;
}
.loc-strip a.loc:hover {
  transform: translateY(-2px);
  background: rgba(255,122,69,0.04);
}
.loc-strip a.loc:hover .city { color: var(--accent); }

/* ============================================================
   ASSET GRID — 3-col layout (6 items × 3 col = 2 full rows)
   ============================================================ */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1000px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .asset-grid { grid-template-columns: 1fr; } }

/* Hub page asset grid — slightly taller cards with sub-meta */
.asset-grid-3 .hub-sub {
  font-size: 11.5px;
  color: var(--text-mute);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}
.loans-hub {
  padding: 20px 0 60px;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   MARKET GRID (travel page) — 4-col layout (8 items × 4 col = 2 full rows)
   ============================================================ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 1000px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .market-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GENERAL — center grids/tables when last row not full
   ============================================================ */
/* For grids with auto-fit/auto-fill: justify-content centers partial last rows */
.grid-centered, .examples-table-wrap {
  display: flex;
  justify-content: center;
}
.examples-table-wrap table { margin: 0 auto; }

/* All examples-tables (asset overview pages) — center when narrower than container */
table.examples-table {
  max-width: 760px;
  margin: 16px auto;
  width: 100%;
}

/* Table wrapper for centering */
.prose table {
  margin-left: auto;
  margin-right: auto;
}

/* If a row of cards/tier blocks is partial, center the partial row */
.travel-tiers, .market-grid, .cross-grid, .neighbors-grid {
  justify-content: center;
}

/* For state-city-grid and similar: */
.state-city-grid, .cross-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   HOME ESTIMATOR — new layout (calculator + CTA button)
   ============================================================ */
.estimator-floating .asset-row-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.estimator-floating .asset-row-home .asset-cell {
  padding: 10px 6px;
  font-size: 11.5px;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg);
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
}
.estimator-floating .asset-row-home .asset-cell.active {
  background: rgba(255,122,69,0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.estimator-floating .asset-row-home .asset-cell:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lbl-soft {
  font-size: 9.5px;
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
  font-weight: 400;
  margin-left: 6px;
}
.est-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: #0A0B0E;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  transition: background .2s, transform .2s;
}
.est-cta-btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.est-cta-btn .arrow {
  transition: transform .2s;
}
.est-cta-btn:hover .arrow { transform: translateX(3px); }


/* ============================================================
   PAGE HEROES with images (utility, office, city)
   ============================================================ */
.page-hero.with-image,
.office-hero.with-image,
.city-hero.with-image {
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.page-hero-img,
.office-hero-img,
.city-hero-img {
  position: relative;
  width: 100%;
  margin: 0 0 0 0;
  border-radius: 0;
  overflow: hidden;
}
.page-hero-img img,
.office-hero-img img,
.city-hero-img img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  object-fit: cover;
  filter: brightness(0.78) saturate(0.92);
}
.page-hero-img::after,
.office-hero-img::after,
.city-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,11,14,0.35) 0%,
    rgba(10,11,14,0.0) 30%,
    rgba(10,11,14,0.0) 65%,
    rgba(10,11,14,0.85) 100%);
  pointer-events: none;
}
.page-hero.with-image .page-hero-text,
.office-hero.with-image .office-hero-text,
.city-hero.with-image .city-hero-text {
  padding: 36px 32px 44px;
  max-width: var(--max);
  margin: 0 auto;
}

/* ============================================================
   SELECT DROPDOWN — dark styling for option list
   Most modern browsers respect background/color on <option>.
   Firefox respects everything; Chrome/Safari respect bg+color.
   ============================================================ */
.qc-field select option,
.form-field select option {
  background: #16181d !important;
  color: var(--text) !important;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--sans);
}
.qc-field select option:hover,
.qc-field select option:focus,
.qc-field select option:checked,
.form-field select option:checked {
  background: rgba(255,122,69,0.18) !important;
  color: var(--accent) !important;
}
.qc-field select optgroup,
.form-field select optgroup {
  background: #0d0e12 !important;
  color: var(--accent) !important;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  padding: 8px 14px;
  font-weight: 500;
}
.qc-field select,
.form-field select {
  /* iOS / WebKit accent for native dropdown highlight */
  accent-color: var(--accent);
  color-scheme: dark;
}

/* ============================================================
   LOCATIONS CAROUSEL — replaces 4-office strip
   ============================================================ */
.locations-carousel {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
}
.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px max(20px, calc((100% - var(--max)) / 2 + 20px));
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative;
  min-height: 150px;
}
.carousel-card:hover {
  background: rgba(255,122,69,0.05);
  border-color: rgba(255,122,69,0.4);
  transform: translateY(-2px);
}
.carousel-card-state {
  background: rgba(255,122,69,0.06);
  border-color: rgba(255,122,69,0.18);
}
.carousel-card-state:hover {
  background: rgba(255,122,69,0.12);
}

.cc-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.carousel-card-state .cc-meta { color: var(--accent); }

.cc-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-top: 2px;
}

.cc-travel {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,122,69,0.12);
}
.cc-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}

.cc-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 16px;
  color: var(--text-mute);
  transition: transform .25s, color .25s;
}
.carousel-card:hover .cc-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* Carousel nav buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(17,19,24,0.92);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, color .2s;
  font-family: var(--sans);
  line-height: 1;
}
.carousel-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A0B0E;
}
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
@media (max-width: 700px) {
  .carousel-nav { display: none; }
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px 36px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  text-align: center;
}
.carousel-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(255,122,69,0.3);
  padding-bottom: 1px;
}
.carousel-link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   CENTER CONTENT — prose blocks, headings, grids, tables
   ============================================================ */

/* Center prose block on the page; keep paragraph text left-aligned for readability */
.prose {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
}
/* Center headings within prose */
.prose > h2, .prose > h3 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 18px;
}
.prose > h2:first-child, .prose > h3:first-child {
  margin-top: 0;
}

/* Center tables */
.prose table, table.examples-table {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  width: 100%;
}

/* Center city-list (Cities we serve from this office) — center the grid */
.city-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 16px auto 32px;
  max-width: 900px;
}
.city-list li {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-align: center;
  min-width: 160px;
}

/* Model lists, neighbor cards — center */
.model-list {
  max-width: 760px;
  margin: 16px auto 28px;
  padding-left: 28px;
}
.cross-grid {
  justify-content: center;
}
.neighbors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 16px auto;
}

/* Center page-hero text by default */
.page-hero-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-text .kicker {
  display: inline-block;
}
.page-hero-text h1 {
  text-align: center;
}
.page-hero-text .lede,
.page-hero-text > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   TRAVEL FEATURE — Overlay redesign (image as bg, text overlaid)
   ============================================================ */
.travel-overlay-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.travel-overlay-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,11,14,0.55) 0%,
      rgba(10,11,14,0.65) 30%,
      rgba(10,11,14,0.85) 70%,
      rgba(10,11,14,0.95) 100%),
    radial-gradient(ellipse at top right,
      rgba(10,11,14,0.4) 0%,
      rgba(10,11,14,0.7) 60%);
  pointer-events: none;
}
.travel-overlay-content {
  position: relative;
  z-index: 2;
  padding: 56px 60px 56px;
  max-width: 100%;
  color: var(--text);
}
@media (max-width: 720px) {
  .travel-overlay-content { padding: 36px 24px; }
  .travel-overlay-card { min-height: 520px; }
}
.travel-overlay-content .travel-card-h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
  font-family: var(--display);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.travel-overlay-content .travel-card-lede {
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.travel-overlay-content .travel-card-pin {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.travel-overlay-content .travel-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* 4-tier layout overlaid on image */
.travel-tiers-4-overlay {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 8px 0 28px;
}
@media (max-width: 900px) {
  .travel-tiers-4-overlay { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .travel-tiers-4-overlay { grid-template-columns: 1fr; }
}
.travel-tiers-4-overlay .tier {
  background: rgba(17,19,24,0.65);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px 18px;
  transition: border-color .25s, background .25s;
}
.travel-tiers-4-overlay .tier:hover {
  border-color: rgba(255,122,69,0.4);
  background: rgba(17,19,24,0.78);
}
.travel-tiers-4-overlay .tier-amount {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}
.travel-tiers-4-overlay .tier-amount span {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
}
.travel-tiers-4-overlay .tier-detail {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
}
.travel-tiers-4-overlay .tier-soft .tier-amount {
  color: rgba(255,255,255,0.78) !important;
}
.travel-tiers-4-overlay .tier-soft .tier-amount span {
  color: rgba(255,255,255,0.45);
}

.travel-overlay-content .travel-markets {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  margin-bottom: 24px;
}
.travel-overlay-content .travel-markets-label {
  color: var(--accent);
}
.travel-overlay-content .travel-markets-list a {
  color: rgba(255,255,255,0.85);
}
.travel-overlay-content .travel-markets-list a:hover {
  color: var(--accent);
}
.travel-overlay-content .travel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0A0B0E;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: background .2s, transform .2s;
}
.travel-overlay-content .travel-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.travel-overlay-content .travel-cta .arrow { transition: transform .2s; }
.travel-overlay-content .travel-cta:hover .arrow { transform: translateX(3px); }

/* Center the .page-hero.solo container itself (not just its contents) */
.page-hero.solo {
  margin-left: auto;
  margin-right: auto;
}
