*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}
:where(p, ul, ol) + :where(p, ul, ol) {
  margin-top: 1rem;
}

/* TYPOGRAPHY */
html {
  font-size: 100%;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h1 {
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

h3 {
  font-size: clamp(1.12rem, 1.3vw, 1.45rem);
}

p,
li {
  color: var(--muted);
}

p {
  font-size: 1rem;
}

/* THEME */
:root {
  --brand-950: #082419;
  --brand-900: #123a2b;
  --brand-800: #174733;
  --brand-700: #236b51;
  --brand-600: #2b7a5c;
  --brand-500: #3a8c6c;
  --brand-100: #e8f5ee;
  --brand-50: #f4fbf7;

  --gold: #d7ad63;
  --gold-soft: #fff5e3;

  --bg: #ffffff;
  --surface: #ffffff;
  --soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;

  --footer-bg: #0b1220;
  --footer-text: #e5e7eb;

  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.35rem;
  --radius-xl: 1.8rem;
  --radius-xxl: 2.25rem;

  --shadow-sm:
    0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 14px 42px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 28px 80px rgba(16, 24, 40, 0.15);

  --container-max: 1200px;
}

/* About Page Root & Typography */
:root {
  --radius-1: 0.375rem;
  --radius-2: 0.75rem;
  --radius-3: 1.25rem;
  --shadow-1: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
  --shadow-2: 0 12px 40px rgba(16, 24, 40, 0.12);
}

body.about-page h1,
body.about-page h2,
body.about-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.about-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.about-page h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.about-page h3 {
  font-size: clamp(1.25rem, 1vw + 0.5rem, 1.5rem);
  font-weight: 700;
}
body.about-page p,
body.about-page li {
  color: var(--muted);
}

body.about-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
  text-align: center;
}
body.about-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.about-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.about-page .btn-primary:active {
  transform: translateY(1px);
}
body.about-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.about-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}
body.about-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
body.about-page .nav-link {
  font-weight: 500;
}
body.about-page .nav-link[aria-current="page"] {
  font-weight: 600;
}

/* Get in touch page Root and typography */

:root {
  --chip-bg: color-mix(in oklab, var(--brand-600) 9%, #fff);
  --chip-stroke: color-mix(in oklab, var(--brand-600) 24%, #fff);
}

body.get-in-touch-page h1,
body.get-in-touch-page h2 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.get-in-touch-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.8rem);
}
body.get-in-touch-page h2 {
  font-size: clamp(1.25rem, 1vw + 0.6rem, 1.6rem);
}
/* body.get-in-touch-page p,
body.get-in-touch-page li {
  color: var(--muted);
} */
.tiny {
  font-size: 0.925rem;
}
.muted {
  color: var(--muted);
}

body.get-in-touch-page .container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

body.get-in-touch-page .nav-link {
  font-weight: 500;
}
/* body.get-in-touch-page .nav-link[aria-current="page"] {
  font-weight: 600;
} */

body.get-in-touch-page .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 0.6rem;
}

/* Testimonial page root and typography */

body.treatment-page h1,
body.treatment-page h2,
body.treatment-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.treatment-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.treatment-page h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.treatment-page h3 {
  font-size: clamp(1.15rem, 1vw + 0.5rem, 1.35rem);
  font-weight: 800;
}
body.treatment-page p,
body.treatment-page li {
  color: var(--muted);
}

body.treatment-page .btn-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

body.treatment-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
}
body.treatment-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.treatment-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.treatment-page .btn-primary:active {
  transform: translateY(1px);
}

body.treatment-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.treatment-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}

/* Treatment Inner Page root & typography */

body.treatment-inner-page h1,
body.treatment-inner-page h2,
body.treatment-inner-page h3 {
  line-height: 1.2;
  letter-spacing: -0.015em;
}
body.treatment-inner-page h1 {
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  font-weight: 850;
}
body.treatment-inner-page h2 {
  font-size: 1.25rem;
  font-weight: 800;
}
body.treatment-inner-page h3 {
  font-size: 1.02rem;
  font-weight: 800;
}
body.treatment-inner-page p,
li {
  color: var(--muted);
}

body.treatment-inner-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
  text-align: center;
  white-space: nowrap;
}
body.treatment-inner-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.treatment-inner-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.treatment-inner-page .btn-primary:active {
  transform: translateY(1px);
}

body.treatment-inner-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.treatment-inner-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}

