/* ============================================================
   Benny Davis Painting LLC — Shared Stylesheet
   Design system: Trust & Authority (card-derived)
   Ink navy + amber-gold, Fraunces + Source Sans 3
   ============================================================ */

:root {
  --ink: #1C2733;
  --ink-deep: #141D26;
  --ink-soft: #2A3947;
  --amber: #E8A33D;
  --amber-cta: #C9862B;
  --amber-hover: #A96F1F;
  --amber-text: #7E5312;
  --paper: #FAF7F2;
  --paper-warm: #F3ECE0;
  --white: #FFFFFF;
  --body-on-light: #33414F;
  --muted-on-light: #5C6B79;
  --muted-on-dark: #B9C4CE;
  --border-light: #E3DCD0;
  --danger: #C0392B;
  --success: #2E7D4F;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-card: 0 2px 6px rgba(20, 29, 38, 0.06), 0 12px 32px rgba(20, 29, 38, 0.08);
  --shadow-card-hover: 0 4px 10px rgba(20, 29, 38, 0.08), 0 20px 44px rgba(20, 29, 38, 0.12);
  --radius: 10px;
  --nav-h: 76px;
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.accent-i { font-style: italic; color: var(--amber-cta); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--white); }
.on-dark .accent-i { color: var(--amber); }

section[id], [id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

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

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-cta);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-height: 52px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-cta) 100%);
  color: var(--ink-deep);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .btn-amber:hover { background: linear-gradient(135deg, var(--amber-cta) 0%, var(--amber-hover) 100%); }
  .btn-ghost-dark:hover { border-color: var(--amber); color: var(--amber); }
  .btn-ghost-light:hover { border-color: var(--amber-cta); color: var(--amber-cta); }
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 250ms ease, box-shadow 250ms ease;
}
.nav.on {
  background: rgba(20, 29, 38, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { height: 44px; width: auto; }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.nav-logo-text small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 2px;
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--amber); }
}
.nav-links a.active { color: var(--amber); }

/* Services dropdown */
.nav-drop { position: relative; }
.nav-drop > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.96);
  transform-origin: top center;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s;
}
.nav-drop-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  color: var(--ink) !important;
  font-size: 15.5px;
}
@media (hover: hover) and (pointer: fine) {
  .nav-drop-menu a:hover { background: var(--paper-warm); color: var(--amber-text) !important; }
}
.nav-phone { flex: none; }
.nav-phone .btn { padding: 12px 22px; min-height: 46px; font-size: 16px; }

/* Hamburger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out), opacity 180ms ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(20, 29, 38, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-in-out);
}
.nav-mobile.open { max-height: 100vh; }
.nav-mobile ul { list-style: none; padding: 18px 24px 28px; }
.nav-mobile a {
  display: block;
  padding: 15px 4px;
  min-height: 44px;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a.sub { padding-left: 22px; font-size: 16.5px; font-weight: 400; color: var(--muted-on-dark); }
.nav-mobile .btn { margin-top: 18px; width: 100%; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: block; }
}

/* ---------- Brush stroke divider (signature) ---------- */
.brush-divider {
  display: block;
  width: 100%;
  height: 54px;
  margin: -1px 0;
}
.brush-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  background-color: var(--ink);
  background-blend-mode: normal;
  padding: calc(var(--nav-h) + 60px) 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 29, 38, 0.94) 0%, rgba(20, 29, 38, 0.82) 45%, rgba(20, 29, 38, 0.45) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 15ch; margin-bottom: 22px; }
.hero-sub {
  color: var(--muted-on-dark);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 54ch;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 600;
  font-size: 15.5px;
}
.hero-badge svg { width: 20px; height: 20px; color: var(--amber); flex: none; }

