/* BrightNest Landscape Lighting — Design System */
/* Google Fonts loaded via <link> in HTML head for non-blocking performance — v13 */

:root {
  --bg: #0a0e1a;
  --bg-2: #10141f;
  --bg-3: #161b28;
  --card: #1a2030;
  --line: #232a3a;
  --gold: #c9a961;
  --gold-2: #e4c989;
  --gold-soft: rgba(201, 169, 97, 0.12);
  --cream: #f5f1e8;
  --text: #e8e4d8;
  --muted: #9aa0aa;
  --muted-2: #6b7180;
  --green: #7fb878;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.6);
  --shadow-gold: 0 20px 60px -10px rgba(201, 169, 97, 0.25);
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Manrope', system-ui, sans-serif;
  --max: 1240px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 500; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }
section { padding: 88px 0; overflow-x: hidden; }
@media (max-width: 768px) { section { padding: 44px 0; } }
@media (max-width: 480px) { section { padding: 36px 0; } }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand small { display: block; font-family: var(--body); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--cream); margin: 4px auto; transition: .25s; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-text, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 24px;
    border-bottom: 1px solid var(--line);
  }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0a0e1a;
  box-shadow: 0 8px 30px -8px rgba(201,169,97,0.5);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); color: #0a0e1a; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }

/* HERO */
.hero {
  position: relative;
  padding: 130px 0 140px;
  overflow: hidden;
  background: url('/assets/images/hero-lit.webp') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 22, 0.72);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 90px;
    min-height: 80vh;
    background-position: center center;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 26px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: '✓'; color: var(--gold); font-weight: 700; }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,14,26,0.5));
  pointer-events: none;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-soft);
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 0.82rem;
  z-index: 2;
}
.hero-badge strong { display: block; color: var(--gold); font-family: var(--display); font-size: 1.1rem; font-weight: 500; margin-bottom: 2px; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-image img { object-position: center 40%; }
  .hero-image { aspect-ratio: 16/9; }
  .hero-badge {
    bottom: auto;
    left: auto;
    top: 14px;
    right: 14px;
    max-width: 180px;
    font-size: 0.75rem;
    padding: 10px 13px;
  }
  .hero-badge strong { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .hero { padding: 32px 0 28px; }
}

/* SECTION HEADER */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* STAT STRIP (hero metrics) */
.stat-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  gap: 1px;
}
.stat-card {
  background: var(--card);
  padding: 36px 24px;
  text-align: center;
  transition: background .3s;
}
.stat-card:hover { background: var(--bg-3); }
.stat-num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}
@media (max-width: 700px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 22px 12px; }
  .stat-num { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 6px; }
  .stat-label { font-size: 0.72rem; line-height: 1.35; }
}

/* CALCULATOR */
.calc-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.calc-card {
  max-width: 760px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}
.calc-input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  margin: 14px 0 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: 1.05rem;
}
.calc-input:focus { outline: none; border-color: var(--gold); }
.calc-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.calc-output {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, transparent 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r);
  text-align: center;
}
.calc-output .num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.calc-output p { color: var(--muted); font-size: 0.92rem; }
.calc-source {
  display: flex; gap: 8px 30px; flex-wrap: wrap; justify-content: center;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted-2);
  letter-spacing: 0.03em;
}
.calc-source span { display: inline-flex; align-items: center; gap: 6px; }
.calc-source span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex-shrink: 0; }
@media (max-width: 600px) { .calc-card { padding: 30px 22px; } }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.svc-card:hover {
  border-color: rgba(201,169,97,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-soft);
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; margin-bottom: 18px; }
.svc-card a { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: gap .2s; display: inline-flex; align-items: center; gap: 6px; }
.svc-card a:hover { gap: 10px; }

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* WHAT WE DO / IMAGE GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-grid figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
}
.work-grid img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; transition: transform .6s ease; }
.work-grid figure:hover img { transform: scale(1.04); }
.work-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(10,14,26,0.92));
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.15rem;
}
@media (max-width: 800px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .work-grid figure { aspect-ratio: 3/4; }
  .work-grid figcaption { font-size: 0.78rem; padding: 16px 12px 12px; }
}

