:root {
  --navy: #0d1b2a;
  --navy-light: #1b2a3d;
  --cream: #f7f4ee;
  --gold: #c9a227;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(6px);
}

.nav-wrap { position: relative; }

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo img { height: 38px; width: auto; }

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; align-items: center; justify-content: center; padding: 4px; }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .nav-cta { display: inline-block; margin-top: 18px; }

/* Hero — full-bleed photo, text overlaid */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(180deg, rgba(13,27,42,0.5), rgba(13,27,42,0.72)), url('../img/hero-van.jpg');
}

.hero-grid { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }

.hero-content { max-width: 640px; padding: 80px 0; }

.hero-content .eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 30px;
  border: 1.5px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  margin-left: 14px;
}

/* Sections */
section { padding: 90px 0; }
.section-cream { background: var(--cream); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head .eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Service block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 100px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-img { aspect-ratio: 3 / 4; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 50px rgba(13,27,42,0.14); }
.service-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 20px; display: block; }

.service-text .eyebrow {
  color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 10px;
}
.service-text h3 { font-size: 30px; margin-bottom: 16px; }
.service-text p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }

.service-list { list-style: none; margin-bottom: 24px; }
.service-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e3ddd0;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.service-list li span:last-child { color: var(--gold); font-weight: 700; }

.link-arrow { font-weight: 700; font-size: 14px; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
button.link-arrow { background: none; border: none; border-bottom: 2px solid var(--gold); padding: 0 0 2px; }

/* Other services grid */
.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.other-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 0 0 22px;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.other-card h4 { font-family: inherit; font-size: 16px; font-weight: 700; margin: 0; padding: 0 16px; }

.other-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.other-card-img img { width: 100%; height: 100%; object-fit: cover; }
.other-card-img::after {
  content: "Photo coming soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.other-card-img img[style*="display: none"] ~ * { display: flex; }
.other-card-img:has(img:not([style*="display: none"]))::after { display: none; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e3ddd0;
  padding: 22px 0;
}
.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
  color: var(--gold);
  text-align: center;
  transition: transform 0.25s ease;
}
.faq-item:hover summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 16px; margin-top: 14px; }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 32px 28px;
}
.why-card .icon { font-size: 28px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: "Inter", sans-serif; font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 15px; }

/* Reviews */
.reviews-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating { display: flex; align-items: center; gap: 20px; }
.reviews-rating .score { font-family: "Playfair Display", serif; font-size: 56px; color: var(--gold); line-height: 1; }
.reviews-stars { color: var(--gold); display: flex; gap: 3px; }
.reviews-stars svg { display: block; }

.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-weight: 700; font-size: 17px;
  flex-shrink: 0;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-head .who { display: flex; flex-direction: column; }
.review-head .name { font-size: 14px; font-weight: 700; color: var(--text); }
.review-head .src { font-size: 12px; color: var(--muted); }
.reviews-rating .count { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

.review-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.reviews-carousel { position: relative; }
.reviews-track { display: flex; gap: 24px; }

/* Desktop: auto-scrolling infinite loop, no manual scroll needed */
@media (min-width: 861px) {
  .reviews-carousel { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
  .reviews-track { width: max-content; animation: reviewsMarquee 38s linear infinite; }
  .reviews-carousel:hover .reviews-track { animation-play-state: paused; }
}

/* Mobile: real swipeable scroll, no animation */
@media (max-width: 860px) {
  .reviews-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .review-card-mini { scroll-snap-align: start; }
}

.review-card-mini { flex: 0 0 360px; background: #fff; border: 1px solid #e6e6e6; border-radius: 16px; padding: 28px 26px; }
.review-card-mini p { color: var(--text); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }
@keyframes reviewsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none !important; }
}
@media (max-width: 560px) {
  .review-card-mini { flex-basis: 82vw; padding: 22px 20px; }
}

/* Instagram feed */
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.instagram-card { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; background: #e6e6e6; }
.instagram-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.instagram-card:hover img { transform: scale(1.06); }
.instagram-card .ig-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.88) 100%); display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity 0.3s ease; }
.instagram-card:hover .ig-overlay { opacity: 1; }
@media (hover: none) {
  .instagram-card .ig-overlay { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,0.85) 100%); }
}
.instagram-card .ig-caption { color: #fff; font-size: 12.5px; line-height: 1.4; }
.instagram-card .ig-play { position: absolute; top: 10px; right: 10px; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)); }
@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Stats / trust bar */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-grid .num { font-family: "Playfair Display", serif; font-size: 34px; color: var(--gold); }
.trust-grid .label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }

