  :root {
    --teal: #18C8F8;
    --teal-deep: #0FB6E4;
    --teal-soft: #E6F7FD;
    --ink: #1F2937;
    --ink-2: #374151;
    --muted: #6B7280;
    --muted-2: #9CA3AF;
    --line: #E5E7EB;
    --line-2: #EEF1F4;
    --bg: #FFFFFF;
    --bg-top: #F1F5F7;
    --shadow-card: 0 18px 40px -16px rgba(15,40,55,.18), 0 2px 6px rgba(15,40,55,.04);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ===== STICKY WRAPPER ===== */
  .site-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
  }

  /* ===== TOP UTILITY BAR ===== */
  .top-bar {
    background: var(--bg-top);
    color: var(--ink-2);
    font-size: 13.5px;
    padding: 11px 0;
  }
  .tb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-bar .item:first-child {
    margin-left: 0;
  }
  .top-bar .item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #2A3744;
  }
  .top-bar .item svg { color: #2A3744; flex-shrink: 0; }
  .top-bar .socials {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #2A3744;
    margin-right: 0;
  }
  .top-bar .socials a { color: #2A3744; display: inline-flex; }

  /* ===== TOP BAR VARIANT B ===== */
  .top-bar-b {
    background: var(--bg-top);
    color: var(--ink-2);
    font-size: 13.5px;
    padding: 11px 0;
  }
  .top-bar-b .tb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-bar-b .tb-left {
    display: inline-flex;
    align-items: center;
    gap: 24px;
  }
  .top-bar-b .tb-right {
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }
  .top-bar-b .item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2A3744;
    font-size: 13.5px;
  }
  .top-bar-b .item svg { color: #2A3744; flex-shrink: 0; }
  .top-bar-b .tb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 8px;
    color: #2A3744;
    font-size: 13px;
    font-weight: 400;
    transition: all .15s ease;
  }
  .top-bar-b .tb-cta:hover { color: var(--teal); }
  .tb-dropdown { position: relative; }
  .tb-dropdown-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 500; color: #2A3744;
    background: none; border: none; cursor: pointer;
    font-family: inherit; padding: 0;
  }
  .tb-dropdown-btn svg { transition: transform .2s ease; }
  .tb-dropdown:hover .tb-dropdown-btn svg { transform: rotate(180deg); }
  .tb-dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,.18);
    padding: 6px;
    z-index: 100;
  }
  .tb-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px; left: 0; right: 0;
    height: 9px;
  }
  .tb-dropdown:hover .tb-dropdown-menu { display: block; }
  .tb-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px;
    border-radius: 10px;
    color: #1F2937;
    font-size: 13.5px; font-weight: 500;
    transition: background .12s ease;
  }
  .tb-dropdown-menu a:hover { background: #F4F8F8; }
  .tb-dropdown-menu a svg { color: #6B7280; flex-shrink: 0; }
  .header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 32px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .logo-mark {
    width: 46px; height: 46px;
    color: var(--teal);
    flex-shrink: 0;
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text .name {
    font-size: 22px; font-weight: 700;
    letter-spacing: .02em;
    color: var(--teal);
  }
  .logo-text .sub {
    font-size: 12.5px; color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
  }

  .nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 12px;
    color: #1B2A4A;
    font-size: 14.5px;
    font-weight: 600;
    transition: background .15s ease;
  }
  .nav-item svg { color: #1B2A4A; }
  .nav-item:hover { background: #F4F8F8; }
  .nav-item.active {
    background: #F1F5F7;
    color: #1B2A4A;
    font-weight: 600;
  }
  .heart-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1B2A4A;
    background: #F1F5F7;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: 60px 32px 70px;
    margin: 0 10px;
    overflow: visible;
    isolation: isolate;
    min-height: 422px;
    background: #E1E2E3;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-building.png');
    background-size: cover;
    background-position: right calc(50% - 20px);
    background-repeat: no-repeat;
    z-index: -2;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  }
  .hero-fade {
    position: absolute; inset: 0;
    background: linear-gradient(95deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 28%, rgba(255,255,255,.42) 48%, rgba(255,255,255,.18) 68%, rgba(255,255,255,.05) 100%);
    z-index: -1;
  }
  .hero-photo {
    position: absolute;
    right: 0; top: 0;
    width: 62%; height: 100%;
    object-fit: cover;
    z-index: -1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  .hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--teal-deep);
    margin: 0 0 18px;
  }
  .hero h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0 0 22px;
    max-width: 640px;
    color: #1B2A33;
  }
  .hero h1 .accent { color: var(--teal); display: block; font-weight: 700; }
  .hero p.lede {
    font-size: 17px;
    color: #4B5563;
    max-width: 480px;
    line-height: 1.6;
    margin: 0 0 36px;
  }
  .cta-row {
    display: inline-flex; gap: 14px;
    margin-bottom: 70px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .2s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(47,160,160,.7);
  }
  .btn-primary:hover { background: var(--teal-deep); }
  .btn-outline-teal {
    border: 2px solid var(--teal);
    color: var(--teal-deep);
    background: #fff;
    font-weight: 600;
  }
  .btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
  }
  .btn-outline-teal:hover svg { stroke: #fff; }
  .btn-outline {
    background: #ffffff;
    color: #0E2C36;
    border: 1.5px solid #DDE4E6;
    font-weight: 700;
    box-shadow: 0 4px 18px -8px rgba(14,44,54,.12);
  }
  .btn-outline:hover {
    border-color: #18C8F8;
    color: #18C8F8;
    background: #fff;
  }
  .btn-outline:hover svg { stroke: #18C8F8; }

  .btn-nav {
    background: #F1F5F7;
    color: #1B2A33;
    font-weight: 600;
    border-radius: 12px;
    border: 1.5px solid #DDE4E6;
  }
  .btn-nav:hover { background: #E5EAED; }
  .stats {
    display: flex;
    gap: 30px;
    margin-top: 0;
    max-width: 720px;
    flex-wrap: nowrap;
  }
  .stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .stat-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
  }
  .stat-top svg { flex-shrink: 0; }
  .stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
  }
  .stat-label {
    font-size: 13.5px;
    color: var(--muted);
  }

  /* Floating feature card */
  .features-card {
    position: absolute;
    right: 25px;
    bottom: -73px;
    z-index: 10;
    width: 660px;
    background: #fff;
    border-radius: 18px;
    padding: 26px 14px;
    border: 1px solid rgba(20,40,60,.06);
    box-shadow: 0 30px 60px -20px rgba(20,40,60,.28), 0 12px 28px -10px rgba(20,40,60,.14), 0 4px 10px rgba(20,40,60,.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .feature {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
  }
  .feature + .feature::before {
    content: '';
    position: absolute; left: 0; top: 10%; bottom: 10%;
    width: 1px; background: #EEF1F4;
  }
  .feature-icon {
    color: var(--teal);
    width: 36px; height: 36px;
    margin-bottom: 14px;
  }
  img.feature-icon {
    object-fit: contain;
    display: block;
  }
  .feature-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
  }

  /* ===== TOP LISTINGS ===== */
  .listings {
    padding: 80px 32px 80px;
    background: #FFFFFF;
  }
  .listings-head {
    max-width: 1280px;
    margin: 0 auto 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--teal-soft);
    color: var(--teal-deep);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 7px 14px;
    border-radius: 999px;
  }
  .listings-head h2 {
    font-size: 44px;
    margin: 16px 0 8px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #1B2A33;
  }
  .listings-head h2 em {
    font-style: normal;
    color: var(--teal);
  }
  .listings-head .sub {
    color: var(--muted);
    font-size: 15px;
  }

  .grid-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid transparent;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
  }
  .card.is-clickable {
    cursor: pointer;
  }
  .card:hover {
    background: #fff;
    border-color: #F97316;
    box-shadow: 0 24px 54px -22px rgba(15,40,55,.32), 0 12px 28px -22px rgba(249,115,22,.5);
    transform: translateY(-4px) scale(1.02);
  }
  .card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d0d5d8;
  }
  .card-media .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.85);
    font: 600 12px ui-monospace, SFMono-Regular, monospace;
    letter-spacing: .12em;
    transition: transform .7s ease;
  }
  .card-media-link {
    position: absolute;
    inset: 0;
    z-index: 12;
    cursor: pointer;
    display: block;
  }
  .card:hover .card-media .ph {
    transform: scale(1.08);
  }
  .card-media > video.card-media-file {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    inline-size: 100%;
    block-size: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    max-inline-size: none;
    max-block-size: none;
    object-fit: cover;
    object-position: center;
    transition: transform .7s ease;
  }
  .card:hover .card-media > video.card-media-file {
    transform: scale(1.08);
  }
  .badge-new {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 14;
    pointer-events: none;
    background: #1B2A33;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    border-radius: 8px;
  }
  .badge-redus {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 14;
    pointer-events: none;
    background: #10B981;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    border-radius: 8px;
  }
  .badge-reducere {
    position: absolute;
    top: 16px; left: 110px;
    z-index: 14;
    pointer-events: none;
    background: linear-gradient(135deg, #F43F5E, #EC4899);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .badge-top1 {
    position: absolute;
    top: 16px; left: 232px;
    z-index: 14;
    pointer-events: none;
    background: #F97316;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .img-counter {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 14;
    pointer-events: none;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }
  .card-badges {
    position: absolute;
    top: 16px; left: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .card-badges .badge-new,
  .card-badges .badge-top1,
  .card-badges .badge-news,
  .card-badges .badge-reducere,
  .card-badges .badge-reco,
  .card-badges .badge-redus {
    position: static;
  }
  .badge-news {
    background: var(--teal-soft);
    color: var(--teal-deep);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .img-counter {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }
  .price-tag {
    position: absolute;
    left: 16px; bottom: 16px;
    z-index: 14;
    pointer-events: none;
    background: rgba(255,255,255,.95);
    color: #1B2A33;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 16px -6px rgba(0,0,0,.25);
  }

  .card-body { padding: 20px 22px 22px; }
  .card-title {
    font-size: 17px;
    font-weight: 600;
    color: #1B2A33;
    line-height: 1.35;
    height: 46px;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  .card:hover .card-title-link,
  .card-title-link:hover {
    color: #F97316;
  }
  .card-loc {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--muted);
    font-size: 13.5px;
    height: 19px;
    margin-bottom: 18px;
  }
  .card-loc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  .card-loc svg { color: var(--teal); flex-shrink: 0; }
  .card-loc-link:hover { color: #F97316; }
  .card-loc.is-empty { visibility: hidden; }

  .card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    margin-bottom: 18px;
  }
  .spec {
    display: inline-flex; align-items: center; gap: 9px;
    color: #374151;
    font-size: 13.5px;
  }
  .card-specs .spec:nth-child(1) { justify-self: start; }
  .card-specs .spec:nth-child(2) { justify-self: center; }
  .card-specs .spec:nth-child(3) { justify-self: end; }
  .spec svg { color: var(--teal); flex-shrink: 0; }
  .spec .lbl { line-height: 1.25; }
  .spec .lbl small {
    display: inline;
    font-size: 11.5px;
    color: var(--muted-2);
    font-weight: 400;
    margin-left: 2px;
  }

  .card-foot {
    display: flex; align-items: center; gap: 10px;
  }
  .btn-details {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-2);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .15s ease;
    cursor: pointer;
  }
  .btn-details:hover { border-color: var(--teal); color: var(--teal-deep); }
  .heart-card {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    cursor: pointer;
  }

  /* Slider arrows */
  .slider-arrows {
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 16px;
  }
  .arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 14px -8px rgba(0,0,0,.15);
    transition: all .15s ease;
  }
  .arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

  /* Photo placeholders for cards */
  .ph-warm { background: linear-gradient(135deg, #d8a574 0%, #b87c45 60%, #8a5a30 100%); }
  .ph-warm::after {
    content:'INTERIOR LIVING'; position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    color: rgba(255,255,255,.7);
    font: 600 11px ui-monospace, monospace; letter-spacing: .2em;
  }
  .ph-dark { background: linear-gradient(160deg, #4a5560 0%, #2f3a44 100%); }
  .ph-dark::after {
    content:'PORTRAIT EXTERIOR'; position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    color: rgba(255,255,255,.55);
    font: 600 11px ui-monospace, monospace; letter-spacing: .2em;
  }
  .ph-urban { background: linear-gradient(170deg, #bfc8cf 0%, #8b969f 100%); }
  .ph-urban::after {
    content:'COMPLEX REZIDENȚIAL'; position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    color: rgba(255,255,255,.7);
    font: 600 11px ui-monospace, monospace; letter-spacing: .2em;
  }

  /* Subtle window pattern overlays */
  .card-media .ph::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 14px, transparent 14px 36px),
      repeating-linear-gradient(180deg, rgba(0,0,0,.04) 0 18px, transparent 18px 44px);
    opacity: .8;
    pointer-events: none;
  }
  /* ===== WHY NICONS ===== */
  .why {
    padding: 60px 32px 70px;
    background: #F4F8F9;
  }
  .why .head { text-align: center; margin-bottom: 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .why h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1B2A33;
    letter-spacing: -.01em;
  }
  .why h2 em { color: var(--teal); font-style: normal; }
  .why .sub { color: var(--muted); font-size: 14.5px; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .why-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 28px 30px;
    background: #fff;
  }
  .why-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .why-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1B2A33;
  }
  .why-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  .pill-b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F1F5F7;
    color: #1B2A33;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 7px 14px;
    border-radius: 14px;
  }
  .pill-c {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F1F5F7;
    color: var(--teal-deep);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 7px 14px;
    border-radius: 14px;
  }
  .reco {
    padding: 30px 32px 80px;
    background: #fff;
  }
  .reco .head { text-align: center; margin-bottom: 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .reco h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1B2A33;
    letter-spacing: -.01em;
  }
  .reco h2 em { color: var(--teal); font-style: normal; }
  .reco .sub { color: var(--muted); font-size: 14.5px; }
  .reco-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto 36px;
  }
  .badge-reco {
    position: absolute; top: 16px; left: 16px;
    z-index: 14;
    pointer-events: none;
    background: #F97316;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    border-radius: 8px;
  }
  .reco .card-title { font-size: 16px; height: 44px; }
  .reco .card-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); margin-bottom: 18px; }
  .reco .spec { display: inline-flex; flex-direction: row; align-items: center; gap: 9px; flex: initial; }
  .reco .spec svg { width: 20px; height: 20px; }
  .reco .spec .val { font-size: 17px; font-weight: 700; color: #1B2A33; line-height: 1; }
  .reco .spec .lbl-sm { font-size: 12px; color: var(--muted); font-weight: 400; }

  /* VARIANTA A — soft rounded box */
  .specs-va .spec-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 4px; }

  /* VARIANTA B — minimal inline with dividers */
  .specs-vb { justify-content: space-around; }
  .specs-vb .spec { gap: 6px; position: relative; }
  .specs-vb .spec + .spec::before { content: ''; position: absolute; left: -6px; top: 6px; bottom: 6px; width: 1px; background: var(--line-2); }
  .specs-vb .spec-row { display: inline-flex; align-items: center; gap: 8px; }
  .specs-vb .spec-i { width: 22px; height: 22px; color: var(--teal); display: inline-flex; }
  .specs-vb .spec-i svg { width: 22px; height: 22px; }
  .specs-vb .val { font-size: 19px; }

  /* VARIANTA C — colored circles */
  .specs-vc .spec-circle { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
  .specs-vc .circ-teal { background: var(--teal-soft); color: var(--teal); }
  .specs-vc .circ-blue { background: #DBEAFE; color: #2563EB; }
  .specs-vc .circ-amber { background: #FEF3C7; color: #D97706; }

  /* VARIANTA D — outline ghost with icon-text inline */
  .specs-vd .spec { flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; }
  .specs-vd .spec svg { color: var(--teal); width: 22px; height: 22px; flex-shrink: 0; }
  .specs-vd .spec-text { display: flex; flex-direction: column; line-height: 1.1; }
  .specs-vd .spec-text .val { font-size: 15px; }
  .specs-vd .spec-text .lbl-sm { font-size: 11px; }
  /* VARIANTA E — IMAGE EXACT: blue filled on light-blue rounded box */
  .specs-ve .spec-icon { width: 52px; height: 52px; border-radius: 14px; background: #EBF2FA; display: flex; align-items: center; justify-content: center; color: #2563EB; margin-bottom: 8px; }
  .specs-ve .spec-icon svg { width: 22px; height: 22px; }
  .specs-ve .val { font-size: 18px; font-weight: 800; color: #0F172A; }
  .specs-ve .lbl-sm { font-size: 13px; color: #94A3B8; margin-top: 4px; }

  /* VARIANTA F — Underline accent: white pill with teal bottom border */
  .specs-vf { gap: 8px; }
  .specs-vf .spec { padding: 10px 8px 8px; border-bottom: 2px solid var(--teal); background: #fff; gap: 4px; }
  .specs-vf .spec-row { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-deep); }
  .specs-vf .spec-i { width: 18px; height: 18px; color: var(--teal); display: inline-flex; }
  .specs-vf .spec-i svg { width: 18px; height: 18px; }
  .specs-vf .val { font-size: 17px; font-weight: 800; }
  .specs-vf .lbl-sm { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

  /* VARIANTA G — Number first big with icon corner */
  .specs-vg .spec { padding: 12px 8px; background: #F8FAFC; border-radius: 12px; position: relative; gap: 2px; }
  .specs-vg .spec svg { position: absolute; top: 8px; right: 8px; width: 16px; height: 16px; color: #94A3B8; }
  .specs-vg .val { font-size: 22px; font-weight: 800; color: var(--teal-deep); line-height: 1; margin-top: 4px; }
  .specs-vg .lbl-sm { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: #64748B; }

  /* VARIANTA H — Pastel multi-color cards */
  .specs-vh .spec { padding: 10px 6px; border-radius: 12px; gap: 4px; }
  .specs-vh .spec svg { width: 22px; height: 22px; margin-bottom: 4px; }
  .specs-vh .spec.s-rooms { background: #ECFEFF; color: #0E7490; }
  .specs-vh .spec.s-bath { background: #EEF2FF; color: #4338CA; }
  .specs-vh .spec.s-area { background: #FFF1F2; color: #BE123C; }
  .specs-vh .val { font-size: 17px; font-weight: 800; }
  .specs-vh .lbl-sm { font-size: 11px; opacity: .75; font-weight: 500; }

  /* VARIANTA I — teal house+bathtub+expand on light-blue rounded box */
  .specs-vi .spec-icon { width: 52px; height: 52px; border-radius: 14px; background: #EBF4FB; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 8px; }
  .specs-vi .spec-icon svg { width: 24px; height: 24px; }
  .specs-vi .val { font-size: 18px; font-weight: 800; color: #0F172A; }
  .specs-vi .lbl-sm { font-size: 13px; color: #94A3B8; margin-top: 4px; }

  /* VARIANTA J — same as I but smaller icons */
  .card-specs.specs-vj .spec { flex-direction: column; align-items: center; text-align: center; gap: 0; }
  .specs-vj .spec-icon { width: 40px; height: 40px; border-radius: 11px; background: #EBF4FB; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 8px; }
  .specs-vj .spec-icon svg { width: 18px; height: 18px; }
  .specs-vj .val { font-size: 18px; font-weight: 800; color: #0F172A; }
  .specs-vj .lbl-sm { font-size: 13px; color: #94A3B8; margin-top: 4px; }

  .btn-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 14px 32px;
    background: var(--teal);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    box-shadow: 0 10px 24px -10px rgba(47,160,160,.6);
  }
  .btn-all:hover { background: var(--teal-deep); }
  .reco-cta { text-align: center; }

  .ph-living2 { background: linear-gradient(135deg, #c19771 0%, #8a6443 100%); }
  .ph-living2::after { content:'INTERIOR'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.7); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }
  .ph-blocks { background: linear-gradient(170deg, #6d8a9a 0%, #4a6373 100%); }
  .ph-blocks::after { content:'COMPLEX'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.7); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }
  .ph-villa { background: linear-gradient(160deg, #c0c8cf 0%, #8b97a2 100%); }
  .ph-villa::after { content:'VILA EXTERIOR'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.75); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }
  /* ===== SERVICES ===== */
  .services {
    padding: 0 32px 80px;
    background: #FFFFFF;
  }
  .services .head { text-align: center; margin-bottom: 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .services h2 {
    font-size: 38px; font-weight: 700; margin: 0 0 8px;
    color: #1B2A33; letter-spacing: -.01em;
  }
  .services .sub { color: var(--muted); font-size: 14.5px; max-width: 580px; margin: 0 auto; line-height: 1.5; }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .svc-card {
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 28px;
    background: #F9FAFB;
    text-align: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .svc-card:hover { background: var(--hover-bg, #F4FAFA); border-color: var(--hover-border, var(--teal)); transform: translateY(-3px); }
  .svc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
  }
  .svc-card h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 10px; color: #1B2A33; }
  .svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

  /* ===== ARTICLES ===== */
  .articles {
    padding: 60px 32px 80px;
    background: #F4F8F9;
  }
  .articles .head { text-align: center; margin-bottom: 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .articles h2 {
    font-size: 38px; font-weight: 700; margin: 0 0 8px;
    color: #1B2A33; letter-spacing: -.01em;
  }
  .articles .sub { color: var(--muted); font-size: 14.5px; }
  .art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1280px;
    margin: 0 auto 36px;
  }
  .art-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex; flex-direction: column;
  }
  .art-media {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #cbd5d8;
  }
  .art-media-link {
    display: block;
    width: 100%;
    height: 100%;
  }
  .art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .art-body { padding: 22px 24px 24px; }
  .art-meta {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .art-tag {
    background: var(--teal-soft);
    color: var(--teal-deep);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .04em;
  }
  .art-card h3 {
    font-size: 17px; font-weight: 600; line-height: 1.35;
    margin: 0 0 12px; color: #1B2A33;
    min-height: 48px;
  }
  .art-card p {
    font-size: 13.5px; color: var(--muted); line-height: 1.55;
    margin: 0 0 18px;
  }
  .art-link {
    color: var(--teal-deep);
    font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .articles-cta { text-align: center; }
  .btn-outline-pill {
    display: inline-flex;
    align-items: center; gap: 10px;
    padding: 13px 28px;
    border: 1.5px solid var(--teal);
    color: var(--teal-deep);
    background: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
  }
  .btn-outline-pill:hover { background: var(--teal-soft); }

  .ph-family { background: linear-gradient(160deg, #f4c990 0%, #d99466 60%, #a06a3f 100%); }
  .ph-family::after { content:'FAMILY HOUSE'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.75); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }
  .ph-modern-house { background: linear-gradient(160deg, #d6dfe5 0%, #97a5af 100%); }
  .ph-modern-house::after { content:'MODERN HOUSE'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.8); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }
  .ph-portrait { background: linear-gradient(170deg, #4f5a64 0%, #2f3940 100%); }
  .ph-portrait::after { content:'PORTRAIT'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.65); font:600 11px ui-monospace,monospace; letter-spacing:.2em; }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    padding: 60px 32px 80px;
    background: #FFFFFF;
  }
  .testimonials .head { text-align: center; margin-bottom: 40px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .testimonials h2 {
    font-size: 38px; font-weight: 700; margin: 0 0 8px;
    color: #1B2A33; letter-spacing: -.01em;
  }
  .testimonials .sub { color: var(--muted); font-size: 14.5px; }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .test-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 24px -8px rgba(15,40,55,.12), 0 1px 4px rgba(15,40,55,.06);
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .test-card:hover {
    box-shadow: 0 20px 40px -10px rgba(15,40,55,.18), 0 4px 12px rgba(15,40,55,.08);
    transform: translateY(-3px);
  }
  .stars {
    color: #F5B547;
    margin-bottom: 14px;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .stars small { color: var(--muted); font-size: 12.5px; margin-left: 6px; font-weight: 500; }
  .test-text {
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
  }
  .test-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line-2);
  }
  .test-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .test-name { font-size: 14px; font-weight: 600; color: #1B2A33; }
  .test-role { font-size: 12.5px; color: var(--muted); }

  /* ===== NEWSLETTER ===== */
  .newsletter {
    padding: 26px 32px;
    background: var(--bg-top);
  }
  .nl-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nl-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1B2A4A;
    margin-right: -8px;
  }
  .nl-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
  }
  .nl-title {
    font-size: 16px;
    font-weight: 700;
    color: #1B2A33;
    line-height: 1.3;
  }
  .nl-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
  }
  .nl-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
  }
  .nl-input {
    flex: 1;
    min-width: 160px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
  }
  .nl-input:focus { outline: 2px solid var(--teal); outline-offset: -1px; }
  .nl-check {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted);
    white-space: nowrap;
  }
  .nl-check a { color: var(--teal-deep); text-decoration: underline; }
  .nl-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px;
    background: var(--teal);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nl-btn:hover { background: var(--teal-deep); }

  /* ===== FOOTER ===== */
  .footer {
    background: #0F1F26;
    color: #C7D0D6;
    padding: 70px 32px 30px;
  }
  .ft-grid {
    max-width: 1280px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 50px;
  }
  .ft-brand .logo-mark { color: var(--teal); width: 46px; height: 46px; }
  .ft-brand .name { color: #fff; font-size: 22px; font-weight: 700; letter-spacing: .02em; }
  .ft-brand .sub { color: #97A4AB; font-size: 12.5px; margin-top: 4px; }
  .ft-brand p { color: #97A4AB; font-size: 13.5px; line-height: 1.6; margin: 20px 0 0; }
  .ft-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin: 0 0 18px; }
  .ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .ft-col li a { color: #97A4AB; font-size: 14px; }
  .ft-col li a:hover { color: var(--teal); }
  .ft-contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    color: #97A4AB; font-size: 13.5px;
    margin-bottom: 12px;
  }
  .ft-contact-row svg { color: #C7D0D6; margin-top: 2px; flex-shrink: 0; }
  .ft-socials { display: flex; gap: 12px; margin-top: 18px; }
  .ft-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: inline-flex; align-items: center; justify-content: center;
    color: #C7D0D6;
  }
  .ft-socials a:hover { background: var(--teal); color: #fff; }
  .ft-socials-mobile { display: none; }
  .ft-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between;
    color: #6E7C84; font-size: 12.5px;
  }
  .ft-bottom .legal a { color: #97A4AB; margin-left: 22px; }

  /* ===== REAL PHOTO OVERRIDE ===== */
  .card-media .ph.has-photo,
  .art-media .ph.has-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .card-media .ph.has-photo::after,
  .card-media .ph.has-photo::before,
  .art-media .ph.has-photo::after,
  .art-media .ph.has-photo::before { content: none; display: none; }

  /* ===== LEGAL PAGES (Termeni / Confidentialitate / Cookies) ===== */
  .legal-page { padding: 56px 32px 72px; background: #fff; }
  .legal-inner { max-width: 820px; margin: 0 auto; }
  .legal-page h1 { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
  .legal-updated { color: var(--muted); font-size: 13.5px; margin: 0 0 34px; }
  .legal-page h2 { font-size: 19px; font-weight: 700; margin: 30px 0 10px; }
  .legal-page p { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
  .legal-page ul { margin: 0 0 12px; padding-left: 22px; color: var(--ink-2); font-size: 15px; line-height: 1.7; }
  .legal-page li { margin-bottom: 6px; }
  .legal-page a { color: var(--teal-deep); font-weight: 500; }
  .legal-page a:hover { text-decoration: underline; }
  .legal-page code { background: var(--teal-soft); border-radius: 6px; padding: 1px 7px; font-size: 13.5px; }
  @media (max-width: 768px) {
    .legal-page { padding: 40px 20px 56px; }
    .legal-page h1 { font-size: 27px; }
  }

  /* ===== HEADER ACTIONS + MOBILE MENU ===== */
  .header-actions { display: inline-flex; align-items: center; gap: 10px; }
  .menu-btn {
    display: none;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #F1F5F7;
    color: #1B2A33;
    align-items: center; justify-content: center;
  }
  .mm-overlay {
    position: fixed; inset: 0;
    background: rgba(15,31,38,.5);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
    z-index: 998;
  }
  .mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    z-index: 999;
    transform: translateX(105%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    overflow-y: auto;
    box-shadow: -24px 0 60px rgba(15,31,38,.25);
  }
  body.menu-open .mobile-menu { transform: none; }
  body.menu-open .mm-overlay { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  .mm-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line-2);
    flex-shrink: 0;
  }
  .mm-close {
    width: 42px; height: 42px; border-radius: 50%;
    background: #F1F5F7; color: #1B2A33;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .mm-nav { display: flex; flex-direction: column; padding: 12px 14px 0; gap: 2px; }
  .mm-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 14px; border-radius: 12px;
    color: #1B2A4A; font-size: 15px; font-weight: 600;
  }
  .mm-nav a svg { color: #1B2A4A; flex-shrink: 0; }
  .mm-nav a.active, .mm-nav a:hover { background: #F1F5F7; }
  .mm-sep { height: 1px; background: var(--line-2); margin: 12px 28px; flex-shrink: 0; }
  .mm-sub { display: flex; flex-direction: column; padding: 0 14px; gap: 2px; }
  .mm-sub a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; border-radius: 12px;
    color: #374151; font-size: 14px; font-weight: 500;
  }
  .mm-sub a svg { color: #6B7280; flex-shrink: 0; }
  .mm-sub a:hover { background: #F4F8F8; }
  .mm-cta { padding: 18px 20px 6px; }
  .mm-cta .btn { width: 100%; justify-content: center; }
  .mm-contact {
    margin-top: auto;
    padding: 18px 20px 26px;
    border-top: 1px solid var(--line-2);
    display: flex; flex-direction: column; gap: 12px;
    font-size: 13.5px; color: #374151;
  }
  .mm-contact a { display: inline-flex; align-items: center; gap: 10px; }
  .mm-contact svg { color: var(--teal-deep); flex-shrink: 0; }

  /* ===== RESPONSIVE ===== */
  /* overflow-x:hidden would break position:sticky on header — clip does not */
  html, body { overflow-x: clip; }
  @supports not (overflow: clip) {
    html, body { overflow-x: visible; }
  }
  img { max-width: 100%; height: auto; }
  .site-top.is-scrolled { box-shadow: 0 6px 24px -8px rgba(15,40,55,.16); }

  @media (max-width: 1200px) {
    .reco-grid,
    .why-grid,
    .svc-grid { grid-template-columns: repeat(3, 1fr); }
    .ft-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px 32px; }
    .hero h1 { font-size: 46px; }
  }

  /* Desktop nav -> hamburger */
  @media (max-width: 1080px) {
    .nav { display: none; }
    .menu-btn { display: inline-flex; }
    .header { padding: 16px 24px 14px; }
  }

  @media (max-width: 992px) {
    .cards,
    .art-grid,
    .test-grid,
    .reco-grid,
    .why-grid,
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .nl-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .nl-form { width: 100%; }
    .hero h1 { font-size: 40px; }
  }

  @media (max-width: 768px) {
    .top-bar-b .tb-right { display: none; }
    .top-bar-b .tb-inner { padding: 0 20px; justify-content: center; }
    .top-bar-b .tb-left { gap: 8px 18px; flex-wrap: wrap; justify-content: center; }
    .header { padding: 12px 16px; }
    .logo img { height: 44px !important; }
    .heart-btn, .menu-btn { width: 44px; height: 44px; }
    .hero { margin: 0; padding: 36px 20px 44px; min-height: 0; }
    .hero-fade { background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 55%, rgba(255,255,255,.78) 100%); }
    .hero-eyebrow { margin-bottom: 12px; }
    .hero h1 { font-size: 31px; max-width: 100%; margin-bottom: 16px; }
    .hero h1 br { display: none; }
    .hero p.lede { font-size: 15px; margin-bottom: 26px; }
    .hero p.lede br { display: none; }
    .cta-row { display: flex; width: 100%; gap: 10px; margin-bottom: 40px; }
    .cta-row .btn { flex: 1; justify-content: center; padding: 14px 12px; font-size: 14px; }
    .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
    .features-card {
      position: static;
      width: 100%;
      margin-top: 34px;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px 0;
      padding: 20px 8px;
    }
    .feature:nth-child(odd)::before { display: none; }
    .listings { padding: 48px 20px 56px; }
    .listings-head { margin-bottom: 30px; }
    .listings-head h2 { font-size: 30px; }
    .why h2, .reco h2, .services h2, .articles h2, .testimonials h2 { font-size: 27px; }
    .reco, .why, .services, .articles, .testimonials { padding-left: 20px; padding-right: 20px; }
    .why, .articles, .testimonials { padding-top: 48px; padding-bottom: 56px; }
    .reco, .services { padding-bottom: 56px; }
    .footer { padding: 50px 20px 26px; }
  }

  @media (max-width: 560px) {
    .cards,
    .reco-grid,
    .why-grid,
    .svc-grid,
    .art-grid,
    .test-grid { grid-template-columns: 1fr; }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; margin-bottom: 38px; }
    .ft-brand { grid-column: 1 / -1; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .ft-brand .ft-socials { display: none; }
    .ft-col h4 { margin-bottom: 14px; }
    .ft-socials-mobile {
      display: flex;
      justify-content: center;
      gap: 16px;
      max-width: 1280px;
      margin: 0 auto 34px;
    }
    .ft-socials-mobile a { width: 44px; height: 44px; }
    .top-bar-b { font-size: 12.5px; }
    .hero h1 { font-size: 28px; }
    .cta-row { flex-direction: column; }
    .nl-check { white-space: normal; }
    .nl-btn { width: 100%; justify-content: center; }
    .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .ft-bottom .legal a { margin: 0 11px; }
  }
  .ft-bottom .legal a:hover { color: var(--teal); }
