/* ============================================
   Home Help & Companions — premium stylesheet
   ============================================ */

:root {
  --cream: #fdfaf2;
  --cream-2: #f9f1de;
  --cream-3: #f4ead2;
  --navy: #1f3b5f;
  --navy-deep: #0e2240;
  --navy-darker: #07172e;
  --gold: #c9a35f;
  --gold-bright: #d4b070;
  --gold-light: #e3c891;
  --gold-soft: #f1e3c4;
  --gold-pale: #faf1dc;
  --pink: #f3a3b3;
  --pink-soft: #fbe4e4;
  --pink-bg: #fce4e4;
  --pink-mist: #fff0f1;
  --pink-script: #e0668a;
  --text: #2d3a4f;
  --text-muted: #7a7e89;
  --white: #ffffff;
  --shadow-soft: 0 14px 50px rgba(31, 59, 95, 0.10);
  --shadow-card: 0 10px 36px rgba(31, 59, 95, 0.07);
  --shadow-frame: 0 30px 60px -20px rgba(31, 59, 95, 0.30), 0 18px 36px -18px rgba(201, 163, 95, 0.30);
  --radius: 16px;
  --radius-lg: 22px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(243, 163, 179, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 95% 30%, rgba(201, 163, 95, 0.06) 0%, transparent 40%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

.script {
  font-family: 'Allura', cursive;
  color: var(--pink-script);
  font-weight: 400;
  font-size: 1.55em;
  letter-spacing: -0.02em;
  display: inline-block;
  line-height: 0.9;
  vertical-align: baseline;
}
.script-sm {
  font-family: 'Allura', cursive;
  color: var(--pink-script);
  font-size: 1.7em;
  line-height: 1;
}
.heart-mark {
  color: var(--pink-script);
  font-size: 0.55em;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-4px);
}
.heart-mark.small { font-size: 0.45em; transform: translateY(-2px); }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow.center {
  display: flex;
  justify-content: center;
}
.orn-arrow {
  width: 56px;
  height: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- section title + flourish ---------- */
.section-title {
  font-size: clamp(32px, 4.4vw, 48px);
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-title.left { text-align: left; }
.title-flourish {
  width: 200px;
  height: 18px;
  color: var(--gold);
  display: block;
  margin: 18px auto 50px;
  opacity: 0.85;
}
.title-flourish.left { margin: 18px 0 36px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(31, 59, 95, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 163, 95, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 59, 95, 0.36), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(201, 163, 95, 0.4);
}
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 4px 16px rgba(201, 163, 95, 0.12);
}
.btn-outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 163, 95, 0.20);
}
.btn-gold {
  background: linear-gradient(180deg, #e8d099 0%, #c9a35f 100%);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(201, 163, 95, 0.40), inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700;
}
.cta-call {
  letter-spacing: 0.02em;
  font-size: 15px;
  padding: 16px 30px;
}
@media (max-width: 480px) {
  .cta-call {
    font-size: 14px;
    padding: 14px 22px;
    width: 100%;
    justify-content: center;
  }
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 163, 95, 0.55), inset 0 1px 0 rgba(255,255,255,0.6);
}
.chev { font-weight: 400; font-size: 18px; line-height: 1; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 242, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(201, 163, 95, 0.20);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 14px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-line-1, .brand-line-2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.brand-line-2 {
  letter-spacing: 0.08em;
}
.brand-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 3px;
  font-weight: 500;
}

.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active {
  color: var(--gold);
  font-weight: 700;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 2px;
}
.header-cta { padding: 13px 22px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--cream);
  padding-top: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 100%, rgba(243, 163, 179, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(201, 163, 95, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
  filter: blur(0.4px);
}
.hero-decor-tl {
  top: 60px;
  left: -40px;
  width: 140px;
  height: 140px;
  transform: rotate(-15deg);
  opacity: 0.35;
}
.hero-decor-br {
  bottom: 100px;
  right: -50px;
  width: 200px;
  height: 200px;
  transform: rotate(20deg);
  opacity: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(420px, 600px) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  padding-bottom: 110px;
  padding-right: 0;
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  max-width: none;
  position: relative;
}
.hero-copy { max-width: 580px; align-self: center; padding-right: 20px; }
.hero-title {
  font-size: clamp(40px, 5.6vw, 70px);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 26px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.hero-title .script {
  font-size: 1.55em;
  line-height: 0.9;
}
.hero-text {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero image — full-bleed right with soft fade on left */
.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  align-self: stretch;
  min-height: 560px;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}
.hero-image-frame::before { display: none; }
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 6%, rgba(0,0,0,0.85) 16%, black 26%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 6%, rgba(0,0,0,0.85) 16%, black 26%);
}
.frame-glow { display: none; }

