/* ============================================================
   METIS Construction — Bathroom Remodeling Landing Page
   Palette: brand orange #F7941D · charcoal #3E3D40
   Bathroom feel: porcelain whites, warm sand, soft spa blue
   ============================================================ */

:root {
  --orange: #F7941D;
  --orange-dark: #DD7F0B;
  --orange-soft: #FDEBD3;
  --charcoal: #3E3D40;
  --charcoal-deep: #2E2D30;
  --ink: #33323A;
  --muted: #6E6D76;
  --porcelain: #FBFAF7;
  --tile: #EFF5F6;
  --tile-line: #DCE9EB;
  --spa: #9BC8D8;
  --spa-deep: #5E96A8;
  --sand: #F2ECE3;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(46, 45, 48, 0.07);
  --shadow-md: 0 10px 34px rgba(46, 45, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(46, 45, 48, 0.16);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--charcoal-deep); }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.015em; }
h1 em, h2 em { font-style: italic; color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.97rem; line-height: 1;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 22px rgba(247, 148, 29, 0.38);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247, 148, 29, 0.45); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--charcoal-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: rgba(62, 61, 64, 0.25); }
.btn-ghost:hover { border-color: var(--charcoal); background: rgba(62, 61, 64, 0.04); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
  background: var(--orange-soft); padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow-light { background: rgba(247, 148, 29, 0.16); }
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.section-head-light h2, .section-head-light p { color: #fff; }
.section-head-light p { opacity: 0.85; }
.section-cta { text-align: center; margin-top: 52px; }
.section-cta p { color: var(--muted); margin-bottom: 14px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--charcoal-deep); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-phone { color: var(--orange); font-weight: 700; }
.topbar-phone:hover { text-decoration: underline; }
@media (max-width: 640px) { .topbar-item { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62, 61, 64, 0.08);
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }

.logo { display: flex; align-items: center; gap: 12px; }
/* Logo hangs below the sticky header like a sign */
.nav .logo { align-self: flex-start; }
.nav .logo-img {
  height: 75px; box-sizing: content-box; padding: 12px 18px 14px;
  background: #fff; border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 26px rgba(46, 45, 48, 0.14);
}
.logo-img { width: auto; height: 58px; }
@media (max-width: 640px) {
  .nav .logo-img { height: 60px; padding: 9px 14px 11px; }
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 0.93rem; color: var(--ink); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2.5px;
  background: var(--orange); border-radius: 2px; transition: width 0.22s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.92rem; color: var(--charcoal); }
.nav-phone:hover { color: var(--orange); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: 0.25s; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0;
    background: var(--porcelain); flex-direction: column; gap: 0;
    padding: 12px 6%; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.25s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(62,61,64,0.07); }
  .nav-burger { display: flex; }
  .nav-phone { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 100px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-tiles {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(251,250,247,0) 55%, var(--porcelain) 96%),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(155, 200, 216, 0.16) 79px 81px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(155, 200, 216, 0.16) 79px 81px),
    linear-gradient(160deg, #F4F8F9 0%, #FBFAF7 60%);
}
.hero-glow {
  position: absolute; top: -180px; right: -140px; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.14) 0%, transparent 65%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; color: var(--charcoal);
  background: #fff; border: 1px solid rgba(62,61,64,0.1); border-radius: 999px;
  padding: 9px 18px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(247,148,29,0.2); }

.hero-sub { margin: 22px 0 32px; font-size: 1.13rem; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scarcity {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.86rem; font-weight: 700; color: #9A5B00;
  background: var(--orange-soft); border: 1px solid rgba(247,148,29,0.45);
  padding: 9px 16px; border-radius: 999px;
}
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; list-style: none; margin-top: 36px; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.65rem; color: var(--charcoal-deep); }
.hero-trust span { font-size: 0.82rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-slider {
  position: relative; height: 540px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-photo.is-active { opacity: 1; }
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.55); transition: 0.3s;
}
.hero-dots span.is-active { background: var(--orange); transform: scale(1.25); }
@media (max-width: 980px) { .hero-slider { height: 360px; } }
.hero-card {
  position: absolute; z-index: 6; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.hero-card strong { display: block; font-size: 0.9rem; color: var(--charcoal-deep); }
.hero-card span { font-size: 0.78rem; color: var(--muted); }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); color: var(--orange-dark); font-weight: 800; font-size: 1rem;
}
.hero-card-1 { top: 26px; left: -28px; }
.hero-card-2 { bottom: 34px; right: -20px; animation-delay: 2.2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 980px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-1 { left: 8px; } .hero-card-2 { right: 8px; }
}