/* PROCESS */
.process-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.proc {
  position: relative;
  padding: 40px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
}
.proc-num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.proc h3 { margin-bottom: 12px; }
.proc p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; gap: 18px; } }

/* AREAS */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.area-pill {
  display: block;
  padding: 14px 16px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all .2s ease;
}
.area-pill:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 800px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-grid img { border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; object-position: center 10%; }
.about-grid h2 { margin-bottom: 22px; }
.about-grid > div p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.about-bullets { list-style: none; margin-top: 26px; }
.about-bullets li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: center; font-size: 0.95rem; }
.about-bullets li::before { content: '✦'; color: var(--gold); }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* TESTIMONIALS */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
}
.test .stars { font-size: 0.9rem; margin-bottom: 14px; display: block; }
.test blockquote {
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 22px;
}
.test cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}
.test cite strong { color: var(--text); display: block; font-weight: 600; }
.placeholder-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.65rem; padding: 3px 8px; border-radius: 3px;
  background: var(--gold-soft); color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
}
@media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr; } }

/* FINAL CTA */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(201,169,97,0.07), transparent);
  pointer-events: none;
}
.cta-section h2 { max-width: 760px; margin: 0 auto 22px; }
.cta-section p { color: var(--muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; }
.cta-section .hero-cta { justify-content: center; }

/* FORM */
.mockup-form {
  max-width: 640px; margin: 0 auto;
  background: var(--card);
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.mockup-form .field { margin-bottom: 22px; }
.mockup-form label { display: block; margin-bottom: 8px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.mockup-form input, .mockup-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
}
.mockup-form input:focus, .mockup-form textarea:focus { outline: none; border-color: var(--gold); }
.mockup-form textarea { min-height: 120px; resize: vertical; }
.mockup-form button { width: 100%; margin-top: 8px; }
@media (max-width: 600px) { .mockup-form { padding: 32px 24px; } }

/* FOOTER */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-grid h4 { font-family: var(--body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-grid p, .foot-grid a { font-size: 0.9rem; color: var(--muted); line-height: 1.9; }
.foot-grid a:hover { color: var(--gold); }
.foot-grid ul { list-style: none; }
.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--muted-2);
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* PAGE HERO (interior pages) */
.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); }
@media (max-width: 768px) { .page-hero { padding: 44px 0 36px; } }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 20px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 700px; }
.breadcrumb { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 22px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* SERVICE DETAIL */
.svc-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: start; }
.svc-detail-img { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; }
.svc-detail h2 { margin-bottom: 24px; }
.svc-detail p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.svc-list { list-style: none; margin: 28px 0; }
.svc-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; }
.svc-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; gap: 40px; } }

/* AREA DETAIL */
.area-detail h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.area-features {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  margin-top: 50px;
}
.area-feature {
  padding: 26px 22px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
}
.area-feature h4 { font-family: var(--display); color: var(--gold); margin-bottom: 8px; font-size: 1.05rem; }
.area-feature p { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 800px) { .area-features { grid-template-columns: repeat(2,1fr); } }

/* UTILITY */
.text-center { text-align: center; }
.mt-l { margin-top: 40px; }
hr.divider { border: 0; height: 1px; background: var(--line); margin: 50px 0; }

/* DESIGN REQUEST SECTION (replaces quick form) */
.design-request-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.design-request-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.design-request-left h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.design-request-left p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 26px;
}
.design-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.design-trust-list li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.design-trust-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.design-request-right {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
}
.or-divider {
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.phone-link {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color .2s;
}
.phone-link:hover { color: var(--gold); }
.hours-note {
  color: var(--muted-2);
  font-size: 0.78rem;
}
@media (max-width: 900px) {
  .design-request-section { padding: 52px 0; }
  .design-request-inner { grid-template-columns: 1fr; gap: 36px; }
  .design-request-right { max-width: 440px; }
}

/* STANDARD SECTION — feature grid */
.standard-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.standard-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.std-feature {
  padding: 44px 40px;
  background: var(--card);
  position: relative;
  transition: background .3s;
}
.std-feature:hover { background: var(--bg-3); }
.std-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}
.std-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--cream);
}
.std-feature p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
@media (max-width: 760px) { .standard-features { grid-template-columns: 1fr; } .std-feature { padding: 34px 28px; } }

