:root {
  /* page surfaces */
  --cream: #ffffff;
  --cream-soft: #eef3fa;
  --paper: #ffffff;
  --surface-2: #f4f7fc;

  /* ink */
  --ink: #1a2030;
  --ink-soft: #38415a;
  --muted: #6c7488;
  --gray: #3b3d3a;
  --rule: #e1e7f0;

  /* brand blues (per docx) */
  --blue-light: #bcd7f1;
  --blue-main: #aac8e4;
  --blue-dark: #87baeb;
  --blue-deep: #3a7fc2;

  /* aliases used throughout */
  --sage: var(--blue-dark);
  --sage-deep: var(--blue-deep);
  --sage-soft: var(--blue-main);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

.serif {
  font-family: 'Cormorant Upright', 'Instrument Serif', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container {
    padding: 0 22px;
  }
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-deep);
  display: inline-block;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue-deep);
  color: #fff;
}

.btn-primary:hover {
  background: #2c66a3;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 32, 48, 0.25);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface-2);
}

.btn .arrow {
  transition: transform .25s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* WhatsApp floating button — pill with icon + label */
.whats-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  background: #aac8e4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(58, 127, 194, 0.45);
  transition: transform .2s ease;
}

.whats-fab-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whats-fab-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.whats-fab:hover {
  transform: scale(1.06);
}

.whats-fab .ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #aac8e4;
  opacity: 0.4;
  animation: ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 0;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  80%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}

header.site.scrolled {
  border-bottom-color: var(--rule);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

/* brand logo always sits off the left edge, at every screen size */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  padding-left: 10px;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 52px;
    max-width: 220px;
  }

  .brand {
    padding-left: 10px;
  }
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue-main);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Upright', serif;
  font-size: 22px;
  font-weight: 500;
  flex-shrink: 0;
}

.brand-mark image-slot {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.brand-sub {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (max-width: 540px) {
  .brand-text {
    display: none;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--blue-deep);
}

.nav-links a.btn-primary,
.mobile-nav a.btn-primary {
  color: #fff;
}

.nav-links a.btn-primary:hover,
.mobile-nav a.btn-primary:hover {
  color: #fff;
}

.nav-cta {
  padding: 11px 20px;
  font-size: 14px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 22px 28px;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 18px;
  }
}

/* hero: text + practice-photo slideshow */
.hero {
  padding: 64px 0 96px;
  position: relative;
  background: linear-gradient(180deg, #eaf1fa 0%, var(--surface-2) 18%, var(--surface-2) 82%, #eaf1fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-meta {
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 920px) {
  .hero {
    padding: 36px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    justify-items: center;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-copy>* {
    text-align: center;
  }

  .hero-copy h1 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-copy p.lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
    text-align: center;
  }

  .hero-meta>div {
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 380px;
  }
}

.hero h1 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.9vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 24px 0 28px;
  color: var(--gray);
  max-width: 19ch;
}

.hero h1 .hl {
  color: var(--blue-main);
  font-weight: 500;
}

/* desktop only: smaller hero heading + wider wrap so "confidence" stays on its line
   (mobile keeps the base clamp and 19ch cap above) */
@media (min-width: 921px) {
  .hero h1 {
    font-size: clamp(34px, 3.2vw, 42px);
    max-width: 26ch;
  }
}

.hero p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  font-size: 22px;
  font-family: 'Cormorant Upright', serif;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 280px 280px 16px 16px;
  overflow: hidden;
  background: var(--cream-soft);
}

.hero-image-wrap image-slot {
  width: 100%;
  height: 100%;
}

.hero-visual {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .2s ease;
}

.hero-slide-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px;
}

.hero-badge {
  position: absolute;
  left: -22px;
  bottom: 38px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 24px 40px -24px rgba(28, 38, 32, 0.18);
  max-width: 220px;
}

.hero-badge .row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-dark);
}

.hero-badge .label {
  font-weight: 500;
  font-size: 13px;
}

.hero-badge .sub {
  color: var(--muted);
}

/* trust strip */
.trust-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
  padding: 22px 0;
  color: var(--ink-soft);
}

.trust-row {
  display: flex;
  gap: 28px 36px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.trust-row-2 {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
}

.trust-row span,
.trust-row-2 span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-row .pill,
.trust-row-2 .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row-2 .pill {
  font-weight: 400;
}

@media (max-width: 720px) {
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .trust-row-2 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    border-top: 0;
    padding-top: 0;
    margin-top: 12px;
  }
}

/* about */
.about {
  padding: 120px 0;
  background: #fff;
}

