/* ============================================================
   LAKESIDE WELLNESS THERAPY AFFILIATES
   Refined · Discreet · Premium
   ============================================================ */

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

/* === VARIABLES === */
:root {
  --navy:       #1B2A4A;
  --gold:       #C9A84C;
  --cream:      #FAF8F3;
  --charcoal:   #2C2C2C;
  --white:      #FFFFFF;
  --gold-dim:   rgba(201, 168, 76, 0.18);
  --cream-60:   rgba(250, 248, 243, 0.6);
  --navy-95:    rgba(27, 42, 74, 0.97);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.625rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease;
}

.nav.scrolled {
  background: var(--navy-95);
  padding: 1rem 4rem;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.nav-logo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-links a {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.55s ease;
}

.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { background: #b5923e !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.35s var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.nav-mobile-overlay a {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-mobile-overlay a:hover { color: var(--gold); }

.nav-mobile-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.875rem 2.25rem;
  border-radius: 2px;
}

/* ============================================================
   HERO – HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Right-side tonal block */
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(27, 42, 74, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 4rem 6rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.875rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.875rem, 6.5vw, 5.75rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.06;
  margin-bottom: 2.25rem;
  letter-spacing: -0.015em;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordFadeUp 0.7s var(--transition) forwards;
}

.hero-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: rgba(250, 248, 243, 0.62);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.3s forwards;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.6s forwards;
}

/* Shimmer CTA */
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.0625rem 2.625rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover::before { left: 100%; }
.btn-cta:hover {
  background: #b5923e;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

.hero-alt-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(250, 248, 243, 0.5);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(250, 248, 243, 0.2);
  padding-bottom: 2px;
}

.hero-alt-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Gold rule at hero bottom */
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 168, 76, 0.4) 50%, transparent 100%);
  z-index: 2;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 10rem 4rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.375rem;
}

.page-hero p {
  font-size: 1.0625rem;
  color: rgba(250, 248, 243, 0.62);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.page-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 168, 76, 0.3) 60%, transparent 100%);
}

/* ============================================================
   SECTIONS – SHARED
   ============================================================ */
.section {
  padding: 6.5rem 4rem;
}

.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy); }
.section--gold   { background: var(--gold); }
.section--white  { background: var(--white); }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section--navy .section-eyebrow { color: var(--gold); }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.375rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3.5rem;
  max-width: 680px;
  line-height: 1.14;
}

.section--navy   .section-heading { color: var(--cream); }
.section--gold   .section-heading { color: var(--navy); }

/* ============================================================
   WHO I HELP – 3-COLUMN CARDS (Home)
   ============================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: var(--white);
  border-top: 4px solid var(--navy);
  padding: 2.75rem 2.25rem;
  transition: box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.help-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.45s var(--transition);
  z-index: 0;
}

.help-card:hover .help-card-overlay { transform: translateY(0); }
.help-card > * { position: relative; z-index: 1; }

.help-card:hover { box-shadow: 0 20px 60px rgba(27, 42, 74, 0.2); }

.help-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.75rem;
  color: var(--gold);
  transition: color 0.4s ease;
}

.help-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.help-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #5a5a5a;
  transition: color 0.4s ease;
}

.help-card:hover h3 { color: var(--cream); }
.help-card:hover p  { color: rgba(250, 248, 243, 0.75); }

/* ============================================================
   WHAT I ADDRESS – 6 ITEMS, 2-COL (Home)
   ============================================================ */
.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 5rem;
  margin-top: 1rem;
}

.address-item {
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.3s ease;
}

.address-item:hover { border-left-color: rgba(201, 168, 76, 0.6); }

.address-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5625rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.address-item p {
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.55);
  line-height: 1.65;
}

/* ============================================================
   ABOUT SNIPPET (Home)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-photo-frame {
  position: relative;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50% 50% 50% 50% / 32% 32% 68% 68%;
  pointer-events: none;
  z-index: 0;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 50% 50% / 32% 32% 68% 68%;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
}

.cred-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  padding: 0.375rem 0.875rem;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cred-badge:hover {
  background: var(--navy);
  color: var(--cream);
}

.about-text h2 {
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.gold-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.gold-link:hover { color: var(--gold); gap: 0.875rem; }

/* ============================================================
   TESTIMONIAL (Home)
   ============================================================ */
.testimonial-wrap {
  max-width: 820px;
}

.testimonial-mark {
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 2.5rem;
}

.testimonial-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-attribution::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   CTA SECTION (Home)
   ============================================================ */
.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy);
  line-height: 1.15;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.125rem 2.5rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-navy:hover {
  background: #0f1e35;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.25);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.125rem 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.55s ease;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  background: #b5923e;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

/* ============================================================
   ABOUT PAGE – FULL BIO
   ============================================================ */
.about-full {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 7rem;
  align-items: start;
}

.about-sticky-photo {
  position: sticky;
  top: 8rem;
}

.about-sticky-photo img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  filter: grayscale(8%);
}

.about-sticky-photo .name-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 42, 74, 0.15);
}

.about-sticky-photo .name-block h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.about-sticky-photo .name-block span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-body h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-body p {
  font-size: 1.0625rem;
  line-height: 1.875;
  color: var(--charcoal);
  margin-bottom: 1.625rem;
}

.about-body p:last-of-type { margin-bottom: 0; }

/* Credentials grid */
.credentials-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-bottom: 3px solid var(--gold);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: transform 0.35s var(--transition), box-shadow 0.35s ease;
}

.cred-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(27, 42, 74, 0.1);
}

.cred-abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.cred-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.65;
  line-height: 1.45;
}