/* ---------- Trust strip ---------- */
.truststrip { background: #fff; border-block: 1px solid rgba(62,61,64,0.07); padding: 22px 0; }
.truststrip-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.truststrip-label { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.truststrip-logos { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.truststrip-logos span { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: rgba(62,61,64,0.55); }

/* ---------- Options ---------- */
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.option-card {
  position: relative; background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid rgba(62,61,64,0.07); box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.option-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(247,148,29,0.4); }
.option-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tile), #E2EEF0); color: var(--spa-deep);
  transition: 0.22s ease;
}
.option-icon svg { width: 32px; height: 32px; }
.option-card:hover .option-icon { background: linear-gradient(135deg, var(--orange-soft), #FCDFB4); color: var(--orange-dark); }
.option-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.option-card p { font-size: 0.93rem; color: var(--muted); }
.option-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--orange-dark); background: var(--orange-soft); padding: 5px 11px; border-radius: 999px;
}
.option-tag-alt { color: var(--spa-deep); background: var(--tile); }
@media (max-width: 980px) { .options-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .options-grid { grid-template-columns: 1fr; } }

/* ---------- Calculator ---------- */
.calc-section {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(247,148,29,0.14), transparent),
    radial-gradient(700px 400px at -10% 110%, rgba(155,200,216,0.12), transparent),
    var(--charcoal-deep);
}
.calc {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.calc-form { padding: 44px 44px 36px; }
.calc-block { margin-bottom: 26px; }
.calc-block:last-child { margin-bottom: 0; }
.calc-label { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.02rem; color: var(--charcoal-deep); margin-bottom: 16px; }
.calc-label em { font-weight: 500; color: var(--muted); font-style: normal; font-size: 0.85rem; }
.calc-step {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff; font-size: 0.82rem; font-weight: 800;
}

/* Collapsible add-ons keep the calculator one compact view */
.calc-extra { border: 1.5px solid rgba(62,61,64,0.13); border-radius: 14px; background: var(--porcelain); }
.calc-extra summary {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 0.95rem; color: var(--charcoal-deep);
  padding: 15px 18px; cursor: pointer; list-style: none;
}
.calc-extra summary::-webkit-details-marker { display: none; }
.calc-extra summary em { font-weight: 500; color: var(--muted); font-style: normal; font-size: 0.85rem; }
.calc-extra-icon { position: relative; width: 18px; height: 18px; margin-left: auto; flex-shrink: 0; }
.calc-extra-icon::before, .calc-extra-icon::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform 0.25s;
}
.calc-extra-icon::before { top: 8px; left: 2px; width: 14px; height: 2.5px; }
.calc-extra-icon::after { top: 2.2px; left: 7.8px; width: 2.5px; height: 14px; }
.calc-extra[open] .calc-extra-icon::after { transform: rotate(90deg); }
.calc-extra .calc-checks { padding: 0 12px 14px; }

.calc-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  background: var(--porcelain); border: 2px solid rgba(62,61,64,0.12); border-radius: 14px;
  padding: 13px 18px; text-align: left; transition: 0.18s ease; flex: 1 1 130px;
}
.pill strong { font-size: 0.92rem; color: var(--charcoal-deep); }
.pill span { font-size: 0.74rem; color: var(--muted); }
.pill:hover { border-color: rgba(247,148,29,0.55); }
.pill.is-active { background: var(--orange-soft); border-color: var(--orange); box-shadow: 0 4px 14px rgba(247,148,29,0.22); }
.pill.is-active strong { color: var(--orange-dark); }

