/* ============================================================
   Anuradha's Beauty Parlour — Theme Stylesheet
   Deep maroon + gold + cream. Mobile-first responsive.
   ============================================================ */

:root {
  --maroon-950: #3a0212;
  --maroon-900: #4a0618;
  --maroon-800: #5e0a22;
  --maroon-700: #761028;
  --maroon-600: #8a1632;
  --gold-600: #b8902a;
  --gold-500: #d4af37;
  --gold-400: #e8c54a;
  --gold-300: #f0d78c;
  --cream-50:  #fdf6ec;
  --cream-100: #fbeed7;
  --cream-200: #f5e3c2;
  --cream-300: #e9d3a4;
  --ink-900: #2a0a14;
  --ink-700: #4b1a1a;
  --ink-500: #6a2d2d;
  --ink-300: #8a5050;
  --shadow-soft: 0 12px 32px rgba(40, 4, 16, .35);
  --shadow-hard: 0 18px 50px rgba(20, 0, 8, .55);
  --max: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--maroon-900);
  background: var(--cream-50);
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  line-height: 1.5;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ---------- Container ---------- */
.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* ============================================================
   HEADER  (dark maroon, gold logo on left, phone + menu on right)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--maroon-900), var(--maroon-800));
  border-bottom: 1px solid rgba(212, 175, 55, .35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 100px;
  padding-block: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-400);
}

.brand-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gold-400);
  text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.brand-tagline {
  margin-top: 4px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(.7rem, 1.4vw, .85rem);
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--cream-100);
  text-indent: .35em;
  text-transform: uppercase;
  position: relative;
  padding-top: 6px;
}

.brand-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* Right-side actions in header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-400);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.icon-btn:hover {
  background: var(--gold-500);
  color: var(--maroon-900);
  transform: translateY(-1px);
}

.icon-btn svg { width: 22px; height: 22px; }

.menu-toggle { display: none; }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(320px, 86vw);
  padding: 90px 24px 24px;
  background: linear-gradient(180deg, var(--maroon-900), var(--maroon-700));
  box-shadow: -20px 0 40px rgba(0, 0, 0, .35);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  padding: 14px 8px;
  color: var(--cream-100);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.mobile-menu a.is-active,
.mobile-menu a:hover { color: var(--gold-400); }

.mobile-menu .close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-400);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.scrim.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO  (dark maroon background, bride on right, copy on left)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream-100);
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, .08), transparent 60%),
    linear-gradient(180deg, var(--maroon-900) 0%, var(--maroon-800) 100%);
  border-bottom: 4px solid var(--gold-500);
  border-radius: 0 0 50% 50% / 0 0 6% 6%;
}

/* Decorative mandala pattern on left/right of hero */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  background: url("assets/mandala-bg.svg") center / contain no-repeat;
  opacity: .14;
  pointer-events: none;
}
.hero::before { left: -60px; }
.hero::after  { right: -60px; transform: scaleX(-1); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 560px;
  padding: 56px 0 64px;
}

.hero-copy { padding-right: 8px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-500);
}

.hero-title {
  margin: 0 0 4px;
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--gold-400);
}