@media (max-width: 720px) {
  .about {
    padding: 80px 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-image {
  aspect-ratio: 5/6;
  border-radius: 14px;
  background: var(--cream-soft);
  overflow: hidden;
  position: relative;
}

.about-image image-slot {
  width: 100%;
  height: 100%;
}

.about-image img.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.about-slides {
  position: absolute;
  inset: 0;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide-dots {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.about-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .2s ease;
}

.about-slide-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px;
}

.about-stat {
  position: absolute;
  right: -28px;
  top: 40px;
  background: var(--blue-deep);
  color: #fff;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 24px 40px -24px rgba(28, 38, 32, 0.4);
}

.about-stat .num {
  font-family: 'Cormorant Upright', serif;
  font-size: 44px;
  line-height: 1;
}

.about-stat .lab {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.about h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 18px 0 28px;
}

.about h2 em {
  font-style: italic;
  color: var(--blue-deep);
}

/* desktop only: smaller about heading (mobile keeps the base clamp above) */
@media (min-width: 921px) {
  .about h2 {
    font-size: clamp(34px, 3.6vw, 44px);
  }
}

.about p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .about-stat {
    right: 12px;
    left: auto;
    top: 14px;
    padding: 13px 15px;
    border-radius: 10px;
    max-width: 42%;
  }

  .about-stat .num {
    font-size: 28px;
  }

  .about-stat .lab {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-top: 4px;
  }
}

.signature {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature .sig {
  font-family: 'Cormorant Upright', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--blue-deep);
}

.signature .sig-logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.signature .name {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.signature .name strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
}

.services {
  padding: 120px 0;
  background: linear-gradient(180deg, #eaf1fa 0%, var(--surface-2) 18%, var(--surface-2) 82%, #eaf1fa 100%);
  position: relative;
}

@media (max-width: 720px) {
  .services {
    padding: 80px 0;
  }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 920px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.section-head h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 16px 0 0;
  color: var(--gray);
}

.section-head h2 .hl {
  color: var(--blue-main);
}

/* desktop only: smaller services heading (mobile keeps the base clamp above) */
@media (min-width: 921px) {
  .section-head h2 {
    font-size: clamp(34px, 3.6vw, 44px);
  }
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 46ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 920px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(58, 127, 194, 0.32);
}

.service-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
  position: relative;
  overflow: hidden;
}

.service-photo image-slot {
  width: 100%;
  height: 100%;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.service-card:hover .service-photo .draggable-photo:not(.editing) img {
  transform: scale(1.04);
}

.service-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-num {
  font-family: 'Cormorant Upright', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 8px 0 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--blue-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.svc-tag .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-dark);
}

/* why me */
.why {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .why {
    padding: 80px 0;
  }
}

.why .eyebrow {
  color: var(--blue-main);
}

.why .eyebrow::before {
  background: var(--blue-main);
}

.why h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 16px 0 60px;
  max-width: 22ch;
  color: var(--blue-light);
}

.why h2 em {
  font-style: italic;
  color: var(--blue-main);
}

/* desktop only: keep the why heading on one line */
@media (min-width: 921px) {
  .why h2 {
    white-space: nowrap;
    max-width: none;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 920px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.why-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-main);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  margin-bottom: 22px;
}

.why-card h4 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, #eaf1fa 0%, var(--surface-2) 18%, var(--surface-2) 82%, #eaf1fa 100%);
}

@media (max-width: 720px) {
  .testimonials {
    padding: 80px 0;
  }
}

.testi-head {
  text-align: center;
  margin-bottom: 60px;
}

.testi-head .eyebrow {
  justify-content: center;
}

.testi-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-deep);
  display: inline-block;
}

.testi-divider {
  width: 60px;
  height: 2px;
  background: var(--blue-main);
  margin: 18px auto 0;
  border-radius: 2px;
}

.testi-head h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 18px auto 0;
  max-width: 28ch;
  color: var(--blue-deep);
  white-space: nowrap;
}

.testi-head h2 .hl {
  color: var(--blue-deep);
}

@media (max-width: 720px) {
  .testi-head h2 {
    white-space: normal;
  }
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 820px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.testi-card.featured {
  grid-column: span 2;
}

@media (max-width: 820px) {
  .testi-card.featured {
    grid-column: auto;
  }
}

.testi-quote {
  font-family: 'Cormorant Upright', serif;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 26px;
  flex: 1;
}

.testi-quote::before {
  content: "\201C";
  font-size: 60px;
  line-height: 0;
  vertical-align: -22px;
  color: var(--blue-main);
  margin-right: 6px;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-main);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Upright', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-deep);
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #e9a23b;
}

/* CTA */
.cta {
  padding: 120px 0;
  background: #fff;
}

@media (max-width: 720px) {
  .cta {
    padding: 80px 0;
  }
}

.cta-card {
  background: var(--blue-deep);
  color: #fff;
  border-radius: 28px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 920px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 36px;
  }
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(188, 215, 241, 0.32), transparent 65%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 12px 0 24px;
}

.cta-card h2 em {
  font-style: italic;
  color: var(--blue-light);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 46ch;
}

.cta-card .quick-info {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
}

.cta-card .quick-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-card .quick-info svg {
  color: var(--blue-light);
}

.cta-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 26px;
}

.cta-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.cta-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bcd7f1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(0, 0, 0, 0.18);
}

.cta-form select:hover {
  background-color: rgba(0, 0, 0, 0.28);
}

.cta-form select option {
  background: var(--blue-deep);
  color: #fff;
  font-family: inherit;
  padding: 8px;
}

.cta-form select option:disabled {
  color: rgba(255, 255, 255, 0.55);
}

