/* ═══════════════════════════════════════════════
   COUPLE COUNSELING — Premium Pastel v4
   Fonts: Cormorant Garamond + Nunito Sans
   Palette: Warm rose pastels, never dark BG
═══════════════════════════════════════════════ */

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

:root {
  /* Pastel Palette */
  --blush:      #FFF0F4;
  --blush-mid:  #FFE0EB;
  --rose:       #E8587A;
  --rose-deep:  #C8185A;
  --rose-soft:  #F2789A;
  --rose-pale:  #FADADD;
  --petal:      #FFF6F8;
  --sage:       #F0F7F4;
  --cream:      #FFFBF8;
  --warm-white: #FEFCFA;
  --text-dark:  #2D2028;
  --text-mid:   #6D5A62;
  --text-light: #A08898;
  --border:     rgba(232,88,122,0.15);
  --border-mid: rgba(232,88,122,0.25);
  --shadow-rose:0 8px 40px rgba(232,88,122,0.14);
  --shadow-soft:0 4px 24px rgba(45,32,40,0.07);
  --shadow-deep:0 16px 60px rgba(45,32,40,0.12);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --gap: 6%;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.72;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
em { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────── */
.wrap { width: 100%; padding-left: var(--gap); padding-right: var(--gap); }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── SCROLL ANIMATIONS ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 78px;
  display: flex; align-items: center;
  background: rgba(255,246,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  height: 66px;
  box-shadow: 0 4px 30px rgba(232,88,122,0.1);
  background: rgba(255,252,250,0.98);
}
.header-inner {
  width: 100%; padding: 0 var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-logo img {
  height: 58px; width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .site-logo img { height: 50px; }

.site-nav { display: flex; align-items: center; gap: 22px; list-style: none; flex-wrap: nowrap; }
.site-nav a {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  position: relative; padding-bottom: 3px;
  transition: color 0.3s;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--rose);
  border-radius: 2px; transition: width 0.32s var(--ease);
}
.site-nav a:hover, .site-nav a.active { color: var(--rose-deep); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

.btn-nav {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: var(--rose);
  padding: 11px 26px; border: none; text-decoration: none; display: inline-block;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(232,88,122,0.32);
  transition: all 0.35s var(--ease);
}
.btn-nav:hover {
  background: var(--rose-deep); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,24,90,0.36);
}

/* ── DESKTOP SERVICES DROPDOWN ──────────────── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex !important; align-items: center; gap: 5px; }
.has-dropdown > a .dd-chevron { transition: transform 0.3s; flex-shrink: 0; }
.has-dropdown:hover > a .dd-chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  padding: 8px 0; min-width: 240px;
  box-shadow: 0 16px 48px rgba(45,32,40,0.13);
  z-index: 999;
  white-space: nowrap;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: #fff;
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.has-dropdown:hover .nav-dropdown { display: block; }
/* Reset all site-nav inherited styles for dropdown links */
.nav-dropdown a {
  display: flex !important; align-items: center; gap: 10px;
  font-family: 'Nunito Sans', sans-serif !important; font-size: 0.82rem !important;
  font-weight: 600 !important; letter-spacing: 0.04em !important;
  text-transform: none !important; color: var(--text-dark) !important;
  text-decoration: none !important; padding: 10px 20px !important;
  transition: all 0.22s; position: static !important;
  border-bottom: none !important; background: transparent;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--rose) !important; background: var(--blush); }
.nav-dropdown a svg { color: var(--rose); flex-shrink: 0; }
.nav-dropdown .dd-divider { height: 1px; background: var(--border); margin: 6px 12px; }
.nav-dropdown .dd-all { color: var(--text-mid) !important; font-size:0.77rem !important; }
.nav-dropdown .dd-all:hover { color: var(--rose) !important; }

/* ── HAMBURGER ───────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; z-index: 1100;
  position: relative;
}
.hamburger span {
  display: block; width: 23px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FLYOUT OVERLAY ──────────────────────────── */
.mob-overlay {
  display: none; position: fixed; inset: 0; background: rgba(45,32,40,0.52);
  z-index: 1050; backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.mob-overlay.active { display: block; }
.mob-overlay.visible { opacity: 1; }

/* ── FLYOUT PANEL ────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
  background: #fff; z-index: 1100;
  transform: translateX(105%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden;
  box-shadow: -8px 0 48px rgba(45,32,40,0.18);
  /* Prevent the off-screen panel from creating horizontal scroll */
  will-change: transform;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }

.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--cream); flex-shrink: 0;
}
.mob-nav-head img { height: 42px; }
.mob-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blush); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-dark); transition: all 0.25s; flex-shrink: 0;
}
.mob-close-btn:hover { background: var(--rose); color: #fff; }

.mob-nav-links { flex: 1; padding: 12px 0; }
.mob-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.94rem; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  padding: 15px 24px; border-bottom: 1px solid var(--border);
  transition: all 0.22s;
}
.mob-nav-links a:hover, .mob-nav-links a.active { color: var(--rose); background: var(--blush); }
.mob-nav-links a svg { color: var(--rose-soft); transition: transform 0.25s; }

