  :root {
    --forest: #174B37;
    --forest-deep: #0E3A2A;
    --ivory: #FCFBF6;
    --cream: #F4F0E6;
    --lime: #B7D96B;
    --sage: #7C9270;
    --charcoal: #30352F;
    --charcoal-soft: #667067;
    --line: rgba(23, 75, 55, 0.12);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Work Sans', Arial, sans-serif;
    --maxw: 1280px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

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

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

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

  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--serif);
    font-weight: 600;
  }

  p {
    margin: 0;
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 42px;
  }

  section {
    padding: 88px 0;
  }

  .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--sage);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .eyebrow .mark {
    width: 18px;
    height: 18px;
  }

  .section-head {
    max-width: 850px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
  }

  .section-head p.sub {
    max-width: 760px;
    margin: 15px auto 0;
    color: var(--charcoal-soft);
    font-size: 16px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn:active {
    transform: scale(0.98);
  }

  .btn-primary {
    background: var(--forest);
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 58, 42, 0.12);
  }

  .btn-primary:hover {
    background: var(--forest-deep);
  }

  .btn-ghost {
    background: #fff;
    color: var(--forest-deep);
    border-color: rgba(23, 75, 55, 0.35);
  }

  .btn-ghost:hover {
    background: #f5f5ef;
  }

  .btn-outline {
    background: #fff;
    color: var(--forest-deep);
    border-color: var(--forest);
  }

  .btn-outline:hover {
    background: var(--forest);
    color: #fff;
  }

  .btn-sm {
    padding: 11px 19px;
    font-size: 13.5px;
  }

  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(23, 75, 55, 0.07);
    box-shadow: 0 4px 22px rgba(20, 45, 32, 0.05);
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}
  

  .brand .name {
    color: var(--forest);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .brand .sub {
    margin-top: 4px;
    color: var(--sage);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

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

  nav.links a.navlink {
    color: #26352d;
    font-size: 14px;
    font-weight: 600;
  }

  nav.links a.navlink:hover {
    color: var(--forest);
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--forest);
    font-size: 25px;
    cursor: pointer;
  }

  header.scrolled {
    padding: 11px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px rgba(20, 45, 32, 0.09);
  }

  header.scrolled .brand .name {
    font-size: 20px;
  }

  nav.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--forest-deep);
  }

  nav.mobile-panel.open {
    display: flex;
  }

  nav.mobile-panel a {
    color: #fff;
    font-family: var(--serif);
    font-size: 28px;
  }

  nav.mobile-panel .close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

  /* ================= HERO ================= */

  .hero {
    position: relative;
    min-height: 680px;
    padding: 150px 42px 80px;
    background: var(--ivory);
    overflow: hidden;
  }

  .hero-content {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
  }

  .hero-text {
    max-width: 560px;
  }

  .hero-text .eyebrow {
    justify-content: flex-start;
    margin-bottom: 20px;
    color: var(--forest);
  }

  .hero-text h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--forest-deep);
  }

  .hero-text h1 em {
    font-style: normal;
    color: var(--forest);
  }

  .hero-text p {
    max-width: 570px;
    margin-top: 22px;
    color: var(--charcoal-soft);
    font-size: 16.5px;
  }

  .hero-text .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }

  /* HERO IMAGE CARD */

  .hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, #E3E8DC, #C5D1C1);
    box-shadow: 0 20px 50px rgba(23, 75, 55, 0.12);
  }

  .hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* MOBILE */

  @media (max-width: 900px) {
    .hero {
      padding: 130px 20px 70px;
    }

    .hero-content {
      grid-template-columns: 1fr;
      gap: 45px;
    }

    .hero-text {
      max-width: 700px;
    }

    .hero-image {
      max-width: 600px;
      aspect-ratio: 4 / 5;
    }
  }

  .hero-vessel {
    display: none;
  }

  .hero .btn-primary {
    padding-right: 28px;
    padding-left: 28px;
    background: var(--forest);
  }

  .scroll-cue {
    display: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .ph {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 4 / 4.6;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
}

  .ph img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ph::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(23, 75, 55, 0.09));
  }

  .ph .ph-tag {
    position: relative;
    z-index: 1;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(23, 75, 55, 0.88);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .about-text .eyebrow {
    justify-content: flex-start;
  }

  .about-text h2 {
    font-size: clamp(29px, 3.5vw, 42px);
    line-height: 1.15;
  }

  .about-text p {
    margin-top: 17px;
    color: var(--charcoal-soft);
    font-size: 16px;
  }

  #treatments {
    background: #fff !important;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .cat-card {
    overflow: hidden;
    border: 1px solid rgba(23, 75, 55, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(23, 75, 55, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(23, 75, 55, 0.11);
  }

 .cat-card .cat-ph{
    aspect-ratio: 16/13;
    background: radial-gradient(circle at 70% 25%,rgba(183,217,107,.32),transparent 35%),
                linear-gradient(135deg,#D9E2D2,#C2D0C0);
    position: relative;
}

  .cat-card .cat-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(23, 75, 55, 0.08));
  }

  .cat-body {
    padding: 21px 20px 22px;
  }

  .cat-body .cat-label {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 5px;
    background: #F0F3EA;
    color: var(--forest);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cat-body h3 {
    margin-top: 12px;
    font-size: 20px;
  }

  .cat-body ul {
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
    color: var(--charcoal-soft);
    font-size: 13.8px;
  }

  .cat-body ul li {
    padding: 5px 0;
    border-top: 1px dashed var(--line);
  }

  .cat-body ul li:first-child {
    border-top: none;
  }

  .cat-body .enquire {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    padding: 9px 15px;
    text-decoration: none;
    border-radius: 6px;
    background: var(--forest);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
  }

  .pricing {
    margin-top: 50px;
    padding: 34px clamp(20px, 4vw, 42px);
    border-radius: 18px;
    background: var(--forest);
    color: #fff;
  }

  .pricing-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
  }

  .pricing-head h3 {
    color: #fff;
    font-size: 22px;
  }

  .pricing-head span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12.5px;
  }

  .price-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
  }

  .price-row .amt {
    color: #D7EF9A;
    font-family: var(--serif);
    font-weight: 700;
  }

  .sig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 58px 0;
    border-top: 1px solid var(--line);
  }

  .sig-row:first-of-type {
    border-top: none;
  }

  .sig-row.rev .ph-col {
    order: 2;
  }

  .sig-row .tag {
    display: block;
    margin-bottom: 10px;
    color: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .sig-row h3 {
    font-size: clamp(27px, 3vw, 37px);
  }

  .sig-row p {
    margin-top: 15px;
    color: var(--charcoal-soft);
    font-size: 15.5px;
  }

  .sig-row .discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--forest);
    font-weight: 600;
  }

  .sig-ph {
    aspect-ratio: 5 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, rgba(183, 217, 107, 0.25), transparent 30%), linear-gradient(145deg, #E3E8DC, #C5D1C1);
  }

  .sig-ph img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .postnatal {
    background: var(--cream);
  }

  .pn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
  }

  .pn-ph {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    background: radial-gradient(circle at 70% 30%, rgba(183, 217, 107, 0.28), transparent 35%), linear-gradient(150deg, #EAE7D9, #CCD6C6);
  }

  .pn-grid .eyebrow {
    justify-content: flex-start;
  }

  .pn-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 22px;
    margin-top: 24px;
  }

  .pn-list .item {
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--charcoal-soft);
    font-size: 14px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
    border: 0;
  }

  .why-card {
    padding: 28px 25px;
    border: 1px solid rgba(23, 75, 55, 0.08);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(23, 75, 55, 0.045);
  }

  .why-card h4 {
    margin-bottom: 9px;
    font-size: 18px;
  }

  .why-card p {
    color: var(--charcoal-soft);
    font-size: 14px;
  }

  /* ================= REVIEWS ================= */

  .reviews {
    padding: 100px 0;
    background: #123C2E;
    color: #fff;
  }

  .reviews .section-head {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
  }

  .reviews .eyebrow {
    color: #9CAF88;
  }

  .reviews h2 {
    color: #F5F1E8;
  }

  .reviews .sub {
    color: rgba(255, 255, 255, 0.65);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .review-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .quote {
    margin-bottom: 20px;
    color: #9CAF88;
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 0.8;
  }

  .review-card p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
  }

  .review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .review-author strong {
    color: #F5F1E8;
    font-size: 14px;
  }

  .review-author span {
    color: #9CAF88;
    font-size: 12px;
  }

  .practitioners {
    background: var(--forest-deep);
    color: #fff;
  }

  .practitioners .section-head h2 {
    color: #fff;
  }

  .practitioners .section-head p.sub {
    color: rgba(255, 255, 255, 0.7);
  }

  .prac-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
  }

  .prac-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.055);
  }

  .prac-ph {
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #71816E, #213D31);
  }

  .prac-body {
    padding: 20px 21px 23px;
  }

  .prac-body h4 {
    color: #fff;
    font-size: 18px;
  }

  .prac-body .role {
    display: block;
    margin-top: 4px;
    color: #D7EF9A;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .prac-body p {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
  }

  .journey-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .journey-row::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 1px;
    background: var(--line);
  }

  .j-step {
    position: relative;
    z-index: 1;
    padding-right: 25px;
  }

  .j-step .j-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 17px;
    border: 1.5px solid var(--forest);
    border-radius: 50%;
    background: var(--ivory);
    color: var(--forest);
    font-family: var(--serif);
    font-size: 18px;
  }

  .j-step h4 {
    font-size: 17px;
  }

  .j-step p {
    margin-top: 7px;
    color: var(--charcoal-soft);
    font-size: 14px;
  }

  #faq {
    background: #fff !important;
  }

  .faq-item {
    border-top: 1px solid var(--line);
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 21px 0;
    border: none;
    background: none;
    color: var(--forest-deep);
    font-family: var(--serif);
    font-size: 18px;
    text-align: left;
    cursor: pointer;
  }

  .faq-q .plus {
    color: var(--forest);
    font-size: 22px;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-q .plus {
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-a p {
    max-width: 680px;
    padding-bottom: 21px;
    color: var(--charcoal-soft);
    font-size: 15px;
  }

  .contact {
    background: var(--forest);
    color: #fff;
  }

  .contact .section-head h2 {
    color: #fff;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .visit-block h3 {
    margin-bottom: 17px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .visit-line {
    display: flex;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 15px;
  }

  .visit-line:first-of-type {
    border-top: none;
  }

  .visit-line .lbl {
    min-width: 90px;
    padding-top: 2px;
    color: #D7EF9A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .contact-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .contact .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .contact .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
  }

 .map-ph {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}
  .map-ph iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
  }

  .appointment {
    padding: 88px 0;
    background: linear-gradient(180deg, #f6f4ee 0%, #fff 100%);
  }

  .appointment-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
  }

  .appointment-info {
    max-width: 560px;
  }

  .appointment-info .eyebrow {
    justify-content: flex-start;
    margin-bottom: 18px;
    color: var(--forest);
  }

  .appointment-info h2 {
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.1;
    color: var(--forest-deep);
  }

  .appointment-info p {
    margin-top: 18px;
    color: var(--charcoal-soft);
    font-size: 16px;
  }

  .appointment-details {
    display: grid;
    gap: 16px;
    margin-top: 30px;
  }

  .appointment-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .detail-label {
    color: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .detail-value {
    color: var(--charcoal);
    font-size: 17px;
    font-weight: 500;
  }

  .appointment-form {
    padding: 34px;
    border: 1px solid rgba(23, 75, 55, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(23, 75, 55, 0.08);
  }

  .appointment-form form {
    display: grid;
    gap: 22px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .form-group {
    display: grid;
    gap: 9px;
  }

  .form-group label {
    color: var(--forest-deep);
    font-size: 13px;
    font-weight: 600;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1px solid rgba(23, 75, 55, 0.16);
    border-radius: 12px;
    background: #fafaf8;
    color: var(--charcoal);
    padding: 14px 15px;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgba(23, 75, 55, 0.45);
    box-shadow: 0 0 0 3px rgba(23, 75, 55, 0.08);
  }

  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }

  .form-submit {
    border: none;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .form-submit:hover {
    background: var(--forest-deep);
    transform: translateY(-1px);
  }

  footer {
    padding: 42px 0 105px;
    background: var(--forest-deep);
    color: rgba(255, 255, 255, 0.62);
  }

  .foot-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .foot-grid .fname {
    color: #fff;
    font-family: var(--serif);
    font-size: 20px;
  }

  .foot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 13.5px;
  }

  .foot-note {
    margin-top: 23px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
  }

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-bar .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
  }

  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 6px;
    color: var(--forest-deep);
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-bar a.book {
    background: var(--forest);
    color: #fff;
  }

  .mobile-bar svg {
    width: 20px;
    height: 20px;
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

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

  @media (max-width: 960px) {
    nav.links {
      display: none;
    }

    .menu-btn {
      display: block;
    }
  }

  @media (max-width: 860px) {
    .about-grid,
    .pn-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .sig-row {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .sig-row.rev .ph-col {
      order: 0;
    }

    .why-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prac-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-row {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .journey-row::before {
      display: none;
    }
  }

  @media (max-width: 720px) {
    .wrap {
      padding: 0 20px;
    }

    section {
      padding: 68px 0 !important;
    }

    .price-table {
      grid-template-columns: 1fr;
    }

    .mobile-bar {
      display: block;
    }
  }

  @media (max-width: 640px) {
    .cat-grid,
    .why-grid,
    .reviews-grid,
    .prac-grid {
      grid-template-columns: 1fr;
    }

    .pn-list {
      grid-template-columns: 1fr;
    }
  }

/* ================= FINAL MOBILE OPTIMISATION ================= */

@media (max-width: 768px) {

  /* GLOBAL */
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 64px 0 !important;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .section-head p.sub {
    font-size: 15px;
  }


  /* HEADER */
  header {
    padding: 10px 0;
  }

  .brand img {
    width: 55px;
    height: 55px;
  }

  .header-cta .btn {
    display: none;
  }

  .menu-btn {
    font-size: 28px;
  }


  /* HERO */
  .hero {
    min-height: auto;
    padding: 115px 20px 60px;
    background: var(--ivory);
  }

  .hero-content {
    gap: 35px;
  }

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

  .hero-text .eyebrow {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-text p {
    margin-right: auto;
    margin-left: auto;
    font-size: 15.5px;
  }

  .hero-text .cta-row {
    justify-content: center;
    margin-top: 26px;
  }

  .hero-image {
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }


  /* ABOUT */
  .about-grid {
    gap: 30px;
  }

  .ph {
    aspect-ratio: 4 / 5;
  }

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

  .about-text .eyebrow {
    justify-content: center;
  }

  .about-text h2 {
    font-size: 32px;
  }


  /* TREATMENT CARDS */
  .cat-grid {
    gap: 18px;
  }

  .cat-body {
    padding: 20px;
  }

  .cat-body h3 {
    font-size: 21px;
  }

  .cat-card .cat-ph,
  .cat-card .cat-img {
    width: 100%;
    aspect-ratio: 16 / 13;
    object-fit: cover;
  }


  /* PRICING */
  .pricing {
    margin-top: 35px;
    padding: 28px 20px;
  }

  .pricing-head {
    align-items: flex-start;
  }


  /* SIGNATURE TREATMENTS */
  .sig-row {
    padding: 42px 0;
    gap: 24px;
    text-align: center;
  }

  .sig-row .tag {
    text-align: center;
  }

  .sig-row h3 {
    font-size: 31px;
  }

  .sig-row .discover {
    justify-content: center;
  }

  .sig-ph {
    width: 100%;
    aspect-ratio: 5 / 4;
  }


  /* POST NATAL */
  .pn-grid {
    gap: 32px;
  }

  .pn-ph {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .pn-grid > div:last-child {
    text-align: center;
  }

  .pn-grid .eyebrow {
    justify-content: center;
  }

  .pn-list {
    text-align: left;
  }


  /* WHY KALPA */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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


  /* REVIEWS */
  .reviews {
    padding: 70px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 26px 22px;
  }


  /* JOURNEY */
  .journey-row {
    gap: 24px;
  }

  .j-step {
    padding-right: 0;
    text-align: center;
  }

  .j-step .j-num {
    margin-right: auto;
    margin-left: auto;
  }


  /* FAQ */
  .faq-q {
    padding: 18px 0;
    font-size: 17px;
  }


  /* CONTACT */
  .contact-grid {
    gap: 35px;
  }

  .visit-line {
    flex-direction: column;
    gap: 4px;
  }

  .visit-line .lbl {
    min-width: auto;
  }

  .contact-ctas {
    flex-direction: column;
  }

  .contact-ctas .btn {
    width: 100%;
  }

  .map-ph {
    aspect-ratio: 1 / 1;
  }


  /* APPOINTMENT */
  .appointment {
    padding: 64px 0 !important;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .appointment-info {
    text-align: center;
  }

  .appointment-info .eyebrow {
    justify-content: center;
  }

  .appointment-info h2 {
    font-size: 34px;
  }

  .appointment-details {
    text-align: left;
  }

  .appointment-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }


  /* FOOTER */
  footer {
    padding: 38px 0 90px;
  }

  .foot-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot-links {
    justify-content: center;
    gap: 14px 20px;
  }

  .foot-note {
    text-align: center;
  }

}


/* SMALL PHONES */

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 36px;
  }

  .section-head h2,
  .about-text h2,
  .appointment-info h2 {
    font-size: 29px;
  }

  .btn {
    width: 100%;
  }

  .hero-text .cta-row {
    flex-direction: column;
  }

  .hero-text .cta-row .btn {
    width: 100%;
  }

  .mobile-bar a {
    font-size: 11px;
  }

  .mobile-bar a.book {
    font-size: 11px;
  }

}