body.treatment-inner-page .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--border) 80%, transparent);
}
body.treatment-inner-page .btn-ghost:hover {
  background: color-mix(in oklab, var(--border) 25%, #fff);
}

body.treatment-inner-page .ed-full {
  width: 100%;
}

/* Treatment inner page type 2 */

:root {
  --brand-400: #5aa184;
}

body.treatment-inner-page-type-2 h1,
body.treatment-inner-page-type-2 h2,
body.treatment-inner-page-type-2 h3,
body.treatment-inner-page-type-2 h4 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.treatment-inner-page-type-2 h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.treatment-inner-page-type-2 h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.treatment-inner-page-type-2 h3 {
  font-size: clamp(1.25rem, 1vw + 0.5rem, 1.5rem);
  font-weight: 700;
}
body.treatment-inner-page-type-2 h4 {
  font-size: clamp(1.05rem, 0.8vw + 0.6rem, 1.2rem);
  font-weight: 700;
}
body.treatment-inner-page-type-2 p,
body.treatment-inner-page-type-2 li {
  color: var(--muted);
}
.tiny {
  font-size: 0.925rem;
}
.muted {
  color: var(--muted);
}
.mt {
  margin-top: 0.75rem;
}

body.treatment-inner-page-type-2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
}
body.treatment-inner-page-type-2 .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.treatment-inner-page-type-2 .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.treatment-inner-page-type-2 .btn-primary:active {
  transform: translateY(1px);
}
body.treatment-inner-page-type-2 .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.treatment-inner-page-type-2 .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}

body.treatment-inner-page-type-2 .site-footer {
  margin-top: clamp(2rem, 6vw, 3rem);
  /* padding-top: 0px; */
}

/* Treatment inner page type 3 */

body.treatment-inner-page-type-3 h1,
body.treatment-inner-page-type-3 h2,
body.treatment-inner-page-type-3 h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.treatment-inner-page-type-3 h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.treatment-inner-page-type-3 h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.treatment-inner-page-type-3 h3 {
  font-size: clamp(1.15rem, 1vw + 0.4rem, 1.4rem);
  font-weight: 700;
}
body.treatment-inner-page-type-3 p,
body.treatment-inner-page-type-3 li {
  color: var(--muted);
}

body.treatment-inner-page-type-3 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.05s ease;
}
body.treatment-inner-page-type-3 .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.treatment-inner-page-type-3 .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.treatment-inner-page-type-3 .btn-primary:active {
  transform: translateY(1px);
}
body.treatment-inner-page-type-3 .btn-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

/* Private consultation page */

body.private-consultation-page h1,
body.private-consultation-page h2,
body.private-consultation-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.private-consultation-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.private-consultation-page h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.private-consultation-page h3 {
  font-size: clamp(1.25rem, 1vw + 0.5rem, 1.5rem);
  font-weight: 700;
}
.muted {
  color: var(--muted);
}

body.private-consultation-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.05s;
  text-align: center;
}
body.private-consultation-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.private-consultation-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.private-consultation-page .btn-primary:active {
  transform: translateY(1px);
}
body.private-consultation-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.private-consultation-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}
body.private-consultation-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

/* Sick Notes Page */

body.sick-notes-page h1,
body.sick-notes-page h2,
body.sick-notes-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}

body.sick-notes-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.sick-notes-page h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.sick-notes-page h3 {
  font-size: clamp(1.25rem, 1vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

body.sick-notes-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.05s;
  text-align: center;
  cursor: pointer;
}

body.sick-notes-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}

body.sick-notes-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}

body.sick-notes-page .btn-primary:active {
  transform: translateY(1px);
}

body.sick-notes-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}

body.sick-notes-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}

body.sick-notes-page .btn-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Privacy Policy Page CSS */

body.cms-page h1,
body.cms-page h2,
body.cms-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.cms-page h1 {
  font-size: clamp(2rem, 2.2vw + 1rem, 2.6rem);
}
body.cms-page h2 {
  font-size: clamp(1.35rem, 1vw + 0.6rem, 1.8rem);
  font-weight: 700;
}
body.cms-page h3 {
  font-size: clamp(1.1rem, 0.8vw + 0.45rem, 1.3rem);
  font-weight: 700;
}
body.cms-page p,
body.cms-page li {
  color: var(--muted);
}
body.cms-page .lead {
  color: var(--text);
}

/* Delivery Page CSS */

body.delivery-page h1,
body.delivery-page h2,
body.delivery-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body.delivery-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.delivery-page h2 {
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
}
body.delivery-page h3 {
  font-size: clamp(1.15rem, 1vw + 0.4rem, 1.4rem);
  font-weight: 700;
}
body.delivery-page p,
body.delivery-page li {
  color: var(--muted);
}

body.delivery-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.05s ease;
}
body.delivery-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.delivery-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.delivery-page .btn-primary:active {
  transform: translateY(1px);
}
body.delivery-page .btn-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