/* Mobile services sub-items */
.mob-sub { background: var(--cream); display: none !important; }
.mob-sub.open { display: block !important; }
.mob-sub a {
  font-size: 0.84rem; padding: 11px 24px 11px 44px;
  color: #6D5A62; font-weight: 500; border-bottom-color: rgba(232,88,122,0.07);
}
.mob-sub a:hover { color: var(--rose); background: var(--blush); }
.mob-sub-toggle { cursor: pointer; }
.mob-sub-toggle svg.chevron { transition: transform 0.3s; }
.mob-sub-toggle.open svg.chevron { transform: rotate(180deg); }

.mob-nav-cta {
  padding: 20px 24px; border-top: 1px solid var(--border);
  background: var(--cream); flex-shrink: 0;
}
.mob-nav-cta a.btn-primary { display: flex; justify-content: center; width: 100%; }
.mob-nav-contact {
  margin-top: 14px; display: flex; flex-direction: column; gap: 8px;
}
.mob-nav-contact a {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: #6D5A62; text-decoration: none; transition: color 0.22s;
}
.mob-nav-contact a:hover { color: var(--rose); }
.mob-nav-contact a svg { color: var(--rose); flex-shrink: 0; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: var(--rose);
  padding: 15px 36px; border: 2px solid var(--rose); border-radius: 40px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 22px rgba(232,88,122,0.28);
  transition: all 0.35s var(--ease);
}
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,24,90,0.32); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--rose); background: transparent;
  padding: 14px 34px; border: 2px solid var(--rose); border-radius: 40px;
  text-decoration: none; cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,88,122,0.24); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--rose-deep); background: #fff;
  padding: 15px 36px; border: 2px solid #fff; border-radius: 40px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 22px rgba(255,255,255,0.2);
  transition: all 0.35s var(--ease);
}
.btn-white:hover { background: transparent; color: #fff; box-shadow: none; }

/* ── SECTION LABELS ──────────────────────────── */
.s-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
}
.s-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--rose); border-radius: 2px; flex-shrink: 0; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  color: var(--text-dark); margin-bottom: 16px; font-weight: 500;
}
.section-title em { color: var(--rose); font-style: italic; }
.section-sub { font-size: 0.96rem; color: var(--text-mid); line-height: 1.82; max-width: 520px; }
.rule { display: block; width: 44px; height: 3px; background: var(--rose); border-radius: 3px; margin-bottom: 20px; }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-pale) 100%);
  padding: 150px 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; color: var(--text-dark); margin-bottom: 14px;
}
.page-hero p { color: var(--text-mid); font-size: 1.02rem; max-width: 460px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 22px; font-size: 0.76rem; color: var(--text-light); }
.breadcrumb a { color: var(--rose); text-decoration: none; }

/* ── SERVICE CARDS ───────────────────────────── */
.svc-card {
  background: var(--warm-white); border: 1px solid var(--border);
  padding: 38px 30px; border-radius: 16px;
  position: relative; overflow: hidden;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.38s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-rose); border-color: var(--border-mid); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 58px; height: 58px; background: var(--blush-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); margin-bottom: 20px; transition: all 0.35s var(--ease); border: 1px solid var(--border); }
.svc-card:hover .svc-icon { background: var(--rose); color: #fff; transform: scale(1.08); }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; margin-bottom: 12px; font-weight: 500; }
.svc-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.svc-link { font-family: 'Nunito Sans', sans-serif; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.svc-link:hover { gap: 12px; }

/* ── TESTIMONIAL ─────────────────────────────── */
.testi-card {
  background: var(--warm-white); border: 1px solid var(--border);
  padding: 36px 32px; border-radius: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-rose); }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--rose-pale); line-height: 0.6; margin-bottom: 14px; display: block; }
