/* =============================================================
   2024 Daymak Boomer Buggy X Pro — sales listing site
   Aesthetic: refined classified ad meets boutique gallery.
   Warm dark ink, copper accent, generous serifs, real hierarchy.
   ============================================================= */

:root {
  --bg:           #14110f;
  --bg-elev:      #1b1815;
  --bg-card:      #1f1b18;
  --bg-card-2:    #251f1a;
  --ink:          #f4ede2;
  --ink-dim:      #b4a796;
  --ink-faint:    #756859;
  --ink-soft:     #d8cfc1;
  --line:         #2a2520;
  --line-strong:  #3a322a;
  --accent:       #c9842b;   /* burnt copper */
  --accent-soft:  #e0a45e;
  --accent-deep:  #8c5a1a;
  --good:         #6b9f5f;
  --radius:       6px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow-lg:    0 30px 60px -20px rgba(0,0,0,.7), 0 10px 20px -10px rgba(0,0,0,.5);
  --shadow-photo: 0 50px 80px -30px rgba(0,0,0,.85), 0 20px 40px -20px rgba(0,0,0,.6);
  --display:      "Fraunces", "Times New Roman", Georgia, serif;
  --sans:         "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --maxw:         1320px;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1400px 700px at 85% -5%, rgba(201,132,43,.10), transparent 55%),
    radial-gradient(900px 500px at -10% 25%, rgba(201,132,43,.05), transparent 60%);
}

a { color: inherit; }
img, video { max-width: 100%; display: block; }

/* ============================================================
   Site header (shared across all pages)
   ============================================================ */

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px; gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 5;
}
.brand { display: flex; align-items: center; gap: 18px; text-decoration: none; color: inherit; }
.brand-mark {
  font-family: var(--display);
  font-size: 38px; line-height: 1;
  color: var(--accent);
  transform: translateY(-2px);
}
.brand-text { display: flex; flex-direction: column; }
.brand-eyebrow {
  font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 2px;
}
.brand-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -.01em; line-height: 1.05;
}
.brand-title em { color: var(--accent-soft); font-style: italic; font-weight: 300; }

.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a {
  text-decoration: none; color: var(--ink-dim);
  font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.active { color: var(--ink); border-bottom-color: var(--accent); }
.site-nav .nav-cta {
  padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--ink); transition: background .2s, border-color .2s, color .2s;
}
.site-nav .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; background: transparent; color: var(--ink);
  transition: transform .15s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 12px 24px -10px rgba(201,132,43,.45);
}
.btn-primary:hover {
  background: var(--accent-soft); border-color: var(--accent-soft);
  box-shadow: 0 16px 30px -12px rgba(224,164,94,.55);
}
.btn-ghost { border-color: var(--line-strong); color: var(--ink-dim); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-dim); }
.btn-small { padding: 7px 14px; font-size: 12px; }
.btn-icon { font-size: 15px; transform: translateY(-1px); }

/* ============================================================
   LISTING (front page)
   ============================================================ */

.listing-hero {
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: 56px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 48px 80px;
  align-items: start;
}

.listing-card {
  position: relative;
  padding-top: 12px;
}

.listing-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 28px;
}
.listing-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--good); box-shadow: 0 0 12px rgba(107,159,95,.7);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,159,95,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(107,159,95,0); }
}

.listing-title {
  margin: 0 0 22px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.025em;
}
.listing-year {
  display: block;
  font-family: var(--display); font-weight: 300; font-style: italic;
  color: var(--accent-soft);
  font-size: .55em; letter-spacing: 0;
  margin-bottom: 4px;
}
.listing-title em {
  color: var(--accent-soft); font-style: italic; font-weight: 300;
  white-space: nowrap;
}

.listing-lede {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-dim);
  max-width: 38ch; margin: 0 0 32px;
}

.listing-price {
  display: flex; align-items: baseline; gap: 10px;
  padding: 18px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  position: relative;
}
.listing-price::after {
  content: "Asking price";
  position: absolute; top: -8px; left: 0;
  background: var(--bg); padding: 0 8px 0 0;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint);
}
.price-currency {
  font-family: var(--display); font-weight: 400;
  font-size: 24px; color: var(--accent-soft);
  transform: translateY(-12px);
}
.price-amount {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 4.8vw, 56px);
  letter-spacing: -.02em;
  line-height: 1; color: var(--ink);
}
.price-meta {
  margin-left: 6px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}

