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

:root {
  --sky-light:  #e8f4fd;
  --sky-mid:    #bde0f7;
  --sky-blue:   #5aabdc;
  --sky-deep:   #2b7ab5;
  --sky-navy:   #1a4f78;
  --cloud-white:#ffffff;
  --cloud-soft: #f0f8ff;
  --text-dark:  #1a2e3d;
  --text-mid:   #3a5a72;
  --text-light: #6a90aa;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--sky-light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,171,220,0.18);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--sky-navy);
  font-weight: 500;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}
.nav-link:hover  { background: var(--sky-light); color: var(--sky-deep); }
.nav-link.active { background: var(--sky-mid);   color: var(--sky-navy); font-weight: 500; }

.nav-cta {
  background: var(--sky-deep) !important;
  color: #fff !important;
  font-weight: 500;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--sky-navy) !important; color: #fff !important; }

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sky-navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
}

.sky-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #c9e8f8 0%, #e8f6fd 45%, #f5faff 100%);
  z-index: 0;
}

.cloud-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(90,171,220,0.3);
  color: var(--sky-deep);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--sky-navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--sky-deep); }

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--sky-deep);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.15s;
  box-shadow: 0 4px 16px rgba(43,122,181,0.25);
  text-decoration: none;
}
.btn-primary:hover { background: var(--sky-navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(43,122,181,0.3); }

.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.82);
  color: var(--sky-deep);
  border: 1px solid rgba(90,171,220,0.4);
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-secondary:hover { background: #fff; border-color: var(--sky-blue); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--sky-deep);
  border: none;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-white:hover { background: var(--sky-light); transform: translateY(-1px); }

/* ── BADGE STRIP ── */
.badge-strip {
  background: #fff;
  border-top: 1px solid rgba(90,171,220,0.15);
  border-bottom: 1px solid rgba(90,171,220,0.15);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-blue);
  flex-shrink: 0;
}

/* ── SECTION ── */
.section {
  padding: 4.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--sky-navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(90,171,220,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-deep));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover {
  border-color: var(--sky-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90,171,220,0.18);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky-light);
  border: 1px solid rgba(90,171,220,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--sky-navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}
.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--sky-deep);
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(180deg, #c9e8f8 0%, #e8f6fd 100%);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(90,171,220,0.2);
}
.page-header-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--sky-navy);
  margin-bottom: 0.5rem;
}
.page-header p { font-size: 15px; color: var(--text-mid); font-weight: 300; }

/* ── CONTENT WRAP ── */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ── REG CARD ── */
.reg-card {
  background: #fff;
  border: 1px solid rgba(90,171,220,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.reg-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky-deep);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(90,171,220,0.3);
  font-family: 'Outfit', monospace;
}
.reg-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sky-navy);
  margin-bottom: 1.25rem;
}
.reg-body {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.reg-body p { margin-bottom: 0.9rem; }
.reg-body ol { padding-left: 1.5rem; }
.reg-body li { margin-bottom: 0.6rem; }
.reg-body strong { color: var(--text-dark); font-weight: 500; }

/* ── PERSON CARD ── */
.person-card {
  background: #fff;
  border: 1px solid rgba(90,171,220,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.person-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--sky-navy);
}
.person-title {
  font-size: 13px;
  color: var(--sky-blue);
  font-weight: 500;
  margin: 5px 0 1.25rem;
}
.person-bio {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}
.person-bio p + p { margin-top: 0.8rem; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.25rem; }
.chip {
  background: var(--sky-light);
  color: var(--sky-deep);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(90,171,220,0.25);
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(90,171,220,0.2);
  border-radius: 16px;
  padding: 2rem;
}
.contact-card h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 1.25rem;
}
.contact-row { display: flex; gap: 12px; margin-bottom: 1rem; align-items: flex-start; }
.c-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-label { font-size: 11.5px; color: var(--text-light); }
.c-val { font-size: 15px; font-weight: 500; color: var(--text-dark); margin-top: 2px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-navy) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
}
.cta-content { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* inline cta (service pages) */
.cta-inline {
  border-radius: 16px;
  margin-top: 0;
  padding: 3.5rem 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--sky-navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 13px;
  font-weight: 300;
}
footer strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── CLOUD ANIMATIONS ── */
@keyframes floatCloud {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(18px); }
}
.cloud-float-1 { animation: floatCloud 12s ease-in-out infinite; }
.cloud-float-2 { animation: floatCloud 16s ease-in-out infinite reverse; }
.cloud-float-3 { animation: floatCloud 20s ease-in-out infinite; }
.cloud-delay-1 { animation-delay: 3s; }
.cloud-delay-2 { animation-delay: 6s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #navbar { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(90,171,220,0.2);
    flex-direction: column;
    padding: 1rem;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; }
  .nav-cta { margin-left: 0; margin-top: 4px; text-align: center; }

  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: 26px; }
  .page-header h1 { font-size: 26px; }
  .person-card { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .badge-strip { gap: 1rem; }
}