/* TEST TAGS */
.test-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; background: var(--gold-soft); color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 14px; }
.test-tag::before { content: '✓'; font-size: 0.85rem; }

/* REVIEWS CAROUSEL */
.reviews-section { padding-top: 88px; }
.reviews-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
.reviews-carousel-wrap::before,
.reviews-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.reviews-carousel-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 90s linear infinite;
  padding: 12px 0 20px;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
  cursor: default;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.3), transparent);
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 0 30px rgba(201,169,97,0.08);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 14px; }
.review-text {
  font-family: var(--display);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3550, var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: var(--bg);
  flex-shrink: 0;
}
.review-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.review-loc  { font-size: 0.75rem; color: var(--muted-2); margin-top: 2px; }

/* STICKY MOBILE BAR */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(10,14,26,0.95); backdrop-filter: blur(14px); border-top: 1px solid var(--gold-soft); padding: 12px 14px; gap: 10px; }
.mobile-bar a { flex: 1; padding: 13px; text-align: center; border-radius: var(--r-sm); font-weight: 600; font-size: 0.9rem; }
.mobile-bar a.call { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.mobile-bar a.book { background: var(--gold); color: #0a0e1a; }
@media (max-width: 700px) { .mobile-bar { display: flex; } body { padding-bottom: 68px; } }

/* TESTIMONIAL ROWS */
.tests-grid + .tests-grid { margin-top: 22px; }

/* Animation */
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fade-up .7s ease forwards; opacity: 0; }
.fade-up:nth-child(2) { animation-delay: .08s; }
.fade-up:nth-child(3) { animation-delay: .16s; }
.fade-up:nth-child(4) { animation-delay: .24s; }

/* ALL REVIEWS GRID */
/* Reviews page summary bar */
.rv-summary-bar { display: flex; align-items: center; gap: 32px; margin-top: 32px; padding: 24px 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); width: fit-content; }
.rv-sum-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rv-sum-num { font-size: 2rem; font-weight: 800; color: var(--cream); line-height: 1; }
.rv-sum-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.rv-sum-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.rv-sum-divider { width: 1px; height: 48px; background: var(--line); }
@media (max-width: 600px) { .rv-summary-bar { gap: 20px; padding: 18px 20px; } .rv-sum-num { font-size: 1.6rem; } }
.all-reviews-page { padding-top: 56px; }
.ba-page { border-top: none; padding-top: 0; }
.all-reviews-section { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 90px; }
@media (max-width: 768px) { .all-reviews-section { padding: 44px 0 54px; } }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.rv-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s; }
.rv-card:hover { border-color: rgba(201,169,97,0.25); }
.rv-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.rv-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; flex: 1; }
.rv-name { font-size: 0.78rem; color: var(--muted-2); font-weight: 600; letter-spacing: 0.04em; margin-top: 4px; }
.rv-stars-empty { color: var(--line); }
.rv-response { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; margin-top: 4px; }
.rv-response-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.rv-response-text { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* LEAVE A REVIEW SECTION */
.leave-review-section { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0; }
@media (max-width: 768px) { .leave-review-section { padding: 44px 0; } }
.leave-review-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.leave-review-left h2 { margin: 16px 0 20px; }
.leave-review-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 28px; }
.google-review-btn { display: inline-flex; align-items: center; gap: 10px; }
.review-or-divider { margin-top: 24px; text-align: center; color: var(--muted-2); font-size: 0.82rem; position: relative; }
.review-or-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.review-or-divider span { background: var(--bg-2); padding: 0 12px; position: relative; }
.review-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.review-form .field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.review-form .field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.review-form .field input,
.review-form .field textarea { display: block; width: 100%; box-sizing: border-box; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 14px; color: var(--cream); font-family: inherit; font-size: 0.95rem; transition: border-color .15s; }
.review-form .field input:focus,
.review-form .field textarea:focus { outline: none; border-color: var(--gold); }
.review-form .field textarea { min-height: 110px; resize: vertical; }
.star-picker { display: flex; gap: 6px; font-size: 2rem; cursor: pointer; margin-bottom: 4px; }
.star-pick { color: var(--line); transition: color .15s, transform .1s; user-select: none; line-height: 1; }
.star-pick:hover, .star-pick.active { color: var(--gold); transform: scale(1.1); }
@media (max-width: 800px) {
  .leave-review-inner { grid-template-columns: 1fr; gap: 32px; }
  .leave-review-left { text-align: center; }
  .review-form { padding: 24px 20px; }
  .review-or-divider { max-width: 320px; margin: 24px auto 0; }
}

