/* ==========================================================
   Platinum Collection LLC — Luxury Redefined
   Black / charcoal / silver / platinum design system
   ========================================================== */

:root {
  --black: #0a0a0b;
  --charcoal: #16171a;
  --charcoal-2: #1f2126;
  --graphite: #2a2d33;
  --silver: #c8cbd2;
  --platinum: #e6e8ec;
  --white: #ffffff;
  --accent: #b8bfc9;          /* platinum sheen */
  --accent-bright: #dfe3e9;
  --text: #23252a;
  --text-soft: #5b5f68;
  --line: #e3e5e9;
  --radius: 10px;
  --shadow: 0 10px 40px rgba(10, 10, 11, 0.10);
  --shadow-sm: 0 4px 16px rgba(10, 10, 11, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 1.7rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #2a2d33 0%, #0a0a0b 100%);
  color: var(--platinum);
  border-color: #3a3d44;
}
.btn-primary:hover { background: var(--black); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--black); border-color: currentColor; }
.btn-outline:hover { background: var(--black); color: var(--platinum); border-color: var(--black); }
.btn-ghost { background: transparent; color: inherit; border-color: rgba(140, 145, 155, 0.5); }
.btn-ghost:hover { border-color: currentColor; }
.btn-danger { background: #8c1d1d; color: #fff; border-color: #8c1d1d; }
.btn-danger:hover { background: #6d1414; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.8rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Topbar (white band) ---------- */
.topbar { background: #fff; color: var(--text-soft); font-size: 0.82rem; letter-spacing: 0.05em; border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; flex-wrap: wrap; }
.topbar a { color: var(--text); text-decoration: none; }
.topbar a:hover { color: var(--black); }

/* ---------- Header (black band) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--black);
  border-bottom: 1px solid #26282d;
}
@media (min-width: 961px) {
  .site-header { background: rgba(10, 10, 11, 0.95); backdrop-filter: blur(12px); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 0; gap: 1rem; }

.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); align-self: center; }
/* Legacy square mark kept for admin login screen only */
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #3a3d44, #0a0a0b);
  color: var(--platinum);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem;
  border: 1px solid #4a4e57;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) { .brand-logo { height: 28px; } .brand-tag { font-size: 0.55rem; letter-spacing: 0.22em; } }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-link {
  text-decoration: none; font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--platinum);
  padding: 0.3rem 0; border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; border-bottom-color: var(--platinum); }
.nav-cta { margin-left: 0.5rem; color: var(--platinum); }
.nav-cta.btn-outline:hover { background: var(--platinum); color: var(--black); border-color: var(--platinum); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--platinum); margin: 6px 0; transition: 0.3s; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; top: 0;
    background: var(--black);
    flex-direction: column; justify-content: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 100;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-link { color: var(--platinum); font-size: 1.15rem; }
  .main-nav .nav-link:hover, .main-nav .nav-link.active { border-bottom-color: var(--platinum); }
  .main-nav .nav-cta { color: var(--platinum); }
  .nav-toggle { position: relative; z-index: 101; }
  .nav-toggle.open span { background: var(--platinum); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero (full-bleed showroom photo, black base, white overlay) ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--text);
  overflow: hidden;
}
/* Full-width showroom photo */
.hero-photo {
  position: absolute; inset: 0; margin: 0;
  z-index: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo figcaption { display: none; }
/* White overlay washed over the photo — stronger on the left for text legibility */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 34%, rgba(255,255,255,0.55) 64%, rgba(255,255,255,0.28) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 40%);
}
.hero-grid { position: relative; z-index: 2; }
.hero-inner { position: relative; max-width: 640px; padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(4.5rem, 11vw, 8rem); }
.hero-kicker {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--graphite); margin-bottom: 1.4rem;
}
.hero h1 { color: var(--black); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--graphite); }
.hero-sub { font-size: 1.18rem; color: #33363c; max-width: 520px; margin-bottom: 2.2rem; font-weight: 400; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  list-style: none; margin-top: 2.8rem;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; color: #33363c;
}
.hero-trust li::before { content: '◆ '; font-size: 0.6rem; vertical-align: 2px; color: var(--graphite); }
@media (max-width: 860px) {
  /* Stronger, more even white wash on small screens so text stays readable over the photo */
  .hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.68) 100%);
  }
  .hero-inner { max-width: none; }
}

