
/* ============================================================
   RESET & VARIABLES
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --aqua:       #7a9fa8;
  --aqua-deep:  #5c7a8a;
  --aqua-light: #a8bfc4;
  --aqua-pale:  #eaf0f2;
  --cream:      #FAFAF7;
  --sand:       #f2f4f2;
  --warm-white: #FDFCFA;
  --stone:      #e4e8e6;
  --taupe:      #9aa5a3;
  --brown:      #5c6b80;
  --deep:       #3a3f4a;
  --sage:       #8ca087;
  --warm:       #6b7280;
  --text:       #3a3f4a;
  --text-light: #6b7280;
  --text-muted: #9aa0a8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,168,152,0.15);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  padding: 10px 56px;
  box-shadow: 0 2px 24px rgba(58,46,36,0.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 90px;
  width: auto;
  transition: height 0.4s ease, opacity 0.2s;
}
nav.scrolled .nav-logo img { height: 68px; }
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--aqua); }
.nav-cta {
  background: var(--aqua) !important;
  color: white !important;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--aqua-deep) !important; }
.nav-assessment { color: var(--sage) !important; }
.nav-assessment:hover { color: var(--deep) !important; }
.nav-active { color: var(--aqua) !important; }

/* ============================================================
   HAMBURGER BUTTON
============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 72px 100px 80px;
  position: relative;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(91,173,168,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-heading em { font-style: normal; color: var(--aqua); }
.hero-body {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.btn-primary {
  background: var(--aqua);
  color: white;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--aqua-deep); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--aqua); border-color: var(--aqua-light); }

.hero-right {
  position: relative;
  background: var(--aqua-pale);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--aqua-pale) 0%, #D4EAE7 40%, #C8E4E0 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,250,247,0.4) 0%, rgba(91,173,168,0.1) 60%, transparent 100%);
  pointer-events: none;
}
.hero-quote {
  position: absolute;
  bottom: 80px;
  left: 56px;
  right: 56px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 23px;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--taupe));
  animation: scrollDrop 2s ease-in-out 2s infinite;
}
.scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  writing-mode: vertical-rl;
}

/* ============================================================
   INTRO STRIP
============================================================ */
.intro-strip {
  background: linear-gradient(to right, #8ca087, #7a9fa8, #5c7a8a);
  padding: 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.strip-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.strip-text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--warm-white);
}
.about-image-area { position: relative; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--aqua-pale) 0%, var(--stone) 100%);
  border-radius: 120px 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}
.about-deco-box {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 1.5px solid var(--aqua-light);
  border-radius: 120px 120px 80px 80px;
  z-index: -1;
  opacity: 0.5;
}
.about-years {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--aqua);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(91,173,168,0.3);
}
.about-years strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.about-years span {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.section-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 20px;
  display: block;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 54px;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 24px;
}
.section-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}
.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--stone);
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua-light);
  margin-top: 8px;
  flex-shrink: 0;
}
.cred-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--sand);
  padding: 120px 80px;
}
.services-header { text-align: center; margin-bottom: 72px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--warm-white);
  padding: 0 0 36px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(58,46,36,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  margin-bottom: 28px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-card-body { padding: 0 32px; }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 10px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 27px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  text-decoration: none;
  transition: gap 0.25s;
}
.service-link:hover { gap: 12px; }

/* ============================================================
   FEES & FORMAT
============================================================ */
.fees {
  background: var(--aqua-pale);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.fee-card {
  background: white;
  border-radius: 3px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(91,173,168,0.1);
}
.fee-card.featured {
  background: var(--aqua);
  transform: translateY(-12px);
  box-shadow: 0 8px 40px rgba(91,173,168,0.25);
}
.fee-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.fee-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 25px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.fee-card.featured .fee-title { color: white; }
.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 8px;
}
.fee-card.featured .fee-amount { color: white; }
.fee-per {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.fee-card.featured .fee-per { color: rgba(255,255,255,0.7); }
.fee-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}
.fee-card.featured .fee-desc { color: rgba(255,255,255,0.85); }
.fee-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}
.fee-cta-outline {
  border: 1px solid var(--aqua-light);
  color: var(--aqua);
}
.fee-cta-outline:hover { background: var(--aqua); color: white; border-color: var(--aqua); }
.fee-cta-solid {
  background: white;
  color: var(--aqua-deep);
}
.fee-cta-solid:hover { background: var(--aqua-pale); }
.fees-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.approach {
  padding: 120px 80px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.approach-sticky { position: sticky; top: 120px; }
.approach-photo {
  width: 100%;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--stone);
  align-items: start;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--aqua-light);
  line-height: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 27px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
}

/* ============================================================
   LOCATION
============================================================ */
.location {
  background: var(--sand);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-details { display: flex; flex-direction: column; gap: 32px; }
.location-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.location-icon {
  width: 48px;
  height: 48px;
  background: var(--aqua-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--aqua);
}
.location-item-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 23px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 8px;
}
.location-item-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--deep);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,173,168,0.12) 0%, transparent 70%);
}
.testimonials-header { margin-bottom: 64px; }
.testimonials-header .section-label { color: var(--aqua-light); }
.testimonials-header .section-heading { color: var(--warm-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  border-radius: 3px;
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(91,173,168,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168,212,208,0.25);
}
.t-avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--aqua-light);
  line-height: 1;
}
.t-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--aqua);
  opacity: 0.4;
  margin-bottom: 16px;
}
.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250,250,247,0.82);
  margin-bottom: 24px;
}
.t-stars {
  color: var(--aqua-light);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.t-name {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 120px 80px;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-sticky { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stone); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 23px;
  font-weight: 400;
  color: var(--deep);
}
.faq-chevron {
  width: 26px;
  height: 26px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--aqua);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--aqua);
  color: white;
  border-color: var(--aqua);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-answer p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  padding-bottom: 26px;
}

/* ============================================================
   CTA
============================================================ */
.cta-section {
  padding: 140px 80px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-photo { position: absolute; inset: 0; z-index: 0; }
.cta-bg-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.07; }
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--aqua-pale) 0%, transparent 70%);
  z-index: 1;
}
.cta-section > *:not(.cta-bg-photo) { position: relative; z-index: 2; }
.cta-logo {
  height: 160px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 58px;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 22px;
}
.cta-body {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 44px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--deep);
  padding: 64px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .fl-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: var(--aqua-light);
  line-height: 0.95;
  display: block;
}
.footer-brand .fl-sub {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.35em;
  color: var(--taupe);
  text-transform: lowercase;
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--aqua-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about, .approach, .faq, .location { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .fees { grid-template-columns: 1fr; }
  .fee-card.featured { transform: none; }
  nav { padding: 12px 24px; }
  .nav-logo img { height: 68px; }
  nav.scrolled .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-left { padding: 140px 32px 80px; }
  .hero-heading { font-size: 52px; }
  .about, .services, .approach, .testimonials, .faq, .cta-section, .fees, .location { padding-left: 32px; padding-right: 32px; }
  footer { padding: 48px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-strip { padding: 24px 32px; gap: 20px; }

  /* Mobile nav open state */
  nav.nav-open { flex-wrap: wrap; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 4px 0 20px;
    border-top: 1px solid var(--stone);
  }
  nav.nav-open .nav-links li { border-bottom: 1px solid rgba(228,232,230,0.7); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.14em;
  }
  nav.nav-open .nav-links .nav-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 2px;
  }
}
