/* =============================================================
   Right Line Document Services — Shared Stylesheet
   Sections:
     1.  Design tokens (colors, type, spacing)
     2.  Reset & base elements
     3.  Typography & helpers
     4.  Layout primitives (container, section, grid)
     5.  Buttons & links
     6.  Top utility bar
     7.  Navbar + mobile drawer
     8.  Floating WhatsApp button
     9.  Hero (home)
     10. Page hero (inner pages)
     11. About preview / About page
     12. Service cards
     13. Why choose us / stats
     14. Process timeline
     15. Contact page + form
     16. CTA bands
     17. Footer
     18. Scroll-reveal animations
     19. Responsive breakpoints
     20. Reduced-motion & focus
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  /* Brand palette */
  --teal-deep:   #1F4E4C;
  --teal-dark:   #143634;
  --gold-bronze: #B18A47;
  --gold-soft:   #D8BA7C;
  --off-white:   #F6F6F6;
  --white:       #FFFFFF;
  --grey-body:   #6B7A79;

  /* Functional */
  --heading:     var(--teal-deep);
  --body:        var(--grey-body);
  --border:      #E4E7E6;
  --shadow-sm:   0 4px 14px rgba(20, 54, 52, 0.06);
  --shadow-md:   0 12px 30px rgba(20, 54, 52, 0.10);
  --shadow-lg:   0 24px 50px rgba(20, 54, 52, 0.16);

  /* Typography */
  --font-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:   "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale (fluid) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --fs-xl:   clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  --fs-2xl:  clamp(2.2rem, 1.6rem + 2.8vw, 3.6rem);
  --fs-3xl:  clamp(2.6rem, 1.8rem + 3.6vw, 4.4rem);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Structure */
  --container: 1200px;
  --radius:    14px;
  --radius-lg: 22px;
  --topbar-h:  40px;
  --nav-h:     84px;
  --nav-h-sm:  66px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--gold-bronze); text-decoration: none; transition: color 0.25s var(--ease); }

ul { margin: 0; padding: 0; list-style: none; }

/* -------------------------------------------------------------
   3. TYPOGRAPHY & HELPERS
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  font-weight: 600;
  letter-spacing: 0.2px;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--space-4); }

/* One gold-highlighted word inside a teal heading */
.hl { color: var(--gold-soft); }
/* Gold highlight when heading sits on light background — use gold-bronze underline, not gold text */
.hl-line {
  position: relative;
  color: var(--teal-deep);
}
.hl-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--gold-bronze);
  border-radius: 2px;
}

/* Gold eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bronze);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--gold-bronze);
  vertical-align: middle;
  margin-right: 10px;
}

.section-head { max-width: 720px; margin: 0 auto var(--space-7); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: var(--fs-md); }

.text-center { text-align: center; }
.lead { font-size: var(--fs-md); color: var(--grey-body); }

/* -------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-8) 0; }
.section--alt { background: var(--off-white); }
.section--teal { background: var(--teal-deep); color: rgba(255,255,255,0.85); }
.section--teal h2, .section--teal h3 { color: var(--white); }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------------------------------------------------------------
   5. BUTTONS & LINKS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn--gold {
  background: var(--gold-bronze);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(177, 138, 71, 0.28);
}
.btn--gold:hover { background: var(--gold-soft); color: var(--teal-dark); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover { background: var(--white); color: var(--teal-deep); border-color: var(--white); }

.btn--outline-teal {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn--outline-teal:hover { background: var(--teal-deep); color: var(--white); }

/* Arrow link that slides on hover */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-bronze);
  font-size: var(--fs-sm);
}
.arrow-link .arrow { transition: transform 0.3s var(--ease); }
.arrow-link:hover { color: var(--teal-deep); }
.arrow-link:hover .arrow { transform: translateX(6px); }

/* -------------------------------------------------------------
   6. TOP UTILITY BAR
   ------------------------------------------------------------- */
