/*
Theme Name: Detinne's Handyman Services
Theme URI: https://dentinneshandymanservices.com
Author: Detinne's Handyman Services LLC
Description: Custom theme for Detinne's Handyman Services LLC — handyman serving the East Valley
Version: 1.0
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: detinnes
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2A2A2A;
  background: #F4F1EA;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --green: #4A5D23;
  --green-dark: #2E3A15;
  --olive: #6B7B4F;
  --khaki: #C4B998;
  --cream: #F4F1EA;
  --white: #FFFFFF;
  --text-muted: #6B6B6B;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(46,58,21,0.08);
  --shadow-lg: 0 12px 48px rgba(46,58,21,0.14);
  --nav-h: 96px;
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; z-index: 1000;
}
.nav-brand a { display: flex; align-items: center; gap: 16px; }
.nav-brand-logo {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.nav-brand:hover .nav-brand-logo {
  transform: rotate(-12deg) scale(1.05);
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white);
  line-height: 1.15;
}
.nav-brand-text small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  color: var(--khaki); letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 0.35rem; align-items: center; }
.nav-links a {
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(196,185,152,0.15); }
.nav-links a.active { color: var(--white); background: rgba(196,185,152,0.22); }
.nav-links .current-menu-item a { color: var(--white); background: rgba(196,185,152,0.22); }
.nav-links ul { display: flex; gap: 0.35rem; align-items: center; list-style: none; }
.nav-links li { margin: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 1001;
}
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-backdrop { display: none; }
@media (max-width: 780px) {
  :root { --nav-h: 72px; }
  .nav-brand-text { font-size: 1.35rem; }
  .nav-brand-text small { font-size: 0.6rem; }
  .nav-brand-logo { width: 44px; height: 44px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--green-dark); padding: 1.5rem 6% 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 18px; width: 100%; border-radius: 10px; font-size: 1.05rem; min-height: 48px; display: flex; align-items: center; }
  .nav-links ul { flex-direction: column; width: 100%; }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; top: var(--nav-h);
    background: rgba(0,0,0,0.4); z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

/* ─── HERO ─── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '\U0001F527'; position: absolute;
  font-size: 4rem; opacity: 0.08;
  top: 12%; left: 8%;
  animation: floatTool 20s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(74,93,35,0.6) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(196,185,152,0.08) 0%, transparent 50%);
  z-index: 0;
}
.hero-tool-2 { position: absolute; font-size: 3rem; opacity: 0.06; bottom: 20%; right: 10%; animation: floatTool 25s ease-in-out infinite reverse; z-index: 0; pointer-events: none; }
.hero-tool-3 { position: absolute; font-size: 3.5rem; opacity: 0.06; top: 40%; right: 20%; animation: floatTool 18s ease-in-out infinite 5s; z-index: 0; pointer-events: none; }
@keyframes floatTool {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(8deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
  75% { transform: translateY(-16px) rotate(6deg); }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 4rem 6% 5rem; max-width: 820px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,185,152,0.12);
  border: 1px solid rgba(196,185,152,0.25);
  color: var(--khaki);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700; color: var(--white); line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 i {
  font-style: italic; color: var(--khaki);
  display: inline-block;
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; text-shadow: 0 0 30px rgba(196,185,152,0.3); }
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 540px; line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-towns {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 2.25rem;
}
.town-pill {
  padding: 5px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem; font-weight: 500;
  transition: all 0.3s;
}
.town-pill:hover { background: rgba(255,255,255,0.12); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--khaki); color: var(--green-dark);
  font-weight: 700; font-size: 1.15rem;
  padding: 16px 32px; border-radius: 60px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  position: relative;
}
.btn-phone::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 66px;
  border: 2px solid rgba(196,185,152,0.3);
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.12); opacity: 0; }
}
.btn-phone:hover { background: #B8AA95; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-phone:hover::before { animation: none; opacity: 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.92rem;
  padding: 14px 24px; border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-phone-alt {
  display: inline-block; font-size: 0.78rem; color: rgba(255,255,255,0.5);
  padding: 2px 0; transition: color 0.2s; width: 100%; text-align: center;
}
.btn-phone-alt:hover { color: var(--khaki); }
@media (max-width: 540px) {
  .hero-inner { padding: 2rem 5% 3.5rem; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-tag { font-size: 0.6rem; padding: 5px 12px; margin-bottom: 1.25rem; }
  .btn-phone { width: 100%; justify-content: center; font-size: 1.05rem; padding: 14px 20px; }
  .btn-ghost { width: 100%; justify-content: center; }
  .town-pill { font-size: 0.65rem; padding: 4px 10px; }
  .hero-towns { gap: 5px; }
  .hero-tool-2, .hero-tool-3 { display: none; }
  .hero::before { font-size: 2.5rem; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.85rem; }
  .btn-phone { font-size: 0.95rem; padding: 12px 16px; }
  .hero-towns { gap: 4px; }
  .town-pill { font-size: 0.6rem; padding: 3px 8px; }
}

/* ─── SECTION COMMON ─── */
.sec { padding: 5rem 6%; }
@media (max-width: 540px) { .sec { padding: 2.5rem 5%; } }
.sec-head { margin-bottom: 3rem; }
.sec-head em {
  display: block; font-style: normal;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 0.5rem;
}
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--green-dark); line-height: 1.15;
}
.sec-head p {
  color: var(--text-muted); font-size: 0.95rem;
  max-width: 540px; line-height: 1.7; margin-top: 0.75rem;
}

