/* ── Ascent Exterior Cleaning ── style.css ── */

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-hover:  #DEB95A;
  --gold-dim:    #b8973e;
  --bg:          #0D0D0D;
  --bg-1:        #111111;
  --bg-2:        #141414;
  --bg-3:        #1A1A1A;
  --bg-4:        #0A0A0A;
  --border:      rgba(255,255,255,0.06);
  --border-sub:  rgba(255,255,255,0.05);
  --text:        #ffffff;
  --text-2:      #B0B0B0;
  --text-3:      #888888;
  --text-4:      #666666;
  --font-display:'Barlow', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ─── Skip link (a11y) ─────────────────────────────────────── */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 2px;
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.15s;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ─── Focus rings (a11y) ───────────────────────────────────── */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline-offset: 0;
}
main:focus,
main:focus-visible { outline: none; }

/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.container--md { max-width: 960px; margin: 0 auto; padding: 0 16px; }
.container--sm { max-width: 720px; margin: 0 auto; padding: 0 16px; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
  justify-content: center;
}
.btn-gold {
  background: var(--gold);
  color: #0D0D0D;
}
.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ─── Gold divider line ──────────────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover { color: #0D0D0D; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  color: var(--text);
  padding: 4px;
}
.hamburger svg { display: block; }

/* Mobile menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.mobile-overlay.open { display: flex; }
.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.mobile-menu {
  position: relative;
  margin-left: auto;
  width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 32px;
  background: var(--bg);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-close {
  color: #888;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--text); }
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.mobile-links a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.mobile-links a:hover { color: var(--text); }
.mobile-menu-bottom { margin-top: auto; }
.mobile-menu-bottom .btn { width: 100%; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-4);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 220px;
  margin: 16px 0 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #aaa;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--text); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: #888;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: #aaa;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-col p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-col .btn { width: 100%; margin-bottom: 16px; font-size: 0.75rem; }
.footer-col .footer-check-link {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.footer-col .footer-check-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom-inner p, .footer-bottom-inner a {
  font-size: 0.75rem;
  color: var(--text-4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: #aaa; }

/* ─── Hero (Home) ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #111111 50%, #0A0A0A 100%);
  padding: 120px 24px 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--bg);
  z-index: 20;
}
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 160px 24px 96px;
  }
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { color: var(--gold); flex-shrink: 0; }

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-sub);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 16px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .trust-bar-inner { justify-content: center; }
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-item span {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ccc;
  white-space: nowrap;
}

/* ─── Services Grid (Home) ───────────────────────────────────── */
.services-section {
  padding: 64px 24px;
  position: relative;
  background: var(--bg);
}
.services-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.services-header p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 540px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }
}
.service-card {
  background: linear-gradient(to bottom, #1A1A1A, #141414);
  border: 1px solid #222;
  border-radius: 2px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  color: var(--text);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-color: var(--gold);
}
.service-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.18);
}
.service-card.featured:hover {
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}
.service-badge {
  position: absolute;
  top: -12px;
  right: 12px;
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}
.service-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  background: #252525;
  overflow: hidden;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.service-card .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
}
.service-card .desc {
  display: none;
  font-size: 0.875rem;
  color: var(--text-4);
  line-height: 1.6;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .service-card .desc { display: block; }
}

/* ─── Before/After Slider ────────────────────────────────────── */
.before-after-section {
  padding: 64px 24px;
  background: #0A0A0A;
}
.before-after-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.before-after-section > .container > p {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 24px;
}
.sliders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .sliders-grid { grid-template-columns: repeat(3, 1fr); }
}
.comparison-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  cursor: col-resize;
  user-select: none;
}
.comp-before, .comp-after-clip {
  position: absolute;
  inset: 0;
}
.comp-before img, .comp-after-clip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* after layer clips via clip-path in JS — never changes size */
.comp-label {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  z-index: 5;
}
.comp-label-before {
  top: 16px;
  right: 16px;
  background: rgba(40,40,40,0.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.comp-label-after {
  top: 16px;
  left: 16px;
  background: rgba(201,168,76,0.9);
  color: #0D0D0D;
}
.comp-label-service {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.65rem;
}
.comp-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.comp-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201,168,76,0.8);
}
.comp-handle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #0D0D0D;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-handle svg {
  display: block;
}