.hero-title.alt {
  margin-top: 4px;
  color: var(--cream-50);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-title.alt::after {
  content: "♥";
  color: var(--gold-400);
  font-size: .55em;
  transform: translateY(-12px);
}

.hero-divider {
  display: block;
  width: 220px;
  height: 16px;
  margin: 18px 0 22px;
  background: url("assets/flourish-divider.svg") center / contain no-repeat;
  opacity: .85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-100);
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tags li::before {
  content: "✦";
  color: var(--gold-400);
  font-size: .8em;
}

.hero-tags li:first-child::before { content: "✦"; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn-gold {
  color: var(--maroon-900);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  border: 1px solid var(--gold-600);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }

.btn-outline {
  color: var(--cream-50);
  background: transparent;
  border: 1.5px solid var(--gold-500);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, .12);
  color: var(--gold-400);
}

.btn svg { width: 18px; height: 18px; }

/* Bride image card */
.hero-art {
  position: relative;
  align-self: end;
  margin-bottom: -4px;
  border-radius: 0 0 50% 50% / 0 0 28% 28%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
  border: 4px solid var(--gold-500);
  border-top: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* ============================================================
   SERVICES  (dark maroon, 3x2 grid of circular icons)
   ============================================================ */
.services {
  position: relative;
  color: var(--cream-50);
  background: linear-gradient(180deg, var(--maroon-800) 0%, var(--maroon-900) 100%);
  padding: 72px 0 80px;
  text-align: center;
}

.section-title {
  margin: 0 auto 50px;
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 60px;
  height: 16px;
  background: url("assets/flourish-side.svg") center / contain no-repeat;
}

.section-title::after { transform: scaleX(-1); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
  max-width: 920px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.service-icon {
  width: 130px;
  height: 130px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  background: rgba(212, 175, 55, .04);
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, .1);
}

.service-icon svg { width: 64px; height: 64px; }

.service-card h3 {
  margin: 6px 0 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-50);
}

.service-card p {
  margin: 0;
  max-width: 240px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.02rem;
  line-height: 1.35;
  color: rgba(253, 246, 236, .78);
}

/* ============================================================
   ABOUT  (cream background, text on left, parlor image on right)
   ============================================================ */
.about {
  background: var(--cream-50);
  padding: 72px 0 72px;
  color: var(--ink-700);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.about-title {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--maroon-800);
  line-height: 1.1;
}

.about-flourish {
  display: block;
  width: 200px;
  height: 18px;
  margin: 0 0 22px;
  background: url("assets/flourish-divider.svg") left center / contain no-repeat;
  opacity: .9;
}

.about-copy p {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-500);
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TRUST BADGES  (cream background, 3 columns with icons)
   ============================================================ */
.trust {
  background: var(--cream-50);
  padding: 16px 0 64px;
  border-top: 1px solid rgba(0, 0, 0, .04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-left: 1px solid rgba(116, 16, 40, .18);
}

.trust-item:first-child { border-left: 0; }

.trust-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  color: var(--maroon-700);
  display: grid;
  place-items: center;
}

.trust-icon img { width: 100%; height: 100%; }

.trust-text {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-800);
  line-height: 1.25;
}

/* ============================================================
   THANK YOU STRIP
   ============================================================ */
.thanks {
  background: var(--cream-50);
  padding: 8px 0 60px;
  text-align: center;
  color: var(--maroon-800);
}

