/* =====================================================================
   Catawba Island Carts — Homepage v2 + Interior Pages
   May 8, 2026 build (Crabtree Marketing)
   Concept A palette, Libre Baskerville + Manrope
   ===================================================================== */

:root {
  --orange: #E87422;
  --orange-dark: #C75D14;
  --gold: #F5A623;
  --black: #1A1A1A;
  --black-soft: #2A2A2A;
  --gray: #6B6B6B;
  --gray-soft: #8A8A8A;
  --cream: #FDF8F2;
  --warm: #F9F1E8;
  --border: #E8E0D4;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,26,26,0.04);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.08);
  --shadow-lg: 0 16px 48px rgba(26,26,26,0.12);
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; color: var(--black-soft); }
.eyebrow { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; display: block; }
.gold-italic { font-style: italic; color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: var(--sans); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; border: 2px solid transparent; border-radius: 4px; transition: all 0.2s ease; cursor: pointer; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--black); }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1280px; margin: 0 auto; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-name { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--black); line-height: 1.1; }
.nav-brand-name span { font-style: italic; color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 0.875rem; font-weight: 600; color: var(--black); position: relative; padding: 8px 0; }
.nav-links a:hover { color: var(--orange); }
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown { position: absolute; top: 100%; left: -16px; min-width: 220px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s ease; list-style: none; border-radius: 4px; }
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .dropdown li { padding: 0; }
.nav-links .dropdown a { display: block; padding: 10px 20px; font-size: 0.875rem; font-weight: 500; }
.nav-links .dropdown a:hover { background: var(--cream); color: var(--orange); }
.nav-links .dropdown li.featured a { color: var(--orange); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--sans); font-weight: 700; font-size: 0.875rem; color: var(--black); }
.nav-phone:hover { color: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--black); transition: all 0.2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,26,26,0.97); z-index: 99; padding: 100px 32px 32px; flex-direction: column; gap: 20px; align-items: center; justify-content: center; overflow-y: auto; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--white); font-family: var(--serif); font-size: 1.5rem; }
.mobile-menu .mobile-section-title { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-top: 16px; }
.mobile-menu .mobile-sublink { font-size: 1rem; color: rgba(255,255,255,0.85); }
.mobile-menu .nav-phone { color: var(--orange); font-size: 1.25rem; margin-top: 16px; }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 80px 0; background: var(--black); color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.65) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero h1 { color: var(--white); margin-bottom: 16px; max-width: 800px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,0.92); font-size: 1.125rem; max-width: 620px; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) { .hero { min-height: 70vh; padding: 60px 0; } .hero p { font-size: 1rem; } }

/* ---------- Sections ---------- */
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm); }
.bg-black { background: var(--black); color: var(--white); }
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black p { color: var(--white); }
.bg-black p { color: rgba(255,255,255,0.85); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--gray); font-size: 1.0625rem; }