/* Approach methodology */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.35s ease;
}

.approach-card:hover { box-shadow: 0 12px 40px rgba(27, 42, 74, 0.08); }

.approach-card .approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(27, 42, 74, 0.07);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-card h3 {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.approach-card p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--charcoal);
}

/* Focus areas list */
.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0.5rem;
}

.focus-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--cream);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.focus-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
  max-width: 680px;
  margin-bottom: 5rem;
}

.services-intro p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 2px solid rgba(27, 42, 74, 0.06);
}

.service-block.reversed { }

.service-visual {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.service-visual-cream {
  background: var(--cream);
}

.service-num-bg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.07);
  position: absolute;
  bottom: -2.5rem;
  right: -1.5rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-visual-cream .service-num-bg {
  color: rgba(27, 42, 74, 0.055);
}

.service-visual-icon {
  position: relative;
  z-index: 1;
  color: var(--gold);
}

.service-visual-cream .service-visual-icon {
  color: var(--navy);
}

.service-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-content--cream {
  background: var(--cream);
}

.service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.service-content p {
  font-size: 0.9375rem;
  line-height: 1.82;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.service-features li::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Pricing / info bar */
.info-bar {
  background: var(--navy);
  padding: 3.5rem 4rem;
}

.info-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.info-bar-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 3rem 0 0;
  border-right: 1px solid rgba(201, 168, 76, 0.18);
}

.info-bar-item:first-child { padding-left: 0; }
.info-bar-item:last-child { padding-right: 0; border-right: none; padding-left: 3rem; }

.info-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.info-bar-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  color: var(--cream);
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.info-bar-item p {
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.58);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid rgba(27, 42, 74, 0.09);
  border-top: 4px solid var(--gold);
}

.contact-form-wrap h2 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 2.25rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.9375rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid rgba(27, 42, 74, 0.13);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

textarea { height: 140px; resize: vertical; line-height: 1.65; }

.form-submit {
  width: 100%;
  padding: 1.0625rem;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
  margin-top: 0.75rem;
}

.form-submit:hover { background: #0f1e35; transform: translateY(-1px); }

.form-note {
  font-size: 0.8125rem;
  color: rgba(44, 44, 44, 0.5);
  margin-top: 0.875rem;
  line-height: 1.6;
  font-style: italic;
}

/* Contact details sidebar */
.contact-sidebar h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.contact-lead {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  opacity: 0.72;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.625rem;
  margin-bottom: 1.625rem;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.contact-item:last-of-type { border-bottom: none; }

.c-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-item a { color: var(--gold); font-weight: 500; transition: opacity 0.3s ease; }
.contact-item a:hover { opacity: 0.7; }

.book-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.0625rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.25s ease;
}

.book-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.55s ease;
}

.book-cta:hover::before { left: 100%; }
.book-cta:hover { background: #b5923e; transform: translateY(-2px); }

.discretion-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
}

.discretion-note p {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--charcoal);
  font-style: italic;
  opacity: 0.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 5.5rem 4rem 2.5rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 2.25rem;
}

.footer-brand-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  margin-bottom: 1.25rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.footer-brand-name span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 0.3rem;
}

.footer-brand .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(250, 248, 243, 0.55);
  line-height: 1.6;
  max-width: 240px;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand .byline {
  font-size: 0.8rem;
  color: rgba(250, 248, 243, 0.35);
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.55);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-text {
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.55);
  line-height: 1.75;
}

.footer-contact-text a { color: rgba(250, 248, 243, 0.55); transition: color 0.3s ease; }
.footer-contact-text a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 248, 243, 0.3);
}

.footer-bottom a { color: rgba(250, 248, 243, 0.4); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes wordFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up[data-delay="1"] { transition-delay: 0.12s; }
.fade-up[data-delay="2"] { transition-delay: 0.24s; }
.fade-up[data-delay="3"] { transition-delay: 0.36s; }
.fade-up[data-delay="4"] { transition-delay: 0.48s; }
.fade-up[data-delay="5"] { transition-delay: 0.60s; }
.fade-up[data-delay="6"] { transition-delay: 0.72s; }

/* ============================================================
   RESPONSIVE – 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.875rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 7.5rem 1.5rem 4rem; }
  .hero-headline { font-size: clamp(2.25rem, 9vw, 3.25rem); }

  /* Page hero */
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Sections */
  .section { padding: 4rem 1.5rem; }

  /* Help grid */
  .help-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Address grid */
  .address-grid { grid-template-columns: 1fr; gap: 0; }

  /* About snippet */
  .about-snippet { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 260px; display: block; margin: 0 auto; }

  /* CTA */
  .cta-content { grid-template-columns: 1fr; gap: 2rem; }

  /* About full */
  .about-full { grid-template-columns: 1fr; gap: 3rem; }
  .about-sticky-photo { position: static; }

  /* Credentials */
  .credentials-display { grid-template-columns: repeat(2, 1fr); }

  /* Approach */
  .approach-grid { grid-template-columns: 1fr; }

  /* Focus list */
  .focus-list { grid-template-columns: 1fr; }

  /* Services */
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-visual { min-height: 220px; padding: 3rem; }
  .service-content { padding: 2.5rem 1.5rem; }
  .service-num-bg { font-size: 8rem; }

  /* Info bar */
  .info-bar { padding: 3rem 1.5rem; }
  .info-bar-inner { flex-direction: column; gap: 2rem; }
  .info-bar-item { padding: 0 0 2rem 0 !important; border-right: none; border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
  .info-bar-item:last-child { border-bottom: none; padding-bottom: 0 !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.375rem; }
}

@media (max-width: 480px) {
  .credentials-display { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
