/* ──────────────────────────────────────────
   VARIABLES
────────────────────────────────────────── */
:root {
  --teal-deep:    #0a3d5c;
  --teal-primary: #1b6ba8;
  --teal-medium:  #2b9ec7;
  --teal-light:   #48bcc5;
  --teal-pale:    #e4f4f8;
  --coral:        #e07050;
  --coral-light:  #e8906a;
  --coral-pale:   #fdf0eb;
  --cream:        #fef9f4;
  --white:        #ffffff;
  --text-dark:    #2d3748;
  --text-mid:     #4a5568;
  --text-light:   #718096;
  --border:       rgba(27,107,168,0.15);
  --shadow:       0 4px 24px rgba(10,61,92,0.10);
  --shadow-lg:    0 10px 48px rgba(10,61,92,0.16);
  --radius:       18px;
  --radius-sm:    10px;
}

/* ──────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ──────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--teal-primary);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 3rem;
}
.title-bar {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal-light));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ──────────────────────────────────────────
   LAYOUT
────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }
.text-center { text-align: center; }

/* ──────────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.32s; }

/* ──────────────────────────────────────────
   NAV
────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(254,249,244,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(10,61,92,0.10);
  padding: 0.55rem 1.5rem;
}
.nav-logo img {
  height: 42px; object-fit: contain;
  transition: height 0.3s;
}
.nav.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex; list-style: none;
  gap: 0.2rem; align-items: center;
}
.nav-links button {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.nav.scrolled .nav-links button { color: var(--text-dark); }
.nav-links button:hover { background: rgba(27,107,168,0.12); color: var(--teal-primary); }
.nav-links .nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 24px !important;
  padding: 0.4rem 1.1rem !important;
}
.nav-links .nav-cta:hover { background: var(--coral-light) !important; }

@media (max-width: 600px) {
  .nav-links { gap: 0.05rem; }
  .nav-links button { font-size: 0.75rem; padding: 0.3rem 0.45rem; }
  .nav-logo img { height: 32px; }
}
@media (max-width: 420px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* ──────────────────────────────────────────
   HERO  (animated ocean gradient + waves)
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(-45deg,
    #0a3d5c, #1b6ba8, #2b9ec7,
    #0f5a8a, #1d8aad, #48bcc5,
    #1b6ba8, #0a3d5c);
  background-size: 500% 500%;
  animation: gradientFlow 20s ease infinite;
}
@keyframes gradientFlow {
  0%   { background-position: 0%   50%; }
  25%  { background-position: 50%  0%;  }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50%  100%;}
  100% { background-position: 0%   50%; }
}

/* Radial glows on hero */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 85%, rgba(224,112,80,0.14) 0%, transparent 55%);
  pointer-events: none;
}

/* Floating leaf particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  bottom: -20px;
  left: var(--x, 50%);
  width:  var(--s, 8px);
  height: calc(var(--s, 8px) * 1.6);
  border-radius: 50% 8% 50% 8%;
  background: var(--c, rgba(255,255,255,0.5));
  opacity: 0;
  animation: floatUp var(--dur, 12s) var(--del, 0s) ease-in-out infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0)      translateX(0)              rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.65; }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-105vh) translateX(var(--dx, 40px)) rotate(560deg); opacity: 0; }
}

/* Hero content */
.hero-h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: rgba(255,255,255,0.97);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  max-width: 820px;
}
.hero-logo-card {
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  padding: 1.5rem 2.8rem;
  margin: 0 auto 2.5rem;
  display: inline-block;
  box-shadow: 0 12px 48px rgba(10,61,92,0.22), 0 2px 8px rgba(255,255,255,0.5);
}
.hero-logo-card img { height: 64px; width: auto; }
.hero-tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  color: rgba(255,255,255,0.93);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.hero-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll mouse */
.scroll-mouse {
  position: absolute; bottom: 130px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: mouseBounce 2.2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-mouse span {
  display: block; width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 13px; position: relative;
}
.scroll-mouse span::after {
  content: '';
  position: absolute; left: 50%; top: 7px;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.9); border-radius: 50%;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes mouseBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
@keyframes scrollDot {
  0%, 100% { top: 7px; opacity: 1; }
  75%       { top: 26px; opacity: 0; }
}

/* Animated waves at bottom of hero */
.hero-waves {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0;
}
.hero-waves svg { display: block; width: 100%; }
.parallax-waves > use {
  animation: moveWaves 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration:  7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 14s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 21s; }
@keyframes moveWaves {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px,  0, 0); }
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em;
  font-family: inherit;
  cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(224,112,80,0.40);
}
.btn-primary:hover { background: var(--coral-light); box-shadow: 0 6px 24px rgba(224,112,80,0.50); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-teal {
  background: var(--teal-primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(27,107,168,0.30);
}
.btn-teal:hover { background: var(--teal-medium); }

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-col { order: -1; }
}
.about-text p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1.15rem;
}