.topbar {
  background: var(--gold-bronze);
  color: var(--white);
  font-size: var(--fs-xs);
  height: var(--topbar-h);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar__contact { display: flex; gap: var(--space-5); }
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--teal-dark); }
.lang-toggle { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.lang-toggle button {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font: inherit; cursor: pointer; padding: 0 2px;
}
.lang-toggle button.is-active { color: var(--white); text-decoration: underline; }
.lang-toggle .sep { opacity: 0.5; }

/* -------------------------------------------------------------
   7. NAVBAR + MOBILE DRAWER
   ------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-h);
  transition: height 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav.is-scrolled { height: var(--nav-h-sm); box-shadow: var(--shadow-sm); }

.nav__logo img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
.nav.is-scrolled .nav__logo img { height: 38px; }

.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__links a {
  position: relative;
  color: var(--teal-deep);
  font-weight: 500;
  font-size: var(--fs-sm);
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-bronze);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-current::after { width: 100%; }
.nav__links a:hover,
.nav__links a.is-current { color: var(--gold-bronze); }

.nav__cta { margin-left: var(--space-3); }

/* Services dropdown mega-menu */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--has-menu > a { display: inline-flex; align-items: center; gap: 5px; }
.caret { font-size: 0.62em; transition: transform 0.3s var(--ease); display: inline-block; }
.nav__item--has-menu:hover > a .caret,
.nav__item--has-menu:focus-within > a .caret { transform: rotate(180deg); }

.nav__mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 500px;
  max-width: 92vw;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
  z-index: 200;
}
/* invisible bridge so the menu stays open while moving the cursor into it */
.nav__mega::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav__item--has-menu:hover .nav__mega,
.nav__item--has-menu:focus-within .nav__mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__mega a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--teal-deep);
  font-size: var(--fs-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__mega a::after { display: none; }            /* remove nav underline animation */
.nav__mega a::before { content: "\203A"; color: var(--gold-bronze); font-weight: 700; }
.nav__mega a:hover { background: var(--off-white); color: var(--gold-bronze); padding-left: 16px; }

/* Anchored service cards sit below the sticky header */
.svc-card { scroll-margin-top: 120px; }

/* Mobile drawer — collapsible Services submenu */
.drawer__group { border-bottom: 1px solid rgba(255,255,255,0.1); }
.drawer__sub-toggle {
  width: 100%;
  background: none; border: none; cursor: pointer;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding: var(--space-3) 0;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__sub-toggle:hover { color: var(--gold-soft); }
.drawer__sub-toggle .caret { font-size: 0.7em; }
.drawer__sub-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer__sub a {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 8px 0 8px 16px;
  color: rgba(255,255,255,0.78);
  border-bottom: none;
}
.drawer__sub a:hover { color: var(--gold-soft); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.drawer-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-in drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(84vw, 340px);
  height: 100vh;
  background: var(--teal-deep);
  padding: var(--space-8) var(--space-6);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer a:hover { color: var(--gold-soft); }
.drawer .btn { margin-top: var(--space-4); justify-content: center; }
.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 150;
}
.drawer__overlay.is-open { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------
   8. FLOATING WHATSAPP BUTTON
   ------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
  z-index: 120;
  color: var(--white);
}
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float:hover { transform: scale(1.06); transition: transform 0.3s var(--ease); }

/* -------------------------------------------------------------
   9. HERO (HOME)
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  background: var(--teal-deep) url("../images/hero.jpg") center/cover no-repeat;
  color: var(--white);
  padding: var(--space-9) 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,78,76,0.94), rgba(20,54,52,0.82));
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: var(--space-5); }
.hero__sub { font-size: var(--fs-md); color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: var(--space-6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* Trust strip below hero CTAs */
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-6); margin-top: var(--space-7); }
.hero__trust div { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: rgba(255,255,255,0.8); }
.hero__trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); }