/* ---------- Page hero (inner pages) — white-tint band ---------- */
.page-hero {
  background: #f5f6f8;
  color: var(--text);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--black); }
.page-hero .hero-sub { color: var(--text-soft); margin: 0.8rem auto 0; max-width: 620px; }
.page-hero .section-kicker { color: #8b909a; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-dark { background: var(--charcoal); color: var(--silver); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-tint { background: #f5f6f8; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section-kicker {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.38em;
  color: #8b909a; margin-bottom: 0.7rem;
}
.section-sub { color: var(--text-soft); margin-top: 0.7rem; }
.section-dark .section-sub { color: var(--silver); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Vehicle grid & cards ---------- */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #eceef1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vehicle-card:hover .card-media img { transform: scale(1.045); }
.badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px;
}
.badge-featured { background: var(--platinum); color: var(--black); }
.badge-sold { background: #8c1d1d; color: #fff; }
.badge-lg { font-size: 0.95rem; padding: 0.5rem 1.3rem; }
.is-sold .card-media img { filter: grayscale(0.75) brightness(0.9); }

.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.28rem; margin-bottom: 0.3rem; }
.card-title a { text-decoration: none; }
.card-title a:hover { color: var(--graphite); }
.card-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
.card-specs {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem;
  list-style: none;
  font-size: 0.83rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}
.card-specs li::before { content: '· '; }
.card-specs li:first-child::before { content: ''; }
.card-desc { font-size: 0.94rem; color: var(--text-soft); margin-bottom: 1rem; }
.card-actions { margin-top: auto; display: flex; gap: 0.6rem; }
.card-actions .btn { flex: 1; }

/* ---------- Why choose / features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.feature-grid-compact { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.4rem; margin: 1.8rem 0; }
.feature-item { text-align: center; padding: 1rem; }
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(200, 203, 210, 0.4);
  border-radius: 50%;
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.section:not(.section-dark) .feature-icon { color: var(--graphite); border-color: var(--line); }
.feature-item h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.95rem; color: inherit; opacity: 0.85; }

/* ---------- CTA split panels ---------- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
@media (max-width: 800px) { .cta-split { grid-template-columns: 1fr; } }
.cta-panel {
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--silver);
}
.cta-panel h2 { color: var(--white); margin: 0.4rem 0 0.9rem; }
.cta-panel p { margin-bottom: 1.6rem; }
.cta-panel-alt { background: #f0f1f4; color: var(--text); border: 1px solid var(--line); }
.cta-panel-alt h2 { color: var(--black); }
.cta-panel .btn-primary { background: var(--platinum); color: var(--black); border-color: var(--platinum); }
.cta-panel-alt .btn-outline { color: var(--black); }

.cta-banner { text-align: center; }
.cta-banner p { margin: 0.8rem auto 1.8rem; max-width: 520px; }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.review-grid-page { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #c9a227; letter-spacing: 0.2em; margin-bottom: 0.9rem; }
.review-card p { font-size: 1.02rem; font-style: italic; margin-bottom: 1.1rem; }
.review-card footer strong { display: block; font-weight: 600; }
.review-card footer span { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- Location / contact ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .location-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 1.4rem 0 1.8rem; display: grid; gap: 1rem; }
.contact-list li { display: grid; gap: 0.15rem; }
.contact-list strong {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 500; opacity: 0.7;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.location-map iframe {
  width: 100%; aspect-ratio: 4 / 3; border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.9) contrast(1.05);
}
.contact-map { margin-top: 1.5rem; }

/* ---------- Inventory filters ---------- */
.filter-toggle { display: none; width: 100%; margin-bottom: 1rem; }
.filter-panel {
  background: #f5f6f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.2rem;
}
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.filter-panel label, .form-card label, .vehicle-form label {
  display: grid; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-soft);
}
.filter-actions { display: flex; gap: 0.8rem; margin-top: 1.2rem; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ccd0d6;
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--graphite);
  outline-offset: 1px;
  border-color: var(--graphite);
}
textarea { resize: vertical; }

