/* ══ Self-Hosted Fonts (no external requests) ══ */

/* Size-adjusted fallbacks — matches Open Sans/Bree Serif metrics to prevent layout shift */
@font-face {
  font-family: 'Open Sans Fallback';
  src: local('Arial');
  size-adjust: 105.4%;
  ascent-override: 101%;
  descent-override: 27%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Bree Serif Fallback';
  src: local('Georgia');
  size-adjust: 107.6%;
  ascent-override: 98%;
  descent-override: 25%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url('../fonts/opensans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url('../fonts/opensans-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bree Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/breeserif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Variables ── */
:root {
  --accent:       #924400;
  --accent-hover: #a84e00;
  --accent-glow:  rgba(146, 68, 0, 0.5);
  --bg:           #000000;
  --bg2:          #0a0a0a;
  --bg3:          #111111;
  --border:       rgba(146, 68, 0, 0.25);
  --border-dim:   rgba(255, 255, 255, 0.07);
  --white:        #ffffff;
  --text:         rgba(255, 255, 255, 0.82);
  --muted:        rgba(255, 255, 255, 0.7);
  --h-font:       'Bree Serif', 'Bree Serif Fallback', Georgia, serif;
  --b-font:       'Open Sans', 'Open Sans Fallback', Arial, sans-serif;
  --wrap:         1180px;
  --ease:         0.28s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--b-font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 {
  font-family: var(--h-font);
  color: var(--white);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--text); line-height: 1.75; }

/* ── Accent text ── */
.clr { color: var(--accent); }

/* ── Eyebrow + divider ── */
.eyebrow {
  display: block;
  font-family: var(--b-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.line {
  display: block;
  width: 36px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 8px 0 20px;
}
.line-c { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   BUTTONS — exact match to screenshot
   - semi-transparent black bg
   - #924400 border
   - white text
   - outer neon glow on hover
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--b-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  /* subtle resting glow */
  box-shadow: 0 0 8px rgba(146,68,0,0.3), inset 0 0 0 0 transparent;
}
.btn:hover {
  background: rgba(146, 68, 0, 0.18);
  box-shadow:
    0 0 16px rgba(146,68,0,0.6),
    0 0 40px rgba(146,68,0,0.3),
    0 0 2px var(--accent);
  transform: translateY(-2px);
}
.btn-solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 12px rgba(146,68,0,0.5);
}
.btn-solid:hover {
  background: var(--accent-hover);
  box-shadow:
    0 0 20px rgba(146,68,0,0.7),
    0 0 50px rgba(146,68,0,0.3);
  transform: translateY(-2px);
}
.btn svg { width: 15px; height: 15px; }
.btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════
   OFFER BAR (replaces old topbar)
══════════════════════════════════════ */
.offer-bar {
  background: linear-gradient(90deg, #1a0d00 0%, #0d0804 50%, #1a0d00 100%);
  border-bottom: 1px solid rgba(146,68,0,0.3);
  padding: 8px 0;
  text-align: center;
}
.offer-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.offer-text strong { color: var(--accent); }
.offer-text a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.offer-text a:hover { color: var(--accent); }
@media(max-width:640px) {
  .offer-bar { padding: 6px 0; }
  .offer-text { font-size: 0.6rem; line-height: 1.4; }
  .offer-text .offer-phone { display: none; }
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dim);
  transition: box-shadow var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo img { height: 48px; width: auto; }
.logo-text {
  font-family: var(--h-font);
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
}
.logo-text span { color: var(--accent); }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--ease);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: var(--white);
  border-bottom-color: var(--accent);
}
/* Dropdown arrow */
.nav-menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--ease);
}
.nav-menu .menu-item-has-children:hover > a::after { transform: rotate(180deg); }
/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0f0f0f;
  border: 1px solid var(--border-dim);
  border-top: 2px solid var(--accent);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--ease);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  z-index: 100;
}
.nav-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  border-left: 2px solid transparent;
  transition: all var(--ease);
}
.nav-menu .sub-menu a:hover {
  color: var(--white);
  border-left-color: var(--accent);
  padding-left: 22px;
  background: rgba(146,68,0,0.07);
}
.nav-cta { margin-left: 12px; padding: 10px 18px; font-size: 0.72rem; white-space: nowrap; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-top: 2px solid var(--accent);
  padding: 20px 24px 24px;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mm-nav { display: flex; flex-direction: column; gap: 0; }
.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--ease), background var(--ease);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--b-font);
}
.mm-link:hover, .mm-link:active { color: var(--accent); background: rgba(146,68,0,0.05); }
.mm-arrow {
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform var(--ease);
}
.mm-dropdown.open .mm-arrow { transform: rotate(180deg); }
.mm-sub {
  display: none;
  background: rgba(146,68,0,0.04);
  border-left: 2px solid var(--accent);
  margin-left: 16px;
}
.mm-dropdown.open .mm-sub { display: block; }
.mm-sub a {
  display: block;
  padding: 11px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--ease), padding-left var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mm-sub a:hover { color: var(--accent); padding-left: 24px; }