/* Two-column hero layout: text + image */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}
.hero__grid .hero__inner { max-width: none; }
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(216, 186, 124, 0.35);
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid rgba(216, 186, 124, 0.4);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero__figure .float-card {
  position: absolute;
  left: -20px; bottom: 22px;
  background: var(--white);
  color: var(--teal-deep);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.hero__figure .float-card .tick {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-bronze); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold-soft);
  margin-bottom: var(--space-3);
}
.testimonial p { font-size: var(--fs-sm); flex: 1; }
.testimonial .stars { color: var(--gold-bronze); letter-spacing: 2px; margin-bottom: var(--space-4); }
.testimonial__person { display: flex; align-items: center; gap: 12px; margin-top: var(--space-4); }
.testimonial__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial__person strong { display: block; color: var(--teal-deep); font-family: var(--font-serif); font-size: 1.1rem; }
.testimonial__person span { font-size: var(--fs-xs); color: var(--grey-body); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(20,54,52,0.85));
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* -------------------------------------------------------------
   10. PAGE HERO (INNER PAGES)
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--teal-deep);
  color: var(--white);
  padding: var(--space-9) 0 var(--space-8);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border: 2px solid rgba(216, 186, 124, 0.18);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-3); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: var(--fs-xs); letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-soft); margin-top: var(--space-4);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* -------------------------------------------------------------
   11. ABOUT PREVIEW / ABOUT PAGE
   ------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
  will-change: transform;
}
/* Hover: gentle zoom + richer shadow + slight lift in contrast */
.split__media:hover img {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.08) contrast(1.03);
}
/* Gold inner frame fades in on hover */
.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 0 rgba(216, 186, 124, 0);
  transition: box-shadow 0.4s var(--ease);
  pointer-events: none;
}
.split__media:hover::after { box-shadow: inset 0 0 0 4px rgba(216, 186, 124, 0.7); }
.split__media .badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--gold-bronze);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split__media .badge strong { font-family: var(--font-serif); font-size: 2rem; display: block; line-height: 1; }
.split__media .badge span { font-size: var(--fs-xs); letter-spacing: 1px; }
.split__body ul.ticks { margin: var(--space-4) 0 var(--space-5); display: grid; gap: 10px; }
.split__body ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--teal-deep); font-weight: 500; }
.split__body ul.ticks li::before {
  content: "\2713";
  color: var(--gold-bronze);
  font-weight: 700;
}

/* Inline mini-stats under about intro text */
.about-mini {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.about-mini div strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-bronze);
  display: block;
  line-height: 1;
}
.about-mini div span { font-size: var(--fs-xs); color: var(--grey-body); letter-spacing: 0.3px; }

/* Centred editorial quote band */
.quote-band { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-band .qmark {
  display: block;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.4;
  color: var(--gold-soft);
  margin-bottom: var(--space-4);
}
.quote-band p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 1.1rem + 1.4vw, 2rem);
  color: var(--teal-deep);
  line-height: 1.4;
  margin-bottom: var(--space-4);
}
.quote-band .qby {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-bronze);
  font-size: var(--fs-sm);
}

/* Numbered Mission / Vision / Values cards */
.mvv-card .mvv-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bronze);
  letter-spacing: 2px;
}

/* Mission / Vision / Values cards */
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-card .icon-circle { margin-bottom: var(--space-4); }

/* -------------------------------------------------------------
   12. SERVICE CARDS
   ------------------------------------------------------------- */
.icon-circle {
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  display: grid;
  place-items: center;
  color: var(--gold-bronze);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.icon-circle svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card h3 { margin: var(--space-4) 0 var(--space-2); font-size: var(--fs-lg); }
.service-card p { flex: 1; font-size: var(--fs-sm); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.service-card:hover .icon-circle {
  background: var(--gold-bronze);
  color: var(--white);
  transform: rotate(-6deg);
}

/* Numbered service cards (services page) */
.service-card--num .num-badge {
  position: absolute;
  top: var(--space-5); right: var(--space-5);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: rgba(177, 138, 71, 0.18);
  line-height: 1;
  transition: color 0.35s var(--ease);
}
.service-card--num:hover .num-badge { color: rgba(177, 138, 71, 0.4); }
.service-card--num .btn { margin-top: var(--space-5); align-self: flex-start; }

/* Image-topped service cards (services page) */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.svc-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.svc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.1); }
.svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 54, 52, 0.55), transparent 55%);
}
.svc-card__num {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc-card:hover .svc-card__num { background: var(--gold-bronze); color: #fff; transform: scale(1.1); }
.svc-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.svc-card__body p { font-size: var(--fs-sm); flex: 1; margin-bottom: var(--space-4); }
.svc-card__body .btn { align-self: flex-start; }

/* Contact aside — business hours card */
.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.hours-card h3 { font-size: var(--fs-md); margin-bottom: var(--space-4); }
.hours-card ul { display: grid; gap: 10px; }
.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}
.hours-card li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-card li span:first-child { color: var(--teal-deep); font-weight: 500; }
.hours-card li span:last-child { color: var(--grey-body); }
.hours-card .closed { color: #C0392B; font-weight: 500; }

/* -------------------------------------------------------------
   13. WHY CHOOSE US / STATS
   ------------------------------------------------------------- */
.feature {
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 186, 124, 0.18);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Gold accent bar that grows on hover */
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--gold-bronze);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.feature:hover {
  transform: translateY(-10px);
  background: rgba(216, 186, 124, 0.10);
  border-color: var(--gold-soft);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}
.feature:hover::before { width: 70%; }
.feature .icon-circle {
  margin: 0 auto var(--space-4);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.feature:hover .icon-circle {
  background: var(--gold-bronze);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}
.feature h3 { color: var(--white); font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.feature p { color: rgba(255,255,255,0.72); font-size: var(--fs-sm); margin: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--space-7);
}
.stat {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.stat:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-4px); }
.stat .num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem);
  color: var(--gold-soft);
  line-height: 1;
  font-weight: 600;
}
.stat .label { font-size: var(--fs-sm); color: rgba(255,255,255,0.72); margin-top: var(--space-2); display: block; }

