/* =========================================================
   Sunshine Health Care
   Brand-aligned stylesheet
   Colours: light blue, dark blue and turquoise
   ========================================================= */

:root {
  --c-light-blue: #8ED8F0;
  --c-sky-blue: #DFF7FC;
  --c-turquoise: #19B7C5;
  --c-turquoise-dark: #078D9B;
  --c-dark-blue: #073B5C;
  --c-navy: #062F49;
  --c-white: #FFFFFF;
  --c-off-white: #F7FCFD;
  --c-light-gray: #E8F0F3;
  --c-text-dark: #203746;
  --c-text-gray: #60727D;
  --c-yellow: #FFD166;
  --shadow-soft: 0 12px 35px rgba(7, 59, 92, 0.08);
  --shadow-card: 0 8px 24px rgba(7, 59, 92, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--c-white);
  color: var(--c-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.practitioner-copy h2 {
  color: var(--c-dark-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-sub,
.lead-inline {
  color: var(--c-text-gray);
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--c-turquoise-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-turquoise);
  color: var(--c-white);
  box-shadow: 0 8px 18px rgba(25, 183, 197, 0.2);
}

.btn-primary:hover {
  background: var(--c-turquoise-dark);
  box-shadow: 0 12px 24px rgba(25, 183, 197, 0.28);
}

.btn-secondary {
  background: var(--c-dark-blue);
  color: var(--c-white);
}

.btn-secondary:hover {
  background: var(--c-turquoise-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: var(--c-white);
  color: var(--c-dark-blue);
}

.btn-full {
  width: 100%;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 2rem;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--c-dark-blue);
  color: var(--c-white);
}

.skip-link:focus {
  left: 2rem;
}

.eyebrow.eyebrow-script {
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-turquoise);
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 110;
  background: var(--c-sky-blue);
  color: var(--c-dark-blue);
  padding: 9px 0;
  border-bottom: 1px solid rgba(7, 59, 92, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-dark-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-item a:hover {
  color: var(--c-turquoise-dark);
}

.icon-sm {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 59, 92, 0.97);
  color: var(--c-white);
  box-shadow: 0 5px 20px rgba(6, 47, 73, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--c-white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(142, 216, 240, 0.45);
  border-radius: 50%;
  color: var(--c-light-blue);
  background: rgba(255, 255, 255, 0.07);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.site-header .brand-logo,
.site-footer .brand-logo {
  width: 54px;
  height: 54px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Dancing Script", cursive;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--c-light-blue);
  font-family: "Dancing Script", cursive;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.05;
}

.brand-slogan {
  color: var(--c-turquoise);
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* PNP, SANC & qualification tooltips */
.pnp,
.sanc,
.qual {
  position: relative;
  display: inline-block;
  cursor: help;
  text-underline-offset: 3px;
}

.pnp-tip,
.sanc-tip,
.qual-tip {
  display: none;
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: max-content;
  max-width: 240px;
  padding: 7px 12px;
  border-radius: 10px;
  background: var(--c-turquoise);
  color: var(--c-white);
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: normal;
  box-shadow: 0 10px 24px rgba(6, 47, 73, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pnp-tip::before,
.sanc-tip::before,
.qual-tip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--c-turquoise);
}

.pnp:hover .pnp-tip,
.pnp:focus-visible .pnp-tip,
.sanc:hover .sanc-tip,
.sanc:focus-visible .sanc-tip,
.qual:hover .qual-tip,
.qual:focus-visible .qual-tip {
  opacity: 1;
  visibility: visible;
  display: block;
}

@media (hover: none), (pointer: coarse) {
  .pnp-tip,
  .sanc-tip,
  .qual-tip {
    opacity: 0;
    visibility: hidden;
  }

  .pnp.is-open .pnp-tip,
  .sanc.is-open .sanc-tip,
  .qual.is-open .qual-tip {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

.site-header .brand-text strong,
.site-footer .brand-text strong {
  font-size: 1.8rem;
}

.site-header .brand-text small,
.site-footer .brand-text small {
  font-size: 1rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--c-turquoise);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.primary-nav a:not(.btn):hover {
  color: var(--c-white);
}

.primary-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--c-white);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--c-white);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 95px 0 125px;
  background:
    radial-gradient(circle at 88% 15%, rgba(142, 216, 240, 0.25), transparent 28%),
    linear-gradient(135deg, var(--c-dark-blue) 0%, #0A5576 58%, #087F91 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
}

.hero-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-blob-a {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 80px;
  background: var(--c-light-blue);
}

.hero-blob-b {
  width: 250px;
  height: 250px;
  left: -120px;
  bottom: 40px;
  background: var(--c-turquoise);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 650px;
}

.hero .eyebrow {
  color: var(--c-light-blue);
}

.hero h1 {
  max-width: 650px;
  color: var(--c-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.note-chip {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 470px;
}

.sun-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(100%, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

.sun-logo {
  width: 66%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--c-white);
  border-radius: 50%;
  padding: 6%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.sun-badge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sun-badge text {
  fill: var(--c-turquoise);
  font-family: "Dancing Script", cursive;
  font-size: 6.5px;
  font-weight: 700;
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  padding: 12px 15px;
  border: 1px solid rgba(7, 59, 92, 0.08);
  border-radius: 15px;
  background: var(--c-white);
  box-shadow: var(--shadow-soft);
  color: var(--c-dark-blue);
}

.float-chip-a {
  top: 13%;
  left: -18%;
}

.float-chip-b {
  right: -17%;
  bottom: 13%;
}

.float-chip svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.chip-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.float-chip strong,
.float-chip small {
  display: block;
}

.float-chip strong {
  font-size: 0.76rem;
}

.float-chip small {
  margin-top: 2px;
  color: var(--c-text-gray);
  font-size: 0.68rem;
  line-height: 1.3;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 70px;
}

/* About */
.about {
  background: var(--c-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 75px;
}

.about-copy h2 {
  max-width: 600px;
}

.about-copy p {
  color: var(--c-text-gray);
  margin-bottom: 18px;
}

.tick-list,
.dot-list {
  list-style: none;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
}

.tick-list li {
  position: relative;
  padding-left: 29px;
  color: var(--c-dark-blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-sky-blue);
  color: var(--c-turquoise-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.about-cards {
  display: grid;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--c-light-gray);
  border-radius: var(--radius-md);
  background: var(--c-off-white);
  box-shadow: 0 4px 18px rgba(7, 59, 92, 0.03);
}

.icon-lg {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
}

.stat-card h3 {
  color: var(--c-dark-blue);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--c-text-gray);
  font-size: 0.88rem;
}

/* Services */
.services {
  background: var(--c-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(7, 59, 92, 0.08);
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 183, 197, 0.35);
  box-shadow: 0 16px 35px rgba(7, 59, 92, 0.12);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 23px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--tint, var(--c-turquoise)) 13%, white);
  color: var(--tint, var(--c-turquoise));
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  color: var(--c-dark-blue);
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card-lead {
  color: var(--c-text-gray);
  font-size: 0.91rem;
  margin-bottom: 18px;
}

.dot-list {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
}

.dot-list li {
  position: relative;
  padding-left: 18px;
  color: var(--c-text-gray);
  font-size: 0.82rem;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-turquoise);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--c-turquoise-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.card-link::after {
  content: "↗";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translate(3px, -3px);
}

.service-card-cta {
  justify-content: center;
  background: linear-gradient(145deg, var(--c-dark-blue), #0A637D);
}

.service-card-cta h3,
.service-card-cta .card-lead {
  color: var(--c-white);
}

.service-card-cta .card-lead {
  color: rgba(255, 255, 255, 0.78);
}

/* Drip section */
.drips {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-dark-blue), #075E79);
}

.drips-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(142, 216, 240, 0.17), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(25, 183, 197, 0.2), transparent 35%);
}

.section-head-light h2,
.section-head-light .section-sub {
  color: var(--c-white);
}

.section-head-light .eyebrow {
  color: var(--c-light-blue);
}

.section-head-light .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.drips-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.drips-head .section-head {
  margin: 0 auto;
  text-align: center;
}

.drips-row {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 40px;
}

.drips-photo {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #075E79;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.drips-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/drip-pic.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.15);
  transform: scale(1.15);
}

.drips-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.drip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.drip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.drip-card-hero {
  background: linear-gradient(145deg, #DFF7FC, #FFFFFF);
  border: 2px solid var(--c-light-blue);
}

.drip-price {
  display: block;
  color: var(--c-turquoise-dark);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}

.drip-card h3 {
  color: var(--c-dark-blue);
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.drip-card p {
  color: var(--c-text-gray);
  font-size: 0.86rem;
}

.drip-tag {
  align-self: center;
  margin-top: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--c-sky-blue);
  color: var(--c-turquoise-dark);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drip-note {
  max-width: 800px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-align: center;
}

.booking-panel {
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.booking-head {
  text-align: center;
  margin-bottom: 26px;
}

.booking-head h3 {
  color: var(--c-dark-blue);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.booking-head p {
  color: var(--c-text-gray);
  font-size: 0.88rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  color: var(--c-dark-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.field-optional {
  font-weight: 500;
  color: var(--c-text-gray);
}

.booking-field select,
.booking-field input,
.booking-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--c-light-gray);
  border-radius: 12px;
  background: var(--c-white);
  color: var(--c-dark-blue);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-field select:focus,
.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--c-turquoise);
  box-shadow: 0 0 0 3px rgba(25, 183, 197, 0.15);
}

.booking-field textarea {
  resize: vertical;
}

.booking-total {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--c-sky-blue);
  color: var(--c-turquoise-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.booking-lines {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.booking-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px 40px;
  min-width: 0;
  gap: 12px;
  align-items: end;
}

.booking-line:only-child .line-remove {
  display: none;
}

.booking-field .booking-field-grow,
.booking-field .booking-field-shrink {
  flex: none;
}

.line-remove {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--c-light-gray);
  color: var(--c-turquoise-dark);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.line-remove:hover {
  background: #f7d7da;
  color: #c0392b;
}

.line-remove svg {
  width: 16px;
  height: 16px;
}

.line-add {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 2px;
  padding: 10px 18px;
  border: 1px dashed var(--c-turquoise);
  border-radius: 12px;
  background: transparent;
  color: var(--c-turquoise-dark);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.line-add:hover {
  background: var(--c-sky-blue);
}

.booking-form .btn-full {
  grid-column: 1 / -1;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .booking-panel {
    padding: 26px 20px;
  }

  .booking-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .booking-line .booking-field-grow {
    grid-column: 1 / -1;
  }

  .line-remove {
    justify-self: end;
  }
}

/* Practitioner */
.practitioner {
  background: var(--c-white);
}

.practitioner-card {
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  gap: 35px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--c-sky-blue);
}

.avatar {
  display: grid;
  place-items: center;
  width: 155px;
  height: 155px;
  border: 8px solid var(--c-white);
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: var(--shadow-soft);
}

.avatar svg {
  width: 66px;
  height: 66px;
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.practitioner-copy h2 {
  margin-bottom: 8px;
  font-family: "Dancing Script", cursive;
  letter-spacing: normal;
}

.practitioner-copy .lead-inline {
  margin-bottom: 12px;
  font-weight: 800;
}

.practitioner-copy > p:not(.eyebrow):not(.lead-inline) {
  max-width: 780px;
  color: var(--c-text-gray);
  margin-bottom: 22px;
}

/* Contact */
.contact {
  background: var(--c-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.contact-card {
  padding: 30px 25px;
  border: 1px solid var(--c-light-gray);
  border-radius: var(--radius-md);
  background: var(--c-white);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--c-sky-blue);
  color: var(--c-turquoise-dark);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
}

.contact-card h2,
.contact-card h3 {
  color: var(--c-dark-blue);
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--c-text-gray);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--c-turquoise-dark);
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--c-dark-blue);
}

.contact-card a.contact-plain {
  color: inherit;
  font-weight: 700;
}

.contact-card a.contact-plain:hover {
  color: var(--c-dark-blue);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-card-hours {
  background: var(--c-sky-blue);
  border-color: rgba(7, 59, 92, 0.1);
}

.hours-list {
  list-style: none;
  margin: 0 0 12px;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
}

.hours-day + .hours-day {
  margin-top: 6px;
}

.hours-day span {
  font-weight: 700;
  color: var(--c-dark-blue);
}

.hours-day strong {
  color: var(--c-text-gray);
  font-weight: 700;
}

.hours-day.is-today {
  background: var(--c-dark-blue);
}

.hours-day.is-today span,
.hours-day.is-today strong {
  color: var(--c-white);
}

.hours-note {
  color: var(--c-text-gray);
  font-size: 0.78rem;
}

.map-wrap {
  overflow: hidden;
  min-height: 340px;
  border: 5px solid var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--c-light-gray);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.practice-line {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--c-light-gray);
  color: var(--c-text-gray);
  font-size: 0.78rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 65px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.footer-col h4 {
  color: var(--c-light-blue);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--c-light-blue);
}

.brand-light .brand-text small {
  color: var(--c-light-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--c-turquoise);
  color: var(--c-white);
  box-shadow: 0 8px 20px rgba(7, 59, 92, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.to-top:hover {
  transform: translateY(-3px);
  background: var(--c-turquoise-dark);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 85;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-turquoise);
  color: var(--c-white);
  box-shadow: 0 10px 25px rgba(25, 183, 197, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-float svg {
  width: 31px;
  height: 31px;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(25, 183, 197, 0.5);
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--c-turquoise-dark);
  box-shadow: 0 14px 32px rgba(25, 183, 197, 0.55);
}

.wa-float-bubble {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--c-white);
  color: var(--c-dark-blue);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(7, 59, 92, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-float-bubble::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--c-white);
}

.wa-float:hover .wa-float-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Reveal animation support */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout */
@media (max-width: 1050px) {
  .primary-nav {
    gap: 16px;
  }

  .hero-grid {
    gap: 35px;
  }

  .float-chip-a {
    left: -8%;
  }

  .float-chip-b {
    right: -8%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .section {
    padding: 72px 0;
  }

  .topbar-item-hide {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 0 0 18px 18px;
    background: var(--c-dark-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a:not(.btn) {
    padding: 12px 5px;
  }

  .primary-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding: 75px 0 105px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .hero-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .sun-card {
    width: min(100%, 420px);
  }

  .float-chip-a {
    left: -4%;
  }

  .float-chip-b {
    right: -4%;
  }

  .about-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .about-copy h2 {
    margin-inline: auto;
  }

  .drips-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .drips-head .section-head {
    text-align: center;
  }

  .drips-photo {
    justify-self: center;
    width: 320px;
    max-width: 100%;
  }

  .tick-list {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .services-grid,
  .drip-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practitioner-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 38px 28px;
  }

  .practitioner-copy {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 72px;
  }

  .site-header .brand-text strong,
  .site-footer .brand-text strong {
    font-size: 1.5rem;
  }

  .site-header .brand-text small,
  .site-footer .brand-text small {
    font-size: 0.9rem;
  }

.brand-mark {
    width: 37px;
    height: 37px;
  }

  .site-header .brand-logo,
  .site-footer .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-text-wrap {
    min-width: 0;
  }

  .brand-slogan {
    white-space: normal;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .hero {
    padding-top: 55px;
    padding-bottom: 95px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }

  .sun-card {
    width: min(100%, 340px);
  }

  .float-chip {
    max-width: 175px;
    padding: 9px 10px;
  }

  .float-chip-a {
    left: -3%;
    top: 6%;
  }

  .float-chip-b {
    right: -3%;
    bottom: 6%;
  }

  .float-chip strong {
    font-size: 0.68rem;
  }

  .float-chip small {
    font-size: 0.6rem;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2,
  .about-copy h2,
  .practitioner-copy h2 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .drip-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .drip-card,
  .contact-card {
    padding: 25px;
  }

  .practitioner-card {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-bottom-inner {
    gap: 10px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 280px;
  }

  .practice-line {
    line-height: 1.8;
  }

  .to-top {
    right: 15px;
    bottom: 15px;
  }

  .wa-float {
    right: 15px;
    bottom: 86px;
    width: 52px;
    height: 52px;
  }

  .service-card-cta .btn {
    animation: call-pulse 1.8s ease-in-out infinite;
  }

  @keyframes call-pulse {
    0%,
    100% {
      box-shadow: 0 8px 18px rgba(25, 183, 197, 0.2);
    }
    50% {
      box-shadow: 0 0 0 12px rgba(25, 183, 197, 0.22), 0 8px 18px rgba(25, 183, 197, 0.45);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   Multi-page architecture additions
   (SEO upgrade � preserves existing brand styles)
   ========================================================= */

/* Smaller desktop navigation to fit extra links */
@media (max-width: 1260px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a:not(.btn) {
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 0.78rem;
  }
}

/* Inner-page hero (brand-consistent, same gradient as homepage hero) */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 100px;
  background:
    radial-gradient(circle at 88% 15%, rgba(142, 216, 240, 0.25), transparent 28%),
    linear-gradient(135deg, var(--c-dark-blue) 0%, #0A5576 58%, #087F91 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.page-hero-copy {
  max-width: 700px;
}

.page-hero-copy .eyebrow {
  color: var(--c-light-blue);
}

.page-hero h1 {
  color: var(--c-white);
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.page-hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-visual {
  display: grid;
  place-items: center;
}

.page-hero-badge {
  display: grid;
  place-items: center;
  width: min(100%, 300px);
  aspect-ratio: 1;
  padding: 22px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

.page-hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.page-hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  line-height: 0;
}

.page-hero-wave svg {
  width: 100%;
  height: 70px;
}

/* Breadcrumbs (inner pages) */
.breadcrumb {
  margin-bottom: 22px;
  color: var(--c-light-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "�";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: var(--c-light-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--c-white);
}

.breadcrumb [aria-current="page"] {
  color: var(--c-turquoise);
  text-decoration: none;
}

/* Two-column content grids for inner pages */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

/* Panels re-use the same card language as the rest of the site */
.panel {
  padding: 30px 28px;
  border: 1px solid var(--c-light-gray);
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: var(--shadow-card);
}

.panel h2 {
  color: var(--c-dark-blue);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.panel h3 {
  color: var(--c-dark-blue);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.panel p {
  color: var(--c-text-gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel .dot-list {
  margin-bottom: 0;
}

.panel-accent {
  background: var(--c-sky-blue);
  border-color: rgba(7, 59, 92, 0.1);
}

/* Prose blocks for informational pages */
.prose {
  color: var(--c-text-gray);
}

.prose > * + * {
  margin-top: 16px;
}

.prose h2 {
  color: var(--c-dark-blue);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.prose h3 {
  color: var(--c-dark-blue);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.prose p {
  font-size: 0.95rem;
}

.prose ul {
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.prose ul li::before {
  content: "�";
  position: absolute;
  left: 4px;
  color: var(--c-turquoise);
  font-weight: 900;
}

/* Ordered "what to expect" list */
.expect-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.expect-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 58px;
  border: 1px solid var(--c-light-gray);
  border-radius: var(--radius-md);
  background: var(--c-white);
  color: var(--c-text-gray);
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
}

.expect-list li::before {
  content: counter(step);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-sky-blue);
  color: var(--c-turquoise-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.expect-list li strong {
  color: var(--c-dark-blue);
}

/* CTA band used at the bottom of inner pages */
.cta-band {
  padding: 52px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--c-dark-blue), #0A637D);
  color: var(--c-white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  color: var(--c-white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

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

/* Booking panel wrapper for the IV page */
.booking-wrap {
  width: 100%;
  min-width: 0;
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 850px) {
  .page-hero {
    padding: 60px 0 90px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .page-hero h1,
  .page-hero-lead {
    margin-inline: auto;
  }

  .page-hero-actions,
  .breadcrumb {
    justify-content: center;
  }

  .breadcrumb li {
    justify-content: center;
  }

  .page-hero-badge {
    width: min(100%, 220px);
    padding: 16px;
  }

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

@media (max-width: 560px) {
  .cta-band {
    padding: 40px 24px;
  }

  .page-hero {
    padding: 52px 0 84px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 850px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

.section-alt {
  background: var(--c-off-white);
}

.hours-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 26px 24px;
  border: 1px solid var(--c-light-gray);
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: var(--shadow-card);
}

.hours-day strong {
  color: var(--c-text-gray);
  font-weight: 700;
}

.hours-closed strong {
  color: var(--c-turquoise);
}

.review-cta {
  margin-top: 28px;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: var(--c-sky-blue);
  text-align: center;
}

.review-cta p {
  color: var(--c-dark-blue);
  font-weight: 700;
  margin-bottom: 14px;
}
