/* ============================================
   DESIGN TOKENS
============================================ */
:root {
  --cream:        #F5F6F9;   /* light cool bg */
  --cream-deep:   #ECEEF3;   /* slightly deeper bg */
  --paper:        #FFFFFF;
  --pine:         #171B4A;   /* brand NAVY (primary) */
  --pine-deep:    #0E1230;   /* darkest navy */
  --pine-soft:    #2A3168;   /* lighter navy */
  --terra:        #D01D25;   /* brand RED (accent) */
  --terra-deep:   #A8141B;   /* deeper red */
  --ink:          #14152A;   /* near-navy ink */
  --ink-soft:     #3C4256;
  --muted:        #6B7185;
  --line:         #E2E5EC;
  --gold:         #E94B53;   /* bright red — accents on dark navy */

  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --container:    1240px;
  --radius:       6px;
  --radius-lg:    14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nf)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--terra); }
.serif-italic { font-style: italic; font-weight: 400; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.btn--primary { background: var(--pine); color: var(--cream); }
.btn--primary:hover { background: var(--pine-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(23,27,74,0.4); }
.btn--accent { background: var(--terra); color: #fff; }
.btn--accent:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(208,29,37,0.45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--pine); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ANNOUNCEMENT BAR */
.announce {
  background: var(--pine-deep);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
  position: relative;
  z-index: 50;
}
.announce strong { color: var(--gold); font-weight: 600; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--pine);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--pine);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.nav__links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav__links a { font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--terra); }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__phone { font-weight: 700; color: var(--pine); font-size: 0.85rem; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.nav__btn {
  background: var(--pine);
  color: var(--cream);
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.nav__btn:hover { background: var(--terra); }
.nav__toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; }
.nav__toggle span { height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1024px) { .nav__links { display: none; } .nav__toggle { display: flex; } }
@media (max-width: 640px) { .nav__cta .nav__btn { display: none; } }

/* HERO */
.hero { position: relative; padding: 90px 0 110px; overflow: hidden; }
.hero__decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__decor::before, .hero__decor::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero__decor::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #D01D25 0%, transparent 70%);
  top: -150px; right: -120px;
  opacity: 0.18;
}
.hero__decor::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #171B4A 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: 0.15;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero__copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--terra); font-weight: 800; }
.hero h1 .line2 { display: block; font-size: 0.92em; }
.hero__lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.trust__stat { display: flex; flex-direction: column; }
.trust__stat strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--pine); letter-spacing: -0.02em; }
.trust__stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 500; }

.hero__visual { position: relative; height: 580px; }
.hero__visual .card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(14,18,48,0.35);
}
.hero__visual .card--main {
  inset: 0 0 60px 60px;
  background: linear-gradient(135deg, #2A3168, #0E1230);
}
.hero__visual .card--main img, .hero__visual .card--inset img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__visual .card--inset {
  width: 240px; height: 200px;
  bottom: 0; left: 0;
  background: var(--terra);
  z-index: 2;
}
.hero__visual .badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 100px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.badge__dot { width: 8px; height: 8px; background: var(--terra); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.badge span { font-size: 0.85rem; font-weight: 600; color: var(--pine); }
.hero__price-tag {
  position: absolute;
  bottom: 100px; right: -20px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.18);
  z-index: 3;
  border-left: 4px solid var(--terra);
}
.hero__price-tag small { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 4px; }
.hero__price-tag strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--pine); }
.hero__price-tag em { display: block; font-style: normal; font-size: 0.72rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { height: 480px; max-width: 540px; margin: 0 auto; }
  .hero__visual .card--inset { width: 200px; height: 170px; }
}
@media (max-width: 560px) {
  .hero__visual { height: 380px; }
  .hero__visual .card--inset { width: 160px; height: 130px; }
  .hero__visual .card--main { inset: 0 0 50px 50px; }
  .hero__price-tag { right: 0; bottom: 80px; padding: 12px 16px; }
  .hero__price-tag strong { font-size: 1.2rem; }
  .hero__trust { gap: 24px; }
  .trust__stat strong { font-size: 1.3rem; }
}

