/* ═══════════════════════════════════════════════════════════════
   TRAIN WITH SUZY — Design System
   Female Personal Trainer · Sheffield
   Built by Safer Haven AI · 2026
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #ffffff;
  --ivory:    #fdfaf8;
  --blush:    #fdf0f3;
  --blush-md: #f5d9e1;
  --rose:     #c4687a;
  --rose-lt:  #e8a0b0;
  --rose-dk:  #8b3a4a;
  --deep:     #2a1420;
  --text:     #2d1a20;
  --text-mid: #7a5560;
  --text-lt:  #b08090;
  --radius:   4px;
  --transition: 0.35s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Segoe UI', sans-serif;
  --section-pad: clamp(90px, 11vw, 150px);
  --shadow-soft: 0 8px 40px rgba(44,20,32,0.08);
  --shadow-lift: 0 20px 60px rgba(44,20,32,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--rose); color: var(--white); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 300;
  background: var(--rose);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

/* ── Preloader ────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-word {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  overflow: hidden;
}
.preloader-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: preRise 0.7s var(--ease-out) forwards;
  white-space: pre;
}
@keyframes preRise { to { transform: translateY(0); } }

.preloader-line {
  width: 120px;
  height: 1px;
  background: rgba(196,104,122,0.25);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  animation: preLine 1s 0.2s var(--ease-out) forwards;
}
@keyframes preLine { to { transform: scaleX(1); } }

/* ── Scroll progress ──────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--rose-lt), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
}

/* ── Navigation ───────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid rgba(196,104,122,0.15);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}
nav.site-nav.scrolled {
  padding: 12px 5%;
  border-bottom-color: rgba(196,104,122,0.3);
  box-shadow: 0 4px 24px rgba(44,20,32,0.07);
}

.nav-logo { display: block; }
.nav-logo img { height: 46px; filter: brightness(0); transition: height 0.35s ease; }
nav.site-nav.scrolled .nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--rose); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--rose);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--rose-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196,104,122,0.3);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.7rem;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out), color 0.3s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu a[aria-current="page"] { color: var(--rose); font-style: italic; }
.mobile-menu .m-cta {
  background: var(--rose);
  color: var(--white);
  padding: 15px 42px;
  border-radius: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 14px;
}
.mobile-menu .m-cta:hover { color: var(--white); background: var(--rose-dk); }
.mobile-menu .m-phone {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-lt);
  margin-top: 4px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover { background: var(--rose-dk); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(196,104,122,0.35); }
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-weight: 400;
}
.btn-ghost:hover { border-color: var(--rose-lt); background: rgba(232,160,176,0.12); transform: translateY(-2px); }

.btn-ghost.on-light {
  border-color: rgba(196,104,122,0.35);
  color: var(--rose);
}
.btn-ghost.on-light:hover { background: rgba(196,104,122,0.07); border-color: var(--rose); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  transition: gap 0.3s var(--ease-out), color var(--transition);
}
.arrow-link:hover { gap: 16px; color: var(--rose-dk); }
.arrow-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Hero (homepage, full height) ─────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.08);
  transition: transform 7s var(--ease-out);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(42,20,32,0.55) 0%,
      rgba(42,20,32,0.22) 42%,
      rgba(42,20,32,0.02) 68%),
    linear-gradient(to top,
      rgba(42,20,32,0.92) 0%,
      rgba(42,20,32,0.52) 40%,
      rgba(42,20,32,0.16) 70%,
      rgba(42,20,32,0.06) 100%);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(196,104,122,0.08);
  mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-lt);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--rose-lt);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--rose-lt); }

.hero-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.9;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(232,160,176,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 5% 70px;
  overflow: hidden;
}
.page-hero.short { min-height: 46vh; }
.page-hero .hero-content { max-width: 820px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--rose-lt); }
.page-hero .hero-sub { margin-bottom: 10px; }

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--rose-lt); }
.breadcrumb .sep { color: rgba(232,160,176,0.6); }

/* ── Line reveal animation ────────────────────────────────────── */
.line { display: block; overflow: hidden; }
.line-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease-out);
}
.lines-visible .line-inner { transform: translateY(0); }
.line:nth-child(2) .line-inner { transition-delay: 0.12s; }
.line:nth-child(3) .line-inner { transition-delay: 0.24s; }

/* ── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--blush);
  border-top: 1px solid rgba(196,104,122,0.15);
  border-bottom: 1px solid rgba(196,104,122,0.15);
  padding: 36px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item .num {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
}
.trust-item .label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 7px;
}
.trust-divider { width: 1px; height: 44px; background: rgba(196,104,122,0.2); }

/* ── Section primitives ───────────────────────────────────────── */
section { padding: var(--section-pad) 5%; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--rose);
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--rose); }

.section-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  max-width: 540px;
}
.section-body + .section-body { margin-top: 18px; }
.section-body strong { color: var(--rose-dk); font-weight: 500; }

.centered-intro { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.centered-intro .section-body { margin-left: auto; margin-right: auto; }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  background: var(--white);
  border-top: 1px solid rgba(196,104,122,0.12);
  border-bottom: 1px solid rgba(196,104,122,0.12);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: baseline;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--text);
  padding: 0 28px;
}
.marquee-track span.dot { color: var(--rose-lt); font-style: normal; font-size: 1rem; }
.marquee-track span.alt { color: var(--rose); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Two-column feature (about / wedding style) ───────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }

.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.split-media.corner::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 55%; height: 55%;
  background: var(--blush);
  border-radius: 2px;
  z-index: 0;
}
.split-media.corner-rose::before { background: var(--blush-md); }
.split.reverse .split-media.corner::before { left: auto; right: -20px; }

.media-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--rose);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(139,58,74,0.3);
}
.media-badge .b-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}
.media-badge .b-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.split-text .section-body { max-width: 100%; }

.inline-quote {
  border-left: 2px solid var(--rose-lt);
  padding-left: 22px;
  margin: 34px 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-dk);
  line-height: 1.5;
}

/* image reveal */
.img-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out);
}
.img-reveal.visible { clip-path: inset(0 0 0% 0); }

/* parallax wrapper */
.parallax-wrap { overflow: hidden; border-radius: 2px; }
.parallax-wrap img { will-change: transform; transform: translateY(0); }

/* ── Perks list ───────────────────────────────────────────────── */
.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
}
.perks li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.perks li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--rose);
  margin-top: 12px;
  flex-shrink: 0;
}