.calc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; cursor: pointer; padding: 9px 12px; border-radius: 10px; transition: background 0.15s; }
.check:hover { background: var(--porcelain); }
.check input { accent-color: var(--orange); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.check em { font-style: normal; font-weight: 700; color: var(--orange-dark); white-space: nowrap; }
@media (max-width: 640px) { .calc-checks { grid-template-columns: 1fr; } }

.calc-result { display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(170deg, #F8F4EC, var(--sand)); border-left: 1px solid rgba(62,61,64,0.08); padding: 44px 36px 36px; }
.calc-result-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.calc-price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 8px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: var(--charcoal-deep); }
.calc-dash { color: var(--orange); }
.calc-note { font-size: 0.84rem; color: var(--muted); min-height: 2.4em; }
.calc-meter { height: 8px; border-radius: 99px; background: rgba(62,61,64,0.1); margin: 18px 0 24px; overflow: hidden; }
.calc-meter-fill { height: 100%; width: 40%; border-radius: 99px; background: linear-gradient(90deg, var(--orange), #FBB45C); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.calc-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.calc-includes li { font-size: 0.88rem; color: var(--ink); padding-left: 26px; position: relative; }
.calc-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.calc-result-bottom p { font-size: 0.92rem; font-weight: 600; color: var(--charcoal-deep); margin-bottom: 14px; }
.calc-disclaimer { display: block; margin-top: 12px; font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 980px) {
  .calc { grid-template-columns: 1fr; }
  .calc-result { border-left: 0; border-top: 1px solid rgba(62,61,64,0.08); }
  .calc-form { padding: 32px 24px; }
  .calc-result { padding: 32px 24px; }
}

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
  position: relative; background: #fff; border-radius: var(--radius); padding: 34px 26px 30px;
  border: 1px solid rgba(62,61,64,0.07); box-shadow: var(--shadow-sm);
}
.process-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange);
  display: block; margin-bottom: 16px;
}
.process-step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--tile); }
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gfilter {
  background: #fff; border: 1.5px solid rgba(62,61,64,0.12); border-radius: 999px;
  padding: 10px 22px; font-weight: 700; font-size: 0.88rem; color: var(--ink); transition: 0.18s;
}
.gfilter:hover { border-color: var(--orange); color: var(--orange-dark); }
.gfilter.is-active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery-grid-ba { grid-template-columns: repeat(2, 1fr); }

