:root {
  --navy: #073b67;
  --navy-deep: #042d54;
  --blue: #0d5f95;
  --sky: #d8f1fb;
  --sky-soft: #eef9fc;
  --cream: #fffaf3;
  --cream-strong: #fff4ea;
  --peach: #f7d5cf;
  --peach-soft: #fff1ec;
  --coral: #d98680;
  --gold: #d8a446;
  --lavender: #ecebff;
  --ink: #17334f;
  --muted: #697587;
  --line: rgba(7, 58, 104, 0.14);
  --shadow: 0 18px 45px rgba(23, 51, 79, 0.12);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.96) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(239, 249, 252, 0.55) 100%),
    linear-gradient(135deg, rgba(217, 240, 251, 0.5) 0%, rgba(255, 248, 241, 0) 28%, rgba(246, 216, 207, 0.45) 100%);
  font-size: 16px;
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 64px;
  padding: 7px clamp(20px, 5vw, 86px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 58, 104, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.contact-logo {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 8px;
}

.brand {
  width: 198px;
  min-height: 50px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
}

.brand-mark img {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 66px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}

.brand-copy {
  display: grid;
  line-height: 0.88;
}

.brand-copy span {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-copy span + span {
  color: var(--gold);
  letter-spacing: 2.5px;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.55vw, 34px);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
}

main {
  overflow: hidden;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.mobile-nav-actions {
  display: none;
}

.header-cta,
.btn,
.price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 43px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--navy);
  border: 0;
  box-shadow: 0 12px 28px rgba(7, 58, 104, 0.2);
}

.header-cta {
  min-height: 38px;
  padding: 0 18px;
  white-space: nowrap;
  border: 0;
}

.header-cta-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 58, 104, 0.14);
  box-shadow: none;
}

.header-cta:hover,
.btn:hover,
.price-button:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.btn svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-soft {
  background:
    radial-gradient(circle at 3% 92%, rgba(119, 202, 235, 0.72) 0 1px, transparent 210px),
    radial-gradient(circle at 43% 58%, rgba(245, 150, 153, 0.34) 0, transparent 320px),
    radial-gradient(circle at 32% 7%, rgba(255, 255, 255, 0.95) 0, transparent 280px),
    linear-gradient(115deg, #fffbf4 0%, #fff8ef 30%, #fde6df 56%, #d7eff9 100%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 53.5% 46.5%;
  height: 520px;
  min-height: 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 314px;
  left: 44.7%;
  width: 24px;
  height: 24px;
  content: "";
  background:
    linear-gradient(#fff, #fff) 50% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, #fff, #fff) 0 50% / 100% 1px no-repeat;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95));
  transform: rotate(45deg);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: 38.4%;
  bottom: 24px;
  width: 360px;
  height: 235px;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(95% 75% at 92% 15%, transparent 61%, rgba(255, 255, 255, 0.86) 62% 62.7%, transparent 63.4%),
    radial-gradient(80% 90% at 78% 22%, transparent 60%, rgba(255, 255, 255, 0.58) 61% 61.6%, transparent 62.5%),
    linear-gradient(150deg, transparent 0 36%, rgba(255, 255, 255, 0.62) 36.3% 36.9%, transparent 37.2% 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 720px;
  padding: 56px 46px 74px clamp(38px, 7.6vw, 134px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f3c0a5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.price-card h3 {
  color: var(--navy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  color: #062f57;
  font-size: clamp(46px, 4.35vw, 66px);
  line-height: 1.04;
}

h1 span,
h2 span {
  color: #d9837e;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: #334358;
  font-size: 13px;
  line-height: 1.75;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.btn {
  padding: 0 27px;
}

.btn.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(217, 134, 128, 0.72);
}

.btn.outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-media {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-top-left-radius: 190px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.86) sepia(0.11) brightness(1.04) contrast(0.92);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 244, 234, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(82, 50, 30, 0.08));
  pointer-events: none;
}

.note-card {
  position: absolute;
  right: clamp(26px, 5.8vw, 86px);
  bottom: 58px;
  z-index: 2;
  width: 230px;
  padding: 20px 26px 21px;
  color: var(--navy);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 134, 128, 0.22);
  border-radius: 11px;
  box-shadow: 0 18px 42px rgba(31, 44, 58, 0.12);
}

.note-card strong {
  display: block;
  color: #d98a83;
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
}

.note-card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.stats-wrap {
  position: relative;
  z-index: 5;
  max-width: 1110px;
  margin: -10px auto 0;
  padding: 0 clamp(20px, 5vw, 40px);
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 86px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 58, 104, 0.08);
  border-radius: 12px;
  box-shadow: 0 22px 42px rgba(23, 51, 79, 0.12);
  backdrop-filter: blur(8px);
}

.stat {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 11px;
  padding: 17px 34px;
  border-right: 1px solid rgba(7, 58, 104, 0.13);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  grid-row: span 2;
  width: 33px;
  height: 33px;
  color: var(--navy);
  stroke-width: 1.35;
}

.stat strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.stat span {
  color: #415268;
  font-size: 12px;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 78px clamp(20px, 5vw, 40px);
}

.services,
.packages {
  max-width: 1120px;
}

.section-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2 {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 52px);
  overflow-wrap: break-word;
}

.section-heading::after {
  display: block;
  width: 64px;
  height: 12px;
  margin: 13px auto 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 25%, var(--gold) 25% 75%, transparent 75% 100%),
    linear-gradient(90deg, transparent 0 46%, var(--gold) 46% 54%, transparent 54% 100%);
  background-size:
    100% 1px,
    100% 100%;
  background-position:
    center 50%,
    center;
  background-repeat: no-repeat;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
  max-width: 1080px;
  margin: 0 auto;
}