.thanks-text {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.thanks-text::before,
.thanks-text::after {
  content: "";
  width: 64px;
  height: 16px;
  background: url("assets/flourish-side.svg") center / contain no-repeat;
  opacity: .85;
}

.thanks-text::after { transform: scaleX(-1); }

/* ============================================================
   FINAL CTA  (dark maroon, 2 big buttons)
   ============================================================ */
.final-cta {
  background:
    linear-gradient(180deg, var(--maroon-900) 0%, var(--maroon-800) 100%);
  padding: 60px 0 72px;
  border-top: 4px solid var(--gold-500);
  border-radius: 50% 50% 0 0 / 6% 6% 0 0;
}

.final-cta .hero-cta {
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta .btn { min-width: 240px; }

/* ============================================================
   FOOTER  (deep maroon, 4 columns)
   ============================================================ */
.site-footer {
  background: var(--maroon-950);
  color: rgba(253, 246, 236, .78);
  padding: 56px 0 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-brand .brand-name { color: var(--gold-400); }
.footer-brand .brand-tagline { color: var(--cream-100); }

.footer-col h4 {
  margin: 0 0 16px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-400);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-500);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(253, 246, 236, .78);
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-about { max-width: 360px; line-height: 1.6; font-size: 1rem; }

.footer-contact li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.footer-contact .ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: .82rem;
}

.footer-bar {
  padding: 16px 0;
  border-top: 1px solid rgba(212, 175, 55, .25);
  background: rgba(0, 0, 0, .25);
  font-size: .92rem;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(253, 246, 236, .6);
}

.footer-legal {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a:hover { color: var(--gold-400); }

/* ============================================================
   FLOATING CTA BUTTONS (call + whatsapp)
   ============================================================ */
.floater {
  position: fixed;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
  color: #fff;
  transition: transform .2s ease;
}

.floater:hover { transform: scale(1.06); }

.floater svg, .floater img { width: 30px; height: 30px; }

.floater-whatsapp {
  right: 22px;
  bottom: 22px;
  background: #25d366;
}

.floater-call {
  right: 22px;
  bottom: 96px;
  background: var(--maroon-700);
  border: 1.5px solid var(--gold-500);
}

/* ============================================================
   PAGE LAYOUT (about / contact)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--maroon-900) 0%, var(--maroon-800) 100%);
  color: var(--cream-50);
  text-align: center;
  padding: 70px 0 40px;
  border-bottom: 3px solid var(--gold-500);
}

.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--gold-400);
}

.page-hero p {
  max-width: 720px;
  margin: 14px auto 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(253, 246, 236, .85);
}

.page-section {
  padding: 56px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  background: var(--cream-50);
  border: 1px solid rgba(116, 16, 40, .12);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.2rem;
  color: var(--maroon-700);
}

.info-card p {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-wrap { min-height: 84px; }
  .brand-logo { width: 60px; height: 60px; }
  .header-actions { gap: 10px; }
  .icon-btn { width: 46px; height: 46px; }
  .icon-btn svg { width: 19px; height: 19px; }

  .menu-toggle { display: grid; }

  .hero { border-radius: 0 0 32px 32px; }
  .hero::before, .hero::after { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 36px 0 0;
    gap: 24px;
  }
  .hero-copy { text-align: center; padding-right: 0; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .hero-divider { margin: 14px auto 18px; }
  .hero-title.alt { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-cta { justify-content: center; }

  .hero-art {
    margin: 8px auto 0;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    max-height: 460px;
  }

  .services { padding: 56px 0 60px; }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
    max-width: 520px;
  }
  .section-title { gap: 10px; }
  .section-title::before, .section-title::after { width: 40px; }

  .about { padding: 56px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image { max-width: 520px; margin: 0 auto; }
  .about-title, .about-flourish { text-align: center; margin-inline: auto; }
  .about-flourish { margin-bottom: 18px; }

  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(116, 16, 40, .12);
    padding: 18px 12px 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  .trust-item:first-child { border-top: 0; padding-top: 8px; }

  .thanks-text { gap: 12px; }
  .thanks-text::before, .thanks-text::after { width: 36px; }

  .final-cta { border-radius: 32px 32px 0 0; padding: 48px 0 56px; }
  .final-cta .btn { min-width: 0; width: 100%; max-width: 360px; }

  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 24px); }

  .brand-logo { width: 54px; height: 54px; }
  .brand-name { font-size: 1.3rem; }
  .brand-tagline { font-size: .65rem; letter-spacing: .25em; }

  .header-actions { gap: 8px; }
  .icon-btn { width: 42px; height: 42px; }
  .icon-btn svg { width: 17px; height: 17px; }

  .hero { border-radius: 0 0 24px 24px; }
  .hero-grid { padding-top: 24px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .hero-eyebrow { font-size: .75rem; letter-spacing: .25em; }

  .services { padding: 48px 0 52px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .service-icon { width: 100px; height: 100px; }
  .service-icon svg { width: 50px; height: 50px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: .92rem; }

  .trust-item { flex-direction: row; text-align: left; gap: 14px; }
  .trust-icon { width: 42px; height: 42px; }

  .thanks-text { font-size: 1.15rem; }
  .thanks-text::before, .thanks-text::after { width: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar-inner { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }

  .floater { width: 54px; height: 54px; }
  .floater svg, .floater img { width: 26px; height: 26px; }
  .floater-call { bottom: 86px; right: 16px; }
  .floater-whatsapp { bottom: 16px; right: 16px; }
}

@media (max-width: 380px) {
  .hero-cta .btn { min-height: 48px; font-size: .95rem; padding: 0 18px; }
  .service-icon { width: 88px; height: 88px; }
}

/* ============================================================
   A11y — reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