/* Checkout Page CSS */

body.checkout-page h1,
body.checkout-page h2,
body.checkout-page h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
}

body.checkout-page h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.5rem);
}

body.checkout-page h2 {
  font-size: clamp(1.5rem, 1.5vw+0.75rem, 2rem);
  font-weight: 700;
}
body.checkout-page h3 {
  font-size: clamp(1.25rem, 1vw+0.5rem, 1.5rem);
  font-weight: 700;
}
body.checkout-page p,
body.checkout-page li {
  color: var(--muted);
}

body.checkout-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
  text-align: center;
}
body.checkout-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.checkout-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.checkout-page .btn-primary:active {
  transform: translateY(1px);
}
body.checkout-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.checkout-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}
body.checkout-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

/* Coming Soon Page */

body.coming-soon-page h1,
body.coming-soon-page h2 {
  line-height: 1.15;
  letter-spacing: -0.015em;
}
body.coming-soon-page h1 {
  font-weight: 800;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
body.coming-soon-page h2 {
  font-weight: 800;
  font-size: 1.1rem;
}
body.coming-soon-page p {
  color: var(--muted);
}
body.coming-soon-page a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
body.coming-soon-page a:hover {
  text-decoration-thickness: 2px;
}

body.coming-soon-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
  text-decoration: none;
}
body.coming-soon-page .btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-1);
}
body.coming-soon-page .btn-primary:hover {
  background: color-mix(in oklab, var(--brand-600) 85%, black);
}
body.coming-soon-page .btn-primary:active {
  transform: translateY(1px);
}

body.coming-soon-page .btn-outline {
  background: #fff;
  color: var(--brand-600);
  border: 1px solid color-mix(in oklab, var(--brand-600) 70%, #fff);
  box-shadow: var(--shadow-1);
}
body.coming-soon-page .btn-outline:hover {
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
}

body.coming-soon-page .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--border) 90%, transparent);
}
body.coming-soon-page .btn-ghost:hover {
  background: color-mix(in oklab, var(--border) 25%, #fff);
}

/* UTILITIES */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  padding: 0.6rem 0.85rem;
  background: #fff;
  border: 2px solid var(--brand-600);
  border-radius: 0.65rem;
  z-index: 9999;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand-600);
}

.eyebrow-light {
  color: #dff7eb;
}

.eyebrow-light::before {
  background: #dff7eb;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
  font-weight: 850;
  border-radius: 999px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.08s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 14px 30px rgba(43, 122, 92, 0.24);
}

.btn-primary:hover {
  background: var(--brand-700);
  box-shadow: 0 18px 38px rgba(43, 122, 92, 0.3);
}

.btn-outline {
  background: #fff;
  color: var(--brand-700);
  border-color: rgba(43, 122, 92, 0.22);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--brand-50);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-light {
  background: #fff;
  color: var(--brand-800);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  background: #f8fafc;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Theme colour variables used by both the spotlight and each treatment card */
.theme-green {
  --theme-a: #236b51;
  --theme-b: #7bc3a2;
  --theme-soft: #e8f5ee;
  --theme-rgb: 43, 122, 92;
}
.theme-blue {
  --theme-a: #1e5b8f;
  --theme-b: #73b7e7;
  --theme-soft: #eaf4fc;
  --theme-rgb: 30, 91, 143;
}
.theme-teal {
  --theme-a: #14756f;
  --theme-b: #79d6c8;
  --theme-soft: #e8fbf7;
  --theme-rgb: 20, 117, 111;
}
.theme-rose {
  --theme-a: #9f4562;
  --theme-b: #efa8bb;
  --theme-soft: #fff0f4;
  --theme-rgb: 159, 69, 98;
}
.theme-gold {
  --theme-a: #a36d1c;
  --theme-b: #e4bc72;
  --theme-soft: #fff6e6;
  --theme-rgb: 163, 109, 28;
}
.theme-pink {
  --theme-a: #9b4c80;
  --theme-b: #efa7d7;
  --theme-soft: #fff0fa;
  --theme-rgb: 155, 76, 128;
}
.theme-indigo {
  --theme-a: #4b4b9f;
  --theme-b: #a6a7f2;
  --theme-soft: #f0f0ff;
  --theme-rgb: 75, 75, 159;
}
.theme-mint {
  --theme-a: #2b7a5c;
  --theme-b: #a7e5d1;
  --theme-soft: #effcf7;
  --theme-rgb: 43, 122, 92;
}
.theme-cyan {
  --theme-a: #16728a;
  --theme-b: #91dceb;
  --theme-soft: #effbfe;
  --theme-rgb: 22, 114, 138;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