/* ---------- Brand Grid ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.brand-card .photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.brand-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.brand-card:hover .photo img { transform: scale(1.04); }
.brand-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.brand-card .name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.brand-card .tagline { font-size: 0.875rem; color: var(--gray); margin-bottom: 16px; flex: 1; }
.brand-card .link { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.brand-card .link::after { content: '→'; transition: transform 0.2s; }
.brand-card:hover .link::after { transform: translateX(4px); }

.brand-card.featured { grid-column: span 2; grid-row: span 1; }
.brand-card.featured .photo { aspect-ratio: 16 / 9; }
.brand-card.featured .name { font-size: 2rem; }
.brand-card .badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--white); padding: 6px 12px; border-radius: 4px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2; }
.brand-card .badge.gold { background: var(--gold); color: var(--black); }
.brand-card .badge.dark { background: var(--black); }

@media (max-width: 980px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } .brand-card.featured { grid-column: span 2; } }
@media (max-width: 600px) { .brand-grid { grid-template-columns: 1fr; } .brand-card.featured { grid-column: span 1; } }

/* ---------- Vanderhall callout (homepage) ---------- */
.vanderhall-strip { background: linear-gradient(135deg, #0F0F0F 0%, #2A2A2A 100%); color: var(--white); padding: 80px 0; }
.vanderhall-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vanderhall-strip .vh-eyebrow { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.vanderhall-strip h2 { color: var(--white); margin-bottom: 16px; }
.vanderhall-strip p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.vh-art { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; background: #1A1A1A; display: flex; align-items: center; justify-content: center; border: 1px solid #333; }
.vh-art-text { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); letter-spacing: 0.05em; text-align: center; line-height: 1; }
.vh-art-text small { display: block; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
@media (max-width: 768px) { .vanderhall-strip .container { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- What We Offer (services preview) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.service-card { text-align: center; padding: 32px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s; }
.service-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.service-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.5rem; }
.service-card h4 { font-family: var(--serif); font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--gray); margin: 0; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Lifestyle Split ---------- */
.lifestyle { padding: 0; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.lifestyle-img { background-size: cover; background-position: center; min-height: 360px; }
.lifestyle-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--warm); }
.lifestyle-text h2 { margin-bottom: 16px; }
@media (max-width: 980px) { .lifestyle-grid { grid-template-columns: 1fr; } .lifestyle-text { padding: 56px 24px; } }

/* ---------- Gallery (Lakeside Living) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .tile { aspect-ratio: 1; overflow: hidden; border-radius: 6px; position: relative; cursor: pointer; }
.gallery .tile.tall { aspect-ratio: 1 / 1.4; grid-row: span 2; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery .tile:hover img { transform: scale(1.05); }
.gallery .tile .label { position: absolute; bottom: 12px; left: 12px; background: rgba(26,26,26,0.85); color: var(--white); padding: 4px 10px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; }
@media (max-width: 768px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .tile.tall { grid-row: span 1; aspect-ratio: 1; } }

/* TOGGLE: add `gallery-hidden` class to <body> to hide Lakeside Living section site-wide. Single-class CSS toggle per Tony's Apr 28 ask. */
body.gallery-hidden .lakeside-section { display: none !important; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--black); color: var(--white); padding: 80px 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 32px; font-size: 1.0625rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid h4 { color: var(--white); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 0.875rem; }
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--orange); }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.footer-brand .nav-logo { width: 56px; height: 56px; }
.footer-brand-name { font-family: var(--serif); font-weight: 700; color: var(--white); font-size: 1.125rem; }
.footer-brand-name span { font-style: italic; color: var(--orange); }
.footer-nap { font-size: 0.875rem; line-height: 1.7; }
.footer-nap a { color: rgba(255,255,255,0.85); }
.bbb-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; font-size: 0.75rem; color: var(--white); font-weight: 600; margin-top: 16px; }
.bbb-badge strong { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-grid > div:first-child { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-grid > div:first-child { grid-column: span 1; } }

/* ---------- Brand detail page ---------- */
.brand-hero { position: relative; min-height: 60vh; padding: 80px 0; background: var(--black); color: var(--white); display: flex; align-items: center; overflow: hidden; }
.brand-hero-bg { position: absolute; inset: 0; z-index: 0; }
.brand-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.brand-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.55) 60%, rgba(26,26,26,0.4) 100%); }
.brand-hero-content { position: relative; z-index: 1; max-width: 720px; }
.brand-hero h1 { color: var(--white); margin-bottom: 16px; }
.brand-hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; }

.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 0.8125rem; color: var(--gray); }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 10px; color: var(--gray-soft); }