/* SURROUNDING AREAS GRID */
.surrounding-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.surrounding-region h4 { font-family: var(--body); font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.surrounding-region p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .surrounding-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .surrounding-grid { grid-template-columns: 1fr; } }

/* FAQ SECTION */
.faq-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
@media (max-width: 768px) { .faq-section { padding: 44px 0; } }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; margin-top: 48px; }
.faq-item h3 { font-family: var(--body); font-size: 0.95rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; line-height: 1.4; }
.faq-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

.calc-source-link { color: var(--gold); font-size: 0.82rem; text-decoration: none; font-weight: 600; letter-spacing: 0.02em; transition: color .2s; }
.calc-source-link:hover { color: var(--gold-2); }

/* MOBILE HERO REORDER */
.mobile-hero-bottom { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-hero-bottom {
    display: block;
    padding: 0 24px 40px;
  }
  .mobile-hero-bottom .hero-image {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
  }
  .mobile-hero-bottom .hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }
  .mobile-hero-bottom .hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .mobile-hero-bottom .hero-trust {
    display: flex; gap: 16px 24px; flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
  }
  .mobile-hero-bottom .hero-trust span { display: flex; align-items: center; gap: 7px; }
  .mobile-hero-bottom .hero-trust span::before { content: '✓'; color: var(--gold); font-weight: 700; }
}

/* BLOG INDEX */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.blog-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 12px; line-height: 1.35; }
.blog-card h3 a { color: var(--cream); text-decoration: none; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.blog-read-more { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); text-decoration: none; }
.blog-read-more:hover { color: var(--cream); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ARTICLE LAYOUT */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.article-body { font-size: 1.06rem; line-height: 1.8; color: var(--muted); }
.article-intro { font-size: 1.15rem; color: var(--cream); line-height: 1.7; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article-body h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--cream); margin: 40px 0 16px; line-height: 1.3; }
.article-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--cream); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--cream); }
.article-body a { color: var(--gold); }
.article-body a:hover { color: var(--cream); }
.article-body .btn { text-decoration: none; }
.article-body .btn-primary { background: var(--gold); color: #0a0e1a !important; box-shadow: 0 8px 30px -8px rgba(201,169,97,0.5); }
.article-body .btn-primary:hover { background: var(--gold-2); color: #0a0e1a !important; }
.article-body .btn-ghost { color: var(--cream) !important; border: 1px solid var(--line); }
.article-body .btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; }
.article-cta-box { background: var(--card); border: 1px solid var(--gold); border-radius: var(--r-lg); padding: 32px; margin-top: 48px; }
.article-cta-box strong { color: var(--cream); font-size: 1.1rem; display: block; margin-bottom: 10px; }
.article-cta-box p { margin-bottom: 20px; font-size: 0.95rem; }
.article-cta-box .btn { margin-right: 12px; margin-top: 8px; display: inline-flex; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
}

/* 4 PILLARS SECTION */
.pillars-section { background: var(--bg); }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 12px; }
.pillar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.pillar-card:hover { border-color: var(--gold); }
.pillar-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 18px; }
.pillar-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--cream); margin-bottom: 16px; line-height: 1.35; }
.pillar-reality { font-size: 0.9rem; color: var(--muted-2); line-height: 1.65; margin-bottom: 14px; padding: 14px 16px; background: var(--bg-3); border-left: 3px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.pillar-reality strong { color: var(--gold); }
.pillar-card > p:not(.pillar-reality) { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }
@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 480px) { .pillar-card { padding: 28px 22px; } }