@media (max-width: 720px) {
  .filter-toggle { display: block; }
  .filter-panel { display: none; }
  .filter-panel.open { display: block; }
}

.results-count { color: var(--text-soft); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.4rem; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; }
.page-info { font-size: 0.9rem; color: var(--text-soft); }
.empty-note { color: var(--text-soft); }
.empty-note a { color: var(--black); }

/* ---------- Vehicle detail ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 1.6rem; }
.breadcrumbs a { color: var(--text-soft); }
.detail-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: #eceef1; }
.gallery-main img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.6rem; margin-top: 0.8rem; }
.gallery-thumb {
  border: 2px solid transparent; border-radius: 6px; overflow: hidden;
  padding: 0; cursor: pointer; background: none;
}
.gallery-thumb img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.gallery-thumb.active { border-color: var(--black); }

.detail-summary h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.4rem; }
.detail-price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; margin-bottom: 1.2rem; }
.detail-quickspecs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.8rem; list-style: none;
  border-block: 1px solid var(--line);
  padding: 1rem 0; margin-bottom: 1.4rem;
}
.detail-quickspecs li { display: grid; text-align: center; }
.detail-quickspecs strong { font-weight: 500; font-size: 0.98rem; }
.detail-quickspecs span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-soft); }
.detail-ctas { display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--line); }
.spec-table th {
  font-weight: 500; text-transform: uppercase; font-size: 0.74rem;
  letter-spacing: 0.14em; color: var(--text-soft); width: 38%;
}

.detail-info { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .detail-info { grid-template-columns: 1fr; } }
.detail-desc h2, .detail-features h2 { font-size: 1.6rem; margin-bottom: 0.9rem; }
.features-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.45rem; }
.features-list li { padding-left: 1.4rem; position: relative; font-size: 0.98rem; }
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--graphite); font-weight: 600; }

.detail-related { margin-top: 3rem; }
.detail-related h2 { margin-bottom: 1.6rem; }

/* ---------- Forms ---------- */
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
@media (max-width: 860px) { .form-split { grid-template-columns: 1fr; } }
.form-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .form-page-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.form-card form { display: grid; gap: 0.9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 0.8rem; }
.form-disclaimer { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.5rem; }

.hp-field { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }

.alert { padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.4rem; font-size: 0.98rem; }
.alert-success { background: #eaf5ec; border: 1px solid #bfe0c6; color: #1e5a2a; }
.alert-error { background: #fdeeee; border: 1px solid #f0c4c4; color: #8c1d1d; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { margin-bottom: 1rem; }
.about-text h3 { margin: 1.8rem 0 0.8rem; }
.about-text p { margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: 0.5rem; }
.check-list li { padding-left: 1.5rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; font-weight: 600; color: var(--graphite); }
.section-showroom { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: 0; }
.showroom-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.showroom-figure img { width: 100%; height: auto; display: block; }
.showroom-figure figcaption {
  background: var(--black); color: var(--silver);
  text-align: center; padding: 0.8rem 1rem;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em;
}
.info-card {
  background: #f5f6f8; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
}
.info-card h3 { margin-bottom: 0.4rem; }
.note-card { margin-top: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--silver); font-size: 0.95rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem; padding: 3.5rem 0 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
.footer-logo { height: 32px; width: auto; display: block; }
.footer-brand .brand-tag { color: var(--accent); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; }
.footer-desc { font-size: 0.92rem; opacity: 0.8; }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1rem; }
.footer-social a { color: var(--platinum); }
.footer-col h3 {
  color: var(--white); font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.28em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--silver); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(200, 203, 210, 0.14); padding: 1.2rem 0; font-size: 0.82rem; opacity: 0.7; }

/* ---------- Mobile call FAB ---------- */
.mobile-call-fab {
  display: none;
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 80;
  background: var(--black); color: var(--platinum);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid #3a3d44;
}
@media (max-width: 720px) { .mobile-call-fab { display: block; } }

/* ---------- Misc ---------- */
.edit-viewlink { margin-bottom: 1rem; }
@media (min-width: 600px) { .features-list { grid-template-columns: 1fr 1fr; } }