.listing-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; list-style: none; padding: 0; margin: 0 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.listing-stats li {
  padding: 14px 16px;
  background: var(--bg-card);
  border-right: 1px solid var(--line);
}
.listing-stats li:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--display); font-weight: 500;
  font-size: 28px; line-height: 1; color: var(--ink);
  letter-spacing: -.01em;
}
.stat-label {
  display: block; margin-top: 4px;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}

.listing-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.listing-cta .btn { flex: 1; justify-content: center; min-width: 180px; }

.listing-secondary {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-dim);
}
.listing-secondary a {
  text-decoration: none; color: var(--ink-dim);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.listing-secondary a:hover { color: var(--accent-soft); border-bottom-color: var(--accent-soft); }

/* Hero photo column */

.listing-photo {
  position: sticky; top: 32px;
}
.photo-frame {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
}
.photo-frame::before {
  /* Edge highlight to give the photo some depth */
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  pointer-events: none; z-index: 2;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
}
.photo-fallback-label {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--ink); margin-bottom: 10px;
}
.photo-fallback p { color: var(--ink-faint); font-size: 14px; margin: 0; }
.photo-fallback code {
  background: rgba(255,255,255,.05); padding: 1px 6px; border-radius: 3px;
  font-size: 12px; color: var(--accent-soft);
}

.photo-caption {
  margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--ink-faint);
  letter-spacing: .04em;
  flex-wrap: wrap; gap: 12px;
}
.photo-caption a {
  color: var(--accent-soft); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.photo-caption a:hover { border-bottom-color: var(--accent-soft); }

/* ============================================================
   Generic section pattern (story, highlights, contact)
   ============================================================ */

.section {
  border-top: 1px solid var(--line);
  padding: 80px 48px;
}
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 14px;
}
.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1; letter-spacing: -.015em;
  margin: 0 0 36px; max-width: 22ch;
}

/* Story section */

.section-story .story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}
.story-grid p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); margin: 0 0 18px;
  max-width: 60ch;
}
.story-grid p:last-child { margin-bottom: 0; }
.story-grid strong { color: var(--ink); font-weight: 600; }

