/* =============================================================================
   GINDRA MOTORS — main.css
   Two design systems via CSS custom properties:
   Default = Gindra (red, Archivo + Hanken Grotesk)
   .theme-dfsk = DFSK (brighter red, Saira Condensed + Saira)
   ============================================================================= */

/* ── Google Fonts loaded in functions.php ── */

/* ── Design Tokens — Gindra default ── */
:root {
  --primary:      #C8102E;
  --primary-dark: #9c0c23;
  --ink:          #141414;
  --ink-soft:     #3a3a3a;
  --muted:        #6b6b6b;
  --line:         #e4e4e7;
  --paper:        #ffffff;
  --paper-2:      #f6f6f7;
  --paper-3:      #efefef;
  --dark:         #0d0d0d;
  --dark-2:       #1a1a1a;
  --dark-3:       #242424;

  --font-display: 'Archivo', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;

  --maxw:       1240px;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  18px;
  --shadow:     0 20px 50px -20px rgba(20,20,20,.24);
  --shadow-sm:  0 6px 22px -10px rgba(20,20,20,.2);
  --transition: all .3s cubic-bezier(.16,.84,.44,1);
}

/* ── DFSK theme overrides ── */
.theme-dfsk {
  --primary:      #E2231A;
  --primary-dark: #b81910;
  --font-display: 'Saira Condensed', sans-serif;
  --font-body:    'Saira', sans-serif;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.08; font-weight: 800; }