/* ── Service cards ────────────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.1);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose-lt), var(--rose));
  transform: scaleX(0);
  transition: transform 0.45s var(--ease-out);
}
.service-card:hover {
  border-color: rgba(196,104,122,0.25);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 44px; height: 44px; margin-bottom: 24px; opacity: 0.65; transition: transform 0.4s var(--ease-out); }
.service-card:hover .service-icon { transform: translateY(-3px) scale(1.06); }
.service-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196,104,122,0.09);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(196,104,122,0.2); }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.8; }

/* ── Process steps ────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
  margin-top: 24px;
}
.step {
  position: relative;
  padding-top: 34px;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: rgba(196,104,122,0.2);
}
.step::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 1.2s var(--ease-out);
}
.step.visible::after { width: 100%; }
.step:nth-child(2).visible::after { transition-delay: 0.2s; }
.step:nth-child(3).visible::after { transition-delay: 0.4s; }
.step-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.85; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.14);
  border-radius: 2px;
  padding: 52px 44px 44px;
  position: relative;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.price-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-color: rgba(196,104,122,0.3);
}
.price-card.featured { border-color: rgba(196,104,122,0.35); }
.price-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.price-for {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
}
.price-amount sup { font-size: 1.6rem; top: -1.6rem; position: relative; }
.price-per {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin: 10px 0 30px;
}
.price-per strong { color: var(--rose-dk); font-weight: 600; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.price-features li {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}
.price-features li svg {
  width: 15px; height: 15px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}
.price-note {
  font-size: 0.68rem;
  color: var(--text-lt);
  margin-top: 16px;
  font-style: italic;
}

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery { background: var(--white); padding-top: 0; padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s ease;
  filter: saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(42,20,32,0.75));
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ── Pull quote ───────────────────────────────────────────────── */
.pull-quote {
  background: var(--rose);
  padding: 110px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.pull-quote .mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 26px;
}
.pull-quote blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 940px;
  margin: 0 auto 32px;
  line-height: 1.35;
}
.pull-quote cite {
  position: relative;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.1);
  padding: 44px 40px;
  border-radius: 2px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover {
  border-color: rgba(196,104,122,0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.testi-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(196,104,122,0.12);
  position: absolute;
  top: 10px; left: 28px;
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { width: 14px; height: 14px; fill: var(--rose); }
.testi-card blockquote {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}
.testi-google { text-align: center; margin-top: 48px; }
.testi-google a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(122,85,96,0.25);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.testi-google a:hover { color: var(--rose); border-color: var(--rose); }

/* slider variant */
.testi-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  min-height: 300px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out), visibility 0.7s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testi-slide.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.testi-slide .stars { justify-content: center; }
.testi-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  max-width: 800px;
  margin-bottom: 26px;
}
.testi-slide .testi-author { font-size: 0.72rem; }
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.testi-dot {
  width: 26px; height: 3px;
  border: none;
  border-radius: 3px;
  background: rgba(196,104,122,0.2);
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.testi-dot.active { background: var(--rose); width: 40px; }

/* video testimonials */
.video-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}
.video-testi {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.video-testi:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.video-testi video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--deep);
}
.video-testi figcaption {
  padding: 20px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-testi figcaption span { color: var(--text-lt); letter-spacing: 0.1em; text-transform: none; font-size: 0.72rem; }

/* ── Cinematic video frame ────────────────────────────────────── */
.video-section {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,104,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.video-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.video-inner .section-title { margin: 0 auto 56px; }
.video-stage { position: relative; padding: 20px; }
.video-stage::before,
.video-stage::after,
.video-stage .corner-br,
.video-stage .corner-bl {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border-color: var(--rose);
  border-style: solid;
  opacity: 0.6;
  transition: opacity var(--transition), width 0.4s ease, height 0.4s ease;
}
.video-stage::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.video-stage::after  { top: 0; right: 0; border-width: 2px 2px 0 0; }
.video-stage .corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.video-stage .corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.video-stage:hover::before,
.video-stage:hover::after,
.video-stage:hover .corner-br,
.video-stage:hover .corner-bl { opacity: 1; width: 52px; height: 52px; }
.video-reel-label {
  position: absolute;
  top: 28px; left: 28px;
  z-index: 3;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.75;
  pointer-events: none;
}
.video-badge {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 0.6;
  pointer-events: none;
}
.video-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--deep);
  box-shadow:
    0 0 0 1px rgba(196,104,122,0.2),
    0 0 40px rgba(196,104,122,0.08),
    0 24px 60px rgba(44,20,32,0.2),
    0 60px 100px rgba(44,20,32,0.1);
  transition: box-shadow 0.4s ease;
}
.video-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(196,104,122,0.4),
    0 0 60px rgba(196,104,122,0.12),
    0 24px 60px rgba(44,20,32,0.25),
    0 60px 100px rgba(44,20,32,0.15);
}
.video-wrap video { width: 100%; display: block; max-height: 480px; object-fit: cover; }
.video-caption {
  margin-top: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-caption::before,
.video-caption::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,104,122,0.25));
}
.video-caption::after { background: linear-gradient(to left, transparent, rgba(196,104,122,0.25)); }