/* TICKER */
.ticker { background: var(--pine); color: var(--cream); padding: 28px 0; overflow: hidden; }
.ticker__track { display: flex; gap: 70px; white-space: nowrap; animation: scroll 35s linear infinite; }
.ticker__item { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; display: flex; align-items: center; gap: 70px; flex-shrink: 0; }
.ticker__item span { color: var(--gold); font-weight: 700; }
.ticker__item::after { content: '✦'; color: var(--terra); font-size: 1rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* SECTION BASE */
section { position: relative; z-index: 2; }
.section { padding: 110px 0; }
.section--paper { background: var(--paper); }
.section--cream-deep { background: var(--cream-deep); }
.section--dark { background: var(--pine); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.section__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.section__head h2 .accent { color: var(--terra); font-weight: 800; }
.section--dark .section__head h2 .accent { color: var(--gold); font-weight: 800; }
.section__head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 460px; }
.section--dark .section__head p { color: rgba(237,240,248,0.75); }
@media (max-width: 880px) { .section { padding: 80px 0; } .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; } }

/* CATEGORIES */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
}
.cat:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -20px rgba(23,27,74,0.25); border-color: var(--pine); }
.cat__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--pine);
  transition: background 0.3s, color 0.3s;
}
.cat:hover .cat__icon { background: var(--pine); color: var(--cream); }
.cat__icon svg { width: 28px; height: 28px; }
.cat h3 { font-size: 1.45rem; margin-bottom: 10px; }
.cat p { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; line-height: 1.55; }
.cat__link {
  font-size: 0.85rem; font-weight: 600; color: var(--pine);
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.cat__link::after { content: '→'; transition: transform 0.25s; }
.cat:hover .cat__link::after { transform: translateX(4px); }
.cat--featured { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.cat--featured h3 { color: var(--cream); }
.cat--featured p { color: rgba(237,240,248,0.72); }
.cat--featured .cat__icon { background: var(--terra); color: #fff; }
.cat--featured .cat__link { color: var(--gold); }
.cat--featured .ribbon {
  position: absolute; top: 18px; right: 18px;
  background: var(--terra); color: #fff;
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700;
  padding: 5px 10px; border-radius: 100px;
}
@media (max-width: 1024px) { .cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cats { grid-template-columns: 1fr; } }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery__filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.filter {
  padding: 9px 18px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter:hover { border-color: var(--pine); color: var(--pine); }
.filter.is-active { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.filter__count { font-size: 0.7rem; margin-left: 6px; opacity: 0.6; font-weight: 600; }

.home-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.home-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -20px rgba(23,27,74,0.22); }
.home-card__media { position: relative; aspect-ratio: 4/3; background: var(--cream-deep); overflow: hidden; }
.home-card__media img, .home-card__media video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.home-card:hover .home-card__media img { transform: scale(1.05); }

.home-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pine-soft) 0%, var(--pine) 100%);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  padding: 20px;
  position: relative;
}
.home-card__placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10 70 L30 50 L50 65 L70 40 L90 60 L90 90 L10 90 Z' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='75' cy='25' r='8' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  background-size: 200px;
  background-position: center;
  background-repeat: no-repeat;
}
.home-card__placeholder span { position: relative; z-index: 2; }

.home-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--cream); color: var(--pine);
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
  z-index: 2;
}
.home-card__tag--repo { background: var(--terra); color: #fff; }
.home-card__tag--new { background: var(--pine); color: var(--cream); }
.home-card__video-icon {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(26,26,26,0.7);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.home-card__video-icon svg { width: 16px; height: 16px; color: #fff; }
.home-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.home-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 4px; color: var(--ink); }
.home-card__sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.home-card__specs {
  display: flex; gap: 18px;
  font-size: 0.85rem; color: var(--ink-soft);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.home-card__specs span { display: flex; align-items: center; gap: 5px; font-weight: 500; }
.home-card__specs strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--pine); }
.home-card__footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.home-card__price-block small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.home-card__price { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--pine); letter-spacing: -0.02em; line-height: 1; }
.home-card__price-was { text-decoration: line-through; color: var(--muted); font-family: var(--font-display); font-size: 0.95rem; margin-right: 6px; }
.home-card__cta {
  background: var(--ink); color: var(--cream);
  padding: 10px 16px; font-size: 0.8rem; font-weight: 600;
  border-radius: var(--radius);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s;
}
.home-card__cta:hover { background: var(--terra); }
.gallery__more { margin-top: 50px; text-align: center; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr; } }