/* ─── Postcode Checker ───────────────────────────────────────── */
.postcode-section {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.postcode-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.postcode-section .sub {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 32px;
}
.postcode-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .postcode-form { flex-direction: row; }
}
.postcode-input-wrap { position: relative; flex: 1; }
.postcode-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.postcode-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
}
.postcode-input::placeholder { color: #444; }
.postcode-result {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 2px;
  padding: 32px;
  text-align: center;
}
.postcode-result.covered {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
}
.postcode-result.not-covered {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.postcode-result.notified {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
}
.postcode-result h3 {
  font-size: 1.25rem;
  margin: 16px 0 8px;
}
.postcode-result p { font-size: 0.875rem; color: var(--text-3); }
.postcode-result-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .postcode-result-btns { flex-direction: row; align-items: center; }
}
.postcode-result .reset-btn,
.postcode-result .postcode-reset {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.postcode-result .reset-btn:hover,
.postcode-result .postcode-reset:hover { color: #ccc; }
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 24px auto 0;
}
@media (min-width: 640px) { .notify-form { flex-direction: row; } }
.notify-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
}
.notify-input::placeholder { color: #444; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  padding: 64px 24px;
  background: var(--bg);
}
.testimonials-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  position: relative;
  padding: 32px;
  border-radius: 2px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.07);
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { color: var(--gold); }
.testimonial-text {
  font-size: 0.875rem;
  color: #C0C0C0;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-tag-small {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 2px;
}
.testimonial-service-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ─── Commercial Teaser ──────────────────────────────────────── */
.commercial-teaser {
  padding: 64px 24px;
  background: var(--bg-1);
}
.commercial-teaser-inner {
  border-radius: 2px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
}
@media (min-width: 768px) {
  .commercial-teaser-inner { padding: 56px; }
}
.commercial-teaser-bg {
  position: absolute;
  top: 0; left: 0;
  width: 256px; height: 100%;
  background: linear-gradient(to right, rgba(201,168,76,0.03), transparent);
  pointer-events: none;
}
.commercial-teaser-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .commercial-teaser-content {
    flex-direction: row;
    align-items: center;
  }
}
.commercial-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
}
.commercial-teaser-text { flex: 1; }
.commercial-teaser-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.commercial-teaser-text p {
  font-size: 0.875rem;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.commercial-teaser-text p:last-child { color: var(--text-3); }
.commercial-teaser-cta { flex-shrink: 0; }

/* ─── CTA Block ──────────────────────────────────────────────── */
.cta-section {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  background: #111111;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.cta-content h2 span { color: var(--gold); }
.cta-content p {
  font-size: 1rem;
  color: var(--text-3);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-3);
}
.cta-phone svg { color: var(--gold); }
.cta-phone a { color: var(--text); font-weight: 600; transition: color 0.2s; }
.cta-phone a:hover { color: var(--gold); }

/* ─── Service Hero ───────────────────────────────────────────── */
.service-hero {
  position: relative;
  padding: 48px 24px 56px;
  overflow: hidden;
  background: var(--bg);
}
.service-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
}
.service-hero .tagline {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #888;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

/* ─── Pricing Table ──────────────────────────────────────────── */
.pricing-section {
  padding: 56px 24px 32px;
  position: relative;
  background: var(--bg-1);
}
.pricing-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.pricing-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-table td {
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
}
.pricing-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}
.pricing-additional {
  margin-top: 16px;
}
.pricing-additional .add-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-additional ul { display: flex; flex-direction: column; gap: 8px; }
.pricing-additional li {
  font-size: 0.875rem;
  color: #aaa;
  display: flex;
  gap: 8px;
}
.pricing-additional li::before {
  content: '+';
  color: var(--gold);
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pricing-commercial-link {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pricing-commercial-link a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Window pricing toggles */
.pricing-toggles {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.toggle-group {
  display: flex;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
}
.toggle-btn {
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid transparent;
  background: transparent;
  color: #555;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.toggle-btn.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}
.pricing-note-box {
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 2px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  color: #aaa;
  margin-bottom: 16px;
}

/* ─── Service Description ────────────────────────────────────── */
.service-desc-section {
  padding: 32px 24px 56px;
  background: var(--bg-1);
}
.service-desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-desc-grid { grid-template-columns: 1fr 1fr; }
}
/* Mobile: image above text, with gaps matched to the 56px section rhythm */
@media (max-width: 1023px) {
  .service-desc-section { padding-top: 24px; }  /* 32 (pricing bottom) + 24 = 56 above image */
  .service-desc-grid { gap: 56px; }             /* 56 between image and text — matches section rhythm */
  .service-desc-media { order: 1; }
  .service-desc-text { order: 2; }
}
.service-desc-text p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-desc-text p:last-child { margin-bottom: 0; }
.service-desc-media {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-desc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  padding: 56px 24px;
  background: var(--bg);
}
.faq-section h2 {
  font-size: 1.875rem;
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.1);
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(201,168,76,0.3);
  background: var(--bg-3);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}
.faq-chevron {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.875rem;
  color: #aaa;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Service CTA ────────────────────────────────────────────── */
.service-cta {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  text-align: center;
}
.service-cta h2 {
  font-size: 1.875rem;
  margin-bottom: 32px;
}

/* Sticky quote button */
.sticky-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  transition: opacity 0.3s, transform 0.3s;
}
.sticky-quote.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* ─── About Page ─────────────────────────────────────────────── */
.about-page {
  padding: 112px 24px 96px;
  background: var(--bg);
  min-height: 100vh;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; }
}
.about-story-text p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-text p:first-child { color: var(--text-2); }
.about-story-text p:not(:first-child) { color: var(--text-3); }
.about-photo-placeholder {
  border-radius: 2px;
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-placeholder p {
  font-size: 0.875rem;
  color: var(--text-4);
  font-style: italic;
}
.about-photo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.about-photo img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-sub);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--bg-2);
  border-radius: 2px;
  padding: 28px;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* ─── Services List Page ─────────────────────────────────────── */
