/* ============================================================
   GLORIA MARTINS — Global Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- CSS Variables ---------- */
:root {
  --pink:      #C8718B;
  --pink-lt:   #f0d6de;
  --purple:    #7D6480;
  --purple-dk: #4a3850;
  --cream:     #faf7f4;
  --warm:      #f5efe8;
  --text:      #2c2c2c;
  --muted:     #767676;
  --border:    rgba(0,0,0,0.08);
  --nav-h:     88px;
  --topbar-h:  38px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --max-w:     1180px;
  --section-v: 90px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--text);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-v) 0; }
.section--sm { padding: 56px 0; }
.section--xs { padding: 36px 0; }

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  :root { --section-v: 58px; --nav-h: 74px; --topbar-h: 30px; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.1;
}

.section-title--lg {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

.section-title--sm {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Divider ---------- */
.divider {
  width: 50px;
  height: 2px;
  background: var(--pink);
  margin: 14px 0 24px;
}
.divider--center { margin: 14px auto 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  transition: all 0.3s ease;
  line-height: 1;
}

.btn--pink {
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--pink);
}
.btn--pink:hover {
  background: #b05c76;
  border-color: #b05c76;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,113,139,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn--outline:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--purple);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--purple-dk);
  color: #fff;
  border: 2px solid var(--purple-dk);
}
.btn--dark:hover { opacity: 0.85; transform: translateY(-2px); }

/* ---------- TOPBAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--purple-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.topbar__text {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__text em {
  font-style: normal;
  color: var(--pink-lt);
  font-weight: 600;
}

@media (max-width: 700px) {
  .topbar__text { font-size: 10px; letter-spacing: 0.03em; white-space: normal; line-height: 1.3; }
  .topbar { height: auto; min-height: var(--topbar-h); padding: 6px 16px; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.navbar__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: fit-content;
  margin-left: 10px;
}

.navbar__logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(39, 26, 44, 0.18));
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--pink); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta { font-size: 11px; padding: 11px 24px; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f4f8;
  border: 1px solid var(--border);
  padding: 5px;
}
.lang-switch__btn {
  width: 30px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0.72;
}
.lang-switch__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lang-switch__btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.lang-switch__btn.active {
  opacity: 1;
  box-shadow: inset 0 0 0 2px var(--pink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--pink); }
.mobile-menu .mobile-cta {
  margin-top: 20px;
  border: none;
  text-align: center;
}
.lang-switch--mobile {
  margin: 0 0 12px 0;
  width: fit-content;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none !important; }
  .hamburger { display: flex; }
  .navbar__logo img { height: 52px; }
  .navbar__inner { padding: 0 20px; }
  .navbar__left { gap: 10px; }
  .lang-switch { margin: 0; }
}

/* ---------- PAGE OFFSET ---------- */
.page-offset { margin-top: var(--nav-h); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__logo {
  position: relative;
  z-index: 3;
  padding-left: 24px;
}

.hero__logo img {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 0 0 48px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 660px;
}

.hero__sub {
  font-size: clamp(1.55rem, 2.65vw, 1.93rem);
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 14px;
}

.hero__desc {
  font-size: clamp(1.15rem, 1.65vw, 1.32rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.85;
}

.hero__credential {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
  white-space: nowrap;
  z-index: 3;
  cursor: default;
  transition: all 0.3s ease;
}

.hero__credential:hover {
  background: linear-gradient(
    90deg,
    #ff6b6b, #ffa94d, #ffe066,
    #69db7c, #4dabf7, #cc5de8,
    #ff6b6b
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  animation: rainbow-slide 2.5s linear infinite;
}

@keyframes rainbow-slide {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@media (max-width: 600px) {
  .hero { min-height: 85vh; padding: 28px 0 48px; }
  .hero__bg { background-position: top center; }
  .hero__content { padding: 0 20px; max-width: 100%; }
  .hero__eyebrow { font-size: 13px; letter-spacing: 0.12em; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero__sub { font-size: 1.3rem; }
  .hero__desc { font-size: 1.05rem; max-width: 100%; }
  .hero .btn--pink { width: auto !important; display: inline-block !important; padding: 13px 28px; }
  .hero__logo img { height: 100px; }
  .hero__credential { display: none; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.page-hero__sub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.service-card__img {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }

.service-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.service-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
}

.service-card__meta {
  font-size: 11.5px;
  color: var(--purple);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ---------- INFO CARD ---------- */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px 32px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 80px 32px;
  text-align: center;
}

.cta-banner--gradient {
  background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple) 50%, var(--pink) 100%);
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---------- BENEFIT BOX ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-box__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 10px;
}

.benefit-box__list { padding: 0; }
.benefit-box__list li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.6;
}
.benefit-box__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---------- BULLET LIST ---------- */
.bullet-list { padding: 0; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding: 5px 0;
}
.bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 8px;
}
.bullet-list--purple li::before { background: var(--purple); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--cream);
  border-left: 3px solid var(--pink);
  padding: 28px 30px;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after  { content: '\201D'; }
.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- PERINATAL SECTION ---------- */
.perinatal-band {
  background: linear-gradient(135deg, #fdf0f4 0%, #f7ecf7 50%, #ede7f5 100%);
}

.perinatal-band__intro {
  text-align: center;
  margin-bottom: 44px;
}

.perinatal-band__split {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.perinatal-band__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(55, 36, 58, 0.1);
  border: 1px solid rgba(125, 100, 128, 0.12);
  background: #f5f0f4;
  align-self: start;
  width: 100%;
  max-width: 320px;
}

.perinatal-band__photo img {
  width: 100%;
  height: clamp(280px, 38vw, 420px);
  max-height: 420px;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.perinatal-band__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.perinatal-band__cards.grid-3 {
  align-items: stretch;
}

.perinatal-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .perinatal-band__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .perinatal-band__photo {
    max-width: none;
    margin: 0 auto;
    max-height: none;
  }
  .perinatal-band__photo img {
    height: clamp(260px, 48vw, 360px);
    max-height: 360px;
    object-position: center 40%;
  }
}

@media (max-width: 600px) {
  .perinatal-band__intro {
    margin-bottom: 32px;
  }
  .perinatal-band__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------- SPEC TABS (Women & Couples) ---------- */
.spec-support {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.spec-tabs__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.spec-tabs__btn {
  padding: 11px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--pink);
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.spec-tabs__btn.active,
.spec-tabs__btn:hover {
  background: var(--pink);
  color: #fff;
}

.spec-tabs__panel {
  display: none;
}

.spec-tabs__panel.active {
  display: block;
}

@media (max-width: 600px) {
  .spec-tabs__btn { width: 100%; text-align: center; }
}

/* ---------- HOME SERVICES SNAPSHOT ---------- */
.home-services__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

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

.home-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 24px 22px;
  box-shadow: 0 10px 26px rgba(33, 26, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(33, 26, 40, 0.13);
  border-color: rgba(125, 100, 128, 0.28);
}

.home-service-card--featured {
  background: linear-gradient(145deg, #7d6480 0%, #8f7292 52%, #c8718b 100%);
  color: #fff;
  border-color: transparent;
}

.home-service-card__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--purple-dk);
  background: rgba(255,255,255,0.92);
  padding: 5px 10px;
  margin-bottom: 14px;
}

.home-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--purple-dk);
}

.home-service-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 125px;
}

.home-service-card__meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.home-service-card__open {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  text-align: left;
}
.home-service-card__open:hover {
  text-decoration: underline;
}

.home-service-card--featured .home-service-card__title,
.home-service-card--featured .home-service-card__desc,
.home-service-card--featured .home-service-card__meta {
  color: rgba(255,255,255,0.92);
}
.home-service-card--featured .home-service-card__open {
  color: #fff;
}

.home-service-card--featured .home-service-card__meta {
  border-top-color: rgba(255,255,255,0.32);
}

.home-services__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Service modal ---------- */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
}
.service-modal.open {
  display: block;
}
.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 15, 30, 0.62);
  backdrop-filter: blur(2px);
}
.service-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 28px));
  margin: 28px auto;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 26px 60px rgba(22, 12, 29, 0.25);
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  min-height: 620px;
  max-height: calc(100vh - 56px);
  overflow: auto;
}
.service-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: var(--purple-dk);
  background: rgba(125,100,128,0.08);
}
.service-modal__media {
  background: linear-gradient(140deg, #f7eef4 0%, #f2ecf6 55%, #ebe8f5 100%);
  border-right: 1px solid var(--border);
  padding: 24px;
}
.service-modal__media-placeholder {
  height: 100%;
  min-height: 520px;
  border: 2px dashed rgba(125, 100, 128, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--purple);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.4;
  padding: 20px;
}
.service-modal__content {
  padding: 48px 40px 42px;
}
.service-modal__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--purple-dk);
  line-height: 1.15;
  margin-bottom: 10px;
}
.service-modal__subtitle {
  font-size: 14px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-modal__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #565656;
  margin-bottom: 18px;
}
.service-modal__points {
  margin: 0 0 18px;
  padding: 0;
}
.service-modal__points li {
  position: relative;
  padding: 0 0 0 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
}
.service-modal__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}
.service-modal__meta {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-bottom: 14px;
}
.service-modal__contact {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .home-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }
  .home-service-card__desc {
    min-height: 0;
  }
  .home-services__head {
    margin-bottom: 30px;
  }
  .home-service-card {
    padding: 22px 20px 20px;
  }
  .home-services__actions .btn {
    width: 100%;
  }
  .service-modal__panel {
    width: calc(100% - 16px);
    margin: 18px auto;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow: auto;
  }
  .service-modal__media {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }
  .service-modal__media-placeholder {
    min-height: 170px;
    font-size: 1rem;
  }
  .service-modal__content {
    padding: 24px 18px 24px;
  }
}

