/* ============================================================
   THANKFUL HEARTS COACHING — Light Glossy Design System
   Palette: Cream / Mint / Dusty Pink / Muted Teal
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Core palette */
  --bg:          #FFF8F5;
  --bg-2:        #FFF3EE;
  --bg-card:     rgba(255,255,255,0.65);
  --bg-glass:    rgba(255,255,255,0.5);
  --bg-warm:     #E8F3EC;
  --bg-mint:     rgba(232,243,236,0.55);

  /* Accents */
  --pink:        #F4A7A7;
  --pink-lt:     #F8C8C8;
  --pink-dk:     #D47E7E;
  --teal:        #6FB1A0;
  --teal-lt:     #8ECABF;
  --teal-dk:     #4E9080;
  --mint:        #E8F3EC;

  /* Text */
  --text:        #5A5A5A;
  --text-2:      #8A8A8A;
  --text-3:      #AAAAAA;
  --text-dark:   #3A3A3A;

  /* Borders */
  --border:      rgba(111,177,160,0.18);
  --border-h:    rgba(111,177,160,0.45);
  --border-pink: rgba(244,167,167,0.3);

  /* Shadows */
  --shadow:      0 24px 80px rgba(244,167,167,0.14);
  --shadow-sm:   0 8px 28px  rgba(111,177,160,0.14);
  --shadow-card: 0 4px 24px rgba(244,167,167,0.08), 0 1px 0 rgba(255,255,255,0.9) inset;

  /* Fonts */
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-accent:   'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', 'Inter', system-ui, sans-serif;

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:    0.22s;
  --dur-med:     0.45s;
  --dur-slow:    0.8s;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
  position: relative;
}

/* Ambient gradient blobs fixed in background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 5%  15%, rgba(244,167,167,.14) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 95% 85%, rgba(111,177,160,.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 55% 45%, rgba(232,243,236,.50) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; font: inherit; cursor: none; }

/* All content above blobs */
nav, section, footer, .page-overlay { position: relative; z-index: 1; }

/* ── Star Cursor ── */
.cursor-star,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor-star {
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}

.cursor-star svg {
  width: 44px;
  height: 44px;
  animation: starShimmer 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(244,167,167,.75));
}

@keyframes starShimmer {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(244,167,167,.7));
    transform: scale(1) rotate(0deg);
  }
  30% {
    filter: drop-shadow(0 0 10px rgba(244,167,167,1)) drop-shadow(0 0 22px rgba(111,177,160,.5));
    transform: scale(1.1) rotate(8deg);
  }
  60% {
    filter: drop-shadow(0 0 6px rgba(111,177,160,.8));
    transform: scale(.95) rotate(-4deg);
  }
}

.cursor-ring {
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(244,167,167,.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out),
              height .3s var(--ease-out),
              border-color .3s ease,
              background .3s ease;
  animation: ringPulse 2.4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { border-color: rgba(244,167,167,.4); }
  50%       { border-color: rgba(111,177,160,.5); }
}

.cursor-ring.is-hovered {
  width: 74px;
  height: 74px;
  border-color: var(--pink);
  background: rgba(244,167,167,.06);
  animation: none;
}

/* ── Typography ── */
.display-xl  { font-family: var(--ff-display); font-size: clamp(3rem,7vw,7.5rem);  font-weight: 500; line-height: 1.05; letter-spacing: -.02em; }
.display-lg  { font-family: var(--ff-display); font-size: clamp(2.4rem,5vw,5.5rem); font-weight: 500; line-height: 1.1;  letter-spacing: -.015em; }
.display-md  { font-family: var(--ff-display); font-size: clamp(1.8rem,3.5vw,3.6rem); font-weight: 500; line-height: 1.2; }
.heading-lg  { font-family: var(--ff-display); font-size: clamp(1.5rem,2.8vw,2.8rem); font-weight: 500; line-height: 1.25; }
.heading-md  { font-family: var(--ff-display); font-size: clamp(1.2rem,2vw,2rem);   font-weight: 500; line-height: 1.3; }
.label       { font-family: var(--ff-body);    font-size: .72rem;  font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); }
.accent-text { font-family: var(--ff-accent);  font-style: italic; }
.body-lg     { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.75; }
.body-sm     { font-size: .9rem; }