/* ── Comparison strip (gym page) ──────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.compare-card {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.1);
  border-radius: 2px;
  padding: 44px 36px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.compare-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.compare-card .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--rose);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.compare-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.compare-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }

/* ── FAQ accordion ────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(196,104,122,0.18);
}
.faq-item:first-child { border-top: 1px solid rgba(196,104,122,0.18); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--rose-dk); }
.faq-item.open .faq-q { color: var(--rose-dk); }
.faq-icon {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid rgba(196,104,122,0.35);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition), transform 0.45s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--rose);
  transition: background var(--transition), transform 0.45s var(--ease-out);
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon { background: var(--rose); border-color: var(--rose); transform: rotate(180deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-a-inner {
  padding: 0 44px 30px 4px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.faq-a-inner p + p { margin-top: 12px; }
.faq-a-inner ul { margin: 12px 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.faq-a-inner li { font-size: 0.86rem; }
.faq-a-inner a { color: var(--rose); border-bottom: 1px solid rgba(196,104,122,0.3); }
.faq-a-inner a:hover { color: var(--rose-dk); }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-details h2 { margin-bottom: 24px; }
.contact-rows { display: flex; flex-direction: column; gap: 8px; margin: 36px 0; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,104,122,0.14);
  transition: padding-left 0.3s var(--ease-out);
}
.contact-row:first-child { border-top: 1px solid rgba(196,104,122,0.14); }
.contact-row:hover { padding-left: 8px; }
.contact-row svg {
  width: 20px; height: 20px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-row .cr-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-lt);
  display: block;
}
.contact-row .cr-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}
.contact-row a.cr-value:hover { color: var(--rose); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td {
  padding: 10px 0;
  font-size: 0.84rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196,104,122,0.1);
}
.hours-table td:last-child { text-align: right; color: var(--text); }
.hours-table tr.closed td:last-child { color: var(--text-lt); font-style: italic; }

/* form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.14);
  border-radius: 2px;
  padding: 52px 48px;
  box-shadow: var(--shadow-soft);
}
.contact-form-wrap h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-field label .req { color: var(--rose); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid rgba(196,104,122,0.18);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,104,122,0.1);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-lt); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-submit button { border: none; }
.form-submit button[disabled] { opacity: 0.6; pointer-events: none; }
.form-status {
  font-size: 0.82rem;
  line-height: 1.6;
  display: none;
}
.form-status.ok { display: block; color: #3e7d4f; }
.form-status.err { display: block; color: var(--rose-dk); }
.form-privacy {
  margin-top: 22px;
  font-size: 0.7rem;
  color: var(--text-lt);
  line-height: 1.7;
}
.form-privacy a { color: var(--text-mid); border-bottom: 1px solid rgba(122,85,96,0.3); }
.form-privacy a:hover { color: var(--rose); }

/* ── Blog ─────────────────────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  gap: 28px;
  justify-content: center;
}
.post-card {
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.12);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.post-card-img { overflow: hidden; aspect-ratio: 16 / 9; }
.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 36px 38px 40px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 16px;
}
.post-meta .cat { color: var(--rose); }
.post-card h2, .post-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
}
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--rose-dk); }
.post-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; }
.post-card .arrow-link { margin-top: auto; }

/* article */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-wrap > p { font-size: 0.95rem; color: var(--text-mid); line-height: 2; margin-bottom: 26px; }
.article-wrap h2 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 54px 0 20px;
  color: var(--text);
}
.article-wrap h2 em { font-style: italic; color: var(--rose); }
.article-wrap h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 40px 0 14px;
}
.article-wrap ul, .article-wrap ol {
  margin: 0 0 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-wrap li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; padding-left: 6px; }
.article-wrap li::marker { color: var(--rose); }
.article-wrap strong { color: var(--rose-dk); font-weight: 500; }
.article-wrap figure { margin: 40px 0; }
.article-wrap figure img { width: 100%; border-radius: 2px; }
.article-wrap figcaption {
  margin-top: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lt);
  text-align: center;
}
.article-callout {
  background: var(--blush);
  border-left: 2px solid var(--rose);
  padding: 28px 32px;
  margin: 36px 0;
  border-radius: 2px;
}
.article-callout p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; }
.article-callout p strong { color: var(--rose-dk); }
.article-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 48px; }
.article-tags span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  border: 1px solid rgba(196,104,122,0.2);
  padding: 7px 16px;
  border-radius: 30px;
}
.author-box {
  display: flex;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(196,104,122,0.14);
  border-radius: 2px;
  padding: 34px 36px;
  margin-top: 56px;
}
.author-box img {
  width: 86px; height: 86px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.author-box .a-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-lt);
  display: block;
  margin-bottom: 4px;
}
.author-box .a-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.author-box p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.7; }