/* REPOS SPOTLIGHT */
.repos { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.repos__visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2A3168, #0E1230);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4);
}
.repos__visual img { width: 100%; height: 100%; object-fit: cover; }
.repos__stamp {
  position: absolute; top: 30px; left: 30px;
  background: var(--terra); color: #fff;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  border-radius: 100px; z-index: 2;
}
.repos__discount {
  position: absolute; bottom: 30px; right: 30px;
  background: var(--cream); border-radius: 50%;
  width: 130px; height: 130px;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  z-index: 2;
  animation: spin-slow 24s linear infinite;
}
.repos__discount strong { font-family: var(--font-display); font-size: 2rem; color: var(--terra); font-style: italic; display: block; line-height: 1; }
.repos__discount span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); font-weight: 600; margin-top: 4px; display: block; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.repos__copy h2 { margin-bottom: 24px; }
.repos__copy h2 .accent { color: #fff; font-weight: 800; }
.repos__copy > p { color: rgba(237,240,248,0.78); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.65; }
.repos__list { list-style: none; margin-bottom: 38px; }
.repos__list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(237,240,248,0.12);
  font-size: 0.95rem; color: rgba(237,240,248,0.9);
}
.repos__list li:last-child { border-bottom: none; }
.repos__list strong { color: var(--cream); font-weight: 600; font-family: var(--font-display); font-size: 1.05rem; display: block; margin-bottom: 2px; }
.repos__check {
  flex-shrink: 0;
  min-width: 22px;
  max-width: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  overflow: hidden;
}
.repos__check svg {
  display: block;
  width: 11px !important;
  height: 11px !important;
  min-width: 11px;
  max-width: 11px;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 900px) { .repos { grid-template-columns: 1fr; gap: 50px; } .repos__visual { max-width: 480px; margin: 0 auto; } }

/* FINANCING */
.finance { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.finance h2 .accent { color: var(--terra); font-weight: 800; }
.finance__copy > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.65; }
.finance__paths { display: grid; gap: 16px; margin-bottom: 32px; }
.finance__path {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color 0.25s, transform 0.25s;
}
.finance__path:hover { border-color: var(--terra); transform: translateX(4px); }
.finance__path-num {
  font-family: var(--font-display); font-size: 1.6rem;
  font-style: italic; color: var(--terra);
  width: 44px; height: 44px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 500;
}
.finance__path h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 3px; color: var(--ink); }
.finance__path p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* CALCULATOR */
.calc {
  background: var(--pine); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  position: sticky; top: 100px;
  box-shadow: 0 30px 60px -20px rgba(23,27,74,0.35);
}
.calc h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 4px; }
.calc__sub { color: rgba(237,240,248,0.7); font-size: 0.88rem; margin-bottom: 30px; }
.calc__field { margin-bottom: 22px; }
.calc__label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc__label span:first-child { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: rgba(237,240,248,0.85); }
.calc__label span:last-child { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--gold); }
.calc__field input[type=range] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; background: rgba(237,240,248,0.2);
  border-radius: 2px; outline: none;
}
.calc__field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--terra);
  border: 3px solid var(--cream);
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.calc__field input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--terra);
  border: 3px solid var(--cream);
  border-radius: 50%; cursor: pointer;
}
.calc__result { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(237,240,248,0.15); text-align: center; }
.calc__result small { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(237,240,248,0.7); font-weight: 600; }
.calc__result strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 8px 0 4px;
  font-feature-settings: 'tnum';
}
.calc__result em { display: block; font-style: normal; font-size: 0.78rem; color: rgba(237,240,248,0.6); margin-bottom: 22px; }
.calc__cta {
  display: block; width: 100%;
  background: var(--terra); color: #fff;
  padding: 16px; font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem; letter-spacing: 0.02em;
  transition: background 0.25s;
}
.calc__cta:hover { background: var(--terra-deep); }
.calc__note { font-size: 0.72rem; color: rgba(237,240,248,0.55); text-align: center; margin-top: 14px; line-height: 1.5; }
@media (max-width: 980px) { .finance { grid-template-columns: 1fr; gap: 50px; } .calc { position: static; } }