.mobile-menu .m-cta { margin-top: 16px; width: 100%; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
/* Warm ambient glow behind hero image */
.hero-glow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(146,68,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(146,68,0,0.4);
  background: rgba(146,68,0,0.1);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 18px; }
.hero-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-btns {
  margin-bottom: 28px;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.hero-btns .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
}
/* ── Hero image ── */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
}
.stat-n {
  font-family: var(--h-font);
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(146,68,0,0.4);
}
.stat-l {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero image */
.hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(146,68,0,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px rgba(146,68,0,0.1);
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.section { padding: 88px 0; }

/* Subtle warm glow on alternating bg2 sections for visual relief */
.section.bg2 { background: linear-gradient(180deg, #0a0a0a 0%, #0d0804 50%, #0a0a0a 100%); }
.section.bg3 { background: linear-gradient(180deg, #111111 0%, #110e0a 50%, #111111 100%); }

/* Two column grid */
.cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Three column grid */
.cols3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

/* Image block */
.img-wrap { position: relative; border-radius: 10px; overflow: visible; }
.img-wrap img {
  width: 100%; border-radius: 10px;
  object-fit: cover; display: block;
}
.r43 img { aspect-ratio: 4/3; }
.r34 img { aspect-ratio: 3/4; }

/* Floating info badge on image */
.ibadge {
  position: absolute;
  bottom: -14px; left: -14px;
  background: #111;
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 11px 15px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.7);
  z-index: 2;
}
.ibadge-icon {
  width: 34px; height: 34px;
  background: rgba(146,68,0,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ibadge strong { display: block; color: var(--white); font-size: 0.88rem; }
.ibadge span { font-size: 0.7rem; color: var(--muted); }

/* Guarantee circle */
.guarantee {
  position: absolute;
  top: -14px; right: -14px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 2px solid var(--accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.54rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  box-shadow: 0 0 20px rgba(146,68,0,0.5);
  line-height: 1.3;
  z-index: 2;
}
.guarantee strong {
  display: block;
  font-family: var(--h-font);
  font-size: 1rem;
  color: var(--accent);
}

/* Content block */
.cblock p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.cblock strong, .cblock b { color: var(--white); }

/* Bullet list */
.blist { margin: 16px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.blist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.blist li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0; margin-top: 9px;
  box-shadow: 0 0 5px rgba(146,68,0,0.5);
}

/* Check list */
.cklist { margin: 16px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.cklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.ck {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(146,68,0,0.12);
  border: 1px solid rgba(146,68,0,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ck::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
}

/* ══════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════ */
.svc-intro { text-align: center; max-width: 600px; margin: 0 auto 50px; }

.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
  box-shadow: 0 0 8px rgba(146,68,0,0.5);
}
.svc-card:hover {
  border-color: rgba(146,68,0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(146,68,0,0.07);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-ico {
  width: 46px; height: 46px;
  background: rgba(146,68,0,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background var(--ease);
}
.svc-ico svg { width: 22px; height: 22px; color: var(--accent); }
.svc-card:hover .svc-ico { background: rgba(146,68,0,0.2); }

.svc-price {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.svc-card h3 { margin-bottom: 9px; font-size: 1rem; }
.svc-card p {
  font-size: 0.85rem; color: var(--muted);
  flex: 1; margin-bottom: 20px; line-height: 1.65;
}
.svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: gap var(--ease);
}
.svc-more:hover { gap: 10px; }
.svc-more svg { width: 12px; height: 12px; }
.svc-footer { text-align: center; margin-top: 42px; }
.svc-footer .btns { justify-content: center; }

/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dim);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-n {
  font-family: var(--h-font); font-size: 2.2rem;
  color: rgba(146,68,0,0.12); line-height: 1; min-width: 48px;
  transition: color var(--ease);
}
.step:hover .step-n { color: rgba(146,68,0,0.4); }
.step-t { margin-bottom: 4px; font-size: 0.96rem; }
.step p { font-size: 0.85rem; color: var(--muted); }
@media(max-width:900px) {
  .step { flex-direction: column; text-align: center; align-items: center; }
  .step-n { min-width: auto; }
}

/* ══════════════════════════════════════
   PROGRESS BARS
══════════════════════════════════════ */
.pbars { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.pb-row { display: flex; flex-direction: column; gap: 5px; }
.pb-label {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
}
.pb-track { height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.pb-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 8px rgba(146,68,0,0.5);
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-intro { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 188px;
  gap: 8px;
}
.gallery-grid .gi { border-radius: 4px; overflow: hidden; position: relative; background: #111; }
.gallery-grid .gi:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .gi:hover img { transform: scale(1.06); }
.gi-over {
  position: absolute; inset: 0;
  background: rgba(146,68,0,0.08);
  opacity: 0; transition: opacity var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gi:hover .gi-over { opacity: 1; }
.gi-over svg { width: 24px; height: 24px; color: #fff; }
.gallery-footer { text-align: center; margin-top: 28px; }
.gallery-footer .btns { justify-content: center; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.g-score { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.g-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg3); border: 1px solid var(--border-dim);
  border-radius: 4px; padding: 6px 12px;
}
.g-stars { color: var(--accent); font-size: 0.88rem; letter-spacing: 1px; }
.g-num { font-family: var(--h-font); font-size: 1.5rem; color: var(--white); }
.g-sub { font-size: 0.7rem; color: var(--muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rcard {
  background: var(--bg3); border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all var(--ease);
}
.rcard:hover {
  border-color: rgba(146,68,0,0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}
.rcard-top { display: flex; align-items: center; gap: 9px; }
.r-ava {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border-dim);
  background: rgba(146,68,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-family: var(--h-font); font-weight: 700; font-size: 0.95rem;
}
.r-ava img { width: 100%; height: 100%; object-fit: cover; }
.r-name { font-family: var(--h-font); font-size: 0.84rem; color: var(--white); }
.r-date { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }
.r-stars { color: var(--accent); font-size: 0.76rem; letter-spacing: 1px; margin-left: auto; }
.r-text { font-size: 0.82rem; color: var(--muted); line-height: 1.7; flex: 1; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-intro { text-align: center; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border-dim); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer;
  font-family: var(--h-font); font-size: 0.9rem; color: var(--white);
  user-select: none; transition: color var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-ico {
  width: 26px; height: 26px; min-width: 26px; max-width: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(146,68,0,0.35);
  background: rgba(146,68,0,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
  overflow: hidden;
}
.faq-ico svg { width: 11px; height: 11px; min-width: 11px; max-width: 11px; color: var(--accent); transition: transform var(--ease); }
.faq-item.open .faq-ico {
  background: rgba(0,0,0,0.6);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(146,68,0,0.4);
}
.faq-item.open .faq-ico svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-in { padding-bottom: 16px; font-size: 0.86rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; }

/* ══════════════════════════════════════
   CONTACT / FORM
══════════════════════════════════════ */
.contact-cols { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.cinfo { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ci { display: flex; align-items: center; gap: 12px; }
.ci-ico {
  width: 40px; height: 40px; background: rgba(146,68,0,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ico svg { width: 17px; height: 17px; color: var(--accent); }
.ci-txt span {
  display: block; font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted); margin-bottom: 1px;
}
.ci-txt a, .ci-txt strong { font-size: 0.86rem; color: var(--white); transition: color var(--ease); }
.ci-txt a:hover { color: var(--accent); }
.hours {
  background: var(--bg3); border: 1px solid var(--border-dim);
  border-left: 2px solid var(--accent);
  border-radius: 6px; padding: 13px 15px; margin-bottom: 20px;
}
.hours h4 {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); margin-bottom: 6px; font-family: var(--b-font);
}
.hours p { font-size: 0.84rem; color: var(--text); }

.form-box {
  background: linear-gradient(135deg, #1a1510 0%, #181412 50%, #151210 100%);
  border: 1px solid rgba(146,68,0,0.3);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.form-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(146,68,0,0.5);
}
.form-box h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-box .fsub { font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.fw { grid-column: span 2; }
.fg label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.fg input, .fg select, .fg textarea {
  background: #1a1714; border: 1px solid rgba(146,68,0,0.2);
  border-radius: 6px; padding: 11px 13px;
  font-size: 0.875rem; color: var(--white); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.15); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(146,68,0,0.5);
  box-shadow: 0 0 0 3px rgba(146,68,0,0.07);
}
.fg select option { background: #1a1a1a; color: #fff; }
.fg textarea { resize: vertical; min-height: 90px; }
.f-submit { margin-top: 14px; width: 100%; padding: 14px; }
.f-note {
  text-align: center; margin-top: 10px;
  font-size: 0.7rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.f-note svg { width: 11px; height: 11px; }
.f-msg {
  display: none; margin-top: 12px; padding: 11px;
  border-radius: 6px; font-size: 0.82rem; font-weight: 700; text-align: center;
}
.f-msg.ok  { background: rgba(34,197,94,0.08); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.f-msg.err { background: rgba(146,68,0,0.08); color: var(--accent); border: 1px solid rgba(146,68,0,0.2); }

/* ══════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════ */
.area-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.area-links { display: flex; flex-direction: column; gap: 7px; }
.area-link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 4px;
  border: 1px solid var(--border-dim);
  font-size: 0.83rem; color: var(--text);
  transition: all var(--ease);
  background: rgba(255,255,255,0.01);
}
.area-link:hover {
  border-color: rgba(146,68,0,0.3);
  color: var(--accent);
  background: rgba(146,68,0,0.04);
}
.area-link svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.area-hours {
  display: flex; align-items: center; gap: 7px;
  color: var(--accent); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 14px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border-dim); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.f-logo img { height: 42px; margin-bottom: 12px; }
.f-logo .lt { font-family: var(--h-font); font-size: 1.15rem; color: var(--white); display: block; margin-bottom: 12px; }
.f-logo .lt span { color: var(--accent); }
.f-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.f-social { display: flex; gap: 6px; }
.f-social a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--accent); border-radius: 4px;
  color: #fff; transition: all var(--ease);
}
.f-social a:hover { background: var(--accent-hover); box-shadow: 0 0 10px rgba(146,68,0,0.5); }
.f-social svg { width: 13px; height: 13px; }

.f-col h4 {
  font-size: 0.65rem; font-family: var(--b-font); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--white);
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border-dim);
}
.f-links { display: flex; flex-direction: column; gap: 8px; }
.f-links a {
  font-size: 0.81rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  transition: color var(--ease);
}
.f-links a::before { content: '›'; color: var(--accent); }
.f-links a:hover { color: var(--accent); }

.f-nl p { font-size: 0.81rem; color: var(--muted); margin-bottom: 11px; line-height: 1.6; }
.nl-row { display: flex; gap: 6px; }
.nl-in {
  flex: 1; background: var(--bg3); border: 1px solid var(--border-dim);
  border-radius: 4px; padding: 9px 11px; font-size: 0.78rem;
  color: var(--white); outline: none; transition: border-color var(--ease);
}
.nl-in::placeholder { color: rgba(255,255,255,0.18); }
.nl-in:focus { border-color: rgba(146,68,0,0.4); }
.nl-btn {
  padding: 9px 15px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--ease);
}
.nl-btn:hover { box-shadow: 0 0 12px rgba(146,68,0,0.4); }

.footer-bar {
  border-top: 1px solid var(--border-dim); padding: 17px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-map {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-dim);
}
.footer-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: block;
}
@media(max-width:640px) {
  .footer-map iframe { height: 250px; }
}
.footer-bar p { font-size: 0.74rem; color: var(--muted); }
.f-legal { display: flex; gap: 14px; }
.f-legal a { font-size: 0.71rem; color: var(--muted); transition: color var(--ease); }
.f-legal a:hover { color: var(--accent); }
/* Designer credit — nofollow link */
.footer-credit {
  text-align: center;
  padding: 12px 0 8px;
  border-top: 1px solid var(--border-dim);
}
.footer-credit a {
  font-size: 0.74rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.footer-credit a:hover { color: var(--accent); }

/* Scroll animations removed for performance */
/* ══════════════════════════════════════
   WHERE EVERY DETAIL SHINES (after hero)
══════════════════════════════════════ */
.weds-section {
  background: linear-gradient(180deg, #000 0%, #0d0804 50%, #000 100%);
  border-bottom: 1px solid var(--border-dim);
  border-top: 1px solid var(--border-dim);
}
.weds-cols { gap: 60px; }
.weds-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.weds-img-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.ibadge-stars { color: var(--accent); font-size: 0.75rem; letter-spacing: 1px; display: block; }
.weds-content { display: flex; flex-direction: column; justify-content: center; }
.weds-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.weds-stat-n {
  font-family: var(--h-font);
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 16px rgba(146,68,0,0.3);
}
.weds-stat-l {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media(max-width:900px) {
  .weds-cols { grid-template-columns: 1fr; text-align: center; }
  .weds-stats { justify-content: center; }
  .weds-content .btns { justify-content: center; }
  .weds-content .line { margin-left: auto; margin-right: auto; }
}

/* ══════════════════════════════════════
   SERVICE CARD THUMBNAILS
══════════════════════════════════════ */
.svc-thumb {
  height: 140px;
  margin: -30px -26px 18px -26px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.svc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-card:hover .svc-thumb img { transform: scale(1.06); }

/* ══════════════════════════════════════
   TESTIMONIALS (below reviews)
══════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testi-card {
  background: linear-gradient(135deg, #161008 0%, #131110 100%);
  border: 1px solid rgba(146,68,0,0.3);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.testi-quote {
  font-family: var(--h-font);
  font-size: 3.5rem;
  color: rgba(146,68,0,0.25);
  line-height: 1;
  margin-bottom: -10px;
}
.testi-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dim);
}
.testi-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(146,68,0,0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testi-role {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}
@media(max-width:768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { text-align: center; }
  .testi-author { justify-content: center; }
}

/* ══════════════════════════════════════
   DROPDOWN BACKGROUND FIX (mobile nav)
══════════════════════════════════════ */
.nav-menu .sub-menu {
  background: #141414;
}

/* ══════════════════════════════════════
   TRUSTINDEX GMB REVIEWS WIDGET — Dark theme override
══════════════════════════════════════ */
.gmb-reviews-widget {
  border-radius: 12px;
  overflow: hidden;
}
/* Override Trustindex widget backgrounds to match dark theme */
.gmb-reviews-widget [class*="ti-widget"],
.gmb-reviews-widget [class*="ti-review-item"],
.gmb-reviews-widget .ti-widget {
  background: transparent !important;
  color: var(--text) !important;
}
.gmb-reviews-widget .ti-review-item {
  background: var(--bg3) !important;
  border: 1px solid var(--border-dim) !important;
  border-radius: 10px !important;
}
.gmb-reviews-widget .ti-stars .ti-star { color: var(--accent) !important; }

/* ══════════════════════════════════════
   BLOG / PAGE / POST CONTENT
══════════════════════════════════════ */
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4 { color:var(--white); margin:24px 0 10px; }
.entry-content p { color:var(--text); margin-bottom:14px; }
.entry-content strong { color:var(--white); }
.entry-content a { color:var(--accent); }
.entry-content ul,.entry-content ol { padding-left:22px; margin-bottom:14px; color:var(--text); }
.entry-content li { margin-bottom:6px; }
.entry-content blockquote { border-left:3px solid var(--accent); padding:12px 18px; margin:16px 0; background:rgba(146,68,0,0.05); border-radius:0 6px 6px 0; font-style:italic; }
.entry-content img { border-radius:6px; margin:14px auto; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px) {
  .cols3 { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
}
@media(max-width:900px) {
  .section { padding:60px 0; }
  .cols2,.contact-cols,.area-cols { grid-template-columns:1fr; gap:40px; }
  /* Reverse "Why Choose Us" on mobile so text comes first, image second */
  #why .cols2 > .img-wrap { order: 2; }
  #why .cols2 > .cblock { order: 1; }
  .hero-inner { grid-template-columns:1fr; padding:24px 0 32px; }
  .hero-img { display:none; }
  .hero { min-height:auto; padding:20px 0; }
  .nav-menu,.nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .guarantee { right:10px; top:-10px; }
  .ibadge { left:10px; bottom:-10px; }
}
@media(max-width:640px) {
  .section { padding:46px 0; }
  .wrap { padding:0 16px; }
  .cols3,.reviews-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:130px; }
  .gallery-grid .gi:nth-child(7n+1) { grid-column:span 2; }
  .fgrid { grid-template-columns:1fr; }
  .fg.fw { grid-column:span 1; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .footer-bar { flex-direction:column; text-align:center; }
  .btns { flex-wrap: wrap; align-items: center; justify-content: center; }
  .btns .btn { flex: 1; min-width: 130px; max-width: 220px; text-align: center; justify-content: center; padding: 12px 10px; font-size: 0.72rem; }
  .form-box { padding:22px 16px; }
  .hero-stats { gap:20px; }
  .contact-cols { gap:36px; }
}

/* ══════════════════════════════════════
   GALLERY SLIDER
══════════════════════════════════════ */
.slider-wrap { position:relative; overflow:hidden; border-radius:12px; }
.slider-track { display:flex; transition:transform 0.5s ease; }
.slider-track img {
  flex:0 0 calc(33.333% - 8px);
  margin-right:12px;
  height:260px;
  object-fit:cover;
  border-radius:10px;
}
.slider-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:var(--accent);
  border:none;
  color:#fff;
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background var(--ease);
}
.slider-btn:hover { background:var(--accent-hover); }
.slider-btn.prev { left:10px; }
.slider-btn.next { right:10px; }
.slider-dots { display:flex; justify-content:center; gap:8px; margin-top:16px; }
.slider-dot {
  width:9px; height:9px; border-radius:50%;
  background:var(--border-dim);
  border:none; cursor:pointer; transition:background var(--ease);
}
.slider-dot.active { background:var(--accent); }
@media(max-width:768px) {
  .slider-track img { flex:0 0 calc(50% - 6px); height:190px; }
}
@media(max-width:480px) {
  .slider-track img { flex:0 0 calc(100% - 0px); margin-right:0; }
}

/* ══════════════════════════════════════
   PAGE TEMPLATES — COMMON
══════════════════════════════════════ */
.page-hero {
  background:var(--bg2);
  padding:70px 0 54px;
  border-bottom:1px solid var(--border-dim);
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 80% 50%, rgba(146,68,0,0.12) 0%, transparent 65%);
  pointer-events:none;
}
.page-hero .breadcrumb {
  font-size:.78rem;
  color:var(--muted);
  margin-bottom:18px;
  letter-spacing:.03em;
}
.page-hero .breadcrumb a { color:var(--accent); }
.page-hero h1 { font-size:clamp(1.9rem,4vw,2.9rem); color:var(--white); margin-bottom:14px; }
.page-hero p.sub { font-size:1.05rem; color:var(--text); max-width:660px; margin-bottom:28px; line-height:1.7; }
.page-hero .hero-img-wrap { position:absolute; right:0; top:0; bottom:0; width:40%; overflow:hidden; }
.page-hero .hero-img-wrap img { width:100%; height:100%; object-fit:cover; opacity:.45; }
@media(max-width:768px) {
  .page-hero .hero-img-wrap { display:none; }
  .page-hero { padding: 48px 0 40px; }
}

.ph-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  background:var(--accent);
  color:#fff;
  padding:13px 28px;
  border-radius:6px;
  font-weight:700;
  font-size:.95rem;
  transition:background var(--ease),transform var(--ease);
  display:inline-flex; align-items:center; gap:7px;
}
.btn-primary:hover { background:var(--accent-hover); transform:translateY(-2px); }
.btn-outline {
  border:1.5px solid var(--accent);
  color:var(--accent);
  padding:12px 26px;
  border-radius:6px;
  font-weight:700;
  font-size:.95rem;
  transition:all var(--ease);
  display:inline-flex; align-items:center; gap:7px;
}
.btn-outline:hover { background:var(--accent); color:#fff; }

/* Two-col layout with checklist + img */
.service-intro { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.service-intro .si-img { position:relative; }
.service-intro .si-img img { border-radius:12px; width:100%; }
.checklist { list-style:none; padding:0; margin:20px 0; }
.checklist li {
  padding:9px 0 9px 30px;
  position:relative;
  color:var(--text);
  border-bottom:1px solid var(--border-dim);
  font-size:.97rem;
}
.checklist li:last-child { border:none; }
.checklist li::before {
  content:'✓';
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
}

/* Benefits grid */
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:32px; }
.benefit-card {
  background:var(--bg3);
  border:1px solid var(--border-dim);
  border-radius:10px;
  padding:26px 22px;
  transition:border-color var(--ease);
}
.benefit-card:hover { border-color:var(--accent); }
.benefit-card .bc-icon { font-size:2rem; margin-bottom:12px; }
.benefit-card h4 { color:var(--white); font-size:1rem; margin-bottom:8px; }
.benefit-card p { color:var(--text); font-size:.9rem; line-height:1.6; }

/* Pricing packages */
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:32px; }
.pkg-card {
  background:var(--bg3);
  border:1px solid var(--border-dim);
  border-radius:12px;
  padding:30px 24px;
  position:relative;
}
.pkg-card.featured { border-color:var(--accent); }
.pkg-card .badge-feat {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#fff;
  padding:4px 16px; border-radius:20px; font-size:.78rem; font-weight:700; white-space:nowrap;
}
.pkg-card h3 { color:var(--white); font-size:1.15rem; margin-bottom:6px; }
.pkg-card .pkg-price { color:var(--accent); font-size:1.6rem; font-weight:700; margin-bottom:14px; }
.pkg-card ul { list-style:none; padding:0; margin-bottom:20px; }
.pkg-card ul li { padding:6px 0 6px 22px; position:relative; font-size:.9rem; color:var(--text); border-bottom:1px solid var(--border-dim); }
.pkg-card ul li:last-child { border:none; }
.pkg-card ul li::before { content:'✓'; position:absolute; left:0; color:var(--accent); font-weight:700; }

/* FAQ Accordion */
.faq-list { margin-top:32px; }
.faq-item { border-bottom:1px solid var(--border-dim); }
.faq-list .faq-q {
  width:100%; text-align:left; background:none; border:none;
  color:var(--white); font-size:1rem; font-weight:600;
  padding:18px 40px 18px 0;
  cursor:pointer; position:relative;
  font-family:var(--h-font);
  display:block;
}
.faq-list .faq-q::after {
  content:'+';
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  color:var(--accent); font-size:1.4rem; font-weight:400;
  transition:transform var(--ease);
}
.faq-list .faq-item.open .faq-q::after { transform:translateY(-50%) rotate(45deg); }
.faq-list .faq-a { display:none; padding:0 0 18px; color:var(--text); font-size:.95rem; line-height:1.75; }
.faq-list .faq-item.open .faq-a { display:block; }

/* Contact page */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:54px; align-items:start; }
.contact-cards { display:grid; gap:16px; }
.contact-card {
  background:var(--bg3);
  border:1px solid var(--border-dim);
  border-radius:10px;
  padding:20px 22px;
  display:flex; gap:16px; align-items:center;
  transition:border-color var(--ease);
}
.contact-card:hover { border-color:var(--accent); }
.contact-card .cc-icon { font-size:1.5rem; color:var(--accent); flex-shrink:0; }
.contact-card h4 { color:var(--white); font-size:.9rem; margin-bottom:2px; }
.contact-card p, .contact-card a { color:var(--text); font-size:.95rem; }

/* Stats strip */
.stats-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; margin-top:40px; }
.stat-box { background:var(--bg3); border:1px solid var(--border-dim); border-radius:10px; padding:24px 16px; }
.stat-box .sn { font-size:2.4rem; font-weight:700; color:var(--accent); font-family:var(--h-font); }
.stat-box .sl { font-size:.85rem; color:var(--muted); margin-top:4px; }

/* Values grid */
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:32px; }
.val-card { background:var(--bg3); border:1px solid var(--border-dim); border-radius:10px; padding:26px; }
.val-card h4 { color:var(--white); margin-bottom:10px; font-size:1rem; }
.val-card p { color:var(--text); font-size:.9rem; line-height:1.65; }

/* Areas slider */
.areas-slider-wrap { position:relative; overflow:hidden; border-radius:12px; }
.areas-track { display:flex; transition:transform .5s ease; }
.area-slide {
  flex:0 0 calc(33.333% - 8px);
  margin-right:12px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  height:220px;
}
.area-slide img { width:100%; height:100%; object-fit:cover; }
.area-slide .area-label {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  padding:18px 16px 14px;
  color:#fff; font-weight:700; font-size:1.05rem;
}

/* Reviews */
.reviews-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:32px; }
.review-card { background:var(--bg3); border:1px solid var(--border-dim); border-radius:10px; padding:26px; }
.review-card .stars { color:#f5a623; font-size:1rem; margin-bottom:12px; }
.review-card .rv-text { color:var(--text); font-size:.93rem; line-height:1.7; margin-bottom:16px; font-style:italic; }
.review-card .rv-author { display:flex; align-items:center; gap:12px; }
.review-card .rv-avatar { width:42px; height:42px; border-radius:50%; object-fit:cover; }
.review-card .rv-name { color:var(--white); font-weight:700; font-size:.9rem; }
.review-card .rv-label { color:var(--muted); font-size:.8rem; }

/* Why love us */
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.why-item { display:flex; gap:14px; align-items:flex-start; padding:18px; background:var(--bg3); border-radius:10px; border:1px solid var(--border-dim); }
.why-item .wi-icon { font-size:1.5rem; color:var(--accent); flex-shrink:0; }
.why-item h4 { color:var(--white); margin-bottom:4px; font-size:.95rem; }
.why-item p { color:var(--text); font-size:.87rem; }

/* CTA strip */
.cta-strip { background:linear-gradient(135deg,#0d0d0d 0%,#1a0d00 100%); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:56px 0; text-align:center; }
.cta-strip h2 { color:var(--white); font-size:clamp(1.5rem,3vw,2rem); margin-bottom:12px; }
.cta-strip p { color:var(--text); margin-bottom:28px; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Testimonial single */
.testimonial-single {
  background:var(--bg3);
  border:1px solid var(--accent);
  border-radius:12px;
  padding:32px;
  max-width:680px;
  margin:32px auto 0;
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.ts-img { width:72px; height:72px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.ts-body blockquote { font-style:italic; color:var(--text); font-size:1rem; line-height:1.75; margin:0 0 12px; }
.ts-name { color:var(--white); font-weight:700; }

/* Related services */
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:28px; }
.related-card { background:var(--bg3); border:1px solid var(--border-dim); border-radius:10px; padding:26px; text-align:center; transition:border-color var(--ease); }
.related-card:hover { border-color:var(--accent); }
.related-card h3 { color:var(--white); font-size:1rem; margin-bottom:10px; }
.related-card p { color:var(--text); font-size:.88rem; margin-bottom:16px; }
.related-card a { color:var(--accent); font-weight:700; font-size:.9rem; }

/* Progress bars */
.prog-list { margin-top:24px; }
.prog-item { margin-bottom:18px; }
.prog-label { display:flex; justify-content:space-between; color:var(--white); font-size:.9rem; margin-bottom:6px; font-weight:600; }
.prog-bar { height:8px; background:var(--border-dim); border-radius:4px; overflow:hidden; }
.prog-fill { height:100%; background:var(--accent); border-radius:4px; transition:width 1.2s ease; }

/* Services page pricing table */
.pricing-table { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:32px; }
.pt-card { background:var(--bg3); border:1px solid var(--border-dim); border-radius:12px; padding:28px; transition:border-color var(--ease); }
.pt-card:hover { border-color:var(--accent); }
.pt-card h3 { color:var(--white); font-size:1.2rem; margin-bottom:16px; }
.pt-card .pt-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid var(--border-dim); font-size:.93rem; color:var(--text); }
.pt-card .pt-row:last-child { border:none; }
.pt-card .pt-row span:last-child { color:var(--accent); font-weight:700; }
.pt-card .learn-more { display:inline-block; margin-top:20px; color:var(--accent); font-weight:700; }

@media(max-width:900px) {
  .service-intro { grid-template-columns:1fr; }
  .page-hero .hero-img-wrap { display:none; }
  .benefits-grid,.pkg-grid,.related-grid { grid-template-columns:repeat(2,1fr); }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .reviews-strip { grid-template-columns:1fr; }
  .pricing-table { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  /* Guarantee badge on mobile - make it inline, not absolute */
  .service-intro .guarantee,
  .cols2 .guarantee {
    position: static;
    margin: 20px auto 0;
    display: flex;
  }
}
@media(max-width:600px) {
  .benefits-grid,.pkg-grid,.related-grid { grid-template-columns:1fr; }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .area-slide { flex:0 0 calc(50% - 6px); }
  .testimonial-single { flex-direction:column; }
  .ts-img { width:56px; height:56px; }
}
.faq-two-col { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; }
@media(max-width:900px) { .faq-two-col { grid-template-columns:1fr; gap:40px; } }
@media(max-width:600px) { .faq-two-col { grid-template-columns:1fr; gap:32px; } }

/* ══════════════════════════════════════
   QUOTE POPUP
══════════════════════════════════════ */
.qp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
/* Only shown when body has qp-open class — set by JS */
body.qp-open .qp-overlay {
  display: flex;
}
body.qp-open .qp-box {
  animation: qpSlideUp .28s ease;
}
@keyframes qpFadeIn { from { opacity:0 } to { opacity:1 } }

.qp-box {
  background: #111;
  border: 1px solid rgba(146,68,0,.4);
  border-radius: 14px;
  padding: 22px 20px 18px;
  width: 100%;
  max-width: 520px;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  animation: qpSlideUp .28s ease;
}
@keyframes qpSlideUp { from { transform:translateY(24px);opacity:0 } to { transform:translateY(0);opacity:1 } }

.qp-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s;
}
.qp-close:hover { background: var(--accent); }

.qp-head { text-align: center; margin-bottom: 14px; }
.qp-head h2 { color: var(--white); font-size: 1.25rem; margin: 0 0 3px; }
.qp-head p  { color: var(--muted); font-size: .78rem; margin: 0; }

.qp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qp-field { margin-bottom: 8px; }
.qp-field label { display: block; color: var(--white); font-size: .75rem; font-weight: 600; margin-bottom: 3px; letter-spacing: .02em; }
.qp-field .req { color: var(--accent); }
.qp-field input,
.qp-field select,
.qp-field textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  padding: 9px 12px;
  color: var(--white);
  font-size: .88rem;
  font-family: var(--b-font);
  transition: border-color .2s;
  resize: vertical;
}
.qp-field input:focus,
.qp-field select:focus,
.qp-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(146,68,0,.18);
}
.qp-field select option { background: #1a1a1a; color: #fff; }

.qp-trust {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin: 14px 0 0;
}

@media(max-width:480px) {
  .qp-box  { padding: 18px 14px 14px; border-radius: 10px; }
  .qp-row  { grid-template-columns: 1fr 1fr; gap: 6px; }
  .qp-field { margin-bottom: 6px; }
  .qp-field input,
  .qp-field select,
  .qp-field textarea { padding: 8px 10px; font-size: .84rem; }
  .qp-field textarea { min-height: 50px; }
  .qp-head { margin-bottom: 10px; }
  .qp-head h2 { font-size: 1.1rem; }
  .qp-trust { font-size: .65rem; margin-top: 8px; }
  .qp-close { top: 8px; right: 10px; width: 28px; height: 28px; font-size: 1.2rem; }
}

/* ── Sticky header helpers ── */
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.site-header.hdr-hidden { transform: translateY(-100%); }
.site-header { transition: transform .3s ease, box-shadow .3s ease; }

/* ══════════════════════════════════════
   BLOG — INDEX GRID
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.blog-card-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img--placeholder {
  background: linear-gradient(135deg, #1a0d00 0%, #2a1400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
.blog-card-img--placeholder span {
  color: var(--accent);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
}
.blog-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-date {
  color: var(--muted);
  font-size: .78rem;
}
.blog-cat {
  background: rgba(146,68,0,.15);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-title {
  font-size: 1rem;
  margin: 0 0 10px;
  line-height: 1.45;
  font-family: var(--h-font);
}
.blog-title a {
  color: var(--white);
  transition: color .2s;
}
.blog-title a:hover { color: var(--accent); }
.blog-excerpt {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 16px;
}
.blog-read-more {
  color: var(--accent);
  font-weight: 700;
  font-size: .88rem;
  transition: letter-spacing .2s;
  align-self: flex-start;
}
.blog-read-more:hover { letter-spacing: .03em; }
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  color: var(--text);
  font-size: .9rem;
  transition: all .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.blog-pagination .page-numbers.dots {
  background: none;
  border: none;
  color: var(--muted);
}

/* ══════════════════════════════════════
   BLOG — SINGLE POST
══════════════════════════════════════ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}
.single-featured-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.single-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}
.single-content .entry-content {
  font-size: 1rem;
  line-height: 1.85;
}
.single-content .entry-content h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.single-content .entry-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.single-content .entry-content p  { margin-bottom: 18px; }
.single-content .entry-content ul,
.single-content .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.single-content .entry-content li { margin-bottom: 8px; }
.single-content .entry-content img {
  border-radius: 10px;
  margin: 24px auto;
  max-width: 100%;
}
.single-content .entry-content a { color: var(--accent); text-decoration: underline; }
.single-content .entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  margin: 24px 0;
  background: rgba(146,68,0,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
}
.single-tags {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tag-pill {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  color: var(--text);
  font-size: .8rem;
  padding: 5px 12px;
  border-radius: 20px;
  transition: border-color .2s, color .2s;
}
.tag-pill:hover { border-color: var(--accent); color: var(--accent); }
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
}
.single-nav-link {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s;
}
.single-nav-link:hover { border-color: var(--accent); }
.single-nav-next { text-align: right; }
.snl-label { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.snl-title  { color: var(--white); font-size: .9rem; line-height: 1.4; font-weight: 600; }

/* Sidebar */
.single-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-cta {
  background: linear-gradient(135deg, #1a0800 0%, #2a1200 100%);
  border-color: rgba(146,68,0,.5);
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); font-size: 1.1rem; margin: 0 0 8px; }
.sidebar-cta p  { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.6; }

/* Responsive blog */
@media(max-width:1024px) {
  .blog-grid     { grid-template-columns: repeat(2,1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
}
@media(max-width:640px) {
  .blog-grid  { grid-template-columns: 1fr; }
  .single-nav { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   MOBILE — COMPREHENSIVE CENTERING
   Mirrors Xtra "Center automatically on mobile"
══════════════════════════════════════ */
@media(max-width: 768px) {

  /* ── Global text + layout centering ── */
  .section { padding: 48px 0; }
  .wrap    { padding: 0 18px; }

  /* Center all headings and body text in sections */
  .section h1,
  .section h2,
  .section h3,
  .section h4,
  .section p,
  .section .eyebrow,
  .section ul.checklist,
  .section .ph-btns,
  .section .btns,
  .section .cta-btns,
  .section .ph-btns { text-align: center; }

  /* Center eyebrow labels */
  .eyebrow { text-align: center; display: block; }

  /* ── Page hero centering ── */
  .page-hero { text-align: center; padding: 52px 0 44px; }
  .page-hero .breadcrumb { text-align: center; }
  .page-hero p.sub { text-align: center; margin-left: auto; margin-right: auto; }
  .ph-btns { justify-content: center; }

  /* ── Two-column service intro → stacked + centered ── */
  .service-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-intro .si-img { order: -1; }  /* image on top */
  .checklist { text-align: left; display: inline-block; }
  .checklist li { text-align: left; }

  /* ── Benefits grid ── */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card  { text-align: center; }

  /* Service cards centered on mobile */
  .svc-card { text-align: center; }
  .svc-card .svc-ico { margin: 0 auto 16px; }
  .svc-card .svc-more { justify-content: center; }

  /* ── Pricing packages ── */
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { text-align: center; }
  .pkg-card ul { text-align: left; display: inline-block; }
  .pkg-card ul li { text-align: left; }

  /* ── Stats strip ── */
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-box    { text-align: center; }

  /* ── Values grid ── */
  .values-grid { grid-template-columns: 1fr; }
  .val-card    { text-align: center; }

  /* ── Why grid ── */
  .why-grid { grid-template-columns: 1fr; }
  .why-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* ── Related services ── */
  .related-grid { grid-template-columns: 1fr; }
  .related-card { text-align: center; }

  /* ── "What's Included" inline grid on service pages ── */
  .section .wrap > div[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ── Reviews ── */
  .reviews-strip { grid-template-columns: 1fr; }
  .review-card   { text-align: center; }
  .review-card .rv-author { justify-content: center; }

  /* ── Contact page ── */
  .contact-grid   { grid-template-columns: 1fr; }
  .contact-card   { text-align: left; flex-direction: row; }
  .contact-card .cc-icon { margin: 0; }
  /* Contact info on homepage - fill width */
  .cinfo { gap: 10px; }
  .ci { 
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .ci:hover { border-color: rgba(146,68,0,0.3); }
  .ci-ico { 
    width: 44px; height: 44px; 
    min-width: 44px;
    background: rgba(146,68,0,0.12);
    border-radius: 10px;
  }
  .ci-txt { text-align: left; }
  .ci-txt span { font-size: 0.6rem; }
  .ci-txt a, .ci-txt strong { font-size: 0.88rem; }
  .contact-cols { text-align: center; }
  .contact-cols .cinfo { text-align: left; }
  .hours { text-align: left; }

  /* ── CTA strip ── */
  .cta-strip { text-align: center; }
  .cta-btns  { justify-content: center; }

  /* ── Blog grid ── */
  .blog-grid   { grid-template-columns: 1fr; }
  .blog-card   { text-align: center; }
  .blog-meta   { justify-content: center; }
  .blog-read-more { align-self: center; }

  /* ── Single post layout ── */
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .single-nav  { grid-template-columns: 1fr; }

  /* ── Testimonial ── */
  .testimonial-single {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Progress bars ── */
  .prog-label { justify-content: center; gap: 8px; }

  /* ── Pricing table (services page) ── */
  .pricing-table { grid-template-columns: 1fr; }

  /* ── FAQ layout ── */
  .faq-two-col { grid-template-columns: 1fr; }

  /* ── Buttons ── */
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .ph-btns,
  .cta-btns,
  .btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* ── Slider images: 1 per view on small screens ── */
  .slider-track img { flex: 0 0 calc(100% - 0px); margin-right: 0; height: 220px; }

  /* ── Guarantee badge ── */
  .guarantee { right: 10px; top: -10px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .f-social { justify-content: center; }
  .f-col h4 { text-align: center; }
  .f-links  { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6px 12px; 
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
  .f-links a { justify-content: flex-start; font-size: 0.78rem; }
  .footer-bar { flex-direction: column; text-align: center; gap: 8px; }
  .f-legal { justify-content: center; }
  .f-desc { max-width: 320px; margin-left: auto; margin-right: auto; }

  /* ── Topbar ── */

  /* ── Nav on mobile — hide desktop menu, use custom mobile-menu only ── */
  .nav-menu { display: none !important; }
  .nav-toggle { display: flex; }

  /* ── Hero section on homepage ── */
  .hero-inner { text-align: center; }
  .hero-img   { display: none; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero .btns { justify-content: center; }
  .hero-btns .btn { padding: 12px 14px; font-size: 0.72rem; }
  /* Sparkles live inside hero-img which is hidden on mobile — nothing to hide */

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* ── Thank you page ── */
  .thank-grid { grid-template-columns: 1fr; }
}

/* Extra small phones */
@media(max-width: 420px) {
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-box .sn { font-size: 1.8rem; }
  .section { padding: 36px 0; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 1.6rem; }
  .qp-box { padding: 24px 16px 20px; }
}

/* Thank you page grid — moved above media queries */

/* ══════════════════════════════════════
   INTERNAL LINKS — visible underline style
══════════════════════════════════════ */
.section p a, .cblock p a, .entry-content a,
.service-intro p a, .si-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color var(--ease);
}
.section p a:hover, .cblock p a:hover { color: var(--accent-hover); }

/* ══════════════════════════════════════
   SERVICE CARDS — better mobile distinction
══════════════════════════════════════ */
@media(max-width:768px) {
  .svc-card {
    border: 1px solid rgba(146,68,0,0.2);
    background: linear-gradient(135deg, #141210 0%, #0e0c0a 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }
  .svc-card .svc-thumb { margin: -30px -26px 14px -26px; }
}

/* ══════════════════════════════════════
   STICKY MOBILE CTA BAR — App-style bottom nav
══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9980;
  background: #0a0a0a;
  border-top: 1px solid rgba(146,68,0,0.25);
  padding: 0;
}
.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.sticky-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.sticky-cta a:last-child { border-right: none; }
.sticky-cta a:hover, .sticky-cta a:active { color: #924400; }
.sticky-cta a svg { width: 20px; height: 20px; }
.sticky-cta-active { color: #924400 !important; }

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  /* Push page content up so sticky bar doesn't cover it */
  body { padding-bottom: 60px; }
}

/* ══════════════════════════════════════
   CONTACT OPTIONS POPUP (from bottom bar)
══════════════════════════════════════ */
.co-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9995;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 70px;
}
.co-overlay.open { display: flex; }
.co-box {
  background: #111;
  border: 1px solid rgba(146,68,0,0.3);
  border-radius: 16px 16px 0 0;
  padding: 24px 20px 20px;
  width: 100%;
  max-width: 400px;
  position: relative;
  animation: qpSlideUp 0.25s ease;
}
.co-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem; cursor: pointer;
}
.co-box h3 {
  font-family: var(--h-font);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.co-links { display: flex; flex-direction: column; gap: 8px; }
.co-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.co-link:hover { border-color: rgba(146,68,0,0.4); }
.co-ico { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }
.co-link span:last-child { display: flex; flex-direction: column; }
.co-link span:last-child { color: var(--white); font-size: 0.88rem; font-weight: 600; }
.co-link small { color: var(--muted); font-size: 0.72rem; font-weight: 400; }

/* Thank you page grid */
.thank-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* FAQ page grid — stacks on mobile */
.faq-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
@media(max-width:768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES STYLES (merged from features.css for performance)
═══════════════════════════════════════════════════════════ */
   PRICE CALCULATOR
══════════════════════════════════════ */
.calc-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(146,68,0,0.2);
  border-radius: 14px;
  padding: 32px 28px;
}
.calc-section { margin-bottom: 24px; }
.calc-section h4 { color: #fff; font-size: 0.9rem; margin-bottom: 12px; }
.calc-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.calc-opt {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
}
.calc-opt:hover { border-color: rgba(146,68,0,0.3); }
.calc-opt.selected { border-color: #924400; background: rgba(146,68,0,0.1); color: #924400; }
.calc-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.calc-addon {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-family: inherit;
}
.calc-addon:hover { border-color: rgba(146,68,0,0.3); }
.calc-addon.selected { border-color: #924400; background: rgba(146,68,0,0.06); }
.calc-addon-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
}
.calc-addon.selected .calc-addon-check { background: #924400; border-color: #924400; }
.calc-addon.selected .calc-addon-check::after { content: '\2713'; color: #fff; font-size: 0.7rem; }
.calc-addon-name { display: block; color: #fff; font-weight: 600; font-size: 0.82rem; }
.calc-addon-price { display: block; color: #924400; font-size: 0.72rem; font-weight: 700; }
.calc-result {
  background: linear-gradient(135deg, #1a0d00 0%, #111 100%);
  border: 1px solid rgba(146,68,0,0.35);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
.calc-estimate-label { color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.calc-estimate-price { font-family: var(--h-font); font-size: 2.2rem; color: #924400; line-height: 1; margin: 4px 0 8px; }
.calc-estimate-note { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-bottom: 14px; }
.calc-upsell {
  background: rgba(146,68,0,0.08);
  border: 1px solid rgba(146,68,0,0.2);
  border-radius: 8px;
  padding: 12px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.calc-upsell strong { color: #924400; }
.calc-upsell a { color: #924400; text-decoration: underline; }

@media(max-width:640px) {
  .calc-wrap { padding: 22px 16px; }
  .calc-options { grid-template-columns: 1fr 1fr; }
  .calc-addons { grid-template-columns: 1fr; }
  .calc-estimate-price { font-size: 1.8rem; }
}

/* ══════════════════════════════════════
   BOOKING FORM
══════════════════════════════════════ */
.booking-form { max-width: 700px; margin: 0 auto; }
.bf-step { display: none; }
.bf-step.active { display: block; }
.bf-progress { display: flex; gap: 4px; margin-bottom: 28px; }
.bf-dot { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); transition: background 0.3s; }
.bf-dot.done { background: #924400; }
.bf-dot.current { background: #a84e00; }
.bf-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.bf-svc {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.bf-svc:hover { border-color: rgba(146,68,0,0.3); }
.bf-svc.selected { border-color: #924400; background: rgba(146,68,0,0.08); }
.bf-svc h4 { color: #fff; font-size: 0.9rem; margin-bottom: 4px; }
.bf-price { color: #924400; font-size: 0.78rem; font-weight: 700; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.bf-field { margin-bottom: 12px; }
.bf-field label { display: block; color: rgba(255,255,255,0.7); font-size: 0.72rem; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.bf-field input, .bf-field select, .bf-field textarea {
  width: 100%; background: #1a1714; border: 1px solid rgba(146,68,0,0.2);
  border-radius: 6px; padding: 10px 12px; color: #fff; font-size: 0.88rem; font-family: inherit;
}
.bf-field input:focus, .bf-field select:focus { outline: none; border-color: rgba(146,68,0,0.5); }
.bf-btns { display: flex; gap: 12px; margin-top: 20px; }
.bf-btn-back { padding: 12px 24px; border: 1.5px solid rgba(255,255,255,0.15); background: none; color: #fff; border-radius: 6px; font-weight: 700; cursor: pointer; font-family: inherit; }
.bf-btn-next { flex: 1; padding: 12px; background: #924400; color: #fff; border: none; border-radius: 6px; font-weight: 700; font-size: 0.9rem; cursor: pointer; font-family: inherit; }
.bf-btn-next:hover { background: #a84e00; }
.bf-summary { background: rgba(146,68,0,0.06); border: 1px solid rgba(146,68,0,0.2); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.bf-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.04); }
.bf-summary-row:last-child { border: none; }
.bf-summary-row strong { color: #fff; }

@media(max-width:640px) {
  .bf-services { grid-template-columns: 1fr; }
  .bf-row { grid-template-columns: 1fr; }
}
