/* ==========================================================================
   PEARL FITNESS LADIES GYM — Stylesheet
   Brand: Ink / Maroon / Champagne Gold / Ivory
   Type: Playfair Display (display) + Poppins (body/UI)
   ========================================================================== */

:root {
  --ink: #1A1A18;
  --charcoal: #2B2622;
  --maroon: #A32840;
  --maroon-dark: #832032;
  --gold: #CDA064;
  --gold-light: #E4C9A0;
  --ivory: #F7F3EC;
  --border: #D8CBB6;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(26, 26, 24, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 26, 24, 0.10);
  --shadow-lg: 0 20px 50px rgba(26, 26, 24, 0.16);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

p { color: var(--charcoal); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--charcoal); opacity: .85; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--ivory); }
.bg-charcoal { background: var(--charcoal); color: var(--ivory); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--ivory); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-gold-tint { background: linear-gradient(180deg, #FBF7F0 0%, var(--ivory) 100%); }

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.bg-ink .eyebrow, .bg-charcoal .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(163, 40, 64, 0.28);
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(163, 40, 64, 0.34); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(205, 160, 100, 0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.bg-ink .btn-outline, .bg-charcoal .btn-outline {
  border-color: rgba(247,243,236,0.5);
  color: var(--ivory);
}
.bg-ink .btn-outline:hover, .bg-charcoal .btn-outline:hover {
  background: var(--ivory);
  color: var(--ink);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.blog-filter .btn-outline.is-active { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  color: var(--maroon);
}
.brand-word span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 100px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.main-nav a:hover { background: rgba(163,40,64,0.07); color: var(--maroon); }
.main-nav a.active { color: var(--maroon); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-outline { border-color: var(--charcoal); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.header-phone svg { width: 16px; height: 16px; color: var(--maroon); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    height: 100vh;
    background: var(--ink);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  .main-nav a { color: var(--ivory); width: 100%; padding: 14px 14px; font-size: 1.02rem; }
  .main-nav a:hover, .main-nav a.active { background: rgba(205,160,100,0.12); color: var(--gold-light); }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(26,26,24,0.5);
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
    z-index: 998;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  .mobile-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; width: 100%; }
  .mobile-cta .btn { width: 100%; }
}
@media (min-width: 961px) { .nav-scrim, .mobile-cta { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 100px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 88% -10%, rgba(163,40,64,0.35), transparent 60%),
    radial-gradient(600px 500px at -5% 110%, rgba(205,160,100,0.18), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy h1 { color: var(--ivory); margin-bottom: 22px; }
.hero-copy h1 em { font-style: italic; color: var(--gold-light); }
.hero-copy p.lead { color: rgba(247,243,236,0.78); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats {
  display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-light);
}
.hero-stats .stat span { font-size: 0.8rem; color: rgba(247,243,236,0.65); letter-spacing: 0.04em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(205,160,100,0.16), rgba(163,40,64,0.22)),
    repeating-linear-gradient(135deg, rgba(247,243,236,0.05) 0 2px, transparent 2px 34px);
  border: 1px solid rgba(247,243,236,0.14);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual img { width: 62%; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)); }
.hero-visual .ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(205,160,100,0.35);
}
.hero-visual .ring.r1 { width: 78%; height: 78%; }
.hero-visual .ring.r2 { width: 100%; height: 100%; border-color: rgba(247,243,236,0.08); }
.hero-badge-float {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--ivory); color: var(--ink);
  padding: 14px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-badge-float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--maroon); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
.hero-badge-float strong { display:block; font-size: 0.85rem; }
.hero-badge-float small { font-size: 0.72rem; opacity: .65; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--maroon);
  color: var(--ivory);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: scroll-left 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
  opacity: .92;
}
.marquee-track span::after { content: "✦"; margin-left: 40px; color: var(--gold-light); font-style: normal; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Feature / Icon cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.icon-badge {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(150deg, var(--maroon), var(--maroon-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-light);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.gold { background: linear-gradient(150deg, var(--gold), #b9885a); color: var(--ink); }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; opacity: .8; }

/* ---------- Programs ---------- */
.program-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  min-height: 340px;
  padding: 30px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.program-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(163,40,64,0.55), rgba(26,26,24,0.9));
  z-index: -1;
}
.program-card::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 20%, rgba(205,160,100,0.5) 0, transparent 45%);
  z-index: -1;
  opacity: .6;
}
.program-card .num { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-light); letter-spacing: 0.1em; margin-bottom: 10px; }
.program-card h3 { color: var(--ivory); margin-bottom: 10px; }
.program-card p { color: rgba(247,243,236,0.75); font-size: 0.92rem; margin-bottom: 18px; }
.program-card .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(247,243,236,0.12); color: var(--gold-light);
  border: 1px solid rgba(247,243,236,0.18);
}
.program-card .card-link { display: inline-flex; align-items:center; gap: 8px; color: var(--gold-light); font-weight: 600; font-size: 0.88rem; }
.program-card .card-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.program-card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 0; }
.step .step-num {
  font-family: var(--font-display); font-size: 3rem; color: var(--gold);
  opacity: .5; line-height: 1; margin-bottom: 10px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.92rem; opacity: .78; }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