.services-list-page {
  padding: 112px 24px 96px;
  background: var(--bg);
  min-height: 100vh;
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .services-list-grid { grid-template-columns: 1fr 1fr; }
}
.service-list-card {
  background: var(--bg-2);
  border-radius: 2px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.service-list-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--bg-3);
}
.service-list-card-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.service-list-img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  flex-shrink: 0;
}
.service-list-img img { width: 100%; height: 100%; object-fit: cover; }
.service-list-card h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.service-list-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold);
}
.service-list-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-list-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.service-list-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #aaa;
}
.service-list-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-list-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-list-card:hover .service-list-cta { gap: 12px; }
.not-sure-box {
  background: var(--bg-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 40px;
  text-align: center;
}
.not-sure-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.not-sure-box p {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 28px;
}
.not-sure-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ─── Quote Form ─────────────────────────────────────────────── */
.quote-page {
  min-height: 100vh;
  padding: 112px 24px 96px;
  background: var(--bg);
}
.form-section {
  background: var(--bg-2);
  border-radius: 2px;
  padding: 32px;
  border: 1px solid var(--border);
}
@media (max-width: 500px) {
  .form-section {
    padding: 24px 20px;
  }
}
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid #2A2A2A;
  border-radius: 2px;
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
@media (max-width: 600px) {
  /* Prevent iOS Safari auto-zoom on focus (triggers under 16px) */
  .form-input, .form-select, .form-textarea {
    font-size: 16px;
  }
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,168,76,0.4);
}
.form-select { cursor: pointer; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.form-error {
  font-size: 0.875rem;
  color: #e87070;
  margin-bottom: 16px;
}
.form-field.has-error .form-input,
.form-field.has-error .form-select,
.form-field.has-error .form-textarea {
  border-color: #e87070;
  background: rgba(232, 112, 112, 0.04);
}
.form-field.has-error .service-checkboxes {
  outline: 1px solid #e87070;
  outline-offset: 4px;
  border-radius: 2px;
}
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #e87070;
  margin-top: 6px;
  line-height: 1.4;
}
.field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232, 112, 112, 0.18);
  color: #e87070;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.service-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .service-checkboxes {
    grid-template-columns: 1fr 1fr;
  }
}
.service-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 2px;
  background: var(--bg-2);
  border: 1px solid #222;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.35;
}
.service-checkbox-label.checked {
  border-color: var(--gold);
}
.service-checkbox-label input {
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 500px) {
  .service-checkboxes {
    grid-template-columns: 1fr !important;
  }
}
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-2);
}
.radio-label input { accent-color: var(--gold); }