.theme-dfsk h1,.theme-dfsk h2,.theme-dfsk h3,.theme-dfsk h4 { text-transform: uppercase; letter-spacing: .02em; }
address { font-style: normal; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Section helpers ── */
.section { padding: 88px 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--dark); color: #fff; }
.section__eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .26em; font-size: .72rem; color: var(--primary); display: block; margin-bottom: 12px; }
.section--dark .section__eyebrow { color: var(--primary); }
.section__header { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section__header--flex { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; max-width: none; margin-bottom: 40px; }
.section__title { font-size: clamp(2rem, 4vw, 3rem); }
.section__title em { font-style: normal; color: var(--primary); }
.section--dark .section__title { color: #fff; }
.rule { width: 56px; height: 3px; background: var(--primary); border-radius: 2px; margin: 20px auto 0; display: block; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer; border: none; transition: var(--transition); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--primary); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--sm { padding: 10px 20px; font-size: .74rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--outlined { background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn--outlined:hover { background: rgba(255,255,255,.1); }

/* ── Topbar ── */
.topbar { background: var(--dark); color: rgba(255,255,255,.65); font-size: .8rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar__left { display: flex; align-items: center; gap: 14px; }
.topbar__hours { display: flex; align-items: center; gap: 7px; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__phone, .topbar__whatsapp { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.8); font-weight: 600; transition: color .2s; }
.topbar__phone:hover { color: #fff; }
.topbar__whatsapp { color: #25D366; }
.topbar__whatsapp:hover { color: #1ebe5c; }
.topbar__social { display: flex; align-items: center; gap: 10px; }
.topbar__social .social-link { color: rgba(255,255,255,.5); transition: color .25s; }
.topbar__social .social-link:hover { color: #fff; }

/* ── Site Header ── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transition: box-shadow .3s, transform .35s; }
.site-header--scrolled { box-shadow: 0 8px 30px -16px rgba(0,0,0,.2); }
.site-header--hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__brand { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; letter-spacing: .04em; color: var(--ink); line-height: 1; }
.site-logo__sub { font-family: var(--font-display); font-weight: 600; font-size: .68rem; letter-spacing: .2em; color: var(--primary); text-transform: uppercase; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; }
.primary-nav__list li { position: relative; }
.primary-nav__list li a { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); padding: 10px 13px; border-radius: 6px; transition: color .25s, background .25s; display: flex; align-items: center; gap: 5px; }
.primary-nav__list li a:hover, .primary-nav__list li.current-menu-item > a { color: var(--primary); }
.primary-nav__list .menu-item-has-children > a::after { content: ''; display: inline-block; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.primary-nav__list .menu-item-has-children:hover > a::after { transform: rotate(225deg) translateY(-2px); }
/* Dropdown */
.primary-nav__list .sub-menu { position: absolute; top: calc(100% + 10px); left: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .28s cubic-bezier(.16,.84,.44,1); list-style: none; }
.primary-nav__list .menu-item-has-children:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav__list .sub-menu li a { display: block; padding: 11px 16px; font-size: .78rem; color: var(--ink-soft); border-radius: 5px; }
.primary-nav__list .sub-menu li a:hover { background: var(--paper-2); color: var(--primary); padding-left: 22px; }
.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger__bar { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger--open .hamburger__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger--open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger--open .hamburger__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Off-canvas drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 199; opacity: 0; visibility: hidden; transition: .3s; }
.drawer-overlay--visible { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 90vw); background: #fff; z-index: 200; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,.84,.44,1); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-drawer--open { transform: translateX(0); }
.mobile-drawer__header { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.mobile-drawer__brand-name { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; letter-spacing: .06em; color: var(--ink); }
.drawer-close { background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; color: var(--muted); }
.drawer-close:hover { background: var(--paper-2); color: var(--ink); }
.mobile-drawer__nav { flex: 1; padding: 16px 12px; }
.mobile-drawer__list { list-style: none; }
.mobile-drawer__list li a { display: block; padding: 14px 16px; font-family: var(--font-display); font-weight: 700; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); border-radius: 8px; transition: all .2s; }
.mobile-drawer__list li a:hover { background: var(--paper-2); color: var(--primary); }
.mobile-drawer__list .sub-menu { list-style: none; padding-left: 18px; border-left: 2px solid var(--line); margin: 4px 0 4px 16px; }
.mobile-drawer__list .sub-menu li a { font-size: .8rem; font-weight: 600; padding: 10px 12px; }
.mobile-drawer__footer { padding: 20px 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.drawer-contact-btn { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.drawer-contact-btn--phone { background: var(--ink); color: #fff; }
.drawer-contact-btn--whatsapp { background: #25D366; color: #fff; }
body.drawer-open { overflow: hidden; }

/* ── Inner page hero ── */
.inner-hero { background: var(--paper-2); padding: 64px 0 56px; border-bottom: 1px solid var(--line); text-align: center; }
.theme-dfsk .inner-hero { background: var(--dark); }
.theme-dfsk .inner-hero .section__eyebrow { color: var(--primary); }
.theme-dfsk .inner-hero .inner-hero__title { color: #fff; }
.theme-dfsk .inner-hero .inner-hero__sub { color: rgba(255,255,255,.65); }
.inner-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 10px 0 0; }
.inner-hero__title em { font-style: normal; color: var(--primary); }
.inner-hero__sub { color: var(--muted); max-width: 680px; margin: 16px auto 0; font-size: 1.05rem; }
.inner-hero .rule { margin: 22px auto 0; }

/* ── Breadcrumb ── */
.breadcrumb-bar { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 14px 24px; font-size: .84rem; color: var(--muted); max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--line); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* ── Vehicle Cards ── */
.vehicle-grid { display: grid; gap: 24px; }
.vehicle-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vehicle-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.vehicle-card__link { position: absolute; inset: 0; z-index: 1; }
.vehicle-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; }
.vehicle-card__badge--new-arrival { background: var(--primary); color: #fff; }
.vehicle-card__badge--reduced { background: #16a34a; color: #fff; }
.vehicle-card__badge--sold { background: var(--muted); color: #fff; }
.vehicle-card__badge--featured { background: var(--ink); color: #fff; }
.vehicle-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); }
.vehicle-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.vehicle-card:hover .vehicle-card__img img { transform: scale(1.06); }
.vehicle-card__img-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); min-height: 200px; }
.vehicle-card__body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.vehicle-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--primary); margin-bottom: 8px; }
.vehicle-card__title { font-size: 1.05rem; font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.vehicle-card__title a { position: relative; z-index: 2; transition: color .2s; }
.vehicle-card__title a:hover { color: var(--primary); }
.vehicle-card__specs { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: auto; }
.vehicle-card__spec { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.vehicle-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.vehicle-card__stock { font-size: .76rem; color: var(--muted); }
.vehicle-card__enquire { font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 2; transition: color .2s; }
.vehicle-card:hover .vehicle-card__enquire { color: var(--primary); }

/* ── Showroom Archive ── */
.showroom-hero { background: var(--paper-2); padding: 52px 0; border-bottom: 1px solid var(--line); }
.showroom-hero__inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.showroom-hero__title { font-size: clamp(2rem, 4vw, 2.8rem); }
.showroom-hero__title em { font-style: normal; color: var(--primary); }
.showroom-hero__count { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.showroom-hero__count strong { color: var(--ink); }
.showroom-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; padding: 48px 24px 80px; max-width: var(--maxw); margin: 0 auto; }
.showroom-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.showroom-toolbar__count { font-size: .9rem; color: var(--muted); }
.showroom-toolbar__count strong { color: var(--ink); }
.showroom-toolbar__sort { display: flex; align-items: center; gap: 10px; }
.showroom-toolbar__sort-label { font-size: .8rem; color: var(--muted); font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.sort-select { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .88rem; background: var(--paper-2); }

/* ── Filter sidebar ── */
.filter-sidebar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 100px; }
.filter-sidebar__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.filter-sidebar__title { font-size: 1rem; font-family: var(--font-display); font-weight: 800; }
.filter-sidebar__clear { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.filter-group { margin-bottom: 22px; }
.filter-group__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.filter-select, .filter-input { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .88rem; background: var(--paper-2); transition: border .25s; }
.filter-select:focus, .filter-input:focus { outline: none; border-color: var(--primary); background: #fff; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip { padding: 7px 13px; border: 1px solid var(--line); border-radius: 20px; font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); transition: all .2s; cursor: pointer; }
.filter-chip:hover, .filter-chip--active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-price-range { display: flex; align-items: center; gap: 10px; }
.filter-price-range__sep { color: var(--muted); flex-shrink: 0; }
.filter-apply { margin-top: 8px; }
.no-results-block { text-align: center; padding: 80px 24px; }
.no-results-block svg { color: var(--muted); margin: 0 auto 20px; }
.no-results-block__title { font-size: 1.6rem; margin-bottom: 12px; }
.no-results-block__desc { color: var(--muted); }
.no-results-block__desc a { color: var(--primary); }
.showroom-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 56px; }
.pagination-btn { padding: 11px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: .82rem; transition: var(--transition); color: var(--ink); }
.pagination-btn:hover { border-color: var(--primary); color: var(--primary); }
.pagination-btn--active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Single Listing ── */
.listing-page { padding: 48px 24px 80px; max-width: var(--maxw); margin: 0 auto; }
.listing-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.listing-gallery { margin-bottom: 40px; }
.listing-gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--paper-3); }
.listing-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gallery-img--loading { opacity: .5; }
.listing-gallery__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; display: grid; place-items: center; cursor: pointer; transition: var(--transition); z-index: 2; }
.gallery-nav:hover { background: var(--primary); }
.gallery-nav:hover svg { stroke: #fff; }
.gallery-nav--prev { left: 14px; }
.gallery-nav--next { right: 14px; }
.gallery-nav svg { stroke: var(--ink); }
.gallery-counter { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,.65); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .76rem; padding: 5px 12px; border-radius: 20px; z-index: 2; }
.listing-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumb { border: 2px solid transparent; border-radius: 7px; overflow: hidden; cursor: pointer; background: none; padding: 0; transition: border-color .2s; }
.gallery-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-thumb--active, .gallery-thumb:hover { border-color: var(--primary); }
.listing-header { margin-bottom: 28px; }
.listing-header__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.listing-header__meta { color: var(--muted); font-size: .92rem; }
.listing-section-heading { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.listing-desc { margin-bottom: 36px; }
.listing-desc__content { color: var(--ink-soft); line-height: 1.75; }
.listing-specs { margin-bottom: 36px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.spec-row { display: contents; }
.spec-row__key { padding: 13px 16px; background: var(--paper-2); font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); }
.spec-row__val { padding: 13px 16px; font-weight: 600; border-bottom: 1px solid var(--line); }
.listing-sidebar { position: sticky; top: 100px; }
.price-card { background: var(--ink); border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; }
.price-card__header { padding: 26px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-card__amount { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: #fff; }
.price-card__label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.price-card__details { padding: 16px 24px; }
.price-card__detail { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .86rem; color: rgba(255,255,255,.6); }
.price-card__detail:last-child { border-bottom: none; }
.price-card__detail-val { font-weight: 700; color: rgba(255,255,255,.9); }
.price-card__detail-val--gold { color: var(--primary); font-size: 1.05rem; }
.price-card__detail-val--green { color: #4ade80; }
.price-card__disclaimer { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 14px; line-height: 1.5; }
.price-card__actions { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.sidebar-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 22px; }
.sidebar-form-card__heading { font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-form-card__sub { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }
.dealer-info-card { background: var(--paper-2); border-radius: var(--radius); padding: 24px; }
.dealer-info-card__heading { font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; }
.dealer-info-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.dealer-info-card__address { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.dealer-info-card__contacts { display: flex; flex-direction: column; gap: 10px; }
.dealer-info-card__contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); }
.dealer-info-card__contacts li a { color: var(--primary); }
.dealer-info-card__contacts svg { flex-shrink: 0; stroke: var(--primary); margin-top: 2px; }

/* ── GF Placeholder ── */
.gf-placeholder { border: 2px dashed var(--primary); border-radius: var(--radius-sm); background: rgba(200,16,46,.03); padding: 32px; }
.gf-placeholder__inner { text-align: center; }
.gf-placeholder__icon { color: var(--primary); margin: 0 auto 14px; }
.gf-placeholder__title { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.gf-placeholder__desc { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.gf-placeholder__code { display: block; background: var(--paper-3); padding: 10px 14px; border-radius: 6px; font-size: .82rem; color: var(--ink); margin-bottom: 12px; }
.gf-placeholder__hint { font-size: .8rem; color: var(--muted); }

/* ── Homepage ── */
.hero-section { position: relative; }
.hero-fallback { position: relative; min-height: 85vh; display: flex; align-items: center; background: linear-gradient(115deg, var(--dark) 0%, var(--dark-2) 100%); overflow: hidden; }
.hero-fallback__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%, rgba(200,16,46,.18), transparent 55%); }
.hero-fallback__content { position: relative; z-index: 2; max-width: 640px; }
.hero-fallback__eyebrow { color: var(--primary); font-family: var(--font-display); font-weight: 700; letter-spacing: .26em; text-transform: uppercase; font-size: .72rem; display: block; margin-bottom: 18px; }
.hero-fallback__title { font-size: clamp(3rem, 6vw, 5rem); color: #fff; margin-bottom: 22px; line-height: 1; }
.hero-fallback__title em { font-style: normal; color: var(--primary); }
.hero-fallback__sub { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-fallback__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.stats-bar { background: var(--ink); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-item__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: #fff; }
.stat-item__plus { color: var(--primary); }
.stat-item__label { display: block; font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 6px; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; }

/* Services section */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: var(--transition); }
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__num { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: var(--paper-3); display: block; line-height: 1; margin-bottom: 16px; }
.service-card__icon { color: var(--primary); margin-bottom: 16px; }
.service-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.service-card__desc { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.service-card__link { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }

/* Why section */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.why-item { text-align: center; padding: 32px 20px; }
.why-item__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(200,16,46,.08); border: 1.5px solid rgba(200,16,46,.2); display: grid; place-items: center; margin: 0 auto 22px; color: var(--primary); }
.why-item__title { font-size: 1.05rem; margin-bottom: 12px; }
.why-item__desc { color: var(--muted); font-size: .88rem; }

/* Featured section */
.featured-section .section__title em { color: var(--primary); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px; }
.testimonial__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial__text { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: .88rem; color: #fff; flex-shrink: 0; }
.testimonial__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: #fff; }
.testimonial__source { font-size: .76rem; color: rgba(255,255,255,.4); }

/* CTA band */
.cta-band { background: var(--primary); padding: 72px 0; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band__title { font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; margin-bottom: 10px; }
.cta-band__sub { color: rgba(255,255,255,.75); font-size: .95rem; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Brand split (homepage) */
.brand-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; text-align: center; transition: var(--transition); cursor: pointer; display: block; }
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.brand-card__img { height: 180px; object-fit: contain; margin: 0 auto 24px; }
.brand-card__logo { height: 46px; object-fit: contain; margin: 0 auto 24px; display: block; }
.brand-card__tag { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: 13px; border-radius: var(--radius-sm); display: block; transition: background .3s; }
.brand-card:hover .brand-card__tag { background: var(--primary); }

/* Welcome section */
.welcome-text { max-width: 760px; margin: 0 auto; text-align: center; color: var(--ink-soft); font-size: 1.05rem; }
.welcome-text p { margin-bottom: 18px; }

/* ── Inner pages (sell, service, test drive) ── */
.inner-page { padding: 60px 24px 80px; }
.inner-page__layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.inner-page__heading { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 24px; }
.inner-page__heading em { font-style: normal; color: var(--primary); }
.inner-page__content p { color: var(--muted); margin-bottom: 18px; }
.sell-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.sell-benefit { display: flex; gap: 18px; align-items: flex-start; }
.sell-benefit__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,16,46,.08); display: grid; place-items: center; color: var(--primary); flex-shrink: 0; }
.sell-benefit__title { font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.sell-benefit__desc { color: var(--muted); font-size: .9rem; }
.sell-requirements { background: var(--paper-2); border-radius: var(--radius-sm); padding: 24px; }
.sell-requirements__title { font-family: var(--font-display); font-weight: 800; margin-bottom: 16px; }
.sell-requirements__list { display: flex; flex-direction: column; gap: 8px; }
.sell-requirements__list li { font-size: .9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.sell-requirements__list li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.inner-page__form { position: sticky; top: 100px; }

/* ── DFSK page ── */
.dfsk-vehicle { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
.dfsk-vehicle:first-of-type { border-top: none; }
.dfsk-vehicle__img { background: var(--paper-2); border-radius: var(--radius); padding: 36px; }
.theme-dfsk .dfsk-vehicle__img { background: rgba(255,255,255,.06); }
.dfsk-vehicle__img img { max-height: 280px; width: 100%; object-fit: contain; margin: 0 auto; }
.dfsk-vehicle h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.price-from { margin: 16px 0 22px; }
.price-from__label { font-family: var(--font-display); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; color: var(--muted); }
.price-from__amount { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--ink); display: block; margin-top: 4px; }
.theme-dfsk .price-from__amount { color: #fff; }
.price-from__vat { font-size: .8rem; color: var(--muted); font-weight: 500; }
.spec-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 20px 0; }
.spec-block h4 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.spec-list li { font-size: .9rem; padding: 5px 0 5px 20px; position: relative; color: var(--ink-soft); }
.theme-dfsk .spec-list li { color: rgba(255,255,255,.75); }
.spec-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cta-stack .btn { width: 100%; justify-content: center; }
.lpg-feature { background: var(--dark); color: #fff; }
.lpg-feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lpg-feature__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-2); display: grid; place-items: center; }
.lpg-feature__img img { width: 100%; height: 100%; object-fit: cover; }
.lpg-feature h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 22px; }
.lpg-feature p { color: rgba(255,255,255,.7); margin-bottom: 16px; }
.lpg-feature .punch { color: var(--primary); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.why-dfsk { background: var(--paper-2); }
.why-dfsk__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.check-list { display: inline-block; text-align: left; }
.check-list li { font-size: .95rem; padding: 7px 0 7px 26px; position: relative; color: var(--ink-soft); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

/* ── LPG Autogas page ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; }
.info-card h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-card h4 .dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.callout { border-left: 3px solid var(--primary); background: rgba(255,255,255,.05); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0; }
.callout strong { color: var(--primary); }
.station-table { width: 100%; border-collapse: collapse; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.station-table th { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); text-align: left; padding: 13px 16px; font-family: var(--font-display); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.station-table td { padding: 11px 16px; border-top: 1px solid rgba(255,255,255,.07); font-size: .88rem; color: rgba(255,255,255,.7); }
.station-table .region td { background: rgba(255,255,255,.06); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; color: rgba(255,255,255,.9); }
.station-table .status td { font-weight: 600; font-size: .78rem; color: var(--primary); }
.cta-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cta-tile { background: var(--paper-2); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.cta-tile:hover { background: #fff; border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cta-tile h4 { font-size: 1.05rem; margin-bottom: 18px; min-height: 2.2em; display: flex; align-items: center; justify-content: center; }
.cta-tile .btn { width: 100%; justify-content: center; }

/* ── About page ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-split h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about-split p { color: var(--ink-soft); margin-bottom: 16px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vm-card h3 { font-family: var(--font-display); font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.vm-card blockquote { font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.55; }

/* Contact people cards */
.contact-people { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.contact-person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; transition: var(--transition); }
.contact-person:hover { box-shadow: var(--shadow-sm); }
.contact-person__photo { aspect-ratio: 1; overflow: hidden; background: var(--paper-3); }
.contact-person__photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-person__body { padding: 20px; }
.contact-person__name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.contact-person__role { font-size: .82rem; color: var(--primary); font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.contact-person__links { display: flex; flex-direction: column; gap: 8px; }
.contact-person__links a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.contact-person__links a:hover { color: var(--primary); }

/* ── Contact page ── */
.contact-page { padding: 56px 24px 80px; }
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; transition: var(--transition); color: var(--ink); }
.contact-method:not(.contact-method--static):hover { border-color: rgba(200,16,46,.4); transform: translateX(4px); }
.contact-method__icon { width: 44px; height: 44px; background: rgba(200,16,46,.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-method__icon--green { background: rgba(37,211,102,.1); color: #25D366; }
.contact-method__body { flex: 1; }
.contact-method__label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; font-family: var(--font-display); }
.contact-method__value { display: block; font-size: .94rem; font-weight: 600; }
.contact-method__arrow { color: var(--muted); flex-shrink: 0; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact-map iframe { display: block; }
.contact-map__link { display: block; text-align: center; padding: 12px; background: var(--paper-2); font-size: .82rem; color: var(--primary); font-weight: 700; transition: var(--transition); font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.contact-map__link:hover { background: var(--paper-3); }

/* ── News / Blog ── */
.news-hero { background: var(--paper-2); padding: 56px 0; border-bottom: 1px solid var(--line); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-feature { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; margin-bottom: 56px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card__thumb { overflow: hidden; background: var(--paper-3); }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: block; }
.blog-card__title { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); line-height: 1.3; }
.blog-feature .blog-card__title { font-size: 1.9rem; }
.blog-card__excerpt { color: var(--muted); font-size: .9rem; margin-bottom: auto; }
.blog-card__meta { display: flex; gap: 12px; margin-top: 18px; font-size: .8rem; color: var(--muted); }
.blog-card__read-more { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-top: 16px; transition: gap .25s, color .25s; }
.blog-card:hover .blog-card__read-more { gap: 14px; color: var(--primary); }

/* ── Social links (footer/topbar) ── */
.social-links { display: flex; align-items: center; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: rgba(255,255,255,.6); transition: var(--transition); }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-brand__social { margin-top: 18px; }
.footer-brand__social .social-link { width: 34px; height: 34px; }

/* ── Footer ── */
.footer-cta-band { background: var(--dark-2); padding: 0; }
.footer-cta-band__grid { display: grid; grid-template-columns: 1fr 1fr; }
.footer-cta-card { padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-right: 1px solid rgba(255,255,255,.06); }
.footer-cta-card:last-child { border-right: none; }
.footer-cta-card__label { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; color: var(--primary); margin-bottom: 8px; }
.footer-cta-card__desc { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 260px; }
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); }
.site-footer__top { padding: 64px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-brand__logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand__desc { font-size: .88rem; margin-bottom: 14px; line-height: 1.65; }
.footer-brand__address { font-size: .88rem; margin-bottom: 10px; line-height: 1.6; }
.footer-brand__phone { margin-bottom: 4px; }
.footer-brand__phone a { color: rgba(255,255,255,.8); font-weight: 600; font-size: .92rem; transition: color .2s; }
.footer-brand__phone a:hover { color: var(--primary); }
.footer-col__heading { font-family: var(--font-display); font-weight: 700; color: var(--primary); letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col__heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--primary); }
.footer-col__list li { margin-bottom: 10px; }
.footer-col__list a { font-size: .88rem; transition: color .25s; display: flex; align-items: center; gap: 8px; }
.footer-col__list a::before { content: '›'; color: var(--primary); }
.footer-col__list a:hover { color: #fff; }
.site-footer__bottom { padding: 24px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.site-footer__bottom-inner a:hover { color: var(--primary); }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 90; background: #25D366; color: #fff; border-radius: 30px; padding: 12px 18px 12px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px -6px rgba(37,211,102,.5); transition: var(--transition); }
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(37,211,102,.55); }
.whatsapp-fab__label { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

/* Scroll to top */
.scroll-top-btn { position: fixed; bottom: 76px; right: 26px; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); border: none; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; z-index: 80; color: #fff; }
.scroll-top-btn--visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--primary); }

/* ── Responsive ── */
@media (max-width:1024px) {
  .vehicle-grid--3 { grid-template-columns: repeat(2,1fr); }
  .showroom-layout { grid-template-columns: 260px 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .blog-feature { grid-template-columns: 1fr; }
}
@media (max-width:860px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .showroom-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .listing-layout, .dfsk-vehicle, .lpg-feature__grid, .info-grid, .about-split,
  .vm-grid, .contact-layout, .inner-page__layout, .brand-split, .footer-cta-band__grid,
  .spec-cols, .services-grid { grid-template-columns: 1fr; }
  .cta-tiles, .contact-people { grid-template-columns: 1fr 1fr; }
  .listing-sidebar { position: static; }
  .inner-page__form { position: static; }
  .section { padding: 64px 0; }
  .topbar__social { display: none; }
}
@media (max-width:520px) {
  .vehicle-grid--3, .blog-grid, .cta-tiles, .contact-people, .testimonials-grid { grid-template-columns: 1fr; }
  .listing-gallery__thumbs { grid-template-columns: repeat(4,1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-cta-card { flex-direction: column; align-items: flex-start; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* ── Quick links strip (homepage) ── */
.quick-links-bar { background: #fff; border-bottom: 1px solid var(--line); }
.quick-links { display: grid; grid-template-columns: repeat(6,1fr); }
.quick-link { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 30px 12px; text-align: center; border-right: 1px solid var(--line); color: var(--ink-soft); transition: var(--transition); }
.quick-link:last-child { border-right: none; }
.quick-link:hover { background: var(--paper-2); color: var(--primary); }
.quick-link__icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: var(--transition); }
.quick-link:hover .quick-link__icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-4px); }
.quick-link span:last-child { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
@media(max-width:860px){ .quick-links { grid-template-columns: repeat(3,1fr); } .quick-link:nth-child(3n){ border-right: none; } }
@media(max-width:480px){ .quick-links { grid-template-columns: repeat(2,1fr); } .quick-link:nth-child(2n){ border-right: none; } }

/* ── DFSK vehicle reversed (alternate layout) ── */
.dfsk-vehicle--reverse { direction: rtl; }
.dfsk-vehicle--reverse > * { direction: ltr; }

/* ── Info cards on light sections (LPG page) ── */
body:not(.theme-dfsk) .info-card { background: var(--paper-2); border: 1px solid var(--line); }
body:not(.theme-dfsk) .info-card h4 { color: var(--ink); }
body:not(.theme-dfsk) .info-card .spec-list li { color: var(--ink-soft); }
body:not(.theme-dfsk) .info-card .spec-list li::before { background: var(--primary); }
body:not(.theme-dfsk) .station-table { border: 1px solid var(--line); }
body:not(.theme-dfsk) .station-table th { background: var(--paper-3); color: var(--ink); }
body:not(.theme-dfsk) .station-table td { border-top: 1px solid var(--line); color: var(--ink-soft); }
body:not(.theme-dfsk) .station-table .region td { background: var(--paper-3); color: var(--ink); }
body:not(.theme-dfsk) .station-table .status td { color: var(--primary); }

/* ── Global text colour fix — ensure body text is always dark on white/light backgrounds ── */
body { color: var(--ink); }
p, li, address, blockquote, td, th, label, span, div { color: inherit; }

.section--dark, .section--dark p, .section--dark li, .section--dark span,
.section--dark address, .section--dark blockquote { color: rgba(255,255,255,.75); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5 { color: #fff; }

.site-footer, .site-footer p, .site-footer li,
.site-footer span, .site-footer address { color: rgba(255,255,255,.55); }
.site-footer h4 { color: var(--primary); }
.site-footer a { color: rgba(255,255,255,.55); }
.site-footer a:hover { color: #fff; }

/* Inner hero — light version (default pages) */
.inner-hero { color: var(--ink); }
.inner-hero .inner-hero__title { color: var(--ink); }
.inner-hero .inner-hero__sub { color: var(--muted); }

/* DFSK/LPG inner hero — dark version */
.theme-dfsk .inner-hero { color: #fff; }
.theme-dfsk .inner-hero .inner-hero__title { color: #fff; }
.theme-dfsk .inner-hero .inner-hero__sub { color: rgba(255,255,255,.65); }

/* Dark backgrounds — price card, testimonials, stats bar, featured section */
.price-card, .price-card p, .price-card span, .price-card div { color: rgba(255,255,255,.75); }
.price-card__amount { color: #fff; }
.testimonials-section, .testimonials-section p { color: rgba(255,255,255,.75); }
.stats-bar, .stats-bar span { color: rgba(255,255,255,.55); }
.stat-item__num { color: #fff; }
.featured-section, .featured-section p { color: rgba(255,255,255,.75); }

/* Cards and panels always dark text */
.vehicle-card, .vehicle-card p, .vehicle-card span { color: var(--ink); }
.vehicle-card__title a { color: var(--ink); }
.vehicle-card__spec { color: var(--muted); }
.vehicle-card__price { color: var(--primary); }
.blog-card, .blog-card p, .blog-card span { color: var(--ink); }
.service-card, .service-card p { color: var(--ink); }
.filter-sidebar, .filter-sidebar p, .filter-sidebar label { color: var(--ink); }
.sidebar-form-card, .sidebar-form-card p { color: var(--ink); }
.dealer-info-card, .dealer-info-card p, .dealer-info-card li { color: var(--muted); }
.dealer-info-card__name { color: var(--ink); }
.contact-method__value { color: var(--ink); }
.contact-method__label { color: var(--muted); }
.sell-benefit__title { color: var(--ink); }
.sell-benefit__desc { color: var(--muted); }
.sell-requirements__list li { color: var(--ink-soft); }
.inner-page__content p { color: var(--muted); }
.about-split p { color: var(--ink-soft); }
.vm-card blockquote { color: var(--ink); }
.welcome-text, .welcome-text p { color: var(--ink-soft); }
.why-item__desc { color: var(--muted); }
.why-item__title { color: var(--ink); }
.topbar { color: rgba(255,255,255,.65); }
.mobile-drawer, .mobile-drawer p { color: var(--ink); }
.footer-cta-band, .footer-cta-card { color: rgba(255,255,255,.65); }
.footer-cta-card__label { color: var(--primary); }

/* ── DFSK page — spec lists on white background ── */
.theme-dfsk .dfsk-vehicle .spec-list li { color: var(--ink-soft); }
.theme-dfsk .dfsk-vehicle .spec-block h4 { color: var(--primary); }
.theme-dfsk .dfsk-vehicle h3 { color: var(--ink); }
.theme-dfsk .dfsk-vehicle p { color: var(--ink-soft); }
.theme-dfsk .dfsk-vehicle .price-from__amount { color: var(--ink); }
.theme-dfsk .dfsk-vehicle .price-from__label { color: var(--muted); }
.theme-dfsk .dfsk-vehicle .price-from__vat { color: var(--muted); }
.theme-dfsk .dfsk-vehicle strong { color: var(--ink); }
.theme-dfsk .why-dfsk .section__title { color: var(--ink); }
.theme-dfsk .why-dfsk p { color: var(--muted); }
.theme-dfsk .why-dfsk .check-list li { color: var(--ink-soft); }
.theme-dfsk .cta-tiles .cta-tile h4 { color: var(--ink); }
.theme-dfsk .cta-tiles .cta-tile p { color: var(--muted); }

/* ── DFSK/LPG pages — fix white text on light sections ── */
/* The theme-dfsk class should only apply white text inside dark containers, not globally */
.theme-dfsk { color: var(--ink); }
.theme-dfsk p { color: var(--ink-soft); }
.theme-dfsk li { color: var(--ink-soft); }
.theme-dfsk h1, .theme-dfsk h2, .theme-dfsk h3,
.theme-dfsk h4, .theme-dfsk h5 { color: var(--ink); }

/* Restore white text inside dark sections on DFSK/LPG pages */
.theme-dfsk .section--dark,
.theme-dfsk .section--dark p,
.theme-dfsk .section--dark li,
.theme-dfsk .section--dark span { color: rgba(255,255,255,.75); }
.theme-dfsk .section--dark h1,
.theme-dfsk .section--dark h2,
.theme-dfsk .section--dark h3,
.theme-dfsk .section--dark h4 { color: #fff; }
.theme-dfsk .section--dark .section__eyebrow { color: var(--primary); }

/* Inner hero is dark on DFSK/LPG pages */
.theme-dfsk .inner-hero { background: var(--dark); }
.theme-dfsk .inner-hero h1,
.theme-dfsk .inner-hero .inner-hero__title { color: #fff; }
.theme-dfsk .inner-hero p,
.theme-dfsk .inner-hero .inner-hero__sub { color: rgba(255,255,255,.65); }
.theme-dfsk .inner-hero .section__eyebrow { color: var(--primary); }

/* LPG feature band (dark background) */
.theme-dfsk .lpg-feature,
.theme-dfsk .lpg-feature p,
.theme-dfsk .lpg-feature li { color: rgba(255,255,255,.75); }
.theme-dfsk .lpg-feature h2 { color: #fff; }
.theme-dfsk .lpg-feature .section__eyebrow { color: var(--primary); }
.theme-dfsk .lpg-feature .punch { color: var(--primary); }

/* Info cards — on dark sections stay light, on light sections stay dark */
.theme-dfsk .section--dark .info-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.theme-dfsk .section--dark .info-card h4,
.theme-dfsk .section--dark .info-card li { color: rgba(255,255,255,.8); }
.theme-dfsk .section--dark .callout { background: rgba(255,255,255,.05); }
.theme-dfsk .section--dark .station-table th { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.theme-dfsk .section--dark .station-table td { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.07); }
.theme-dfsk .section--dark .station-table .region td { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.theme-dfsk .section--dark .station-table .status td { color: var(--primary); }

/* Light sections on DFSK/LPG — force dark text */
.theme-dfsk .section:not(.section--dark),
.theme-dfsk .section--alt { color: var(--ink); }
.theme-dfsk .section:not(.section--dark) p,
.theme-dfsk .section--alt p { color: var(--ink-soft); }
.theme-dfsk .section:not(.section--dark) li,
.theme-dfsk .section--alt li { color: var(--ink-soft); }
.theme-dfsk .section:not(.section--dark) h2,
.theme-dfsk .section:not(.section--dark) h3,
.theme-dfsk .section:not(.section--dark) h4,
.theme-dfsk .section--alt h2,
.theme-dfsk .section--alt h3,
.theme-dfsk .section--alt h4 { color: var(--ink); }

/* CTA tiles (light background) */
.theme-dfsk .cta-tile { background: var(--paper-2); }
.theme-dfsk .cta-tile h4 { color: var(--ink); }

/* Why DFSK section */
.theme-dfsk .why-dfsk { background: var(--paper-2); }
.theme-dfsk .why-dfsk p { color: var(--muted); }
.theme-dfsk .why-dfsk .check-list li { color: var(--ink-soft); }
.theme-dfsk .why-dfsk .section__title { color: var(--ink); }
.theme-dfsk .why-dfsk .section__title em { color: var(--primary); }

/* Callout boxes on light pages */
.theme-dfsk .section:not(.section--dark) .callout p { color: var(--ink-soft); }

/* Numbered steps list on LPG page */
.theme-dfsk .section:not(.section--dark) ol li p { color: var(--ink-soft); }

/* ═══════════════════════════════════════════════
   DFSK RANGE PAGE — Modern layout
   ═══════════════════════════════════════════════ */

/* Hero */
.dfsk-hero { background: var(--dark); padding: 80px 0 72px; }
.dfsk-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.dfsk-hero__content { max-width: 700px; }
.dfsk-hero__title { font-size: clamp(2.6rem, 5vw, 4rem); color: #fff; margin: 12px 0 18px; line-height: 1; }
.dfsk-hero__title em { font-style: normal; color: var(--primary); }
.dfsk-hero__sub { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 580px; line-height: 1.7; }
.dfsk-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.dfsk-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.85); padding: 9px 16px; border-radius: 30px; font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.dfsk-badge svg { stroke: var(--primary); flex-shrink: 0; }

/* Vehicle cards grid */
.dfsk-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.dfsk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.dfsk-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px -20px rgba(20,20,20,.2); border-color: transparent; }
.dfsk-card__img { position: relative; aspect-ratio: 16/10; background: var(--paper-3); overflow: hidden; }
.dfsk-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.dfsk-card:hover .dfsk-card__img img { transform: scale(1.05); }
.dfsk-card__img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); text-align: center; padding: 24px; min-height: 200px; }
.dfsk-card__img-placeholder span { font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.dfsk-card__price-badge { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.85), transparent); color: #fff; padding: 32px 20px 16px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.dfsk-card__price-badge small { font-size: .72rem; font-weight: 500; opacity: .75; margin-left: 6px; }
.dfsk-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.dfsk-card__header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.dfsk-card__tagline { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.dfsk-card__title { font-size: 1.3rem; color: var(--ink); line-height: 1.1; }
.dfsk-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; flex: 1; }
.dfsk-card__spec-heading { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.dfsk-card__spec-group ul { list-style: none; }
.dfsk-card__spec-group ul li { font-size: .83rem; color: var(--ink-soft); padding: 4px 0 4px 14px; position: relative; line-height: 1.4; }
.dfsk-card__spec-group ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.dfsk-card__variants { font-size: .84rem; color: var(--muted); margin-bottom: 20px; padding: 12px 16px; background: var(--paper-2); border-radius: var(--radius-sm); }
.dfsk-card__variants strong { color: var(--ink); }
.dfsk-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* LPG band */
.dfsk-lpg-band { background: var(--dark); padding: 80px 0; }
.dfsk-lpg-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dfsk-lpg-band__content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 20px; }
.dfsk-lpg-band__content p { color: rgba(255,255,255,.7); margin-bottom: 16px; line-height: 1.7; }
.dfsk-lpg-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0 32px; }
.dfsk-lpg-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; }
.dfsk-lpg-stat__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--primary); }
.dfsk-lpg-stat__label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 4px; font-family: var(--font-display); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.dfsk-lpg-band__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.dfsk-lpg-band__img img { width: 100%; height: 100%; object-fit: cover; }
.dfsk-lpg-band__img-placeholder { width: 100%; height: 100%; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.15); border-radius: var(--radius); color: rgba(255,255,255,.25); text-align: center; padding: 32px; }
.dfsk-lpg-band__img-placeholder span { font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

/* Why DFSK cards */
.dfsk-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dfsk-why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: var(--transition); }
.dfsk-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.dfsk-why-card__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,16,46,.08); border: 1.5px solid rgba(200,16,46,.2); display: grid; place-items: center; color: var(--primary); margin-bottom: 20px; }
.dfsk-why-card__title { font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.dfsk-why-card__desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   LPG AUTOGAS PAGE — Modern layout
   ═══════════════════════════════════════════════ */

/* Stats bar */
.lpg-stats-bar { background: var(--primary); }
.lpg-stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.lpg-stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.lpg-stat-item:last-child { border-right: none; }
.lpg-stat-item__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: #fff; line-height: 1; }
.lpg-stat-item__unit { font-size: 1rem; }
.lpg-stat-item__label { display: block; font-size: .72rem; color: rgba(255,255,255,.75); margin-top: 6px; font-family: var(--font-display); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* Info cards */
.lpg-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.lpg-info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.lpg-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(200,16,46,.3); }
.lpg-info-card--warning { border-top: 3px solid var(--primary); }
.lpg-info-card__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,16,46,.08); border: 1.5px solid rgba(200,16,46,.2); display: grid; place-items: center; color: var(--primary); margin-bottom: 18px; }
.lpg-info-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 16px; }
.lpg-info-card ul { list-style: none; }
.lpg-info-card ul li { font-size: .88rem; color: var(--ink-soft); padding: 6px 0 6px 18px; position: relative; line-height: 1.5; border-bottom: 1px solid var(--line); }
.lpg-info-card ul li:last-child { border-bottom: none; }
.lpg-info-card ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.lpg-info-card ul li strong { color: var(--ink); }

/* Steps */
.lpg-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.lpg-step { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; transition: var(--transition); }
.lpg-step:hover { border-color: rgba(200,16,46,.3); box-shadow: var(--shadow-sm); }
.lpg-step__num { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--primary); flex-shrink: 0; line-height: 1; min-width: 36px; opacity: .25; }
.lpg-step__body h4 { font-size: .95rem; color: var(--ink); margin-bottom: 5px; font-family: var(--font-display); font-weight: 700; }
.lpg-step__body p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Safety cards */
.lpg-safety-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lpg-safety-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.lpg-safety-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.lpg-safety-card--fire { border-top: 3px solid var(--primary); }
.lpg-safety-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: #fff; margin-bottom: 18px; }
.lpg-safety-card h3 svg { stroke: var(--primary); flex-shrink: 0; }
.lpg-safety-card ul { list-style: none; }
.lpg-safety-card ul li { font-size: .87rem; color: rgba(255,255,255,.7); padding: 7px 0 7px 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,.06); line-height: 1.5; }
.lpg-safety-card ul li:last-child { border-bottom: none; }
.lpg-safety-card ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.lpg-safety-card ul li strong { color: #fff; }

/* Stations */
.lpg-stations { display: flex; flex-direction: column; gap: 40px; }
.lpg-province__name { font-family: var(--font-display); font-weight: 900; font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.lpg-station-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.lpg-station-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: var(--transition); }
.lpg-station-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(200,16,46,.3); }
.lpg-station-card--soon { background: var(--paper-2); opacity: .8; }
.lpg-station-card__status { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
.lpg-station-card__status--live { background: rgba(22,163,74,.1); color: #16a34a; }
.lpg-station-card__status--soon { background: rgba(200,16,46,.1); color: var(--primary); }
.lpg-station-card__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 6px; }
.lpg-station-card__location { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.lpg-station-card__location svg { flex-shrink: 0; stroke: var(--primary); }

/* ── Footer CTA band text fix ── */
.footer-cta-band { background: var(--dark-2); }
.footer-cta-card__label { color: var(--primary) !important; }
.footer-cta-card__desc { color: rgba(255,255,255,.6) !important; }

/* ── Responsive ── */
@media(max-width:1024px) {
    .dfsk-cards { grid-template-columns: repeat(2,1fr); }
    .dfsk-why-grid { grid-template-columns: repeat(2,1fr); }
    .lpg-station-cards { grid-template-columns: repeat(3,1fr); }
    .lpg-safety-grid { grid-template-columns: 1fr 1fr; }
    .lpg-safety-grid .lpg-safety-card--fire { grid-column: 1/-1; }
    .dfsk-lpg-band__inner { gap: 40px; }
}
@media(max-width:860px) {
    .dfsk-cards { grid-template-columns: 1fr; }
    .dfsk-card__specs { grid-template-columns: 1fr 1fr; }
    .dfsk-why-grid { grid-template-columns: 1fr 1fr; }
    .dfsk-lpg-band__inner { grid-template-columns: 1fr; }
    .lpg-info-grid { grid-template-columns: 1fr; }
    .lpg-steps { grid-template-columns: 1fr; }
    .lpg-safety-grid { grid-template-columns: 1fr; }
    .lpg-safety-grid .lpg-safety-card--fire { grid-column: auto; }
    .lpg-station-cards { grid-template-columns: repeat(2,1fr); }
    .lpg-stats-bar__inner { grid-template-columns: repeat(2,1fr); }
    .dfsk-lpg-stats { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:520px) {
    .dfsk-card__specs { grid-template-columns: 1fr; }
    .dfsk-why-grid { grid-template-columns: 1fr; }
    .lpg-station-cards { grid-template-columns: 1fr 1fr; }
    .dfsk-hero__badges { flex-direction: column; }
}

/* ── Logo sizing fix ── */
.site-logo img,
.site-logo .custom-logo { 
    height: 56px; 
    width: auto; 
    max-width: 220px;
    object-fit: contain;
}
.site-logo { gap: 0; }

/* Footer logo */
.footer-brand__logo img,
.footer-brand__logo .custom-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

/* ── Logo hard fix — constrain regardless of WordPress output size ── */
.site-logo img,
.site-logo .custom-logo,
.site-logo a img { 
    height: 52px !important; 
    width: auto !important;
    max-width: 200px !important;
    max-height: 52px !important;
    object-fit: contain !important;
    display: block !important;
}
.site-logo a { display: flex; align-items: center; }

/* ── Header nav text always readable — force dark text on white header ── */
.site-header { background: #fff !important; }
.primary-nav__list li a { color: var(--ink-soft) !important; }
.primary-nav__list li a:hover { color: var(--primary) !important; }
.site-header--scrolled { background: rgba(255,255,255,.98) !important; }

/* ── DFSK/LPG hero — add top padding so content clears the sticky header ── */
.dfsk-hero { padding-top: 100px; }

/* ── Topbar always readable ── */
.topbar { background: var(--dark) !important; color: rgba(255,255,255,.65) !important; }
.topbar * { color: inherit; }
.topbar__phone, .topbar__whatsapp { color: rgba(255,255,255,.8) !important; }
.topbar__whatsapp { color: #25D366 !important; }

/* ── Logo nuclear fix — target every possible WordPress custom logo wrapper ── */
.site-logo,
.site-logo a,
.site-logo .custom-logo-link { 
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    overflow: hidden !important;
}
.site-logo img,
.site-logo a img,
.site-logo figure img,
.custom-logo-link img,
.custom-logo-link .custom-logo,
.site-header .custom-logo,
.site-header .custom-logo-link img,
header img.custom-logo {
    height: 52px !important;
    width: auto !important;
    max-height: 52px !important;
    max-width: 220px !important;
    min-height: unset !important;
    min-width: unset !important;
    object-fit: contain !important;
    display: block !important;
}

/* ── DFSK/LPG hero — force all text white ── */
.dfsk-hero * { color: inherit; }
.dfsk-hero { color: #fff; }
.dfsk-hero h1,
.dfsk-hero .dfsk-hero__title { color: #fff !important; }
.dfsk-hero .dfsk-hero__title em { color: var(--primary) !important; font-style: normal; }
.dfsk-hero p,
.dfsk-hero .dfsk-hero__sub { color: rgba(255,255,255,.75) !important; }
.dfsk-hero .section__eyebrow { color: var(--primary) !important; }
.dfsk-badge { color: rgba(255,255,255,.85) !important; }

/* ── DFSK/LPG hero — ALL text white, no exceptions ── */
.dfsk-hero,
.dfsk-hero h1,
.dfsk-hero h2,
.dfsk-hero h3,
.dfsk-hero h4,
.dfsk-hero p,
.dfsk-hero span,
.dfsk-hero li,
.dfsk-hero a,
.dfsk-hero small,
.dfsk-hero label,
.dfsk-hero div { color: #fff !important; }
.dfsk-hero em { color: var(--primary) !important; font-style: normal; }
.dfsk-hero .section__eyebrow { color: var(--primary) !important; }
.dfsk-hero .dfsk-hero__sub { color: rgba(255,255,255,.75) !important; }
.dfsk-hero .dfsk-badge { color: rgba(255,255,255,.85) !important; background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.15) !important; }
.dfsk-hero .dfsk-badge svg { stroke: var(--primary) !important; }

/* ── LPG hero with optional background image ── */
.dfsk-hero--has-bg { position: relative; background-size: cover; background-position: center; }
.dfsk-hero--has-bg::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.72); z-index: 0; }
.dfsk-hero--has-bg .dfsk-hero__inner { position: relative; z-index: 1; }

/* ── LPG feature image block ── */
.lpg-feature-img-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lpg-feature-img-block img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.lpg-feature-img-block__text h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 16px; }
.lpg-feature-img-block__text p { color: var(--muted); margin-bottom: 14px; }
@media(max-width:860px){ .lpg-feature-img-block { grid-template-columns: 1fr; } }

/* ── LPG section with image layout ── */
.lpg-section-with-image { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.lpg-section-with-image--reverse { grid-template-columns: 420px 1fr; }
.lpg-section-with-image--reverse .lpg-section-with-image__img { order: -1; }
.lpg-section-with-image__img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); position: sticky; top: 100px; }
.lpg-section-with-image--dark .lpg-section-with-image__img img { box-shadow: 0 24px 48px -16px rgba(0,0,0,.5); }
@media(max-width:860px) {
    .lpg-section-with-image,
    .lpg-section-with-image--reverse { grid-template-columns: 1fr; }
    .lpg-section-with-image--reverse .lpg-section-with-image__img { order: 0; }
    .lpg-section-with-image__img img { position: static; }
}

/* ── MetaSlider fix — prevent theme styles collapsing the slider ── */
.hero-section { min-height: 0; line-height: 0; font-size: 0; }
.hero-section .metaslider { width: 100% !important; }
.hero-section .metaslider .flexslider { margin: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; background: transparent !important; }
.hero-section .metaslider img { width: 100% !important; height: auto !important; max-height: 90vh !important; object-fit: cover !important; display: block !important; }
.hero-section .metaslider .slides { margin: 0 !important; padding: 0 !important; }
.hero-section .metaslider .slides li { margin: 0 !important; padding: 0 !important; }
.hero-section .metaslider .slides img { max-height: none !important; }
/* Force slider to take full width and show properly */
.hero-section > div,
.hero-section > .metaslider,
.hero-section .sl-wrapper { width: 100% !important; max-width: 100% !important; }

/* ── MetaSlider hero height constraint ── */
.hero-section .metaslider .flexslider,
.hero-section .metaslider { max-height: 85vh !important; overflow: hidden !important; }
.hero-section .metaslider img,
.hero-section .metaslider .slides img {
    width: 100% !important;
    height: 85vh !important;
    max-height: 85vh !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* ── Brand cards — fixed layout matching reference ── */
.brand-card { display: flex; flex-direction: column; padding: 28px; }
.brand-card__img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-sm); margin-bottom: 20px; background: var(--paper-3); }
.brand-card__img-wrap img,
.brand-card__img { width: 100% !important; height: 100% !important; object-fit: contain !important; max-height: none !important; margin: 0 !important; }
.brand-card__img-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); min-height: 160px; }
.brand-card__logo-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; min-height: 60px; }
.brand-card__logo-wrap img,
.brand-card__logo { height: 46px !important; width: auto !important; object-fit: contain !important; max-width: 200px !important; }
.brand-card__logo-wrap .custom-logo-link img,
.brand-card__logo-wrap .custom-logo { height: 46px !important; width: auto !important; max-width: 200px !important; }
.brand-card__name { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; letter-spacing: .08em; color: var(--ink); }
.brand-card__tag { display: block; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: 14px; border-radius: var(--radius-sm); text-align: center; transition: background .3s; margin-top: auto; }
.brand-card:hover .brand-card__tag { background: var(--primary); }

/* ── LPG section image vertical alignment fix ── */
.lpg-section-with-image { align-items: center; }
.lpg-section-with-image__img img { position: static; top: auto; }
.lpg-section-with-image--dark .lpg-section-with-image__img img { 
    border-radius: var(--radius);
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════
   GRAVITY FORMS — tighter spacing + red button
   ═══════════════════════════════════════════════ */
.gform_wrapper .gform_body { padding: 0; }
.gform_wrapper .gfield { margin-bottom: 12px !important; padding: 0 !important; }
.gform_wrapper .gfield_label { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px !important; }
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea { border: 1.5px solid var(--line) !important; border-radius: var(--radius-sm) !important; padding: 10px 14px !important; font-family: var(--font-body) !important; font-size: .9rem !important; width: 100% !important; transition: border .25s !important; background: var(--paper-2) !important; }
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus { border-color: var(--primary) !important; outline: none !important; background: #fff !important; }
.gform_wrapper textarea { min-height: 100px !important; }
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer { margin-top: 16px !important; padding: 0 !important; }
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] { background: var(--primary) !important; color: #fff !important; border: none !important; border-radius: var(--radius-sm) !important; padding: 14px 28px !important; font-family: var(--font-display) !important; font-weight: 700 !important; font-size: .82rem !important; letter-spacing: .1em !important; text-transform: uppercase !important; cursor: pointer !important; width: 100% !important; transition: background .3s !important; }
.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover { background: var(--primary-dark) !important; }
.gform_wrapper .gfield_required { color: var(--primary) !important; }
.gform_wrapper .validation_message { color: var(--primary) !important; font-size: .78rem !important; margin-top: 4px !important; }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea { border-color: var(--primary) !important; }
.gform_wrapper .gform_validation_errors { background: rgba(200,16,46,.06) !important; border: 1px solid rgba(200,16,46,.3) !important; border-radius: var(--radius-sm) !important; padding: 14px 18px !important; margin-bottom: 16px !important; }
/* Two column fields */
.gform_wrapper .gform_fields { gap: 0 16px !important; }
.gform_wrapper .ginput_complex { gap: 10px !important; }

/* ── LPG full-width image above cards ── */
.lpg-full-image { width: 100%; margin-bottom: 36px; border-radius: var(--radius); overflow: hidden; max-height: 420px; }
.lpg-full-image img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 420px; }

/* ── Vehicle condition badge on cards ── */
.vehicle-card__badge--new { background: #1d4ed8; color: #fff; }
.vehicle-card__badge--used { background: var(--ink); color: #fff; }

/* ── Gravity Forms input height + placeholder fix ── */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"] {
    height: 46px !important;
    line-height: 46px !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { 
    color: #999 !important; 
    opacity: 1 !important;
    line-height: normal !important;
}
.gform_wrapper textarea {
    line-height: 1.5 !important;
    padding: 12px 14px !important;
    height: auto !important;
    min-height: 100px !important;
}
.gform_wrapper select {
    height: 46px !important;
    line-height: 46px !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
}

/* ── LPG full image — fix bottom crop ── */
.lpg-full-image { max-height: none !important; }
.lpg-full-image img { 
    max-height: 500px !important; 
    object-fit: cover !important;
    object-position: center top !important;
}

/* ── LPG full image — show complete image, no cropping ── */
.lpg-full-image,
.lpg-full-image img {
    max-height: none !important;
    height: auto !important;
    object-fit: fill !important;
}

/* ═══════════════════════════════════════════════
   SINGLE POST PAGE
   ═══════════════════════════════════════════════ */
.post-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.post-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.post-hero__content { position: relative; z-index: 2; padding: 56px 0; }
.post-hero__title { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin: 12px 0 16px; max-width: 800px; }
.post-hero__meta { color: rgba(255,255,255,.65); font-size: .9rem; display: flex; gap: 10px; align-items: center; }
.post-page { padding: 56px 24px 80px; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.post-content__body { font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); }
.post-content__body h2 { font-size: 1.6rem; color: var(--ink); margin: 36px 0 16px; }
.post-content__body h3 { font-size: 1.3rem; color: var(--ink); margin: 28px 0 12px; }
.post-content__body p { margin-bottom: 20px; }
.post-content__body img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; }
.post-content__body ul, .post-content__body ol { padding-left: 24px; margin-bottom: 20px; }
.post-content__body li { margin-bottom: 8px; }
.post-content__body blockquote { border-left: 3px solid var(--primary); padding: 16px 24px; background: var(--paper-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--ink); }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; padding-top: 24px; border-top: 1px solid var(--line); }
.post-tag { padding: 6px 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; font-size: .8rem; color: var(--muted); font-family: var(--font-display); font-weight: 600; transition: var(--transition); }
.post-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.post-nav__item { display: flex; flex-direction: column; gap: 6px; padding: 18px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: var(--transition); }
.post-nav__item:hover { border-color: var(--primary); }
.post-nav__item--next { text-align: right; }
.post-nav__label { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.post-nav__title { font-size: .88rem; color: var(--ink); font-weight: 600; line-height: 1.4; }
.post-sidebar { position: sticky; top: 100px; }
.post-sidebar__back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 28px; }
.post-sidebar__widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.post-sidebar__heading { font-family: var(--font-display); font-weight: 800; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.post-sidebar__recent { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); transition: var(--transition); }
.post-sidebar__recent:last-child { border-bottom: none; }
.post-sidebar__recent:hover .post-sidebar__recent-title { color: var(--primary); }
.post-sidebar__recent-img { width: 64px; height: 48px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.post-sidebar__recent-img img { width: 100%; height: 100%; object-fit: cover; }
.post-sidebar__recent-title { font-size: .86rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 4px; transition: color .2s; }
.post-sidebar__recent-date { font-size: .76rem; color: var(--muted); }
.post-sidebar__cats { list-style: none; }
.post-sidebar__cats li { border-bottom: 1px solid var(--line); }
.post-sidebar__cats li:last-child { border-bottom: none; }
.post-sidebar__cats a { display: flex; justify-content: space-between; padding: 10px 0; font-size: .88rem; color: var(--ink-soft); transition: color .2s; }
.post-sidebar__cats a:hover { color: var(--primary); }
.post-sidebar__cats span { color: var(--muted); }
.post-sidebar__cta { background: var(--ink); border-radius: var(--radius); padding: 24px; text-align: center; }
.post-sidebar__cta p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 16px; }
@media(max-width:860px) {
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .post-nav { grid-template-columns: 1fr; }
}

/* ── Single post featured image below title ── */
.post-content__featured-img { margin-bottom: 36px; border-radius: var(--radius); overflow: hidden; }
.post-content__featured-img img { width: 100%; height: auto; display: block; max-height: 520px; object-fit: cover; }

/* ── Mobile slider — show full image, no crop ── */
@media(max-width:768px) {
    .hero-section .metaslider .flexslider,
    .hero-section .metaslider { max-height: none !important; }
    .hero-section .metaslider img,
    .hero-section .metaslider .slides img {
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        width: 100% !important;
    }
}

/* ── Topbar mobile fix ── */
@media(max-width:768px) {
    .topbar__inner { flex-direction: column; height: auto; padding: 8px 16px; gap: 6px; align-items: flex-start; }
    .topbar__left { width: 100%; }
    .topbar__right { width: 100%; justify-content: space-between; }
    .topbar__hours { font-size: .72rem; }
    .topbar__phone, .topbar__whatsapp { font-size: .72rem; }
    .topbar__social { display: none; }
}

/* ── Prevent horizontal scroll on mobile ── */
html, body { overflow-x: hidden; }
.site, #page { overflow-x: hidden; }
@media(max-width:768px) {
    .container { padding: 0 16px; }
    .quick-links { grid-template-columns: repeat(3,1fr); overflow-x: hidden; }
}

/* ═══════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ═══════════════════════════════════════════════ */
.privacy-page { padding: 56px 24px 80px; }
.privacy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.privacy-toc { position: sticky; top: 100px; }
.privacy-toc__inner { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.privacy-toc__heading { font-family: var(--font-display); font-weight: 800; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.privacy-toc__list { list-style: none; }
.privacy-toc__list li { border-bottom: 1px solid var(--line); }
.privacy-toc__list li:last-child { border-bottom: none; }
.privacy-toc__list a { display: block; padding: 10px 0; font-size: .86rem; color: var(--muted); transition: color .2s; }
.privacy-toc__list a:hover { color: var(--primary); }
.privacy-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.privacy-section h3 { font-size: 1.1rem; color: var(--ink); margin: 24px 0 12px; }
.privacy-section h4 { font-size: .95rem; color: var(--ink); margin-bottom: 6px; font-family: var(--font-display); font-weight: 700; }
.privacy-section p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.privacy-section ul { list-style: none; margin-bottom: 16px; }
.privacy-section ul li { font-size: .92rem; color: var(--ink-soft); padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid var(--line); }
.privacy-section ul li:last-child { border-bottom: none; }
.privacy-section ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.privacy-section a { color: var(--primary); }
.privacy-section a:hover { text-decoration: underline; }
.privacy-popi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.privacy-popi-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: var(--transition); }
.privacy-popi-item:hover { border-color: rgba(200,16,46,.3); }
.privacy-popi-item h4 { color: var(--primary) !important; margin-bottom: 8px; }
.privacy-popi-item p { font-size: .86rem; margin: 0 !important; }
.privacy-rights-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 20px 0; }
.privacy-right { background: var(--paper-2); border-radius: var(--radius-sm); padding: 18px; border: 1px solid var(--line); }
.privacy-right h4 { color: var(--primary) !important; margin-bottom: 6px; }
.privacy-right p { font-size: .84rem; margin: 0 !important; }
.privacy-callout { background: rgba(200,16,46,.04); border: 1px solid rgba(200,16,46,.2); border-radius: var(--radius-sm); padding: 20px 24px; margin: 20px 0; }
.privacy-callout p { margin: 0 !important; font-size: .9rem; }
.privacy-contact-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; margin: 20px 0; }
.privacy-contact-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.privacy-contact-card p { margin-bottom: 6px !important; font-size: .9rem; }
@media(max-width:860px) {
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-toc { position: static; }
    .privacy-popi-grid { grid-template-columns: 1fr; }
    .privacy-rights-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:520px) {
    .privacy-rights-grid { grid-template-columns: 1fr; }
}