/* -------------------------------------------------------------
   14. PROCESS TIMELINE
   ------------------------------------------------------------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold-soft), var(--border));
}
.timeline__step { position: relative; padding: 0 0 var(--space-7) var(--space-6); }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step .dot {
  position: absolute;
  left: -33px; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-bronze);
  color: var(--gold-bronze);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}
.timeline__step h3 { font-size: var(--fs-lg); margin-bottom: var(--space-1); }
.timeline__step p { font-size: var(--fs-sm); margin: 0; }

/* -------------------------------------------------------------
   14b. HOW IT WORKS — alternating centre-line timeline
   ------------------------------------------------------------- */
.hworks {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding-top: var(--space-4);
}
/* Golden centre line */
.hworks::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--gold-soft), var(--gold-bronze), var(--gold-soft));
  border-radius: 2px;
}
.hworks__step {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding: 0 var(--space-7) var(--space-8);
}
.hworks__step:last-child { padding-bottom: 0; }
.hworks__step.is-left  { left: 0;   text-align: right; }
.hworks__step.is-right { left: 50%; text-align: left;  }

/* Dot on the centre line */
.hworks__dot {
  position: absolute;
  top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-bronze);
  box-shadow: 0 0 0 6px rgba(177, 138, 71, 0.12);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hworks__step.is-left  .hworks__dot { right: -10px; }
.hworks__step.is-right .hworks__dot { left: -10px; }
.hworks__step:hover .hworks__dot { background: var(--gold-bronze); transform: scale(1.15); }

.hworks__step-label {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-bronze);
  margin-bottom: var(--space-1);
}
.hworks__step h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.hworks__step p  { font-size: var(--fs-sm); margin: 0; }

/* Slide-in animation: each step enters from its own side.
   NOTE: the hidden-state selectors carry 4 classes, so the visible
   reset must match that specificity or the step stays hidden. */
.js .hworks__step.is-left.reveal  { opacity: 0; transform: translateX(-45px); }
.js .hworks__step.is-right.reveal { opacity: 0; transform: translateX(45px); }
.js .hworks__step.is-left.reveal.is-visible,
.js .hworks__step.is-right.reveal.is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------
   15. CONTACT PAGE + FORM
   ------------------------------------------------------------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .icon-circle { margin: 0 auto var(--space-4); }
.info-card h3 { font-size: var(--fs-md); margin-bottom: var(--space-2); }
.info-card p { font-size: var(--fs-sm); margin: 0; }
.info-card a { color: var(--teal-deep); }
.info-card a:hover { color: var(--gold-bronze); }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); align-items: start; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
}

/* Floating label fields */
.field { position: relative; margin-bottom: var(--space-5); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--teal-deep);
  padding: 1.1rem 1rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; padding-top: 1.4rem; }