/* ─── SERVICES ─── */
.services { background: var(--cream); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; max-width: 1050px; margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(74,93,35,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all 0.25s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,93,35,0.18);
}
.svc-ico { font-size: 2rem; margin-bottom: 0.75rem; display: inline-block; transition: transform 0.3s ease; }
.svc-card:hover .svc-ico { animation: toolWiggle 0.5s ease; }
@keyframes toolWiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg) scale(1.1); }
  40% { transform: rotate(8deg) scale(1.15); }
  60% { transform: rotate(-4deg) scale(1.05); }
  80% { transform: rotate(2deg); }
}
.svc-card h3 { font-weight: 700; font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.35rem; }
.svc-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── TOWNS ─── */
.towns { background: var(--white); }
.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem; max-width: 750px; margin: 0 auto;
}
.town-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.15rem;
  text-align: center;
  font-weight: 600; font-size: 0.92rem;
  color: var(--green-dark);
  transition: all 0.25s;
  border: 1px solid transparent;
}
.town-card:hover {
  border-color: rgba(74,93,35,0.2);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow);
}
.towns-content {
  max-width: 750px; margin: 2rem auto 0;
  display: grid; gap: 0.75rem;
}
.towns-content p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}
.towns-content strong { color: var(--green-dark); }
.towns-content a:hover { text-decoration: underline; }

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-inner {
  max-width: 680px; margin: 0 auto;
}
.about-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--olive);
  line-height: 1.6;
  padding: 1.5rem 0 0.5rem;
  border-top: 2px solid rgba(74,93,35,0.12);
  margin-top: 1.5rem;
}