/* Painted headline swipe */
.paint-swipe {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.paint-swipe::before {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  bottom: -0.08em;
  height: 0.26em;
  background: linear-gradient(92deg, var(--amber) 0%, var(--amber-cta) 100%);
  border-radius: 2px 8px 3px 10px / 8px 3px 9px 2px;
  z-index: -1;
  transform: skewY(-0.8deg);
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--paper); padding: 34px 0; border-bottom: 1px solid var(--border-light); }
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 30px; height: 30px; color: var(--amber-cta); flex: none; }
.trust-item strong { display: block; color: var(--ink); font-size: 16.5px; line-height: 1.25; }
.trust-item span { font-size: 14.5px; color: var(--muted-on-light); }
@media (max-width: 900px) { .trustbar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trustbar-grid { grid-template-columns: 1fr; } }

/* ---------- Before/After slider ---------- */
.ba-section { background: var(--ink); }
.ba-wrap {
  position: relative;
  max-width: 860px;
  margin: 46px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--amber);
  z-index: 3;
  cursor: ew-resize;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141D26' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
.ba-chip {
  position: absolute;
  top: 16px;
  z-index: 2;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-chip-before { left: 16px; background: rgba(20, 29, 38, 0.85); color: var(--white); }
.ba-chip-after { right: 16px; background: var(--amber); color: var(--ink-deep); }
.ba-caption {
  max-width: 860px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--muted-on-dark);
  font-size: 16px;
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
  .svc-card:hover .svc-more { color: var(--amber-hover); }
  .svc-card:hover .svc-img img { transform: scale(1.04); }
}
.svc-img { height: 210px; overflow: hidden; }
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: 10px; }
.svc-body p { color: var(--muted-on-light); font-size: 16px; flex: 1; }
.svc-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--amber-cta);
  font-weight: 700;
  font-size: 15.5px;
  transition: color 200ms ease;
}
.svc-more svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- About / two-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.about-points { list-style: none; margin-top: 26px; display: grid; gap: 15px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; }
.about-points svg { width: 22px; height: 22px; color: var(--amber-cta); flex: none; margin-top: 2px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Process ---------- */
.process-section { background: var(--paper-warm); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 9px; }
.step p { font-size: 15.5px; color: var(--muted-on-light); }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-section { background: var(--ink); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.testi {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 19px; height: 19px; color: var(--amber); }
.testi p { color: var(--muted-on-dark); font-size: 16px; flex: 1; }
.testi footer { margin-top: 20px; color: var(--white); font-weight: 700; font-size: 15.5px; }
.testi footer span { display: block; font-weight: 400; color: var(--muted-on-dark); font-size: 14px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Service area ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.area-chip {
  padding: 10px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(115deg, rgba(20, 29, 38, 0.98) 0%, rgba(28, 39, 51, 0.96) 55%, rgba(90, 62, 20, 0.92) 100%),
    var(--ink-deep);
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { color: var(--muted-on-dark); max-width: 52ch; margin: 0 auto 34px; font-size: 1.1rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 7px;
}
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  transition: border-color 200ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber-cta); outline: none; }
.field .err-msg { display: none; color: var(--danger); font-size: 14px; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err-msg { display: block; }
.field .hint { font-size: 14px; color: var(--muted-on-light); margin-top: 6px; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.form-status.ok { display: block; background: #E8F4EC; color: var(--success); border: 1px solid #BCDCC8; }
.form-status.fail { display: block; background: #FBEAE8; color: var(--danger); border: 1px solid #EFC4BE; }

/* ---------- Quote estimator ---------- */
.est-shell {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.est-progress { display: flex; height: 6px; background: var(--paper-warm); }
.est-progress span { flex: 1; background: transparent; transition: background 300ms var(--ease-out); }
.est-progress span.done { background: linear-gradient(90deg, var(--amber), var(--amber-cta)); }
.est-body { padding: 42px 44px 46px; }
@media (max-width: 620px) { .est-body { padding: 30px 22px 36px; } }
.est-step { display: none; }
.est-step.active { display: block; animation: estIn 260ms var(--ease-out); }
@keyframes estIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .est-step.active { animation: none; }
}
.est-step h2 { margin-bottom: 8px; font-size: 1.45rem; }
.est-step .est-q-hint { color: var(--muted-on-light); font-size: 15.5px; margin-bottom: 26px; }
.est-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .est-opts { grid-template-columns: 1fr; } }
.est-opt {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  min-height: 58px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
  transition: border-color 180ms ease, background 180ms ease, transform 160ms var(--ease-out);
}
.est-opt:active { transform: scale(0.98); }
@media (hover: hover) and (pointer: fine) {
  .est-opt:hover { border-color: var(--amber-cta); }
}
.est-opt.selected {
  border-color: var(--amber-cta);
  background: #FBF3E4;
}
.est-opt svg { width: 24px; height: 24px; color: var(--amber-cta); flex: none; }
.est-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 32px; }
.est-result { text-align: center; }
.est-range {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 18px 0 6px;
}
.est-range .accent-i { font-size: inherit; }
.est-disclaim { font-size: 15px; color: var(--muted-on-light); max-width: 46ch; margin: 12px auto 30px; }

/* Photo upload */
.upload-zone {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
  background: var(--paper);
}
.upload-zone.drag { border-color: var(--amber-cta); background: #FBF3E4; }
.upload-zone svg { width: 34px; height: 34px; color: var(--amber-cta); margin: 0 auto 10px; }
.upload-zone p { font-size: 15.5px; color: var(--muted-on-light); }
.upload-zone strong { color: var(--ink); }
.upload-previews { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.upload-previews .thumb {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.upload-previews .thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-previews .thumb button {
  position: absolute;
  top: 4px; right: 4px;
  width: 24px; height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 29, 38, 0.85);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Service page layout ---------- */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 70px) 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .hero-sub { margin-bottom: 0; margin-top: 16px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 14.5px;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted-on-dark); text-decoration: none; }
@media (hover: hover) { .breadcrumb a:hover { color: var(--amber); } }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255,255,255,0.3); }
.breadcrumb li:last-child { color: var(--amber); }

.article { max-width: 780px; }
.article h2 { margin: 52px 0 18px; }
.article h2:first-child { margin-top: 0; }
.article p + p { margin-top: 16px; }
.article ul, .article ol { margin: 16px 0 16px 24px; }
.article li { margin-bottom: 9px; }
.article li::marker { color: var(--amber-cta); font-weight: 700; }

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.svc-aside { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 24px; }
.aside-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 26px;
}
.aside-card.dark { background: var(--ink); }
.aside-card.dark h3, .aside-card.dark p { color: var(--white); }
.aside-card.dark .sub { color: var(--muted-on-dark); font-size: 15px; }
.aside-card h3 { margin-bottom: 12px; }
.aside-card .btn { width: 100%; margin-top: 16px; }
.aside-links { list-style: none; display: grid; gap: 4px; }
.aside-links a {
  display: block;
  padding: 11px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  transition: background 180ms ease, color 180ms ease;
}
@media (hover: hover) { .aside-links a:hover { background: var(--paper-warm); color: var(--amber-text); } }
.aside-links a.here { background: var(--paper-warm); color: var(--amber-text); }
@media (max-width: 960px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
}

/* FAQ accordion */
.faq-list { display: grid; gap: 14px; margin-top: 30px; }
.faq {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  min-height: 44px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--amber-cta);
  border-bottom: 2.5px solid var(--amber-cta);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out);
}
.faq[open] summary::after { transform: rotate(225deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--muted-on-light); font-size: 16px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep);
  color: var(--muted-on-dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a { color: var(--muted-on-dark); text-decoration: none; font-size: 15.5px; transition: color 180ms ease; }
@media (hover: hover) { .footer a:hover { color: var(--amber); } }
.footer-brand p { font-size: 15.5px; max-width: 34ch; margin-top: 14px; }
.footer-brand .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--amber);
  font-size: 17px;
  margin-top: 10px;
}
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--amber); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 200ms ease;
}
@media (hover: hover) { .footer-social a:hover { background: rgba(232, 163, 61, 0.25); } }
.footer-social svg { width: 20px; height: 20px; color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.callbar a {
  flex: 1;
  min-height: 50px;
  font-size: 16px;
  padding: 12px 10px;
}
@media (max-width: 768px) {
  .callbar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 60ms; }
.reveal-d2 { transition-delay: 120ms; }
.reveal-d3 { transition-delay: 180ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