/* ── Layout ── */
.container    { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.container-sm { width: min(780px,  100% - 3rem); margin-inline: auto; }
.container-xs { width: min(580px,  100% - 3rem); margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }

.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }

.text-center  { text-align: center; }
.text-right   { text-align: right; }

/* ── Color Utils ── */
.text-pink   { color: var(--pink); }
.text-teal   { color: var(--teal); }
.text-dark   { color: var(--text-dark); }
.text-muted  { color: var(--text-2); }
.bg-glass    { background: var(--bg-card); }

/* ── Section Spacing ── */
.section    { padding-block: clamp(5rem,10vw,10rem); }
.section-sm { padding-block: clamp(3rem,6vw,6rem); }
.section-lg { padding-block: clamp(7rem,14vw,14rem); }

/* ── Divider ── */
.divider {
  display: block; width: 48px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  margin: 1.5rem auto;
}
.divider-left { margin-inline: 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 1.6rem 0;
  transition: background var(--dur-med) ease,
              padding   var(--dur-med) ease,
              box-shadow var(--dur-med) ease,
              border-color var(--dur-med) ease;
}

.nav.scrolled {
  background: rgba(255,248,245,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 4px 28px rgba(244,167,167,.1);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__logo img { height: 48px; width: auto; transition: opacity var(--dur-fast) ease; }
.nav__logo:hover img { opacity: .75; }

.nav__links { display: flex; align-items: center; gap: .2rem; }

.nav__link {
  padding: .55rem .9rem;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: 2px;
  position: relative;
  transition: color var(--dur-fast) ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: .3rem; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.8rem);
  height: 1.5px;
  background: var(--pink);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__link:hover       { color: var(--text-dark); }
.nav__link:hover::after{ transform: translateX(-50%) scaleX(1); }
.nav__link.active      { color: var(--teal); }

.nav__cta {
  padding: .65rem 1.4rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 3px 14px rgba(111,177,160,.28), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--teal-lt) 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111,177,160,.35), inset 0 1px 0 rgba(255,255,255,.5);
}

/* Hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 2px; }
.nav__toggle span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease; }

/* ── Mobile Drawer ── */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,248,245,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity var(--dur-med) ease;
}
.nav__drawer.open { opacity: 1; }
.nav__drawer .nav__link { font-size: 1.2rem; letter-spacing: .12em; color: var(--text); }
.nav__drawer .nav__link:hover { color: var(--teal); }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 10rem 6rem;
}

.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 35%, rgba(244,167,167,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text  { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 2rem;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--pink); }

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem,6.5vw,7rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}
.hero__title em { font-style: italic; color: var(--pink); }

.hero__sub {
  font-family: var(--ff-accent);
  font-size: clamp(1.2rem,2vw,1.7rem);
  font-style: italic;
  color: var(--teal);
  margin-bottom: 2rem;
  letter-spacing: .02em;
}

.hero__body {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image-wrap { position: relative; display: flex; justify-content: center; }
.hero__image {
  width: 100%; max-width: 500px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  filter: brightness(.96) contrast(1.02) saturate(.92);
  box-shadow: var(--shadow);
}
.hero__image-border {
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1.5px solid rgba(244,167,167,.35);
  border-radius: 12px;
  pointer-events: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) ease,
              box-shadow var(--dur-fast) ease,
              background var(--dur-fast) ease;
}

/* Gloss sheen */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 4px 4px 0 0;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 4px 18px rgba(111,177,160,.30), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-lt) 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(111,177,160,.38), inset 0 1px 0 rgba(255,255,255,.4);
}

.btn-outline {
  color: var(--teal-dk);
  border: 1.5px solid var(--teal);
  background: rgba(111,177,160,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111,177,160,.28);
}