/* ---------- decorative wave divider ---------- */
.hero-divider {
  position: relative;
  height: 160px;
  margin-top: -20px;
}
.hero-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wave-pink-soft path {
  fill: rgba(243, 163, 179, 0.10);
}
.wave-pink path {
  fill: rgba(243, 163, 179, 0.28);
}
.wave-gold {
  stroke: var(--gold);
  opacity: 0.55;
}
.wave-gold path {
  stroke: var(--gold);
  stroke-width: 1.2;
}
.wave-flourish {
  height: 30px;
  top: 64px;
  bottom: auto;
}
.emblem {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translate(-50%, 0);
  width: 130px;
  height: 130px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 36px rgba(31, 59, 95, 0.14), inset 0 0 0 1px rgba(201, 163, 95, 0.3);
  z-index: 2;
}
.emblem::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 163, 95, 0.6);
}
.emblem-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 163, 95, 0.3);
  pointer-events: none;
}
.emblem img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 90px 0;
  position: relative;
}
.section .eyebrow.center {
  margin-bottom: 16px;
}

/* ---------- services ---------- */
.services { padding-top: 40px; padding-bottom: 90px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: transparent;
  border-radius: var(--radius);
  padding: 42px 24px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 163, 95, 0.18);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
/* Layer 0: image background — visible at ~90%, very subtle blur */
.card-bg {
  position: absolute;
  inset: -8px;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(1.5px) saturate(1.05);
  transform: scale(1.04);
  z-index: 0;
  transition: transform .6s ease, filter .3s ease;
  pointer-events: none;
}
/* Layer 1: very light overlay (10% white) + bottom gradient for text readability */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(253, 250, 242, 0.05) 0%,
      rgba(253, 250, 242, 0.10) 35%,
      rgba(253, 250, 242, 0.55) 70%,
      rgba(253, 250, 242, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background .3s ease;
  border-radius: inherit;
}
/* Layer 2: gold accent line at top (on hover) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity .3s ease, width .3s ease;
  z-index: 3;
}
/* Layer 2: card content */
.service-card > .service-icon,
.service-card > h3,
.service-card > p,
.service-card > .card-dot {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(31, 59, 95, 0.12);
  border-color: rgba(201, 163, 95, 0.4);
}
.service-card:hover::before { opacity: 1; width: 100px; }
.service-card:hover::after {
  background:
    linear-gradient(180deg,
      rgba(253, 250, 242, 0.0) 0%,
      rgba(253, 250, 242, 0.05) 35%,
      rgba(253, 250, 242, 0.45) 70%,
      rgba(253, 250, 242, 0.80) 100%);
}
.service-card:hover .card-bg {
  transform: scale(1.07);
  filter: blur(1px) saturate(1.1);
}

.service-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  background:
    radial-gradient(circle at 50% 35%, #fffaeb 0%, #fbeaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 14px rgba(201, 163, 95, 0.18);
  position: relative;
  color: var(--gold);
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 163, 95, 0.32);
}
.service-icon svg { width: 54px; height: 54px; }
.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(253, 250, 242, 0.85), 0 0 2px rgba(253, 250, 242, 0.9);
}
.service-card p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(253, 250, 242, 0.85);
}
.card-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 18px auto 0;
  box-shadow: 0 0 0 4px var(--gold-soft), 0 0 0 8px transparent;
}
.services-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---------- why choose us ---------- */
.why { padding-top: 70px; padding-bottom: 100px; }
.why-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
}
.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-frame);
  position: relative;
  z-index: 2;
}
.why-image::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 163, 95, 0.45), rgba(243, 163, 179, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.why-image-accent {
  position: absolute;
  bottom: -22px;
  left: -22px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(243, 163, 179, 0.45), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-item {
  text-align: center;
}
.why-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  background: radial-gradient(circle at 50% 35%, #fffaeb 0%, #fbeaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 14px rgba(201, 163, 95, 0.16);
  color: var(--gold);
  position: relative;
}
.why-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 163, 95, 0.3);
}
.why-icon svg { width: 42px; height: 42px; }
.why-item h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}
.why-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding-top: 70px;
  padding-bottom: 50px;
}
.testimonials-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 30px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 163, 95, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.t-card.t-active {
  background: linear-gradient(180deg, var(--pink-mist) 0%, var(--pink-bg) 100%);
  border-color: rgba(243, 163, 179, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(243, 163, 179, 0.30);
}
.quote-mark {
  position: absolute;
  top: 14px;
  left: 26px;
  font-size: 64px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
}
.t-card.t-active .quote-mark { color: var(--pink-script); opacity: 0.5; }
.stars {
  color: var(--pink-script);
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 18px;
}
.t-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: 'Lato', sans-serif;
}
.t-name {
  font-family: 'Playfair Display', serif !important;
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 16px !important;
  margin-bottom: 2px !important;
  font-style: italic;
}
.t-role {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0 !important;
}
.t-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  font-weight: 300;
  border: 1px solid rgba(201, 163, 95, 0.35);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, color .25s, transform .2s, border-color .25s;
  line-height: 1;
}
.t-arrow:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--navy);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 30px 0;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(201, 163, 95, 0.22), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(243, 163, 179, 0.15), transparent 50%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 163, 95, 0.45) 30%, rgba(201, 163, 95, 0.45) 70%, transparent);
}
.cta-flourish-l, .cta-flourish-r {
  position: absolute;
  top: 50%;
  width: 130px;
  height: 30px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}