.help-card {
  min-height: 218px;
  padding: 26px 18px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 248, 241, 0.7));
  border: 1px solid rgba(7, 58, 104, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 51, 79, 0.07);
}

.help-card h3 {
  margin: 18px 0 10px;
  color: var(--navy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.08;
}

.help-card p {
  margin: 0;
  color: #5d6677;
  font-size: 12px;
  line-height: 1.6;
}

.icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.icon-bubble svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  stroke-width: 1.45;
}

.icon-bubble.blue {
  background: var(--sky);
}

.icon-bubble.coral {
  background: var(--peach);
}

.icon-bubble.gold {
  background: #ffedc9;
}

.icon-bubble.lavender {
  background: var(--lavender);
}

.about-band {
  position: relative;
  display: grid;
  grid-template-columns: 34% 66%;
  height: 520px;
  min-height: 0;
  margin-top: 20px;
  color: #fff;
  background:
    linear-gradient(103deg, rgba(5, 42, 79, 0.92) 0%, rgba(7, 58, 104, 0.93) 46%, rgba(55, 154, 196, 0.8) 100%);
  overflow: hidden;
}

.about-image {
  position: relative;
  z-index: 1;
  width: calc(100% + 180px);
  height: 100%;
  min-height: 0;
}

.about-image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 300px;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 42, 79, 0) 0%, rgba(5, 42, 79, 0.38) 34%, rgba(5, 42, 79, 0.78) 66%, rgba(5, 42, 79, 0.94) 100%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 34%;
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 62px clamp(34px, 12vw, 170px) 54px clamp(86px, 12vw, 175px);
}

.about-copy::after {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: 190px;
  height: 180px;
  content: "";
  opacity: 0.22;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-width: 0 1px 1px 0;
  border-radius: 0 0 90px 0;
  transform: rotate(-18deg);
}

.about-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
}

.about-copy p {
  max-width: 580px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.about-copy .btn {
  margin-top: 18px;
}

.signature {
  position: absolute;
  right: clamp(34px, 5vw, 80px);
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0;
  color: #f2b45c;
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(2, 32, 62, 0.2);
}

.signature svg {
  width: 20px;
  height: 20px;
  color: #f1c8bc;
  stroke-width: 1.5;
}

.packages {
  padding-top: 38px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 342px;
  padding: 31px 29px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 127, 120, 0.34);
  border-radius: 9px;
  box-shadow: 0 15px 38px rgba(23, 51, 79, 0.07);
}