/* ---------- WELCOME 3-COL ---------- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1c1520;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__logo { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(10); }
.footer__tagline { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--pink); color: var(--pink); }

.footer__col-title {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

/* ---------- CONTACT FORM ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-img { display: none; }
}

.contact-form-side {
  background: linear-gradient(155deg, var(--purple-dk) 0%, var(--purple) 50%, var(--pink) 100%);
  padding: 52px 48px;
}
@media (max-width: 600px) { .contact-form-side { padding: 36px 28px; } }

/* ---------- Reveal animations ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- TESTIMONIALS WITH PHOTO ---------- */
.testimonials-with-photo {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 56px;
  align-items: start;
}
.testimonials-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(55, 36, 58, 0.12);
  position: sticky;
  top: 100px;
}
.testimonials-photo img {
  width: 100%;
  height: clamp(400px, 58vw, 580px);
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 860px) {
  .testimonials-with-photo {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .testimonials-photo {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }
  .testimonials-photo img {
    height: clamp(280px, 60vw, 400px);
  }
}

/* ---------- Google Translate UI suppression ---------- */
body { top: 0 !important; position: static !important; }
.goog-te-banner-frame,
.goog-te-menu-frame,
iframe.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
#goog-gt-vt,
.goog-te-spinner-pos,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-xl07Ob,
.VIpgJd-suEOdc { display: none !important; }
.skiptranslate { display: none !important; visibility: hidden !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; height: 0 !important; overflow: hidden !important; }
font[class^="goog-"] { color: inherit !important; background: none !important; }

/* ---------- Extra mobile polish ---------- */
@media (max-width: 768px) {
  .section-title { line-height: 1.15; margin-bottom: 14px; }
  .lead { font-size: 14px; line-height: 1.75; }
  .grid-2 { gap: 28px; }
  .cta-banner { padding: 62px 20px; }
  .cta-banner__sub { font-size: 15px; }
  .testimonial-card { padding: 22px 20px; }
}

/* ---------- QUOTE + SIGNATURE (Home) ---------- */
.section--quote-signature {
  padding: clamp(72px, 10vw, 110px) 0;
}

.quote-signature.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.quote-signature__copy {
  max-width: 560px;
}

.quote-signature__blockquote {
  margin: 0 0 28px;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--pink);
}