/* Step indicator */
.form-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.form-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.form-step-pill .form-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-3);
}
.form-step-pill.active {
  border-color: rgba(201,168,76,0.5);
  color: var(--text);
  background: rgba(201,168,76,0.08);
}
.form-step-pill.active .form-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D0D0D;
}
.form-step-pill.done .form-step-num {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
.form-step-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-step-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.form-step-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 500px) {
  .form-step-actions { flex-direction: column-reverse; }
  .form-step-actions .btn { width: 100%; }
}
.form-step-pill { cursor: pointer; }
.form-step-pill:hover { border-color: rgba(201,168,76,0.4); }
.form-step-pill[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
}
.form-step-pill[aria-disabled="true"]:hover { border-color: var(--border); }

/* Quote success */
.quote-success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}
.quote-success-inner { text-align: center; max-width: 440px; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}
.quote-success-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.quote-success-inner p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}
.quote-success-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.thank-you-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ─── Commercial Page ────────────────────────────────────────── */
.commercial-hero {
  position: relative;
  padding: 56px 24px 80px;
  background: var(--bg);
}
.commercial-hero-glow {
  display: none;
}
.commercial-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .commercial-hero-grid { grid-template-columns: 1fr 1fr; }
}
.commercial-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.commercial-hero p {
  font-size: 1.1rem;
  color: var(--text-3);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.commercial-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.commercial-placeholder {
  border-radius: 2px;
  background: var(--bg-3);
  border: 1px solid #252525;
  min-height: 320px;
  overflow: hidden;
}
.commercial-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.commercial-placeholder-inner { text-align: center; padding: 32px; }
.commercial-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #252525;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.commercial-placeholder p { font-size: 0.875rem; color: #555; }
.commercial-services-section {
  padding: 64px 24px;
  background: var(--bg);
  border-top: 1px solid var(--bg-3);
}
.commercial-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .commercial-services-grid { grid-template-columns: 1fr 1fr; }
}
.commercial-service-card {
  border-radius: 2px;
  padding: 24px;
  background: linear-gradient(to bottom, var(--bg-3), var(--bg-2));
  border: 1px solid #222;
}
.commercial-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #252525;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.commercial-service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.commercial-service-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}
.commercial-why-section {
  padding: 64px 24px;
  background: var(--bg-1);
}
.commercial-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .commercial-why-grid { grid-template-columns: repeat(3, 1fr); }
}
.commercial-why-card {
  background: var(--bg-2);
  border-radius: 2px;
  padding: 28px;
}
.commercial-why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.commercial-why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.commercial-why-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}
.commercial-property-section {
  padding: 64px 24px;
  background: var(--bg);
}
.commercial-property-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.property-tag {
  padding: 8px 16px;
  border-radius: 2px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font-display);
  font-weight: 500;
}
.commercial-form-section {
  padding: 64px 24px;
  background: var(--bg-4);
  border-top: 1px solid var(--bg-3);
}