.price-card.featured {
  border-color: rgba(7, 58, 104, 0.45);
  box-shadow: 0 20px 48px rgba(7, 58, 104, 0.13);
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 28px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px 8px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.featured .price-head {
  margin-top: 12px;
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.price-head h3 {
  margin-bottom: 0;
  font-size: 35px;
}

.price-head span {
  display: block;
  color: #617083;
  font-size: 12px;
  font-weight: 600;
}

.price-head strong {
  color: var(--navy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: #536176;
  font-size: 12px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
}

.price-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  color: #fff;
  content: "•";
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.price-button {
  width: 100%;
  min-height: 39px;
  margin-top: auto;
  color: var(--navy);
  border: 1px solid var(--gold);
}

.price-button.solid {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.package-note {
  margin: 18px 0 0;
  color: #526175;
  text-align: center;
  font-size: 12px;
}

.package-note::after {
  margin-left: 10px;
  color: var(--navy);
  content: "♡";
  font-size: 19px;
  vertical-align: -2px;
}

.team-panel {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 310px;
  gap: 34px;
  width: calc(100% - clamp(32px, 5vw, 96px));
  max-width: 1700px;
  margin: 0 auto 22px;
  padding: 40px 56px;
  background:
    linear-gradient(90deg, rgba(255, 240, 236, 0.95), rgba(255, 248, 241, 0.96) 55%, rgba(244, 251, 254, 0.96));
  border: 1px solid rgba(215, 127, 120, 0.18);
  border-radius: 12px;
}

.team-intro {
  align-self: center;
}

.team-intro h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.team-member {
  min-width: 0;
  text-align: center;
}

.team-photo {
  display: inline-block;
  width: 88px;
  height: 88px;
  padding: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 58, 104, 0.12);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(23, 51, 79, 0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h3 {
  margin: 12px 0 4px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.team-member p {
  min-height: 48px;
  margin-bottom: 7px;
  color: #536176;
  font-size: 13px;
  line-height: 1.25;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 58, 104, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.support-card {
  align-self: center;
  min-height: 136px;
  padding: 27px 30px;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(215, 127, 120, 0.35);
  border-radius: 10px;
}

.support-card span {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.support-card p {
  margin: 10px 0 0;
  color: #596579;
  font-size: 14px;
  line-height: 1.45;
}

.testimonials {
  padding-top: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.quote-card {
  min-height: 184px;
  padding: 26px 28px 23px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 127, 120, 0.36);
  border-radius: 8px;
  box-shadow: 0 13px 34px rgba(23, 51, 79, 0.06);
}

.quote-card > svg {
  width: 23px;
  height: 23px;
  color: var(--coral);
  fill: rgba(215, 127, 120, 0.12);
}

.quote-card p {
  min-height: 76px;
  margin: 9px 0 12px;
  color: #5d6677;
  font-size: 12px;
  line-height: 1.65;
}

.stars {
  color: #f1a84f;
  font-size: 15px;
  letter-spacing: 1px;
}

.quote-card strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 12px;
  text-align: right;
}

.lms-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - clamp(32px, 5vw, 96px));
  max-width: 1700px;
  min-height: 112px;
  margin: 20px auto 0;
  padding: 24px 58px;
  color: #fff;
  background:
    linear-gradient(95deg, #073a68 0%, #0c5180 62%, #0b6c9c 100%);
  border-radius: 10px;
}

.lms-banner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lms-banner > div > svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  stroke-width: 1.5;
}

.lms-banner h2 {
  margin-bottom: 2px;
  color: #fff;
  font-size: 29px;
}

.lms-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 90px;
  align-items: center;
  width: calc(100% - clamp(32px, 5vw, 96px));
  max-width: 1700px;
  margin: 0 auto;
  padding: 70px 0 56px;
}

.closing-cta h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 58px);
}

.closing-cta p {
  color: #526175;
}

.whatsapp-cta {
  color: #075e54;
  border-color: rgba(7, 94, 84, 0.34);
}

.whatsapp-cta svg {
  width: 18px;
  height: 18px;
}

.contact-card {
  display: grid;
  gap: 11px;
  padding: 34px 40px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(215, 127, 120, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-logo {
  margin-bottom: 4px;
}

.contact-logo .brand-mark {
  width: 46px;
  height: 46px;
}

.contact-logo .brand-mark img {
  width: 70px;
  height: auto;
}

.contact-logo .brand-copy span {
  font-size: 20px;
}

.contact-logo .brand-copy small {
  font-size: 9px;
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334a61;
  font-size: 13px;
}

.contact-card svg {
  width: 17px;
  height: 17px;
  color: var(--navy);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(20px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-deep);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.booking-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 45, 84, 0.42);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  padding: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 164, 70, 0.12), transparent 160px),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(255, 241, 236, 0.98) 58%, rgba(238, 249, 252, 0.98));
  border: 1px solid rgba(215, 127, 120, 0.26);
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(4, 45, 84, 0.24);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 58, 104, 0.12);
  border-radius: 50%;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.booking-dialog h2 {
  margin-bottom: 10px;
  font-size: 42px;
}