.testi-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 14px; height: 14px; fill: #F59E0B; }
.testi-name { font-weight: 700; font-size: 0.86rem; color: var(--text-dark); }
.testi-role { font-size: 0.76rem; color: var(--rose); margin-top: 3px; }

/* ── BLOG CARD ───────────────────────────────── */
.blog-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--warm-white); transition: transform 0.38s var(--ease), box-shadow 0.38s; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-deep); }
.blog-card-img { overflow: hidden; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.blog-card:hover img { transform: scale(1.06); }
.blog-card-body { padding: 26px; }
.blog-meta { display: flex; gap: 10px; align-items: center; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; margin-bottom: 10px; font-weight: 500; line-height: 1.35; }
.blog-card-title a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.blog-card-title a:hover { color: var(--rose); }
.blog-excerpt { font-size: 0.86rem; color: var(--text-mid); line-height: 1.76; margin-bottom: 18px; }
.read-more { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.read-more:hover { gap: 12px; }

/* ── FORMS ───────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--warm-white);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(232,88,122,0.1); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 22px 0; text-align: left; font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 500; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; transition: color 0.3s; }
.faq-question:hover { color: var(--rose); }
.faq-icon { width: 28px; height: 28px; border: 1.5px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rose); transition: all 0.35s var(--ease); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease); }
.faq-answer-inner { padding: 0 0 22px; color: var(--text-mid); font-size: 0.93rem; line-height: 1.86; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { background: var(--rose); color: #fff; border-color: var(--rose); transform: rotate(45deg); }

/* ── QUOTE STRIP ─────────────────────────────── */
.quote-strip {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.quote-strip::before { content: '"'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 20rem; color: rgba(255,255,255,0.06); top: -50px; left: 4%; line-height: 1; pointer-events: none; }
.quote-strip blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.3rem, 2.8vw, 2.1rem); color: #fff; max-width: 760px; margin: 0 auto; line-height: 1.55; position: relative; z-index: 1; font-weight: 300; }
.quote-strip cite { display: block; margin-top: 18px; font-family: 'Nunito Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-style: normal; position: relative; z-index: 1; }

/* ── STATS BAND ──────────────────────────────── */
.stats-band { background: var(--rose-pale); padding: 0; display: grid; grid-template-columns: repeat(4,1fr); }
.s-stat { padding: 46px 30px; text-align: center; border-right: 1px solid rgba(232,88,122,0.18); transition: background 0.3s; }
.s-stat:last-child { border-right: none; }
.s-stat:hover { background: var(--blush-mid); }
.s-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 500; color: var(--rose-deep); line-height: 1; margin-bottom: 8px; }
.s-lbl { font-family: 'Nunito Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }

/* ── MARQUEE TRUST ───────────────────────────── */
.trust-strip { background: var(--blush); padding: 18px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-track { display: flex; gap: 52px; align-items: center; animation: marquee 28s linear infinite; white-space: nowrap; width: max-content; }
.trust-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-item { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito Sans', sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); flex-shrink: 0; }
.t-item .t-dot { width: 5px; height: 5px; background: var(--rose); border-radius: 50%; flex-shrink: 0; }

/* ── ICON BOX ────────────────────────────────── */
.icon-wrap { width: 56px; height: 56px; background: var(--blush-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); flex-shrink: 0; border: 1px solid var(--border); transition: all 0.35s var(--ease); }
.icon-wrap:hover, .why-feature:hover .icon-wrap { background: var(--rose); color: #fff; }

/* ── WHY FEATURES ────────────────────────────── */
.why-feature { padding: 26px 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--warm-white); transition: all 0.38s var(--ease); }
.why-feature:hover { border-color: var(--rose-soft); box-shadow: var(--shadow-rose); transform: translateY(-4px); }
.why-feature h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; margin: 12px 0 6px; font-weight: 500; }
.why-feature p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.74; }

/* ── GALLERY GRID ────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(200,24,90,0.35); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.35s; border-radius: 14px; }
.gallery-overlay svg { color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.tall img { height: 390px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 260px; }

/* ── STICKY CTA ──────────────────────────────── */
.sticky-cta { position: fixed; bottom: 26px; right: 26px; z-index: 900; }
.sticky-cta a { display: flex; align-items: center; gap: 8px; background: var(--rose); color: #fff; padding: 13px 22px; font-family: 'Nunito Sans', sans-serif; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 40px; box-shadow: 0 6px 28px rgba(232,88,122,0.38); transition: all 0.35s var(--ease); }
.sticky-cta a:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,24,90,0.4); }
.sticky-cta a.sticky-cta-whatsapp { display: none; background: #25D366 !important; width: 56px; height: 56px; padding: 0 !important; border-radius: 50%; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,0.4) !important; }
.sticky-cta a.sticky-cta-whatsapp:hover { background: #1ebe57 !important; box-shadow: 0 10px 32px rgba(30,190,87,0.45) !important; }

/* Header WhatsApp icon — mobile sticky header only */
.header-whatsapp { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #25D366; color: #fff; margin-right: 2px; flex-shrink: 0; transition: transform 0.25s, background 0.25s; }
.header-whatsapp:hover { background: #1ebe57; transform: translateY(-1px); }

@media (min-width: 769px) {
  .sticky-cta a.sticky-cta-book { display: none; }
  .sticky-cta a.sticky-cta-whatsapp { display: flex; }
}
@media (max-width: 768px) {
  .header-whatsapp { display: flex; }
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer { background: var(--blush); padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-inner { width: 100%; padding: 0 var(--gap); display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 46px; }
.footer-brand .logo-footer { height: 50px; }
.footer-brand p { margin-top: 16px; font-size: 0.85rem; line-height: 1.82; color: var(--text-mid); max-width: 290px; }
.footer-col h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-mid); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-contact p { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 12px; display: flex; gap: 10px; line-height: 1.6; align-items: flex-start; }
.footer-contact .f-icon { color: var(--rose); flex-shrink: 0; margin-top: 1px; }
.social-links { display: flex; gap: 9px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; border: 1px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-mid); text-decoration: none; transition: all 0.35s; }
.social-links a:hover { border-color: var(--rose); color: var(--rose); background: var(--blush-mid); }
.footer-lang { display: flex; align-items: center; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.lang-label { font-size: 0.83rem; color: var(--text-mid); }
.lang-select { font-family: 'Nunito Sans', sans-serif; font-size: 0.8rem; color: var(--text-mid); background: #fff; border: 1px solid var(--border-mid); border-radius: 20px; padding: 6px 14px; cursor: pointer; outline: none; transition: border-color 0.3s, color 0.3s; }
.lang-select:hover, .lang-select:focus { border-color: var(--rose); color: var(--rose); }
#google_translate_element { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.footer-bottom { margin-top: 52px; padding: 20px var(--gap); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: var(--text-light); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--rose); text-decoration: none; }

/* ── GRIDS ───────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* ── SERVICE PAGE SPLIT LAYOUTS ─────────────── */
/* Two-column image+text splits used across service pages */
.sp-split       { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.sp-split-start { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.sp-split-60    { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.sp-feat-2      { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:28px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .g3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall img { height: 260px; }
  /* Service page split layouts → single column on tablet */
  .sp-split, .sp-split-start, .sp-split-60 { grid-template-columns:1fr; gap:40px; }
}
@media (max-width: 768px) {
  :root { --gap: 5%; }
  .site-nav, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 68px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  /* Feature chips: single column on mobile */
  .sp-feat-2 { grid-template-columns:1fr; }

  /* ── MOBILE OVERFLOW PREVENTION ─────────────── */
  /* Ensure nothing overflows viewport width on mobile */
  .wrap, section, .site-footer, .site-header { max-width: 100%; overflow-x: hidden; }
  /* Hide decorative borders/accents that extend beyond edges */
  .sp-intro-img::before { display: none !important; }
  .about-img-frame::before { display: none !important; }
  .about-accent-block { display: none !important; }
  /* Constrain service page hero */
  .sp-hero { overflow: hidden; }
  /* Constrain image heights on mobile to avoid layout issues */
  .sp-intro-img img { height: 280px; }
  /* Ensure CTA boxes don't overflow */
  .sp-cta-box { padding: 28px 22px; }
  /* Contact band padding reduce */
  .sp-contact-detail { gap: 12px; }
  /* Sticky CTA stays in viewport */
  .sticky-cta { right: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  :root { --gap: 4%; }
  .section { padding: 52px 0; }
  .page-hero { padding: 120px 0 70px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .s-stat { padding: 32px 16px; }
  /* Extra small screens — prevent any text overflow */
  .sp-cta-box { padding: 22px 16px; }
  .sp-hero { padding: 90px 0 50px; }
  .idx-stats-band > div { padding: 30px 16px; }
}