.story-aside {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
}
.story-aside .aside-label {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 14px;
}
.story-aside dl { margin: 0; }
.story-aside dl > div {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.story-aside dl > div:last-child { border-bottom: none; }
.story-aside dt {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.story-aside dd {
  margin: 0;
  font-family: var(--display); font-size: 16px; font-weight: 500;
  color: var(--ink);
}

/* Highlights section */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hl {
  background: var(--bg);
  padding: 28px 28px 30px;
  transition: background .2s;
  position: relative;
}
.hl:hover { background: var(--bg-card); }
.hl-num {
  font-family: var(--display); font-weight: 300; font-style: italic;
  color: var(--accent-soft);
  font-size: 14px; letter-spacing: .04em;
  margin-bottom: 16px;
}
.hl h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 20px; letter-spacing: -.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.hl p {
  margin: 0; color: var(--ink-dim);
  font-size: 14.5px; line-height: 1.55;
}

.section-foot {
  margin: 36px 0 0;
  text-align: center;
  color: var(--ink-faint);
  font-size: 14px;
}
.section-foot a { color: var(--accent-soft); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.section-foot a:hover { border-bottom-color: var(--accent-soft); }

/* Contact section */

.section-contact {
  background:
    radial-gradient(900px 400px at 80% 50%, rgba(201,132,43,.10), transparent 60%),
    var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 56px;
  align-items: center;
}
.contact-lede {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-dim); margin: 0; max-width: 42ch;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
}
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-value {
  font-family: var(--display); font-size: 18px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  text-align: right;
}
a.contact-value:hover { color: var(--accent-soft); }

/* ============================================================
   PHOTOS PAGE (gallery)
   ============================================================ */

.page-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 48px 48px 28px;
}
.page-hero .kicker {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 14px;
}
.page-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 18px; max-width: 18ch;
}
.page-hero .lede {
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.55;
  color: var(--ink-dim); max-width: 60ch; margin: 0 0 26px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.gallery {
  max-width: var(--maxw); margin: 0 auto;
  padding: 12px 48px 80px;
}
.loading {
  padding: 60px; text-align: center;
  color: var(--ink-faint);
  font-family: var(--display); font-style: italic;
}

.folder-section { margin-top: 48px; }
.folder-section:first-child { margin-top: 8px; }

.folder-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.folder-title {
  font-family: var(--display); font-weight: 500; font-size: 24px;
  margin: 0; letter-spacing: -.01em;
}
.folder-title .count {
  font-family: var(--sans); font-weight: 400; font-size: 12px;
  color: var(--ink-faint); margin-left: 12px;
  letter-spacing: .14em; text-transform: uppercase;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.tile {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tile:hover {
  transform: translateY(-2px);
  border-color: var(--ink-faint);
  box-shadow: var(--shadow-lg);
}
.tile img, .tile video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; background: #000;
}

.tile .tile-overlay {
  position: absolute; inset: auto 0 0 0; padding: 10px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,0));
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; opacity: 0; transition: opacity .2s; pointer-events: none;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile .tile-overlay .tile-name {
  font-size: 12px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tile .tile-overlay a {
  pointer-events: auto; background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 5px 10px; border-radius: 4px;
  font-size: 11px; text-decoration: none; backdrop-filter: blur(6px);
}
.tile .tile-overlay a:hover { background: var(--accent); border-color: var(--accent); }

.video-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 7px; border-radius: 3px;
}

.empty {
  padding: 80px 20px; text-align: center;
  color: var(--ink-faint);
  font-family: var(--display); font-style: italic;
}

/* Lightbox */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 8, 6, .96);
  display: flex; align-items: center; justify-content: center; z-index: 100;
}
.lightbox[hidden] { display: none; }
.lb-figure {
  margin: 0; max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lb-media { max-width: 92vw; max-height: 78vh; }
.lb-media img, .lb-media video {
  max-width: 92vw; max-height: 78vh; object-fit: contain;
  border-radius: 4px; box-shadow: var(--shadow-lg);
}
.lb-caption {
  display: flex; align-items: center; gap: 18px;
  color: var(--ink-dim); font-size: 13px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  font-size: 22px; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .12s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   FEATURES PAGE
   ============================================================ */

.features-article {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px 48px 80px;
}

.feat-block {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.feat-block:first-of-type { border-top: none; padding-top: 24px; }

.block-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 32px);
  letter-spacing: -.01em;
  margin: 0 0 32px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 24px;
  transition: transform .15s, border-color .2s, background .2s;
}
.feat-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--bg-card-2);
}
.feat-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(201,132,43,.12);
  border: 1px solid rgba(201,132,43,.25);
  border-radius: var(--radius);
  color: var(--accent-soft);
  font-size: 18px; line-height: 1;
  margin-bottom: 14px;
}
.feat-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 18px; letter-spacing: -.005em;
  margin: 0 0 8px; color: var(--ink);
}
.feat-card p {
  margin: 0; color: var(--ink-dim);
  font-size: 14px; line-height: 1.55;
}

.spec-section { margin-bottom: 36px; }
.spec-heading {
  font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 14px;
}
.spec-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.spec-table > div {
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid var(--line);
}
.spec-table dt {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 6px;
}
.spec-table dd {
  margin: 0;
  font-family: var(--display); font-size: 17px; font-weight: 400;
  color: var(--ink);
}
.spec-note {
  color: var(--ink-faint); font-size: 12.5px; line-height: 1.6;
  margin-top: 20px;
}

.feat-cta {
  margin-top: 48px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(201,132,43,.14), rgba(201,132,43,0) 65%), var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.feat-cta h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; margin: 0 0 6px; letter-spacing: -.005em;
}
.feat-cta p { color: var(--ink-dim); margin: 0; }
.feat-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  display: flex; justify-content: space-between;
  color: var(--ink-faint); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  color: var(--ink-dim); text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--accent-soft); border-bottom-color: var(--accent-soft); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .listing-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 32px 56px;
  }
  .listing-photo { position: static; order: -1; }
  .photo-frame { aspect-ratio: 16 / 10; }

  .section { padding: 64px 32px; }
  .section-story .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }

  .page-hero { padding: 32px 32px 24px; }
  .gallery { padding: 12px 32px 64px; }
  .features-article { padding: 24px 32px 64px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header { padding: 18px 20px; }
  .site-nav { gap: 14px; font-size: 13px; }
  .listing-hero { padding: 24px 20px 48px; gap: 28px; }
  .listing-stats { grid-template-columns: 1fr 1fr 1fr; }
  .listing-stats li { padding: 12px; }
  .stat-num { font-size: 22px; }
  .section { padding: 48px 20px; }
  .page-hero { padding: 24px 20px 20px; }
  .gallery { padding: 8px 20px 48px; }
  .features-article { padding: 20px 20px 48px; }
  .tile-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .feat-cta { padding: 24px 22px; }
  .site-footer { padding: 20px; }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 0; }
  .contact-value { text-align: left; }
}