.modal-copy {
  margin-bottom: 22px;
  color: #526175;
  font-size: 13px;
}

.booking-options {
  display: grid;
  gap: 12px;
}

.booking-option {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 58, 104, 0.11);
  border-radius: 10px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-option:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 58, 104, 0.28);
  box-shadow: 0 14px 32px rgba(23, 51, 79, 0.11);
}

.booking-option > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--navy);
  background: var(--sky-soft);
  border-radius: 50%;
  stroke-width: 1.5;
}

.booking-option strong,
.booking-option small {
  display: block;
}

.booking-option strong {
  color: var(--navy);
  font-size: 15px;
}

.booking-option small {
  margin-top: 3px;
  color: #5d6677;
  font-size: 12px;
  line-height: 1.45;
}

.modal-open {
  overflow: hidden;
}

.page-main {
  overflow: hidden;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 43%);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 520px;
  padding: 72px clamp(24px, 7vw, 118px);
  background:
    radial-gradient(circle at 8% 92%, rgba(119, 202, 235, 0.55) 0 1px, transparent 250px),
    radial-gradient(circle at 52% 48%, rgba(245, 150, 153, 0.22), transparent 330px),
    linear-gradient(115deg, #fffbf4 0%, #fff8ef 39%, #fde8e0 70%, #e8f7fb 100%);
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 740px;
  color: #415268;
}

.page-hero-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-top-left-radius: 150px;
  box-shadow: 0 24px 56px rgba(23, 51, 79, 0.13);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: saturate(0.9) sepia(0.08) brightness(1.03) contrast(0.94);
}

.page-section {
  width: calc(100% - clamp(32px, 7vw, 120px));
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 38%) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.story-image {
  overflow: hidden;
  border-top-left-radius: 120px;
  box-shadow: 0 22px 52px rgba(23, 51, 79, 0.12);
}

.story-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 34%;
}

.story-copy h2,
.coach-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.4vw, 58px);
}

.story-copy p,
.coach-copy p,
.coach-copy li {
  color: #4d5b70;
  font-size: 14px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.credential {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 58, 104, 0.1);
  border-radius: 8px;
}

.credential strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.credential span {
  display: block;
  margin-top: 6px;
  color: #5d6677;
  font-size: 12px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 58, 104, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.social-pill svg {
  width: 16px;
  height: 16px;
}

.social-icon-row {
  gap: 12px;
}

.social-icon-button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
}

.social-icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.brand-glyph {
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  line-height: 1;
}