/* PROCESS */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process::before {
  content: ''; position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 14px);
}
.step { text-align: center; position: relative; z-index: 2; }
.step__num {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--line);
  margin: 0 auto 22px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--terra);
  transition: all 0.3s;
}
.step:hover .step__num { background: var(--terra); color: #fff; border-color: var(--terra); transform: scale(1.08); }
.step h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; font-weight: 500; }
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; max-width: 240px; margin: 0 auto; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); gap: 40px; } .process::before { display: none; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* WHY US */
.whyus { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card--big {
  background: var(--terra); color: #fff;
  grid-row: span 2;
  border: none;
}
.why-card--big h3 { color: #fff; font-size: 2rem; }
.why-card--big p { color: rgba(255,255,255,0.92); }
.why-card--big, .why-card--big h3, .why-card--big h4, .why-card--big p, .why-card--big span { color: #fff !important; }
.why-card--big::before {
  content: '"'; position: absolute;
  top: -40px; right: 20px;
  font-family: var(--font-display);
  font-size: 14rem; line-height: 1;
  color: rgba(255,255,255,0.1);
  font-weight: 700;
}
.why-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.why-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.why-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--pine);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card--big .why-card__icon { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width: 880px) { .whyus { grid-template-columns: 1fr 1fr; } .why-card--big { grid-row: span 1; grid-column: span 2; } }
@media (max-width: 540px) { .whyus { grid-template-columns: 1fr; } .why-card--big { grid-column: span 1; } }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.testi__stars { color: var(--terra); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi__quote {
  font-family: var(--font-display);
  font-size: 1.15rem; line-height: 1.5;
  font-weight: 400; color: var(--ink);
  margin-bottom: 24px; flex: 1;
  letter-spacing: -0.01em;
}
.testi__author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pine); color: var(--cream);
  display: grid; place-items: center;
  font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-display);
}
.testi__name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.testi__loc { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink); cursor: pointer;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--terra); }
.faq__plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0; margin-left: 18px;
  transition: all 0.25s; position: relative;
}
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; }
.faq__plus::before { width: 12px; height: 1.5px; }
.faq__plus::after { width: 1.5px; height: 12px; transition: transform 0.25s; }
.faq__item.is-open .faq__plus { background: var(--terra); border-color: var(--terra); color: #fff; }
.faq__item.is-open .faq__plus::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__a-inner { padding-bottom: 26px; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; max-width: 90%; }
.faq__item.is-open .faq__a { max-height: 400px; }

/* CTA / CONTACT */
.cta { background: var(--pine); color: var(--cream); position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(208,29,37,0.25) 0%, transparent 65%);
  top: -200px; right: -200px;
  border-radius: 50%; filter: blur(40px);
}
.cta__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; z-index: 2; overflow: hidden; }
.cta__copy h2 { color: var(--cream); margin-bottom: 22px; }
.cta__copy h2 .accent { color: #fff; font-weight: 800; }
.cta__copy > p { color: rgba(237,240,248,0.78); font-size: 1.1rem; line-height: 1.65; margin-bottom: 38px; }
.cta__info { display: grid; gap: 24px; margin-top: 28px; }
.cta__info-row { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; }
.cta__info-row .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(237,240,248,0.1);
  display: grid; place-items: center;
  color: var(--gold);
}
.cta__info-row .icon svg { width: 20px; height: 20px; }
.cta__info-row small { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(237,240,248,0.6); font-weight: 600; }
.cta__info-row strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--cream); }

.form { background: var(--cream); color: var(--ink); border-radius: var(--radius-lg); padding: 44px 40px; box-sizing: border-box; max-width: 100%; overflow: hidden; }
.form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 30px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: span 2; }
.form__group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.form__group input, .form__group select, .form__group textarea {
  font-family: inherit; font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--terra); }
.form__group textarea { resize: vertical; min-height: 100px; }
.form__submit {
  width: 100%;
  background: var(--pine); color: var(--cream);
  padding: 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 6px;
  transition: background 0.25s, transform 0.25s;
}
.form__submit:hover { background: var(--terra); transform: translateY(-2px); }
.form__note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 14px; }
@media (max-width: 900px) { .cta__inner { grid-template-columns: 1fr; gap: 50px; } }
@media (max-width: 540px) { .form { padding: 32px 24px; } .form__grid { grid-template-columns: 1fr; } .form__group--full { grid-column: span 1; } }