/* Photo */
.about-photo-col { display: flex; justify-content: center; }
.photo-wrap {
  position: relative;
  width: 310px; max-width: 100%;
}
.photo-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 3px solid var(--teal-light);
  opacity: 0.5;
}
.photo-ring-2 {
  position: absolute; inset: -24px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0.22;
}
.photo-blob {
  position: absolute;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--coral-pale), var(--teal-pale));
  border-radius: 50%;
  bottom: -15px; right: -18px;
  z-index: 0; opacity: 0.65;
}
.profile-img {
  width: 100%; border-radius: 50%;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}

/* Quotes */
.quotes { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.quote-card {
  background: linear-gradient(135deg, var(--teal-pale), rgba(232,244,248,0.45));
  border-left: 4px solid var(--teal-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.15rem 1.4rem;
}
.quote-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem;
  color: var(--text-mid); line-height: 1.65;
  margin-bottom: 0.4rem;
}
.quote-card cite {
  font-size: 0.84rem; font-weight: 700;
  color: var(--teal-primary); font-style: normal;
}

/* ──────────────────────────────────────────
   SPECIALTIES
────────────────────────────────────────── */
.specialties {
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%);
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-col h3 {
  font-size: 1.15rem; color: var(--teal-primary);
  margin-bottom: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.badges { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.badge {
  display: inline-block;
  padding: 0.42rem 1rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.badge-teal {
  background: rgba(27,107,168,0.09);
  color: var(--teal-primary);
  border: 1px solid rgba(27,107,168,0.18);
}
.badge-coral {
  background: rgba(224,112,80,0.09);
  color: #b85430;
  border: 1px solid rgba(224,112,80,0.20);
}
.badge-green {
  background: rgba(72,188,197,0.11);
  color: #1a8894;
  border: 1px solid rgba(72,188,197,0.22);
}
.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.who-card h3 {
  font-size: 1.1rem; color: var(--teal-primary);
  margin-bottom: 0.9rem;
  font-family: 'Playfair Display', serif;
}
.who-card p {
  margin-top: 1rem; font-size: 0.95rem;
  color: var(--text-mid); line-height: 1.72;
}

/* ──────────────────────────────────────────
   APPROACH
────────────────────────────────────────── */
.approach { background: var(--white); }
.approach-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.2rem;
}
.approach-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.approach-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.approach-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.approach-card h4 {
  font-size: 0.93rem; color: var(--teal-primary);
  font-family: 'Nunito', sans-serif; font-weight: 700;
  line-height: 1.35;
}

/* ──────────────────────────────────────────
   FEES
────────────────────────────────────────── */
.fees { background: var(--coral-pale); }
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem; align-items: start;
}
@media (max-width: 768px) { .fees-grid { grid-template-columns: 1fr; } }

.fee-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 5px solid var(--teal-primary);
}
.fee-card.highlight { border-top-color: var(--coral); }
@media (min-width: 769px) { .fee-card.highlight { transform: scale(1.04); } }

.fee-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.fee-price {
  font-size: 2.7rem; font-weight: 700;
  color: var(--teal-primary);
  font-family: 'Playfair Display', serif;
  line-height: 1; margin-bottom: 0.2rem;
}
.fee-period { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1.2rem; }

.info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-size: 1.05rem; color: var(--teal-primary);
  margin-bottom: 0.9rem;
  font-family: 'Playfair Display', serif;
}
.info-card ul { list-style: none; }
.info-card ul li {
  font-size: 0.94rem; color: var(--text-mid);
  padding: 0.28rem 0;
  display: flex; align-items: center; gap: 0.55rem;
}
.info-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal-light);
  flex-shrink: 0;
}
.pay-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
.pay-badge {
  background: var(--teal-pale); color: var(--teal-primary);
  padding: 0.28rem 0.7rem; border-radius: 5px;
  font-size: 0.79rem; font-weight: 700; letter-spacing: 0.03em;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact {
  background: linear-gradient(-45deg, var(--teal-deep), var(--teal-primary), #1a7ab5, var(--teal-deep));
  background-size: 400% 400%;
  animation: gradientFlow 22s ease infinite;
}
.contact .section-title { color: var(--white); }
.contact .section-sub   { color: rgba(255,255,255,0.65); }
.contact .title-bar     { margin: 0 auto 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.contact-card {
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex; align-items: center; gap: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.18rem;
}
.contact-value {
  font-size: 0.97rem; color: var(--white); font-weight: 600;
}
.contact-value a { color: inherit; }
.contact-value a:hover { text-decoration: underline; }

.contact-cta { text-align: center; margin-top: 3.5rem; }
.contact-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem; margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--teal-deep);
  padding: 2.8rem 0;
  text-align: center;
}
.footer-logo {
  height: 48px; margin: 0 auto 1rem;
  filter: drop-shadow(0 1px 4px rgba(255,255,255,0.5)) brightness(1.15);
}
.footer-tag  { font-size: 0.88rem; color: rgba(255,255,255,0.48); margin-bottom: 0.4rem; }
.footer-copy { font-size: 0.80rem; color: rgba(255,255,255,0.30); }
.footer-divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 1.4rem auto;
  max-width: 480px;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