.facebook-glyph {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.linkedin-glyph {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.instagram-glyph {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-glyph::before,
.instagram-glyph::after {
  position: absolute;
  content: "";
}

.instagram-glyph::before {
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-glyph::after {
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.social-logo {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.coach-socials {
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}

.coach-socials .social-pill {
  min-height: 34px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
}

.coach-socials .social-logo {
  width: 21px;
  height: 21px;
  font-size: 8px;
}

.story-band {
  color: #fff;
  background:
    linear-gradient(103deg, rgba(5, 42, 79, 0.94) 0%, rgba(7, 58, 104, 0.94) 48%, rgba(55, 154, 196, 0.82) 100%);
}

.story-band .page-section {
  padding: 72px 0;
}

.story-band h2,
.story-band p {
  color: #fff;
}

.story-band p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.88);
}

.coach-list {
  display: grid;
  gap: 34px;
}

.coach-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: 36px;
  background:
    linear-gradient(115deg, rgba(255, 250, 243, 0.96), rgba(255, 241, 236, 0.86) 52%, rgba(244, 251, 254, 0.94));
  border: 1px solid rgba(215, 127, 120, 0.18);
  border-radius: 12px;
}

.coach-section:nth-child(even) {
  background:
    linear-gradient(115deg, rgba(244, 251, 254, 0.96), rgba(255, 250, 243, 0.92) 54%, rgba(255, 241, 236, 0.9));
}

.coach-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.coach-portrait {
  overflow: hidden;
  border-top-left-radius: 95px;
  box-shadow: 0 18px 42px rgba(23, 51, 79, 0.12);
}

.coach-portrait img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.coach-copy h2 {
  margin-bottom: 6px;
}

.coach-role {
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.coach-copy h3 {
  margin: 24px 0 9px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
}

.coach-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.direct-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - clamp(32px, 7vw, 120px));
  max-width: 1500px;
  margin: 0 auto 72px;
  padding: 30px 42px;
  color: #fff;
  background:
    linear-gradient(95deg, #073a68 0%, #0c5180 62%, #0b6c9c 100%);
  border-radius: 10px;
}

.direct-cta h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 42px);
}

.direct-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.story-band + .direct-cta {
  margin-top: 72px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(310px, calc(100vw - 40px));
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-copy {
    max-width: none;
    padding-right: clamp(24px, 8vw, 80px);
  }

  .hero-media {
    min-height: 520px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 150px;
  }

  .hero-media img {
    min-height: 520px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 58, 104, 0.12);
  }

  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-panel {
    grid-template-columns: 1fr;
  }

  .team-intro {
    text-align: center;
  }

  .page-hero,
  .story-grid,
  .coach-section {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 460px;
  }

  .coach-media,
  .coach-portrait {
    max-width: 420px;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 16px;
    min-height: 64px;
    padding: 10px 20px;
  }

  .brand {
    width: 176px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 70px;
    height: auto;
  }

  .brand-copy span {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .header-actions {
    display: none;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px solid rgba(7, 58, 104, 0.1);
  }

  .mobile-nav-actions .header-cta {
    width: 100%;
  }

  .site-nav {
    top: 64px;
  }

  .hero-copy {
    padding-top: 58px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(45px, 12vw, 68px);
  }

  .about-band,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .about-band {
    height: auto;
  }

  .about-image {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .about-image::after {
    display: none;
  }

  .signature {
    position: static;
    margin: 26px 0 0;
  }

  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .team-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .lms-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-cta {
    gap: 28px;
  }

  .contact-card {
    max-width: 460px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .direct-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .hero-copy {
    padding-inline: 22px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

  .note-card {
    right: 18px;
    bottom: 22px;
    width: 190px;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 58, 104, 0.12);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 42px 22px;
  }

  .team-panel {
    width: auto;
    margin-inline: 16px;
    padding: 25px 20px;
  }

  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .lms-banner {
    width: auto;
    margin-inline: 16px;
    padding: 24px 22px;
  }

  .lms-banner > div {
    align-items: flex-start;
  }

  .lms-banner h2 {
    font-size: 26px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .booking-dialog {
    padding: 28px 20px 22px;
  }

  .booking-dialog h2 {
    font-size: 34px;
  }

  .booking-option {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .booking-option > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .page-hero {
    min-height: 0;
    padding: 50px 22px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 390px;
  }

  .page-section,
  .direct-cta {
    width: auto;
    margin-inline: 16px;
  }

  .story-image img {
    min-height: 430px;
  }

  .coach-section {
    padding: 24px 20px;
  }

  .coach-portrait img {
    height: 310px;
  }

  .direct-cta {
    padding: 26px 22px;
  }

  .story-band + .direct-cta {
    margin-top: 42px;
  }
}