/* FOOTER */
.footer { background: var(--pine-deep); color: rgba(237,240,248,0.8); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(237,240,248,0.12); }
.footer .logo { color: var(--cream); margin-bottom: 20px; }
.footer .logo__mark { background: var(--cream); color: var(--pine); }
.footer p { font-size: 0.92rem; line-height: 1.65; margin-bottom: 18px; }
.footer h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--cream); margin-bottom: 18px; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { font-size: 0.92rem; color: rgba(237,240,248,0.7); transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(237,240,248,0.2);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.footer__social a:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.82rem; color: rgba(237,240,248,0.5); flex-wrap: wrap; gap: 14px; }
.footer__bottom a:hover { color: var(--gold); }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; gap: 36px; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   LOGO IMAGES (real brand logos)
============================================ */
.logo__img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 640px) { .logo__img { height: 42px; } }
@media (max-width: 380px) { .logo__img { height: 36px; } }

.footer__logo img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

/* Ghost badge watermark behind hero */
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) { .hero__watermark { display: none; } }
@media (max-width: 980px) { .hero__visual .badge, .hero__tagline-tag { display: none; } }

/* Subtle star accent used in section labels (Texas flair) */
.eyebrow.star::after {
  content: '★';
  color: var(--terra);
  margin-left: 4px;
  font-size: 0.85em;
}

/* ============================================
   CARD — no-price layout tweaks
============================================ */
.home-card__avail {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pine);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.home-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ============================================
   RENTER SECTION
============================================ */
.renter {
  background: var(--pine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.renter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nf)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.renter__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.renter__copy .eyebrow { color: var(--gold); }
.renter__copy .eyebrow::before { background: var(--gold); }
.renter__copy h2 {
  color: var(--cream);
  margin-top: 18px;
  margin-bottom: 24px;
}
.renter__copy h2 .accent { color: var(--gold); font-weight: 800; }
.renter__copy > p {
  color: rgba(237,240,248,0.82);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.renter__reasons {
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  gap: 18px;
}
.renter__reasons li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(237,240,248,0.9);
  font-size: 1rem;
  line-height: 1.55;
}
.renter__reasons li strong {
  display: block;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1.02rem;
}
.renter__check {
  flex-shrink: 0;
  min-width: 26px;
  max-width: 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  overflow: hidden;
}
.renter__check svg {
  display: block;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px;
  max-width: 12px;
  color: #fff;
  flex-shrink: 0;
}

/* No credit badge */
.no-credit {
  background: var(--terra);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}
.no-credit::before {
  content: '★';
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
}
.no-credit::after {
  content: '★';
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
}
.no-credit h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.no-credit p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.no-credit .btn--light {
  background: #fff;
  color: var(--terra-deep);
  font-weight: 800;
}
.no-credit .btn--light:hover {
  background: var(--cream);
}

/* Renter visual panel */
.renter__visual {
  display: grid;
  gap: 18px;
  position: relative;
}
.renter__quote {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.renter__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--terra);
  position: absolute;
  top: 12px;
  left: 22px;
  opacity: 0.6;
}
.renter__quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: -0.015em;
  padding-top: 32px;
}
.renter__quote footer {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(237,240,248,0.65);
}

@media (max-width: 960px) {
  .renter__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================
   TDHCA / CREDENTIALING
============================================ */
.tdhca {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(237,240,248,0.15);
  margin-top: 40px;
}
.tdhca a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.tdhca a:hover { opacity: 0.85; }
.tdhca__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tdhca__seal {
  min-width: 52px;
  max-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.tdhca__seal svg {
  display: block;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  max-width: 26px;
  color: var(--pine);
  flex-shrink: 0;
}
.tdhca__text { text-align: left; }
.tdhca__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.tdhca__text em {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  color: rgba(237,240,248,0.7);
  margin-top: 2px;
}
.tdhca__license {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,240,248,0.55);
  font-weight: 600;
}

/* ============================================
   GOOGLE MAP EMBED
============================================ */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--line);
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   CONTACT SECTION — hours grid
============================================ */
.hours {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(237,240,248,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(237,240,248,0.1);
}
.hours__row:last-child { border-bottom: none; }
.hours__row:nth-child(odd) { background: rgba(237,240,248,0.06); }
.hours__day { color: rgba(237,240,248,0.75); font-weight: 500; white-space: nowrap; }
.hours__time { font-weight: 700; color: var(--cream); white-space: nowrap; }
.hours__time.special { color: var(--gold); }

/* Hero tagline tag (replaces price-tag) */
.hero__tagline-tag {
  position: absolute;
  bottom: 100px;
  right: -20px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.18);
  z-index: 3;
  border-left: 4px solid var(--terra);
}
.hero__tagline-tag small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero__tagline-tag strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pine);
  font-weight: 800;
  display: block;
  letter-spacing: -0.01em;
}
.hero__tagline-tag em {
  display: block;
  font-style: normal;
  font-size: 1rem;
  color: var(--terra);
  font-weight: 700;
  margin-top: 1px;
}
@media (max-width: 560px) {
  .hero__tagline-tag { right: 0; bottom: 80px; padding: 12px 16px; }
  .hero__tagline-tag strong { font-size: 1.1rem; }
}