.quote-signature__text {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-style: italic;
  font-weight: 500;
  color: var(--purple-dk);
  line-height: 1.55;
  margin: 0;
}

.quote-signature__attribution {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 40px;
  padding-left: 22px;
}

.quote-signature__author {
  color: var(--purple);
  font-weight: 600;
  font-style: normal;
}

.quote-signature__profile {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 28px);
  padding: 32px 28px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(44, 28, 48, 0.07);
}

.quote-signature__sig-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #faf6f8 0%, #f3ecf5 100%);
  border: 1px solid rgba(125, 100, 128, 0.12);
}

.quote-signature__sig {
  max-height: 72px;
  max-width: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.quote-signature__identity {
  min-width: 0;
}

.quote-signature__name {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--purple-dk);
  line-height: 1.2;
  margin: 0 0 8px;
}

.quote-signature__role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 10px;
}

.quote-signature__languages {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--pink);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.quote-signature__figure {
  margin: 0;
}

.quote-signature__photo {
  width: 100%;
  height: clamp(480px, 62vh, 640px);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 22px 50px rgba(36, 22, 38, 0.14);
  border: 1px solid rgba(125, 100, 128, 0.12);
}

@media (max-width: 960px) {
  .quote-signature.layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-signature__copy {
    max-width: none;
  }
  .quote-signature__photo {
    height: min(420px, 58vw);
  }
}

@media (max-width: 600px) {
  .quote-signature__profile {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 20px;
  }
  .quote-signature__sig-wrap {
    width: 88px;
    height: 88px;
  }
}

.gm-input {
  width: 100%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  color: #fff;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.gm-input::placeholder { color: rgba(255,255,255,0.5); }
.gm-input:focus { border-color: rgba(255,255,255,0.8); }
.gm-input option { color: #333; }

/* ---------- PAGE TRANSITION ---------- */
.page { animation: fadeUp 0.35s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Misc helpers ---------- */
.gap-row { display: flex; flex-direction: column; gap: 12px; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.space-y > * + * { margin-top: 16px; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.bg-cream { background: var(--cream); }
.bg-warm  { background: var(--warm); }
.bg-white { background: #fff; }

/* ── Mobile polish ───────────────────────────────────────── */
@media (max-width: 600px) {
  .info-card { padding: 22px 18px; }
  .section   { padding: 52px 0; }
  .section--sm { padding: 28px 0; }
  .container { padding: 0 18px; }
  .page-hero__title { font-size: 2rem; }
  .page-hero__sub   { font-size: 15px; }
  .btn { font-size: 13px; padding: 13px 22px; }
}

/* ── Floating Social Buttons ─────────────────────────────── */
.float-social {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-social__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.float-social__btn:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 28px rgba(0,0,0,0.26);
}
.float-social__btn--whatsapp {
  background: #25D366;
  width: 58px;
  height: 58px;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.float-social__btn--facebook  { background: #1877F2; }
.float-social__btn--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.75), 0 0 0 9px rgba(37,211,102,0.12); }
}

@media (max-width: 600px) {
  .float-social { bottom: 18px; right: 14px; gap: 10px; }
  .float-social__btn { width: 46px; height: 46px; }
  .float-social__btn--whatsapp { width: 52px; height: 52px; }
}