@media (max-width: 700px) { .stats-band { grid-template-columns: repeat(2,1fr); } }
.stats-band .stat b {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-light);
}
.stats-band .stat span { font-size: 0.82rem; letter-spacing: 0.03em; opacity: .7; }

/* ---------- Trainers ---------- */
.trainer-card { text-align: center; }
.trainer-photo {
  position: relative;
  aspect-ratio: 3/3.4;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--maroon) 0%, var(--charcoal) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.trainer-photo .initials {
  font-family: var(--font-display); font-size: 4rem; color: rgba(247,243,236,0.9);
}
.trainer-photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 75% 15%, rgba(205,160,100,0.45), transparent 50%);
}
.trainer-card h4 { margin-bottom: 2px; }
.trainer-card .role { color: var(--maroon); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 10px; }
.trainer-card p { font-size: 0.88rem; opacity: .78; }
.trainer-social { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }
.trainer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease);
}
.trainer-social a:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }
.trainer-social svg { width: 15px; height: 15px; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p.quote { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; color: var(--ink); margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold), var(--maroon));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-person b { display: block; font-size: 0.92rem; }
.testi-person span { font-size: 0.78rem; opacity: .65; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
  transform: scale(1.03);
}
.price-card.featured h3, .price-card.featured .price-amt { color: var(--ivory); }
.price-card.featured p, .price-card.featured li { color: rgba(247,243,236,0.82); }
.price-badge {
  position: absolute; top: -14px; right: 26px;
  background: var(--maroon); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 100px;
}
.price-card .plan-name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--maroon); margin-bottom: 10px; }
.price-card.featured .plan-name { color: var(--gold-light); }
.price-amt { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); margin-bottom: 4px; }
.price-amt span { font-size: 0.95rem; font-family: var(--font-body); font-weight: 500; opacity: .6; }
.price-sub { font-size: 0.82rem; opacity: .65; margin-bottom: 26px; }
.price-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.price-features svg { width: 17px; height: 17px; color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-features svg { color: var(--gold); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/10.5;
  background: linear-gradient(155deg, var(--maroon), var(--charcoal));
  position: relative;
  display: flex; align-items: flex-end; padding: 18px;
}
.blog-thumb::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 80% 10%, rgba(205,160,100,0.5), transparent 50%); }
.blog-thumb .cat-pill {
  position: relative; z-index: 1;
  background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 6px 14px; border-radius: 100px;
}
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.blog-meta { font-size: 0.76rem; letter-spacing: 0.04em; color: var(--maroon); font-weight: 600; text-transform: uppercase; }
.blog-body h3 { font-size: 1.2rem; }
.blog-body p { font-size: 0.9rem; opacity: .75; flex-grow: 1; }
.blog-readmore { font-size: 0.86rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.blog-readmore svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.blog-card:hover .blog-readmore svg { transform: translateX(4px); }

/* ---------- Blog single ---------- */
.post-hero { background: var(--ink); color: var(--ivory); padding: clamp(60px,9vw,110px) 0 60px; position: relative; overflow: hidden; }
.post-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 85% -10%, rgba(163,40,64,0.4), transparent 60%); }
.post-hero .container { position: relative; max-width: 820px; }
.post-hero h1 { color: var(--ivory); margin: 14px 0 18px; }
.post-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(247,243,236,0.7); }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body p { margin-bottom: 22px; font-size: 1.02rem; }
.post-body h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.post-body h3 { margin: 28px 0 12px; font-size: 1.25rem; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--maroon); padding: 4px 0 4px 22px; margin: 30px 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink);
}
.post-cta {
  background: var(--ink); color: var(--ivory); border-radius: var(--radius-lg);
  padding: 36px; text-align: center; margin: 50px 0 10px;
}
.post-cta h3 { color: var(--ivory); margin-bottom: 8px; }
.post-cta p { color: rgba(247,243,236,0.75); margin-bottom: 20px; }
.post-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.share-row { display:flex; align-items:center; gap:14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.share-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display:flex; align-items:center; justify-content:center; transition: all .2s var(--ease); }
.share-row a:hover { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.share-row svg { width: 16px; height: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 15% 20%, rgba(205,160,100,0.35), transparent 45%); }
.cta-band h2 { color: var(--white); position: relative; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); position: relative; max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ---------- FAQ Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; text-align: left; gap: 20px;
}
.accordion-trigger h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.accordion-trigger .plus {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--maroon);
  position: relative; flex-shrink: 0; transition: transform .3s var(--ease), background .3s var(--ease);
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content:""; position:absolute; background: var(--maroon); transition: transform .3s var(--ease), background .3s var(--ease);
}
.accordion-trigger .plus::before { top: 50%; left: 6px; right: 6px; height: 1.5px; transform: translateY(-50%); }
.accordion-trigger .plus::after { left: 50%; top: 6px; bottom: 6px; width: 1.5px; transform: translateX(-50%); }
.accordion-item.is-open .accordion-trigger .plus { background: var(--maroon); transform: rotate(180deg); }
.accordion-item.is-open .accordion-trigger .plus::after { transform: translateX(-50%) scaleY(0); }
.accordion-item.is-open .accordion-trigger .plus::before { background: var(--white); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-panel-inner { padding: 0 4px 22px; font-size: 0.94rem; opacity: .78; max-width: 640px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--white); font-size: 0.94rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(163,40,64,0.09);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; opacity: .6; margin-top: 14px; }
.form-success {
  display: none; background: #F0F7F1; border: 1px solid #BFE0C4; color: #2A5C34;
  padding: 16px 18px; border-radius: var(--radius); font-size: 0.9rem; margin-top: 18px;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; }