.cta-flourish-l {
  left: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 30'><path d='M5 15 L 60 15 M60 15 q 10 -10 20 0 q 10 10 20 0' stroke='%23e3c891' stroke-width='0.8' fill='none'/><circle cx='100' cy='15' r='2' fill='%23e3c891'/></svg>");
}
.cta-flourish-r {
  right: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 30'><path d='M125 15 L 70 15 M70 15 q -10 -10 -20 0 q -10 10 -20 0' stroke='%23e3c891' stroke-width='0.8' fill='none'/><circle cx='30' cy='15' r='2' fill='%23e3c891'/></svg>");
}

.cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
}
.cta-logo {
  width: 78px;
  height: 78px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 163, 95, 0.5);
  box-shadow: inset 0 0 0 4px rgba(201, 163, 95, 0.08);
  flex-shrink: 0;
}
.cta-logo img { width: 80%; height: 80%; object-fit: contain; }
.cta-copy h3 {
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  margin-bottom: 4px;
  font-style: italic;
}
.cta-copy p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 163, 95, 0.10), transparent 40%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-icon {
  height: 60px;
  width: 60px;
  flex-shrink: 0;
  background: var(--cream);
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 95, 0.4);
  object-fit: contain;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.footer-brand-text .brand-line-1,
.footer-brand-text .brand-line-2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand-text .brand-line-2 { letter-spacing: 0.08em; }
.footer-brand-text .brand-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  opacity: 0.78;
  margin-bottom: 22px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 22px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.88;
}
.footer-col a:hover { color: var(--gold-light); }

.contact-list li, .areas-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.areas-list li { padding-left: 22px; position: relative; }
.areas-list li:first-child { padding-left: 0; }
.ci {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci svg { width: 16px; height: 16px; color: var(--gold-light); }

.serve-intro { font-size: 13.5px; margin-bottom: 14px; opacity: 0.85; }
.serve-extra { font-size: 13px !important; opacity: 0.65; font-style: italic; padding-left: 0 !important; margin-top: 4px !important; }

.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 12px rgba(201, 163, 95, 0.25);
}
.social:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(201, 163, 95, 0.4); }
.social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(201, 163, 95, 0.22);
  padding: 26px 0;
  text-align: center;
}
.footer-bottom .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-style: italic;
}
.footer-bottom .copy {
  font-size: 12.5px;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.service-card, .why-item, .t-card, .hero-copy, .hero-image, .why-image, .section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.in-view, .hero-copy, .hero-image {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy, .hero-image { transition-delay: .1s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 60px;
    padding-left: 28px;
    padding-right: 28px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .hero-copy { max-width: none; padding-right: 0; align-self: auto; }

  /* Mobile/tablet: image full-bleed edge to edge with top fade into cream */
  .hero-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
    min-height: 0;
    align-self: stretch;
  }
  .hero-image-frame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .hero-image-frame::before { display: none; }
  .hero-image-frame img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 5%, black 16%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 5%, black 16%, black 100%);
  }
  .hero-decor-br { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .primary-nav ul { gap: 24px; }
  .header-cta { padding: 11px 16px; font-size: 12.5px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 22px; gap: 12px; }
  .brand-logo { height: 52px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(201, 163, 95, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav ul {
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
  }
  .primary-nav ul li { border-bottom: 1px solid rgba(201, 163, 95, 0.12); }
  .primary-nav ul li:last-child { border-bottom: 0; }
  .nav-link { display: block; padding: 14px 0; }

  /* MOBILE HERO: clean stacked layout — text first, photo as rounded card below */
  .hero { padding-top: 30px; }
  .hero-bg { display: none; }
  .hero-decor-tl, .hero-decor-br { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 10px 0 80px;
  }
  .hero-copy {
    max-width: none;
    text-align: left;
  }
  .hero-image {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .hero-image-frame {
    aspect-ratio: 4 / 3;
    max-width: none;
    margin: 0;
  }

  .hero-actions { gap: 10px; }
  .btn { padding: 13px 20px; font-size: 13px; }

  .section { padding: 60px 0; }
  .services { padding-top: 30px; padding-bottom: 70px; }
  .why { padding-top: 50px; padding-bottom: 70px; }

  .services-grid { grid-template-columns: 1fr; gap: 18px; max-width: 380px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .testimonials-track { grid-template-columns: 1fr; }
  .t-card:not(.t-active) { display: none; }
  .t-card.t-active { transform: none; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 14px 0;
  }
  .cta-logo { margin: 0 auto; }
  .cta-flourish-l, .cta-flourish-r { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; }

  .emblem { width: 96px; height: 96px; top: 22px; }
  .hero-divider { height: 110px; margin-top: -10px; }
  .wave-flourish { display: none; }

  .section-title { font-size: 32px; }
  .title-flourish { width: 160px; margin: 14px auto 36px; }
  .title-flourish.left { margin: 14px 0 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .hero-inner { padding: 10px 0 70px; gap: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .eyebrow { font-size: 11px; gap: 10px; }
  .orn-arrow { width: 36px; }
  .brand-icon { height: 44px; }
  .brand-line-1, .brand-line-2 { font-size: 14px; }
  .brand-sub { font-size: 10.5px; }
}