.credentials-bar { background: #fff; border-bottom: 1px solid #ece7da; padding: 16px 0; }
.credentials-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.credential-badge { height: 34px; width: auto; }
.credentials-row span { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; text-align: center; }

/* Contact / footer */
footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-family: "Inter", sans-serif; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-grid p, .footer-grid a { font-size: 15px; display: block; margin-bottom: 10px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.footer-grid a:hover { color: var(--gold); }
.footer-legal { font-size: 12.5px !important; color: rgba(255,255,255,0.45) !important; margin-top: 16px !important; letter-spacing: 0.02em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
}

/* Pricing table */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.price-table th, .price-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e3ddd0; font-size: 15px; }
.price-table th { background: var(--navy); color: #fff; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-card { background: #fff; border: 1px solid #e6e6e6; border-radius: 16px; padding: 32px; margin-bottom: 40px; scroll-margin-top: 100px; }
.price-card h2, .price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card .tagline { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.price-meta { font-size: 14px; color: var(--muted); margin-top: 16px; }
.price-meta strong { color: var(--text); }
.price-card ul.terms-list { list-style: none; padding: 0; margin: 0; }
.price-card ul.terms-list li { padding: 9px 0 9px 24px; position: relative; font-size: 15.5px; line-height: 1.55; color: var(--text); border-bottom: 1px solid #f0ede5; }
.price-card ul.terms-list li:last-child { border-bottom: none; }
.price-card ul.terms-list li::before { content: "\2022"; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }

@media (max-width: 860px) {
  nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 70vh; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .service-block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .service-block.reverse { direction: ltr; }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-outline { margin-left: 0; margin-top: 12px; display: inline-block; }
  .reviews-banner { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .price-card { padding: 22px; }
  .price-table th, .price-table td { padding: 10px 8px; font-size: 13px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 22px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .nav-wrap { padding: 10px 16px; }
  .logo img { height: 30px; }
  .container { padding: 0 16px; }
  .hero-content { padding: 50px 0; }
  .hero p { font-size: 16px; }
  .btn, .btn-outline { padding: 14px 22px; font-size: 13px; }
}

/* Service scope modal */
.service-list-clickable li.scope-trigger {
  cursor: pointer;
  transition: background 0.15s, padding-left 0.15s;
  border-radius: 6px;
}
.service-list-clickable li.scope-trigger:hover {
  background: var(--cream);
  padding-left: 8px;
}
.service-list-clickable li.scope-trigger span:first-child::after {
  content: " \2192";
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.15s;
}
.service-list-clickable li.scope-trigger:hover span:first-child::after {
  opacity: 1;
}

button.scope-trigger {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  background: none;
  border-top: none; border-left: none; border-right: none;
  cursor: pointer;
  font-family: inherit;
  margin-right: 24px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }

.modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}
.modal-overlay.open { visibility: visible; pointer-events: auto; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-box .eyebrow { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 10px; }
.modal-box h3 { font-size: 26px; margin-bottom: 16px; padding-right: 30px; }
.modal-box .modal-desc { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.modal-box h4 { font-family: "Inter", sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin: 22px 0 10px; color: var(--text); }
.modal-box ul.scope-list { list-style: none; }
.modal-box ul.scope-list li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; color: var(--text); border-bottom: 1px solid #f0ede5; }
.modal-box ul.scope-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.modal-box ul.scope-list.exclude li::before { content: "\2715"; color: #c0392b; }
.modal-box .modal-cta { margin-top: 28px; }
.modal-note { background: #fdf2f0; border: 1px solid #f0d6d2; border-radius: 8px; padding: 12px 14px; font-size: 14px; color: #8a3a30; margin-bottom: 24px; }
.modal-note strong { color: #c0392b; }
.price-card .price-note { background: #fdf2f0; border: 1px solid #f0d6d2; border-radius: 8px; padding: 10px 14px; font-size: 14px; color: #8a3a30; margin-top: 12px; }
.price-card .price-note strong { color: #c0392b; }

/* Quote form */
.quote-form .qf-label { display: block; font-family: "Inter", sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin: 22px 0 10px; }
.quote-form > .qf-label:first-child { margin-top: 0; }
.quote-services { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; }
.quote-services label { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--text); padding: 6px 0; cursor: pointer; }
.quote-services input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.quote-form select, .quote-form input[type="text"], .quote-form input[type="date"] {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px;
  font-family: "Inter", sans-serif; font-size: 14.5px; color: var(--text); background: #fff;
}
.quote-form select:focus, .quote-form input:focus { outline: none; border-color: var(--gold); }
.quote-form button[type="submit"] { width: 100%; margin-top: 26px; border: none; cursor: pointer; font-family: "Inter", sans-serif; }
.quote-form .qf-hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.qf-consult {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  background: var(--cream); border: 1px solid #ece4cf; border-radius: 10px;
  padding: 14px 16px; font-size: 14px; color: var(--text); line-height: 1.4;
}
.qf-consult input[type="checkbox"] { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--gold); flex-shrink: 0; }
.quote-services.is-disabled { opacity: 0.4; pointer-events: none; }
#qf-services-label.is-disabled { opacity: 0.4; }
button.quote-trigger { border: none; cursor: pointer; font-family: "Inter", sans-serif; -webkit-appearance: none; appearance: none; }

@media (max-width: 480px) {
  .modal-box { padding: 28px 22px; }
  .quote-services { grid-template-columns: 1fr; }
}

/* Draft layout additions: value band + specialty grid (breaks up repeated split layout) */
.value-band {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 48px;
  margin: 0 0 100px;
}
.value-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.value-band-text { color: #fff; font-size: 22px; font-family: "Playfair Display", serif; font-weight: 700; max-width: 480px; line-height: 1.3; }
.value-band-stats { display: flex; gap: 40px; }
.value-band-stats .num { display: block; font-family: "Playfair Display", serif; font-size: 32px; color: var(--gold); }
.value-band-stats .label { display: block; font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.specialty-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.specialty-img { aspect-ratio: 4 / 3; overflow: hidden; }
.specialty-img img { width: 100%; height: 100%; object-fit: cover; }
.specialty-text { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.specialty-text h3 { font-size: 19px; margin-bottom: 14px; }
.specialty-text .service-list { flex: 1; margin-bottom: 18px; }
.specialty-text .service-list li { font-size: 14px; }
.specialty-text .link-arrow { align-self: flex-start; }

@media (max-width: 860px) {
  .value-band { padding: 36px 28px; }
  .value-band-inner { flex-direction: column; align-items: flex-start; }
  .specialty-grid { grid-template-columns: 1fr; }
}

/* Motion: scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Motion: hover lift on interactive cards */
.why-card, .other-card, .specialty-card, .price-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover, .other-card:hover, .specialty-card:hover, .price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,27,42,0.12);
}

.service-img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-block:hover .service-img { transform: translateY(-4px); }

.btn, .btn-outline, .scope-trigger, .link-arrow {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.btn:hover, .btn-outline:hover { transform: translateY(-2px); }
.link-arrow:hover, .scope-trigger:hover { opacity: 0.7; }

.whatsapp-float { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.whatsapp-float:hover { transform: scale(1.08); }

/* Motion: modal fade + scale */
.modal-overlay {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; }
.modal-box {
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-box, .why-card, .other-card, .specialty-card, .price-card, .service-img, .whatsapp-float {
    transition: none !important;
  }
}

/* Motion: hero entrance */
.hero-content > * {
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content h1 { animation-delay: 0.15s; }
.hero-content p { animation-delay: 0.28s; }
.hero-content .btn { animation-delay: 0.4s; }
.hero-content .btn-outline { animation-delay: 0.46s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none !important; opacity: 1; }
}