/* ── Legal pages ──────────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 48px 0 16px;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.95; margin-bottom: 18px; }
.legal-wrap ul, .legal-wrap ol { margin: 0 0 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-wrap li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }
.legal-wrap li::marker { color: var(--rose); }
.legal-wrap a { color: var(--rose); border-bottom: 1px solid rgba(196,104,122,0.3); }
.legal-updated {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 40px;
}

/* ── Local area strip ─────────────────────────────────────────── */
.area-strip {
  background: var(--white);
  border-top: 1px solid rgba(196,104,122,0.12);
  padding: 56px 5%;
  text-align: center;
}
.area-strip p.areas {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  max-width: 720px;
  margin: 14px auto 0;
  line-height: 2;
}
.area-strip .pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}
.area-strip .pin svg { width: 15px; height: 15px; stroke: var(--rose); fill: none; stroke-width: 1.5; }

/* ── CTA section ──────────────────────────────────────────────── */
.cta-section {
  background: var(--deep);
  padding: 140px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(196,104,122,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlow 7s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}
.cta-section .section-label { justify-content: center; color: var(--rose-lt); }
.cta-section .section-label::before { background: var(--rose-lt); }
.cta-section .section-title { color: var(--white); max-width: 760px; margin: 0 auto 20px; }
.cta-section .section-title em { color: var(--rose-lt); }
.cta-section .section-body {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
}
.cta-section .btn-group { justify-content: center; }
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.3); }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.phone-link:hover { color: var(--rose-lt); }
.phone-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Footer ───────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--blush);
  border-top: 1px solid rgba(196,104,122,0.15);
  padding: 80px 5% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img.f-logo { height: 40px; filter: brightness(0); margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: color var(--transition), padding-left 0.3s var(--ease-out);
}
.footer-col ul a:hover { color: var(--rose-dk); padding-left: 5px; }
.footer-social { display: flex; gap: 14px; margin-top: 28px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,104,122,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-lt);
  font-size: 0.75rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.social-icon:hover {
  border-color: var(--rose);
  color: var(--white);
  background: var(--rose);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(196,104,122,0.15);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-lt); }
.footer-bottom p a { color: var(--text-mid); }
.footer-bottom p a:hover { color: var(--rose); }
.nrpt-logo { height: 44px; filter: brightness(0); opacity: 0.3; transition: opacity var(--transition), filter var(--transition); }
.nrpt-logo:hover { opacity: 1; filter: none; }

/* ── Back to top ──────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(196,104,122,0.3);
  background: var(--white);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s var(--ease-out), background var(--transition), color var(--transition);
  box-shadow: 0 6px 24px rgba(44,20,32,0.12);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--rose); color: var(--white); }
.back-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Animation utilities ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }

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

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid, .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .gallery-item:first-child { grid-row: auto; }
  .split, .contact-layout { gap: 52px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { gap: 30px; }
}

@media (max-width: 768px) {
  section { padding: 80px 5%; }
  nav.site-nav { padding: 16px 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-bottom: 90px; }
  .page-hero { min-height: 52vh; padding-top: 130px; }
  .trust-bar { gap: 28px; padding: 28px 5%; }
  .trust-divider { display: none; }
  .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse > .split-media { order: 0; }
  .split-media img { height: 440px; }
  .split-media.corner::before { display: none; }
  .media-badge { bottom: 16px; right: 16px; }
  .services-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .service-grid, .compare-grid, .steps, .pricing-grid, .video-testi-grid, .post-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:first-child { grid-column: 1 / 3; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 40px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: 1.15rem; padding: 22px 4px; }
  .testi-slider { min-height: 380px; }
  .back-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; text-align: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery-item:first-child { grid-column: auto; }
  .author-box { flex-direction: column; text-align: center; }
  .price-card { padding: 44px 28px 36px; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up, .fade-in, .scale-in, .img-reveal, .line-inner { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none; }
  .preloader { display: none; }
}