.brand-story { padding: 80px 0; }
.brand-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.brand-story-text h2 { margin-bottom: 16px; }
.brand-story-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
@media (max-width: 980px) { .brand-story-grid { grid-template-columns: 1fr; gap: 32px; } }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.model-card .photo { aspect-ratio: 4/3; overflow: hidden; }
.model-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.model-card .body { padding: 20px; }
.model-card h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 4px; }
.model-card .meta { font-size: 0.8125rem; color: var(--gray); margin-bottom: 12px; }
@media (max-width: 980px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .model-grid { grid-template-columns: 1fr; } }

/* ---------- Vanderhall page (distinct register) ---------- */
.vh-page { background: var(--black); color: var(--white); }
.vh-page h1, .vh-page h2, .vh-page h3 { color: var(--white); font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.02em; }
.vh-hero { min-height: 90vh; padding: 80px 0; background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 50%, #0A0A0A 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.vh-hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%); }
.vh-hero-content { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; padding: 0 24px; }
.vh-eyebrow-2 { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.vh-hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; margin-bottom: 24px; text-transform: uppercase; }
.vh-hero h1 .gold { color: var(--gold); font-style: italic; font-weight: 600; }
.vh-hero p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; max-width: 580px; margin: 0 auto 32px; }
.vh-section { padding: 80px 0; background: #0F0F0F; }
.vh-section.alt { background: #161616; }
.vh-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.vh-feature { padding: 24px; border-left: 2px solid var(--gold); }
.vh-feature h4 { font-family: var(--sans); font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.vh-feature p { color: rgba(255,255,255,0.75); }
@media (max-width: 768px) { .vh-feature-grid { grid-template-columns: 1fr; } }

/* ---------- Services page ---------- */
.services-page-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.service-row { padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-row:nth-child(even) { background: var(--cream); }
.service-row .container { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.service-row .lead { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.service-row h3 { font-size: 1.75rem; margin: 8px 0 16px; }
.service-row .partners { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.service-row .partner-pill { padding: 8px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; font-size: 0.8125rem; font-weight: 600; }
@media (max-width: 768px) { .service-row .container { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-block { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.contact-info-block h3 { margin-bottom: 12px; }
.contact-info-block dl { margin-top: 16px; }
.contact-info-block dt { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--gray); margin-bottom: 4px; margin-top: 16px; }
.contact-info-block dd { font-size: 1rem; color: var(--black); margin-bottom: 8px; }
.contact-info-block dd a { color: var(--orange); font-weight: 700; }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.8125rem; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 0.9375rem; border: 1px solid var(--border); border-radius: 4px; background: var(--white); color: var(--black); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--orange); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 12px; }

.map-embed { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin-top: 32px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.about-quote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.4; font-style: italic; color: var(--black); max-width: 880px; margin: 48px auto; padding: 0 24px; text-align: center; position: relative; }
.about-quote::before { content: '"'; position: absolute; top: -20px; left: -20px; font-size: 6rem; color: var(--orange); opacity: 0.3; line-height: 1; font-family: var(--serif); }
.about-quote .attrib { display: block; font-style: normal; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 24px; font-family: var(--sans); font-weight: 700; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin: 48px 0; text-align: center; }
.stat-row .stat { padding: 24px; }
.stat-row .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--orange); display: block; line-height: 1; margin-bottom: 8px; }
.stat-row .lbl { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); font-weight: 700; }
@media (max-width: 768px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cake Bikes phase-out banner ---------- */
.phaseout-banner { background: var(--gold); color: var(--black); padding: 16px 24px; text-align: center; font-size: 0.9375rem; font-weight: 600; }
.phaseout-banner strong { font-weight: 800; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.placeholder-tile { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--cream) 0%, var(--warm) 100%); display: flex; align-items: center; justify-content: center; border: 1px dashed var(--border); border-radius: 6px; }
.placeholder-tile .ph-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--black); letter-spacing: 0.05em; text-align: center; padding: 16px; }
.placeholder-tile .ph-name small { display: block; font-family: var(--sans); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-top: 8px; }

.preview-banner { background: var(--orange); color: var(--white); padding: 8px 16px; text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