.cta-form select option:checked {
  background: #1e3f6b;
  color: #fff;
  font-weight: 500;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(188, 215, 241, 0.25);
}

.cta-form button {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  color: var(--blue-deep);
  border: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease;
}

.cta-form button:hover {
  background: var(--blue-light);
}

.cta-form .success {
  text-align: center;
  padding: 18px 8px;
  color: #fff;
}

.cta-form .success .check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-main);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

/* footer */
footer.site {
  background: var(--surface-2);
  color: var(--ink-soft);
  padding: 70px 0 36px;
  border-top: 1px solid var(--rule);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

@media (max-width: 920px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.foot-grid h5 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

.foot-grid>div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foot-grid>div:first-child .brand {
  justify-content: center;
}

.foot-grid>div:first-child .socials {
  justify-content: center;
}

.foot-grid a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s ease;
}

.foot-grid a:hover {
  color: var(--blue-deep);
}

.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foot-brand .brand {
  justify-content: center;
}

.foot-tag {
  font-family: 'Cormorant Upright', serif;
  font-size: 22px;
  color: var(--gray);
  max-width: 32ch;
  margin-top: 14px;
  line-height: 1.3;
}

.foot-tag .hl {
  color: var(--blue-main);
}

.foot-credit {
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
  padding: 14px 0 4px;
}

.foot-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot-credit a:hover {
  opacity: 0.85;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.socials a:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--muted);
}

.foot-bot a {
  color: var(--muted);
  text-decoration: none;
}

.foot-bot a:hover {
  color: var(--blue-deep);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* draggable photo */
.draggable-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
}

.draggable-photo>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.draggable-photo.editing {
  cursor: grab;
  outline: 2px solid var(--blue-main);
  outline-offset: -2px;
}

.draggable-photo.editing:active {
  cursor: grabbing;
}

.dp-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(15, 28, 46, 0.86);
  color: #fff;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 5;
  pointer-events: auto;
}

.dp-hint-grip {
  font-size: 14px;
  opacity: 0.85;
}

.dp-hint-done {
  background: var(--blue-main);
  color: #fff;
  border: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.dp-hint-done:hover {
  filter: brightness(1.08);
}

/* Weight management program */
.wmp {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid var(--rule);
}

@media (max-width: 720px) {
  .wmp {
    padding: 80px 0;
  }
}

.wmp-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

@media (max-width: 920px) {
  .wmp-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
}

.wmp-head h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 16px 0 0;
  color: var(--gray);
}

.wmp-head h2 em {
  font-style: italic;
  color: var(--blue-main);
}

.wmp-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 50ch;
}

.wmp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 920px) {
  .wmp-grid {
    grid-template-columns: 1fr;
  }
}

.wmp-card {
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
}

.wmp-card h3 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
}

.wmp-card .wmp-sub {
  font-size: 13.5px;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

.wmp-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wmp-includes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.wmp-includes li .ic {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.wmp-includes li strong {
  color: var(--ink);
  font-weight: 500;
}

.wmp-cover {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--blue-deep);
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.wmp-cover .pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-light);
  margin-top: 5px;
  flex: 0 0 10px;
}

.wmp-aid-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.wmp-aid-card h3 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--ink);
}

.wmp-aid-card .wmp-sub {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wmp-aids {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.wmp-aids li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: center;
  font-size: 14.5px;
  color: var(--ink);
}

.wmp-aids li:last-child {
  border-bottom: 0;
}

.wmp-aids li small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.wmp-bmi {
  font-family: 'Cormorant Upright', serif;
  font-size: 22px;
  line-height: 1;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.wmp-bmi small {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
}

.wmp-support {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 36px 34px;
}

.wmp-support h3 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--ink);
}

.wmp-support .wmp-sub {
  font-size: 12.5px;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

.wmp-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 22px;
}

@media (max-width: 920px) {
  .wmp-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .wmp-support-grid {
    grid-template-columns: 1fr;
  }
}

.wmp-support-grid li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.wmp-support-grid li .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-dark);
  margin-top: 9px;
  flex: 0 0 6px;
}

/* Phone held sideways (landscape): the viewport is WIDE but SHORT.
     Width alone can't tell a sideways phone from a laptop, so we also
     check height — a phone in landscape is under ~500px tall, a laptop/tablet
     is taller. This keeps the phone on the mobile layout instead of desktop. */
@media (orientation: landscape) and (max-height: 500px) {
  .container {
    padding: 0 22px;
  }

  /* navigation → hamburger menu */
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 22px 28px;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 18px;
  }

  /* stack the multi-column sections (two columns where the width allows) */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    justify-items: center;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-copy>* {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p.lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 36px;
  }

  .wmp-head,
  .wmp-grid {
    grid-template-columns: 1fr;
  }

  .wmp-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* shrink the about-photo badge so it doesn't cover the portrait */
  .about-stat {
    right: 12px;
    left: auto;
    top: 14px;
    padding: 13px 15px;
    border-radius: 10px;
    max-width: 42%;
  }

  .about-stat .num {
    font-size: 28px;
  }

  .about-stat .lab {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-top: 4px;
  }




}