.btn-pink {
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 4px 18px rgba(244,167,167,.28), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-pink:hover {
  background: linear-gradient(135deg, var(--pink-lt) 0%, var(--pink) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244,167,167,.38);
}

.btn-ghost {
  color: var(--text-2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--border-h);
  background: rgba(232,243,236,.5);
  transform: translateY(-2px);
}

/* ── Cards (Glass Morphism) ── */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) ease,
              transform    var(--dur-med) var(--ease-out),
              box-shadow   var(--dur-med) ease;
}
.card::before {
  content: '';
  position: absolute; inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,167,167,.6), transparent);
  opacity: 0;
  transition: opacity var(--dur-med) ease;
}
.card:hover {
  border-color: rgba(244,167,167,.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(244,167,167,.14), 0 1px 0 rgba(255,255,255,.95) inset;
}
.card:hover::before { opacity: 1; }

.card__num {
  font-family: var(--ff-accent);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--pink-lt);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .75;
}

/* ── Section Labels ── */
.section-label { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; }
.section-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--pink); flex-shrink: 0; }

/* ── HR Gold → Pink ── */
.hr-gold {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,167,167,.45), transparent);
  margin-block: 1.5rem;
}

/* ── Stripe Section ── */
.stripe {
  background: rgba(232,243,236,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-block: 1px solid rgba(255,255,255,.7);
}

/* ── Testimonials ── */
.testimonial {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) ease, transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) ease;
}
.testimonial::before {
  content: '';
  position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,167,167,.6), transparent);
  opacity: 0;
  transition: opacity var(--dur-med) ease;
}
.testimonial:hover { border-color: rgba(244,167,167,.5); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(244,167,167,.12), 0 1px 0 rgba(255,255,255,.95) inset; }
.testimonial:hover::before { opacity: 1; }

.testimonial__quote { font-family: var(--ff-accent); font-size: 4rem; font-style: italic; color: var(--pink); line-height: .5; margin-bottom: 1.5rem; opacity: .45; }
.testimonial__body  { font-family: var(--ff-accent); font-size: 1.05rem; font-style: italic; color: var(--text-2); line-height: 1.75; margin-bottom: 1.8rem; }
.testimonial__name  { font-family: var(--ff-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.testimonial__loc   { font-size: .78rem; color: var(--text-3); margin-top: .2rem; }

/* ── Stat Block ── */
.stat-block { text-align: center; padding: 2rem 1rem; }
.stat-block__num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-block__label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-2); }

/* ── Quote Block ── */
.quote-block { text-align: center; padding: clamp(4rem,8vw,8rem) 0; position: relative; }
.quote-block__mark {
  font-family: var(--ff-accent);
  font-size: 8rem; font-style: italic;
  color: var(--pink); line-height: 0;
  display: block; margin-bottom: 2rem; opacity: .2;
}
.quote-block__text {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem,3vw,2.6rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 800px;
  margin-inline: auto;
  color: var(--text-dark);
  letter-spacing: -.01em;
}
.quote-block__author { margin-top: 2rem; font-family: var(--ff-accent); font-style: italic; font-size: 1rem; color: var(--teal); letter-spacing: .06em; }

/* ── About Split ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split__image { position: relative; }
.about-split__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  filter: brightness(.95) contrast(1.02) saturate(.88);
  box-shadow: var(--shadow);
}
.about-split__frame {
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1.5px solid rgba(244,167,167,.3);
  border-radius: 12px;
  pointer-events: none;
}

/* ── Contact Form ── */
.form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 6px;
  padding: .9rem 1.2rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  box-shadow: 0 2px 8px rgba(244,167,167,.06);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  -webkit-appearance: none;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(111,177,160,.5);
  box-shadow: 0 0 0 3px rgba(111,177,160,.12);
}
.field textarea { min-height: 160px; }