/* ============================================
   CONSOLIDATED RESPONSIVE FIXES
   Mobile-first corrections for all sections
============================================ */

/* Renter section list items — ensure check circles never expand */
.renter__reasons li {
  align-items: flex-start !important;
}
.renter__reasons li > .renter__check {
  flex: 0 0 26px !important;
  width: 26px !important;
  height: 26px !important;
}

/* Repos list items — same fix */
.repos__list li > .repos__check {
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
}

/* TDHCA badge — constrain on all screen sizes */
.tdhca__badge {
  flex-wrap: nowrap;
  max-width: 100%;
}
.tdhca__badge .tdhca__seal {
  flex: 0 0 52px !important;
}

/* ---- TABLET 1024px ---- */
@media (max-width: 1024px) {
  .hero__price-tag { right: 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ---- TABLET 900px ---- */
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .renter__inner { grid-template-columns: 1fr !important; gap: 44px; }
  .renter__visual { display: grid; gap: 18px; }
  .repos { grid-template-columns: 1fr !important; gap: 44px; }
  .repos__visual { max-width: 460px; margin: 0 auto; }
  .finance { grid-template-columns: 1fr !important; gap: 44px; }
  .process { grid-template-columns: repeat(2, 1fr) !important; gap: 36px; }
  .process::before { display: none; }
  .testimonials { grid-template-columns: 1fr !important; }
  .whyus { grid-template-columns: 1fr 1fr !important; }
  .why-card--big { grid-row: span 1 !important; grid-column: 1 / -1 !important; }
}

/* ---- MOBILE 640px ---- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .hero__grid { gap: 36px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__lede { font-size: 1rem; }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { padding: 14px 20px; font-size: 0.9rem; }
  .hero__trust { gap: 20px; }
  .trust__stat strong { font-size: 1.25rem; }
  .hero__visual { height: 340px; max-width: 100%; }
  .hero__visual .card--main { inset: 0 0 48px 48px; }
  .hero__visual .card--inset { width: 140px; height: 120px; }
  .hero__tagline-tag { right: 0; bottom: 70px; padding: 12px 14px; }
  .hero__tagline-tag strong { font-size: 1rem; }
  .hero__tagline-tag em { font-size: 0.85rem; }

  /* Section headings */
  .section__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Ticker */
  .ticker__item { font-size: 1.15rem; gap: 40px; }

  /* Categories */
  .cats { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .cat { padding: 22px 18px 20px; }
  .cat h3 { font-size: 1.15rem; }
  .cat p { font-size: 0.82rem; display: none; }
  .cat__icon { width: 44px; height: 44px; margin-bottom: 16px; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr !important; }
  .gallery__filters { gap: 8px; }
  .filter { padding: 8px 14px; font-size: 0.8rem; }

  /* Renter */
  .renter__quote p { font-size: 1.1rem; }
  .no-credit h3 { font-size: 1.6rem; }
  .renter__reasons li { font-size: 0.92rem; }

  /* Repos */
  .repos__visual { max-width: 100%; aspect-ratio: 4/3; }
  .repos__discount { width: 100px; height: 100px; }
  .repos__discount strong { font-size: 1.5rem; }

  /* Process */
  .process { grid-template-columns: 1fr !important; gap: 32px; }
  .step__num { width: 62px; height: 62px; font-size: 1.6rem; }

  /* Why us */
  .whyus { grid-template-columns: 1fr !important; }
  .why-card--big { grid-column: span 1 !important; }
  .why-card--big h3 { font-size: 1.5rem; }

  /* FAQ */
  .faq__q { font-size: 1.05rem; }

  /* Contact form */
  .form { padding: 30px 22px; }
  .form__grid { grid-template-columns: 1fr; }
  .form__group--full { grid-column: span 1; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr !important; gap: 32px; }
  .footer__logo img { height: 44px; }

  /* TDHCA */
  .tdhca__badge { padding: 14px 18px; gap: 12px; }
  .tdhca__seal { min-width: 42px !important; max-width: 42px !important; width: 42px !important; height: 42px !important; }
  .tdhca__text strong { font-size: 0.82rem; }
  .tdhca__text em { font-size: 0.7rem; }

  /* Hours */
  .hours { max-width: 100%; }
}

/* ---- VERY SMALL 400px ---- */
@media (max-width: 400px) {
  .cats { grid-template-columns: 1fr !important; }
  .hero__visual .card--main { inset: 0 0 44px 44px; }
  .hero__visual .card--inset { width: 120px; height: 100px; }
}

/* ============================================
   FOOTER CONTACT ROWS (social + phone + address)
============================================ */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(237,240,248,0.75);
  transition: color 0.2s;
  line-height: 1.45;
}
.footer__contact-row:hover { color: var(--gold); }
.footer__contact-row svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact-row span { word-break: break-word; }