/* ---------- Contact info cards ---------- */
.contact-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 780px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; text-align: center;
}
.contact-info-card .icon-badge { margin: 0 auto 16px; }
.contact-info-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.contact-info-card p { font-size: 0.88rem; opacity: .78; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 16/7; width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Breadcrumb / page header ---------- */
.page-hero {
  background: var(--ink); color: var(--ivory); padding: clamp(56px,8vw,90px) 0 clamp(40px,6vw,60px);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 400px at 50% -20%, rgba(163,40,64,0.4), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--ivory); margin-bottom: 14px; }
.page-hero p { color: rgba(247,243,236,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; color: var(--gold-light); margin-bottom: 18px; opacity: .85; }
.breadcrumb span { opacity: .5; }

/* ---------- Values / About ---------- */
.value-row { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.value-row:first-child { border-top: 1px solid var(--border); }
.value-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); flex-shrink: 0; width: 46px; }
.value-row h4 { margin-bottom: 6px; }
.value-row p { font-size: 0.92rem; opacity: .78; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 4/4.6; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--maroon), var(--ink));
}
.split-media::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 75% 20%, rgba(205,160,100,0.4), transparent 50%); }
.split-media .quote-float {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(247,243,236,0.96); color: var(--ink); padding: 20px; border-radius: var(--radius);
  font-family: var(--font-display); font-style: italic; font-size: 1rem; box-shadow: var(--shadow-lg);
}

/* ---------- Gallery strip ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 780px) { .gallery-strip { grid-template-columns: repeat(2,1fr); } }
.gallery-tile {
  aspect-ratio: 1/1.1; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(155deg, var(--charcoal), var(--maroon));
}
.gallery-tile::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 30% 20%, rgba(205,160,100,0.4), transparent 50%); }
.gallery-tile span {
  position: absolute; bottom: 14px; left: 14px; color: var(--ivory);
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem; z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,236,0.75); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(247,243,236,0.12); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand img { height: 44px; }
.footer-brand p { margin: 18px 0 20px; font-size: 0.9rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(247,243,236,0.2);
  display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 { color: var(--ivory); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  animation: float-bob 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes float-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.divider { height: 1px; background: var(--border); width: 100%; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list .tag { background: rgba(163,40,64,0.07); color: var(--maroon); border-color: rgba(163,40,64,0.15); }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--maroon); color: #fff;
  padding: 12px 20px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--ink); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader img { width: 64px; animation: pulse 1.4s ease-in-out infinite; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }

@media (max-width: 1100px) {
  .header-actions .btn { display: none; }
}
@media (max-width: 900px) {
  .stats-band, .pricing-grid, .contact-info-grid { text-align: center; }
}