/* ── Ocean Section ── */
.ocean-section {
  width: 100%;
  height: clamp(380px, 55vh, 600px);
  position: relative;
  overflow: hidden;
}
.ocean-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.ocean-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,248,245,.15) 0%,
    rgba(244,167,167,.08) 50%,
    rgba(255,248,245,.55) 100%
  );
  display: grid;
  place-items: center;
}
.ocean-section__glass {
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 12px;
  padding: 2.2rem 3.2rem;
  max-width: 580px;
  margin: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(244,167,167,.12);
}
.ocean-section__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: #fff;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
  margin-bottom: .8rem;
}
.ocean-section__attr {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

/* ── Footer ── */
.footer {
  background: rgba(232,243,236,.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.75);
  padding-block: 5rem 2.5rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer__brand-name { font-family: var(--ff-display); font-size: 1.5rem; color: var(--text-dark); margin-bottom: .8rem; }
.footer__tagline { font-size: .9rem; color: var(--text-2); line-height: 1.65; max-width: 260px; }

.footer__social { display: flex; gap: .8rem; margin-top: 1.6rem; }
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(111,177,160,.25);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.footer__social-link:hover {
  border-color: var(--teal);
  background: rgba(111,177,160,.12);
  transform: translateY(-2px);
}
.footer__social-link img { width: 16px; height: 16px; object-fit: contain; }

.footer__col-title { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.4rem; }
.footer__links { display: flex; flex-direction: column; gap: .75rem; }
.footer__link { font-size: .9rem; color: var(--text-2); transition: color var(--dur-fast) ease; }
.footer__link:hover { color: var(--teal); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(111,177,160,.18);
}
.footer__copy { font-size: .8rem; color: var(--text-3); }
.footer__loc  { font-size: .8rem; color: var(--text-3); font-style: italic; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, rgba(244,167,167,.08) 0%, rgba(111,177,160,.06) 100%);
  border-block: 1px solid rgba(255,255,255,.7);
}

/* ── Page Hero ── */
.page-hero {
  padding-block: 11rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(244,167,167,.07), transparent 70%);
  pointer-events: none;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  font-size: .78rem; color: var(--text-3); margin-bottom: 1.5rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--text-3); }

/* ── Service Cards ── */
.service-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) ease, box-shadow var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
}
.service-card:hover { border-color: rgba(244,167,167,.45); box-shadow: 0 16px 60px rgba(244,167,167,.12); transform: translateY(-4px); }
.service-card:nth-child(even) { direction: rtl; }
.service-card:nth-child(even) > * { direction: ltr; }

.service-card__img {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-card__body {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
}
.service-card__price { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 500; color: var(--teal); line-height: 1; }
.service-card__meta  { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }

.tag {
  display: inline-block;
  padding: .3rem .9rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(111,177,160,.3);
  border-radius: 20px;
  color: var(--teal);
  background: rgba(111,177,160,.07);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.tag:hover { border-color: var(--teal); background: rgba(111,177,160,.15); }

/* ── Free Resources ── */
.resource-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.resource-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
}
.resource-item:hover { border-color: rgba(244,167,167,.45); transform: translateY(-5px); }

/* ── Stars ── */
.stars { color: var(--pink); font-size: 1rem; letter-spacing: .1rem; margin-bottom: 1rem; }

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  opacity: .45;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-indicator span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); }
.scroll-indicator svg  { color: var(--teal); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Signature ── */
.signature { height: 56px; width: auto; margin-top: .5rem; opacity: .65; }

/* ── Blog Cards ── */
.blog-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) ease, transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) ease;
}
.blog-card:hover { border-color: rgba(244,167,167,.45); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(244,167,167,.12); }
.blog-card__img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center; display: block; filter: brightness(.9) saturate(.85); }
.blog-card__body  { padding: 1.8rem; }
.blog-card__date  { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: .8rem; }
.blog-card__title { font-family: var(--ff-display); font-size: 1.2rem; color: var(--text-dark); line-height: 1.3; margin-bottom: .8rem; }
.blog-card__excerpt { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* ── Page Overlay ── */
.page-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .6s var(--ease-in-out);
  pointer-events: none;
}

/* ── Parallax ── */
.parallax-layer { transition: transform .1s linear; will-change: transform; }

/* ── Reveal Animations ── */
.reveal         { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-left    { opacity: 0; transform: translateX(-32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-right   { opacity: 0; transform: translateX(32px);  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero__content    { grid-template-columns: 1fr; gap: 3rem; }
  .hero__image-wrap { display: none; }
  .hero__text       { max-width: 100%; }
  .about-split      { grid-template-columns: 1fr; gap: 3rem; }
  .about-split__image { display: none; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .service-card { grid-template-columns: 1fr; }
  .service-card:nth-child(even) { direction: ltr; }
  .service-card__img { min-height: 260px; }
  .resource-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta-wrap { display: none; }
  .nav__toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ocean-section__glass { padding: 1.6rem 1.8rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .cursor-star, .cursor-ring { display: none; }
  body { cursor: auto; }
}