/* TDHCA logo image — the real uploaded badge */
.tdhca__img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  /* Slight light bg so the dark text in the badge is visible on navy */
  background: rgba(255,255,255,0.95);
  padding: 8px 12px;
  border-radius: 8px;
}
.tdhca__badge {
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .tdhca__img { max-width: 220px; }
}

/* ============================================
   NAV PHONE — always show number on all sizes
============================================ */
.nav__phone {
  font-weight: 700;
  color: var(--pine);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .nav__phone { font-size: 0.8rem; }
  .nav__phone svg { width: 12px; height: 12px; }
}

/* Gallery card — "Call for pricing" links to tel: */
.home-card__call {
  font-size: 0.78rem;
  color: var(--terra);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  text-decoration: none;
}
.home-card__call:hover { color: var(--terra-deep); }

/* ============================================
   TARGETED FIXES — v6 round
============================================ */

/* 1. Remove phone from nav on mobile */
@media (max-width: 640px) {
  .nav__phone { display: none !important; }
}

/* 2. Hero — reduce top padding significantly to close gap */
.hero { padding: 48px 0 80px !important; }
@media (max-width: 640px) {
  .hero { padding: 28px 0 56px !important; }
  .hero__grid { gap: 28px !important; }
}

/* 3. Announce bar — tighter */
.announce {
  font-size: 0.78rem;
  padding: 8px 16px;
}

/* 4. Nav — tighter */
.nav__inner { padding: 14px 0 !important; }

/* 5. Map — fully responsive, no fixed margins */
.map-section {
  margin-top: 50px;
}
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 50%; /* 2:1 ratio on desktop */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(237,240,248,0.2);
}
@media (max-width: 640px) {
  .map-embed { padding-bottom: 70%; } /* taller on mobile */
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}
.map-link {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
}
.map-link a {
  color: var(--gold);
  font-weight: 600;
}
.map-link a:hover { color: #fff; }

/* 6. Remove horizontal rules before TDHCA */
.tdhca {
  padding-top: 30px !important;
  margin-top: 20px !important;
  border-top: none !important;
}

/* 7. Footer bottom — single line, no privacy links */
.footer__bottom {
  justify-content: center !important;
  text-align: center;
}

/* 8. Footer contacts email row hover */
.footer__contacts a[data-email-href]:hover { color: var(--gold); }

/* 9. Make phone + email + location rows in cta__info all cursor:pointer */
.cta__info-row { cursor: pointer; }
.cta__info-row:hover .icon { background: rgba(237,240,248,0.2); }

/* Remove divider line between footer content and TDHCA */
.footer__top {
  border-bottom: none !important;
  padding-bottom: 36px !important;
}
/* The TDHCA section already has no border-top from v6 fix,
   but let's be explicit */
.tdhca {
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 24px !important;
}