/* ─── CONTACT / BOOKING ─── */
.contact {
  background: var(--green-dark);
  position: relative;
}
.contact-inner { position: relative; z-index: 1; }
.contact .sec-head em { color: var(--khaki); }
.contact .sec-head h2 { color: var(--white); }
.contact .sec-head p { color: rgba(255,255,255,0.5); }
.contact-cards {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 1.2rem 2rem;
  transition: all 0.25s;
}
.contact-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.contact-card-ico { font-size: 1.4rem; }
.contact-card-text { text-align: left; }
.contact-card-text strong { display: block; font-size: 1rem; color: var(--white); }
.contact-card-text span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.socials {
  display: flex; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 60px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.25s;
}
.social-link:hover {
  background: rgba(196,185,152,0.15);
  border-color: var(--khaki);
  color: var(--khaki); transform: translateY(-3px);
}
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── BOOKING WIZARD ─── */
.book-sec {
  background: var(--green-dark);
}
.book-sec .sec-head em,
.book-sec .sec-head h2,
.book-sec .sec-head p { color: var(--white); }
.book-sec .sec-head p { color: rgba(255,255,255,0.55); }
.book-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.b-steps {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 2rem;
}
.b-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  color: #B0B0B0; position: relative;
}
.b-step:not(:last-child) { flex: 1; }
.b-step:not(:last-child)::after {
  content: ''; flex: 1; height: 2px;
  background: #E0E0E0; margin: 0 12px;
}
.b-step.active { color: var(--green); }
.b-step.active:not(:last-child)::after { background: var(--green); }
.b-step .num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: #E0E0E0; color: #fff; flex-shrink: 0;
}
.b-step.active .num { background: var(--green); }
.b-step.done .num { background: var(--khaki); }
.b-step.done { color: var(--khaki); }
.b-step.done:not(:last-child)::after { background: var(--khaki); }
.b-panel { display: none; }
.b-panel.active { display: block; }
.b-panel h3 {
  font-family: 'Playfair Design', serif;
  font-size: 1.3rem; color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.b-panel p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.b-panel .svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 1rem;
}
.svc-opt {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 14px 8px; border-radius: 12px;
  border: 2px solid #E8E8E8; background: #FAFAFA;
  cursor: pointer; transition: all 0.2s;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  text-align: center; line-height: 1.2;
}
.svc-opt:hover { border-color: #C4B998; background: #F8F6F0; }
.svc-opt.selected { border-color: var(--green); background: #F0F3E8; color: var(--green); }
.svc-opt .ico { font-size: 1.5rem; }
.b-field { margin-bottom: 1rem; }
.b-field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--green-dark); margin-bottom: 5px;
}
.b-field input,
.b-field textarea,
.b-field select {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid #D8D8D8; background: #FAFAFA;
  font: inherit; font-size: 0.9rem; transition: border 0.2s;
  outline: none;
}
.b-field input:focus,
.b-field textarea:focus,
.b-field select:focus {
  border-color: var(--green); background: #fff;
}
.b-field textarea { min-height: 80px; resize: vertical; }
.b-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.b-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 1.5rem;
}
.b-btn {
  padding: 12px 28px; border-radius: 60px; font-weight: 700;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: all 0.2s;
}
.b-btn-prev { background: #E8E8E8; color: #666; }
.b-btn-prev:hover { background: #D8D8D8; }
.b-btn-next, .b-btn-submit { background: var(--green); color: #fff; margin-left: auto; }
.b-btn-next:hover, .b-btn-submit:hover { background: #3D4F1D; transform: translateY(-1px); }
.b-btn-submit:disabled { opacity: 0.5; cursor: default; transform: none; }
.b-btn:disabled { opacity: 0.4; cursor: default; }
.b-review { background: #F8F6F0; border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.b-review-line { display: flex; gap: 8px; margin-bottom: 8px; font-size: 0.9rem; }
.b-review-line:last-child { margin-bottom: 0; }
.b-review-label { font-weight: 600; color: var(--green-dark); min-width: 80px; }
.b-review-value { color: #444; }
.b-success { display: none; text-align: center; padding: 2rem 0; }
.b-success.show { display: block; }
.b-success .ico { font-size: 3rem; margin-bottom: 0.75rem; }
.b-success h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); margin-bottom: 0.5rem; }
.b-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── REVIEWS ─── */
.reviews-sec {
  background: #1E2A0E;
  overflow: hidden;
}
.reviews-sec .sec-head em { color: var(--khaki); }
.rev-badge { text-align: center; margin-bottom: 2rem; }
.rev-stars { font-size: 2.2rem; color: #FBBC04; letter-spacing: 4px; line-height: 1; }
.rev-score { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-top: 4px; }
.rev-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--khaki); margin-top: 2px; }
.rev-track-wrap { overflow: hidden; position: relative; margin: 0 -6%; }
.rev-track-wrap::before,
.rev-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.rev-track-wrap::before { left: 0; background: linear-gradient(to right, #1E2A0E, transparent); }
.rev-track-wrap::after { right: 0; background: linear-gradient(to left, #1E2A0E, transparent); }
.rev-track {
  display: flex; gap: 16px; width: max-content;
  animation: scrollReviews 30s linear infinite;
}
.rev-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rev-card { width: 280px; flex-shrink: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 1.25rem; }
.rev-card-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 2px; margin-bottom: 8px; }
.rev-card-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.rev-card-author { margin-top: 10px; font-size: 0.78rem; font-weight: 600; color: var(--khaki); }
.rev-cta { display: inline-block; padding: 10px 24px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 600; transition: all 0.2s; }
.rev-cta:hover { background: rgba(255,255,255,0.06); border-color: var(--khaki); color: var(--khaki); }
.rev-ctas { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ─── FAQ ─── */
.faq-sec { background: var(--cream); }
.faq-list { max-width: 680px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(74,93,35,0.08);
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.1rem 1.25rem; text-align: left;
  font-weight: 700; font-size: 0.92rem; color: var(--green-dark);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; font-family: inherit;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; color: var(--olive);
  transition: transform 0.2s; flex-shrink: 0;
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* ─── FOOTER ─── */
footer {
  background: #1A2610; padding: 2rem 6%;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.04);
}
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
footer a { color: rgba(255,255,255,0.35); }
footer a:hover { color: var(--khaki); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.22, 0.97, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.97, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .b-panel .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .contact-cards { flex-direction: column; }
  .contact-card { justify-content: center; padding: 1rem 1.25rem; }
  .contact-card-ico { font-size: 1.1rem; }
  .contact-card-text strong { font-size: 0.9rem; }
  .contact-card-text span { font-size: 0.72rem; }
  .social-link { font-size: 0.75rem; padding: 8px 14px; min-height: 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .svc-card { padding: 1.25rem 1rem; }
  .svc-card h3 { font-size: 0.88rem; }
  .svc-card p { font-size: 0.78rem; }
  .book-box { padding: 1.25rem 0.75rem; }
  .b-panel h3 { font-size: 1.1rem; }
  .b-row { grid-template-columns: 1fr; }
  .b-step { font-size: 0.7rem; }
  .b-step:not(:last-child)::after { margin: 0 6px; }
  .b-step .num { width: 24px; height: 24px; font-size: 0.65rem; }
  .rev-card { width: 240px; }
  .rev-track-wrap::before,
  .rev-track-wrap::after { width: 30px; }
  .sec-head h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .sec-head p { font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .svc-grid { grid-template-columns: 1fr; }
  .b-panel .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .svc-opt { padding: 10px 6px; font-size: 0.7rem; }
  .btn-phone { font-size: 0.9rem; }
  .contact-card { flex-direction: column; text-align: center; }
  .contact-card-text { text-align: center; }
  .b-step span:not(.num) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .nav-links { transition: none; }
  .nav-backdrop { transition: none; }
}