.field select { color: var(--teal-deep); }
.field label {
  position: absolute;
  left: 1rem; top: 0.95rem;
  color: var(--grey-body);
  font-size: var(--fs-sm);
  pointer-events: none;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), font-size 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-bronze);
  box-shadow: 0 0 0 3px rgba(177, 138, 71, 0.18);
}
/* Raise label when focused or filled */
.field input:focus + label,
.field input.has-value + label,
.field select:focus + label,
.field select.has-value + label,
.field textarea:focus + label,
.field textarea.has-value + label {
  transform: translateY(-0.65rem);
  font-size: 0.7rem;
  color: var(--gold-bronze);
  letter-spacing: 0.5px;
}
.field .error-msg {
  display: block;
  color: #C0392B;
  font-size: var(--fs-xs);
  margin-top: 5px;
  min-height: 1em;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #C0392B; }

.form-success {
  display: none;
  background: rgba(31, 78, 76, 0.06);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  color: var(--teal-deep);
}
.form-success.is-visible { display: block; }
.form-success .check {
  width: 56px; height: 56px; margin: 0 auto var(--space-3);
  border-radius: 50%; background: var(--teal-deep); color: var(--white);
  display: grid; place-items: center; font-size: 1.6rem;
}

.contact-aside { display: flex; flex-direction: column; gap: var(--space-5); }
.wa-block {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}
.wa-block h3 { color: var(--white); }
.wa-block .btn { background: #25D366; color: #fff; border-color: #25D366; }
.wa-block .btn:hover { background: #1eb757; }

.map-embed {
  position: relative;
  padding-bottom: 62%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------
   16. CTA BANDS
   ------------------------------------------------------------- */
.cta-band {
  background: var(--gold-bronze);
  color: var(--white);
  text-align: center;
  padding: var(--space-8) 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto var(--space-6); }
.cta-band .btn--outline-white:hover { color: var(--gold-bronze); }
.cta-band .btn--white {
  background: var(--white);
  color: var(--teal-deep);
}
.cta-band .btn--white:hover { background: var(--teal-deep); color: var(--white); }

/* -------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------- */
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.72);
  padding: var(--space-9) 0 var(--space-5);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer__brand img { height: 52px; margin-bottom: var(--space-4); }
.footer__brand p { max-width: 320px; }
.footer ul li { margin-bottom: var(--space-3); }
.footer a { color: rgba(255,255,255,0.72); }
.footer a:hover { color: var(--gold-soft); padding-left: 4px; transition: all 0.25s var(--ease); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; stroke: var(--gold-soft); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: var(--space-5); }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.footer__social a:hover { background: var(--gold-bronze); border-color: var(--gold-bronze); padding-left: 0; }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(216, 186, 124, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-xs);
}

/* -------------------------------------------------------------
   17b. UI EFFECTS — progress bar, back-to-top, hero float, FAQ
   ------------------------------------------------------------- */

/* (1) Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-bronze), var(--gold-soft));
  z-index: 300;
  transition: width 0.08s linear;
}

/* (2) Back-to-top button */
.to-top {
  position: fixed;
  right: 22px; bottom: 92px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease),
              transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 119;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-bronze); }
.to-top svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.2; }

/* (3) Gentle floating hero image */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__figure img { animation: floaty 6s ease-in-out infinite; }

/* (4) Shine sweep across gold buttons on hover */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn--gold:hover::after { left: 140%; }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__item.open { box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.faq__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--gold-bronze);
  color: var(--gold-bronze);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq__item.open .faq__icon { background: var(--gold-bronze); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 var(--space-6) var(--space-5); margin: 0; font-size: var(--fs-sm); }

/* -------------------------------------------------------------
   18. SCROLL-REVEAL ANIMATIONS
   ------------------------------------------------------------- */
/* Base: always visible. Only hide when JS is present to reveal them again,
   so a blocked/failed script can never leave the page blank. */
.reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js .reveal.is-visible,
.reveal.is-visible { opacity: 1; transform: none; }
/* staggered children delay set inline via --i */
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 90ms); }

/* -------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero__figure { max-width: 480px; }
}

@media (max-width: 768px) {
  /* Collapse alternating timeline to a single left-aligned column */
  .hworks { padding-left: 6px; }
  .hworks::before { left: 9px; transform: none; }
  .hworks__step {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 var(--space-7) var(--space-6);
  }
  .hworks__step.is-left .hworks__dot,
  .hworks__step.is-right .hworks__dot { left: 0; right: auto; }
  .js .hworks__step.is-left.reveal,
  .js .hworks__step.is-right.reveal { transform: translateX(-24px); }
}

@media (max-width: 900px) {
  .nav__links:not(.drawer) { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: var(--space-7); }
  .split__media { max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --space-9: 4rem; }
  .topbar__contact { gap: var(--space-3); }
  .topbar__contact .hide-sm { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .split__media .badge { left: 50%; transform: translateX(-50%); bottom: -18px; }
}

@media (max-width: 375px) {
  .container { padding: 0 var(--space-4); }
}

/* -------------------------------------------------------------
   20. REDUCED-MOTION & FOCUS
   ------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--gold-bronze);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .service-card:hover, .info-card:hover, .mvv-card:hover { transform: none; }
  .wa-float::before { animation: none; }
}