/* PHILOSOPHY STRIP */
.philosophy-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.phil-item { text-align: center; }
.phil-word { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--gold); margin-bottom: 12px; letter-spacing: -0.02em; }
.phil-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 680px) {
  .philosophy-strip { grid-template-columns: 1fr; gap: 24px; }
  .phil-word { font-size: 1.6rem; }
}

/* ARTICLE FIGURE IMAGES */
.article-figure {
  margin: 36px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}
.article-figure figcaption {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--card);
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

/* SERVICE AREA MAP */
.service-area-map {
  margin: 40px auto 20px;
  max-width: 680px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.service-area-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* DIY OBJECTION CRUSHER SECTION */
.diy-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.diy-intro { font-size: 1.25rem; color: var(--muted); margin-top: 8px; }
.diy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.diy-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; position: relative; transition: border-color 0.2s; }
.diy-card:hover { border-color: rgba(201,169,97,0.4); }
.diy-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: rgba(201,169,97,0.25); line-height: 1; margin-bottom: 16px; }
.diy-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--cream); margin-bottom: 14px; line-height: 1.4; }
.diy-card p { font-size: 0.92rem; line-height: 1.75; color: var(--muted); }
.diy-block-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 14px; margin-top: 60px; }
.diy-block-label-second { margin-top: 72px; }
.diy-close { margin-top: 56px; text-align: center; }
.diy-close p { font-size: 1.15rem; color: var(--cream); max-width: 680px; margin: 0 auto 32px; line-height: 1.7; font-family: var(--serif); font-style: italic; }
@media (max-width: 900px) { .diy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .diy-grid { grid-template-columns: 1fr; } }

/* PHOTO STRIP AFTER REVIEWS */
.photo-strip-section {
  padding: 0;
  border-top: 1px solid var(--line);
}
.strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 0;
  max-width: var(--max);
  margin: 0 auto;
}
.strip-nav { display: flex; gap: 10px; }
.strip-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.strip-btn:hover { border-color: var(--gold); background: var(--bg-2); }
.photo-strip-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  margin-top: 16px;
}
.photo-strip-scroll::-webkit-scrollbar { display: none; }
.strip-photo {
  flex: 0 0 480px;
  height: 320px;
  overflow: hidden;
  scroll-snap-align: start;
  margin: 0;
}
.strip-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.strip-photo:hover img { transform: scale(1.03); }
.strip-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
  padding: 12px 0 4px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .strip-photo { flex: 0 0 78vw; height: 260px; }
  .strip-header { padding: 20px 20px 0; }
}
@media (max-width: 480px) {
  .strip-photo { flex: 0 0 82vw; height: 220px; }
}

/* MOBILE SPACING CLEANUP */
@media (max-width: 600px) {
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .process-grid { gap: 20px; }
  .proc { padding: 24px 20px; }
  .standard-features { gap: 20px; }
  .std-feature { padding: 24px 20px; }
  .diy-grid { gap: 14px; }
  .diy-card { padding: 24px 18px; }
  .pillars-grid { gap: 14px; }
  .pillar-card { padding: 24px 20px; }
}

/* BEFORE & AFTER SECTION */
.ba-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ba-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ba-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ba-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.ba-pair:hover .ba-img img { transform: scale(1.03); }
.ba-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.ba-label-before {
  background: rgba(10,14,26,0.82);
  color: var(--muted);
  border: 1px solid var(--line);
}
.ba-label-after {
  background: var(--gold);
  color: #0a0e1a;
}
@media (max-width: 600px) {
  .ba-pair { gap: 2px; }
  .ba-label { font-size: 0.65rem; padding: 4px 8px; bottom: 10px; left: 10px; }
}