/* ─── Check Area Page ────────────────────────────────────────── */
.check-area-page {
  min-height: 100vh;
  padding: 112px 24px 96px;
  background: var(--bg);
}

/* ─── Admin Page ─────────────────────────────────────────────── */
.admin-page {
  min-height: 100vh;
  padding: 112px 24px 96px;
  background: var(--bg);
}
.password-gate {
  max-width: 400px;
  margin: 0 auto;
  padding: 48px 0;
}
.password-gate h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.password-gate p {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 32px;
}
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.admin-tab {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--gold); border-color: var(--gold); }
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px 16px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
}
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-new { background: rgba(201,168,76,0.15); color: var(--gold); }
.status-contacted { background: rgba(59,130,246,0.15); color: #60a5fa; }
.status-booked { background: rgba(34,197,94,0.15); color: #4ade80; }
.status-closed { background: rgba(255,255,255,0.06); color: #888; }
.status-select {
  background: var(--bg-3);
  border: 1px solid #333;
  border-radius: 2px;
  color: var(--text);
  font-size: 0.75rem;
  padding: 4px 8px;
  cursor: pointer;
  outline: none;
}

/* ─── 404 ────────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  text-align: center;
}
.not-found h1 { font-size: 4rem; margin-bottom: 16px; }
.not-found p { color: var(--text-3); margin-bottom: 24px; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

/* ─── Utilities ──────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13,13,13,0.3);
  border-top-color: #0D0D0D;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  margin: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Pages where main already has 24px horizontal padding — reset breadcrumb margin so it doesn't double up */
main.about-page .breadcrumb,
main.services-list-page .breadcrumb,
main.page-wrap .breadcrumb,
main.check-area-page .breadcrumb,
main.quote-page .breadcrumb {
  margin-left: 0;
  margin-right: 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-3);
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--text-3);
  opacity: 0.4;
}
.breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li[aria-current="page"] { color: var(--gold); }

/* ─── Blog ───────────────────────────────────────────────────── */
.page-wrap {
  padding: 112px 24px 96px;
  background: var(--bg);
  min-height: 100vh;
}
.page-hero-wrap {
  padding-top: 56px;
  margin-bottom: 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
}
.blog-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--bg-3);
}
.blog-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.blog-card h2 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-3);
  flex: 1;
}
.blog-card a.read-more {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card a.read-more:hover { text-decoration: underline; }

/* Blog post layout */
.blog-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.blog-post-header { margin-bottom: 40px; }
.blog-post-header .post-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.blog-post-header h1 { margin-bottom: 16px; line-height: 1.25; }
.blog-post-header .post-meta {
  font-size: 0.8rem;
  color: var(--text-3);
}
.blog-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 40px 0;
}
.blog-post section { line-height: 1.8; }
.blog-post section h2 { font-size: 1.35rem; margin: 36px 0 14px; }
.blog-post section h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.blog-post section p { margin-bottom: 18px; color: var(--text-2); }
.blog-post section ul, .blog-post section ol {
  margin: 0 0 18px 0;
  padding-left: 20px;
  color: var(--text-2);
}
.blog-post section li { margin-bottom: 8px; line-height: 1.7; }
.blog-post section strong { color: var(--text); }

.blog-faq { margin-top: 48px; }
.blog-faq h2 { font-size: 1.35rem; margin-bottom: 24px; }
.blog-faq-item { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.blog-faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.blog-faq-item h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text); }
.blog-faq-item p { font-size: 0.88rem; color: var(--text-3); margin: 0; line-height: 1.7; }

.blog-cta-box {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
.blog-cta-box p { color: var(--text-3); margin-bottom: 20px; }