/* Before / after drag slider */
.ba-slider { position: relative; aspect-ratio: 10 / 9; overflow: hidden; }
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 3px; background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.35); pointer-events: none; z-index: 3;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ba-knob::before, .ba-knob::after { content: ""; border: 6px solid transparent; }
.ba-knob::before { border-right-color: var(--charcoal); margin-right: 4px; }
.ba-knob::after { border-left-color: var(--charcoal); margin-left: 4px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; appearance: none;
}
.ba-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(46,45,48,0.82); padding: 5px 11px; border-radius: 6px;
  pointer-events: none;
}
.ba-tag-after { background: var(--orange); left: auto; right: 12px; }
.ba-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 2px; }
.ba-price {
  font-size: 0.78rem; font-weight: 800; color: var(--orange-dark);
  background: var(--orange-soft); padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.gallery-item {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.3s;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-item.is-hidden { display: none; }
.gallery-ph { aspect-ratio: 16 / 10; overflow: hidden; }
.gallery-ph svg, .gallery-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-ph svg, .gallery-item:hover .gallery-ph img { transform: scale(1.05); }
.gallery-item figcaption { padding: 18px 22px 20px; }
.gallery-item figcaption strong { display: block; font-family: var(--font-head); font-size: 1.08rem; color: var(--charcoal-deep); }
.gallery-item figcaption span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gallery-grid, .gallery-grid-ba { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid rgba(62,61,64,0.07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--orange); letter-spacing: 3px; font-size: 1.05rem; }
.testi-card p { font-size: 0.96rem; color: var(--ink); }
.testi-card p em { color: var(--orange-dark); font-style: normal; font-weight: 700; }
.testi-card footer { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal); color: #fff; font-weight: 800; font-size: 0.85rem;
}
.testi-card footer strong { display: block; font-size: 0.92rem; color: var(--charcoal-deep); }
.testi-card footer span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 980px) { .testi-grid, .testi-grid-4 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- About ---------- */
.about-section { background: #fff; }
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-photo { width: 100%; height: auto; aspect-ratio: 9 / 10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -24px; right: -18px;
  background: var(--charcoal); color: #fff; border-radius: 18px; padding: 20px 26px;
  display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-md);
}
.about-badge strong { font-family: var(--font-head); font-size: 2rem; color: var(--orange); line-height: 1; }
.about-badge span { font-size: 0.76rem; opacity: 0.85; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 0.99rem; }
.about-list { list-style: none; margin: 26px 0 32px; display: flex; flex-direction: column; gap: 13px; }
.about-list li { padding-left: 30px; position: relative; font-size: 0.95rem; color: var(--ink); }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 5px;
  background: var(--orange-soft); border: 2px solid var(--orange);
}
.about-list strong { color: var(--charcoal-deep); }
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-badge { right: 10px; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid rgba(62,61,64,0.09); border-radius: 14px;
  padding: 0 26px; box-shadow: var(--shadow-sm); transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(247,148,29,0.5); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 700; font-size: 1.02rem; color: var(--charcoal-deep);
  padding: 20px 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform 0.25s;
}
.faq-icon::before { top: 10px; left: 3px; width: 16px; height: 2.5px; }
.faq-icon::after { top: 3.2px; left: 9.8px; width: 2.5px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item p { padding: 0 0 22px; color: var(--muted); font-size: 0.95rem; max-width: 92%; }

/* ---------- Contact ---------- */
.contact-section {
  background:
    radial-gradient(800px 400px at 110% 10%, rgba(247,148,29,0.16), transparent),
    radial-gradient(600px 380px at -10% 90%, rgba(155,200,216,0.14), transparent),
    var(--charcoal-deep);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy h2 { color: #fff; margin-bottom: 18px; }
.contact-copy > p { color: rgba(255,255,255,0.78); font-size: 1.02rem; }
.contact-points { list-style: none; margin: 26px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.contact-points li { color: rgba(255,255,255,0.9); font-size: 0.97rem; font-weight: 500; }
.contact-alt { display: flex; flex-direction: column; gap: 4px; border-left: 3px solid var(--orange); padding-left: 18px; }
.contact-alt span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.contact-alt a { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--orange); }
.contact-alt a:hover { text-decoration: underline; }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-lg); position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--charcoal-deep); margin-bottom: 7px; }
.form-field label em { font-weight: 500; color: var(--muted); font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--porcelain); border: 1.5px solid rgba(62,61,64,0.14); border-radius: 11px;
  padding: 13px 15px; transition: border-color 0.18s, box-shadow 0.18s; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(247,148,29,0.14);
}
.form-field input.is-invalid { border-color: #D9534F; }
.form-fineprint { margin-top: 14px; text-align: center; font-size: 0.76rem; color: var(--muted); }
.form-success {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; gap: 10px;
}
.form-success strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--charcoal-deep); }
.form-success p { color: var(--muted); max-width: 320px; }
@media (max-width: 980px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.contact-scarcity {
  margin: 26px 0 36px; padding: 14px 18px; border-radius: 12px;
  font-size: 0.9rem; color: rgba(255,255,255,0.92);
  background: rgba(247,148,29,0.14); border: 1px solid rgba(247,148,29,0.4);
}
.contact-scarcity strong { color: var(--orange); }

/* ---------- Service area ---------- */
.service-area { background: #fff; padding: 72px 0; text-align: center; }
.city-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 720px; margin: 0 auto 22px; }
.city-chips span {
  font-size: 0.9rem; font-weight: 600; color: var(--charcoal);
  background: var(--porcelain); border: 1px solid rgba(62,61,64,0.13);
  padding: 9px 18px; border-radius: 999px;
}
.city-chips span::before { content: "📍 "; font-size: 0.8em; }
.service-area-note { font-size: 0.82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal-deep); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 54px; }
.footer-brand p { font-size: 0.88rem; margin-top: 18px; max-width: 300px; }
.footer-license { font-size: 0.76rem; opacity: 0.7; }
.logo-footer .logo-img { height: 84px; background: #fff; padding: 10px 16px; border-radius: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
@media (max-width: 980px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 12px; padding: 12px 5%;
  background: rgba(251,250,247,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(62,61,64,0.1); box-shadow: 0 -6px 24px rgba(46,45,48,0.12);
}
.sticky-cta .btn { flex: 1; padding: 14px 10px; font-size: 0.92rem; }
@media (max-width: 760px) {
  .sticky-cta.is-visible { display: flex; }
  body { padding-bottom: 0; }
}

/* ---------- Owner edit mode ---------- */
.edit-dot {
  width: 26px; height: 26px; background: none; border: 0;
  color: rgba(255,255,255,0.0); font-size: 0.95rem; opacity: 1; cursor: pointer;
  margin-left: auto;
}
.edit-dot:hover { color: rgba(255,255,255,0.35); }
.is-editable { transition: outline-color 0.15s; }
.is-editable:hover { outline: 2px dashed rgba(247,148,29,0.65); outline-offset: 3px; cursor: text; }
.is-editable:focus { outline: 2px solid var(--orange); outline-offset: 3px; }
.edit-bar {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 300;
  display: flex; align-items: center; gap: 14px;
  background: var(--charcoal-deep); color: #fff;
  padding: 10px 12px 10px 20px; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.edit-bar strong { font-size: 0.92rem; white-space: nowrap; }
.edit-bar span { font-size: 0.8rem; opacity: 0.7; white-space: nowrap; }
@media (max-width: 640px) { .edit-bar span { display: none; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-card { animation: none; }
}
