/* ============================================
   PURE TREATMENT ROOMS — Design System
   Matched to brand: soft sky-blue logo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* --- Tokens --- */
:root {
  /* Brand palette — derived from logo blue #6AAFE6 */
  --color-brand: #6AAFE6;
  --color-brand-dark: #4A8EC4;
  --color-brand-deeper: #3A7BB0;
  --color-brand-light: #8FC5EE;
  --color-brand-pale: #D6EAFA;
  --color-brand-ghost: #EDF6FD;

  /* Neutrals */
  --color-dark: #1E2A38;
  --color-dark-soft: #2C3E50;
  --color-text: #334155;
  --color-text-light: #64748B;
  --color-border: #E2E8F0;
  --color-light: #F8FAFC;
  --color-white: #FFFFFF;

  /* Accent */
  --color-accent: #E8976B;
  --color-accent-dark: #D47A4B;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Sizing */
  --max-width: 1200px;
  --header-height: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 42, 56, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 56, 0.08);
  --shadow-lg: 0 8px 32px rgba(30, 42, 56, 0.12);
  --shadow-card: 0 2px 8px rgba(30, 42, 56, 0.05);
  --shadow-brand: 0 4px 20px rgba(106, 175, 230, 0.2);

  /* Motion */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1em;
}

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-2xl) 0;
}

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

  .section {
    padding: var(--space-xl) 0;
  }
}

.section--alt {
  background-color: var(--color-light);
}

.section--brand {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-top: var(--space-sm);
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo img {
  height: 180px;
  width: auto;
}

.header__logo-text {
  display: none;
  font-family: 'Raleway', var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-brand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__logo-text span {
  display: block;
  font-size: 0.68rem;
  font-family: 'Raleway', var(--font-body);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: -2px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-md);
}

/* Desktop: nav links on left and right of centered logo */
.header__nav-left,
.header__nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__nav-left {
  flex: 1;
  justify-content: flex-end;
  padding-right: var(--space-sm);
}

.header__nav-right {
  flex: 1;
  justify-content: flex-start;
  padding-left: var(--space-sm);
}

.header__nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a.active {
  color: var(--color-brand-dark);
  font-weight: 500;
}

.header__nav-logo {
  display: none;
}

.header__cta {
  background-color: var(--color-brand) !important;
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

.header__cta::after {
  display: none !important;
}

.header__cta:hover {
  background-color: var(--color-brand-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

/* Nav logo - hidden on desktop, shown above menu on mobile */
.header__nav-logo {
  display: none;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition-base);
  border-radius: 2px;
}

/* Desktop: nav split with links on either side of logo */
@media (min-width: 769px) {
  .header__inner {
    justify-content: stretch;
  }

  .header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 1;
  }

  .header__nav-left,
  .header__nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }

  .header__nav-left {
    flex: 1;
    justify-content: flex-end;
  }

  .header__nav-spacer {
    flex: 0 0 200px;
  }

  .header__nav-right {
    flex: 1;
    justify-content: flex-start;
  }
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-lg);
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    transition: right var(--transition-base);
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav-logo::after {
    display: none !important;
  }

  .header__nav-logo img {
    height: 110px;
    width: auto;
  }

  .header__nav-logo .header__logo-text {
    display: none;
  }

  .header__nav a:not(.header__nav-logo) {
    font-size: 1.25rem;
  }

  .header__nav-spacer {
    display: none;
  }

  .header__nav-left,
  .header__nav-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-brand);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

.btn--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
}

.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 151, 107, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--white:hover {
  background: var(--color-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 16px 40px;
  font-size: 0.88rem;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.76rem;
}

/* ============================================
   HERO / GALLERY HERO
   ============================================ */
.gallery-hero {
  margin-top: var(--header-height);
  position: relative;
}

.gallery-hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 560px;
}

.gallery-hero__main {
  position: relative;
  overflow: hidden;
}

.gallery-hero__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 42, 56, 0.65) 0%, rgba(30, 42, 56, 0.15) 75%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
}

.gallery-hero__text {
  max-width: 560px;
}

.gallery-hero__text .label {
  color: var(--color-brand-light);
  margin-bottom: var(--space-sm);
}

.gallery-hero__text h1 {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: var(--space-xs);
}

.gallery-hero__text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.gallery-hero__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.gallery-hero__thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-hero__thumb:hover img {
  transform: scale(1.06);
}

.gallery-hero__thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-hero__main {
    min-height: 320px;
  }

  .gallery-hero__side {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    height: 110px;
  }

  .gallery-hero__overlay {
    padding: var(--space-md);
  }
}

/* ============================================
   INTERACTIVE BUSINESS SHOWCASE
   ============================================ */
.showcase {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(106, 175, 230, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero variant — used when showcase IS the hero */
.showcase--hero {
  margin-top: var(--header-height);
}

.showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.showcase__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}

.showcase__logo {
  height: 72px;
  width: auto;
  margin: 0 auto var(--space-md);
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.showcase .container {
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.showcase__heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.showcase__heading h1 {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.showcase__heading .label {
  color: var(--color-brand-light);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.showcase__heading h2 {
  color: var(--color-white);
  font-weight: 300;
}

.showcase__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.showcase__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 14px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.showcase__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.showcase__card.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Dim non-selected cards */
.showcase__grid:has(.showcase__card.active) .showcase__card:not(.active) {
  opacity: 0.4;
  filter: grayscale(40%);
  transform: scale(0.98);
}



.showcase__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
  box-shadow: 0 2px 10px rgba(106, 175, 230, 0.3);
  transition: all 0.35s var(--ease-out);
}

.showcase__card:hover .showcase__card-icon,
.showcase__card.active .showcase__card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(106, 175, 230, 0.4);
}

.showcase__card-icon svg {
  width: 20px;
  height: 20px;
}

/* Photo-based card (James) */
.showcase__card-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(106, 175, 230, 0.4);
  box-shadow: 0 2px 10px rgba(106, 175, 230, 0.3);
  transition: all 0.35s var(--ease-out);
}

.showcase__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__card:hover .showcase__card-photo,
.showcase__card.active .showcase__card-photo {
  transform: scale(1.1);
  border-color: var(--color-brand);
  box-shadow: 0 4px 16px rgba(106, 175, 230, 0.4);
}

.showcase__card-name {
  order: 2;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.showcase__card-sub {
  order: 3;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.4;
  margin-top: -4px;
}

/* Card visual asset wrappers */
.showcase__card-icon,
.showcase__card-photo,
.showcase__card-logo {
  order: 1;
}

.showcase__card-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.35s var(--ease-out);
  padding: 4px;
}

.showcase__card:hover .showcase__card-logo,
.showcase__card.active .showcase__card-logo {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(106, 175, 230, 0.3);
}

.showcase__card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dark logo variant (inverts to show on white circle) */
.showcase__card--dark-logo .showcase__card-logo {
  background: #1a1a2e;
}

.showcase__card--dark-logo .showcase__card-logo img {
  filter: brightness(1.5) contrast(1.1);
}

.showcase__card-logo--cover {
  padding: 0;
}

.showcase__card-logo--cover img {
  object-fit: cover;
}

.showcase__card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  background: var(--color-brand-ghost);
  border: 1px solid rgba(106, 175, 230, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}



/* Expanding detail panel */
/* Sticky side detail panel */
.showcase__detail {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  opacity: 0;
  transition: opacity 0.4s;
}

.showcase__detail.active {
  opacity: 1;
}

.showcase__detail-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 12px 24px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  animation: detailFadeIn 0.4s var(--ease-out);
}

@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase__detail-text {
  grid-column: 1;
  grid-row: 1;
  padding-right: var(--space-xl);
}

.showcase__detail-room {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 6px;
}

.showcase__detail-title {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.showcase__detail-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 600px;
}

.showcase__detail-desc-wrapper {
  position: relative;
}

.showcase__detail-desc {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  font-family: var(--font-body);
}

.showcase__detail-desc--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  /* Less margin since button is below */
}

.showcase__read-more {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-brand);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase__read-more:hover {
  opacity: 0.8;
}

.showcase__detail-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.meta-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-family: var(--font-body);
}

.meta-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

/* Practitioner profile cards in Skin & Laser detail */
.showcase__practitioners {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 4px;
  width: 100%;
}

.showcase__practitioners-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 8px;
}

.showcase__practitioner-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.showcase__practitioner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.showcase__practitioner-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(106, 175, 230, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.showcase__practitioner-card__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.showcase__practitioner-card__profile--bio:hover {
  opacity: 0.9;
}

.showcase__practitioner-card__image {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__practitioner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.showcase__practitioner-card__image--photo img {
  object-fit: cover;
  padding: 0;
}

.showcase__practitioner-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.showcase__practitioner-card__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.2;
}

.showcase__practitioner-card__role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.showcase__practitioner-card__actions {
  display: flex;
  gap: 6px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.showcase__practitioner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.showcase__practitioner-btn svg {
  flex-shrink: 0;
  order: -1;
}

.showcase__practitioner-btn--call {
  background: var(--color-brand);
  color: white;
  border: 1px solid transparent;
}

.showcase__practitioner-btn--call:hover {
  background: var(--color-brand-dark, #2563a8);
  color: white;
  transform: translateY(-1px);
}

.showcase__practitioner-btn--message {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.showcase__practitioner-btn--message:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

@media (max-width: 600px) {
  .showcase__practitioner-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
  }

  .showcase__practitioner-card__profile {
    flex-direction: row;
    flex: 1;
    text-align: left;
  }

  .showcase__practitioner-card__info {
    align-items: flex-start;
    text-align: left;
  }

  .showcase__practitioner-card__actions {
    width: auto;
    flex: 0 0 auto;
  }

  .showcase__practitioner-btn {
    flex: none;
  }
}

/* Contact for bookings note (non-button text) */
.showcase__contact-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.showcase__contact-note-icon {
  flex-shrink: 0;
  color: rgba(106, 175, 230, 0.8);
}

.showcase__contact-note-text {
  line-height: 1.3;
}

.showcase__detail-visual {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 6px;
  /* Default padded area for logos */
}

/* Specific overrides based on the type of visual asset extracted */
.showcase__detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase__detail-visual svg {
  width: 38px;
  height: 38px;
  color: var(--color-brand);
}

/* If it was a photo, make it cover and remove padding */
.showcase__detail-visual--photo {
  padding: 0;
  border: 2px solid rgba(106, 175, 230, 0.4);
}

.showcase__detail-visual--photo img {
  object-fit: cover;
}

/* Dark logo variant */
.showcase__detail-visual--dark-logo {
  background: #1a1a2e;
}

.showcase__detail-visual--dark-logo img {
  filter: brightness(1.5) contrast(1.1);
}

.showcase__detail-visual--cover {
  padding: 0;
}

.showcase__detail-visual--cover img {
  object-fit: cover;
}

.showcase__detail-actions {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: stretch;
  align-self: end;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}

.showcase__detail-socials-group,
.showcase__detail-btns-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.showcase__price-list-btn {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase__price-list-btn:hover {
  background-color: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.showcase__price-list-btn svg {
  color: inherit;
}

/* Social / booking icons row */
.showcase__detail-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.showcase__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.showcase__social-btn svg {
  width: 16px;
  height: 16px;
}

.showcase__social-btn:hover {
  transform: translateY(-2px) scale(1.1);
}

/* Instagram gradient */
.showcase__social-btn--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.showcase__social-btn--instagram:hover {
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.4);
}

/* Facebook blue */
.showcase__social-btn--facebook {
  background: #1877F2;
}

.showcase__social-btn--facebook:hover {
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

/* Booking — pill shaped with label */
.showcase__social-btn--booking {
  width: auto;
  border-radius: 20px;
  padding: 0 14px 0 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.showcase__social-btn--booking span {
  line-height: 1;
}

.showcase__social-btn--booking:hover {
  box-shadow: 0 4px 14px rgba(232, 151, 107, 0.4);
}

@media (max-width: 1024px) {
  .showcase__layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .showcase__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .showcase__detail {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s;
  }

  .showcase__detail.active {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .showcase__heading .label {
    margin-top: 56px;
  }

  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .showcase__card {
    padding: 16px 10px 14px;
  }

  .showcase__card-name {
    font-size: 0.92rem;
  }

  .showcase__detail-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    text-align: left;
    /* Keep left aligned like desktop */
    gap: var(--space-sm) var(--space-md);
    padding: 20px;
    /* Slightly less padding for mobile */
    align-items: start;
  }

  /* Text takes remaining space on left */
  .showcase__detail-text {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
    justify-self: stretch;
  }

  /* Visual floats top right */
  .showcase__detail-visual {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    width: 64px;
    height: 64px;
    padding: 4px;
  }

  /* Actions span full width below */
  .showcase__detail-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin-top: 16px;
  }

  .showcase__detail-socials-group,
  .showcase__detail-btns-group {
    justify-content: center;
    width: 100%;
  }

  /* Ensure button group buttons stretch nicely */
  .showcase__detail-btns-group .btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }

  /* Reduce title sizes slightly for mobile */
  .showcase__detail-title {
    font-size: 1.5rem;
  }

  .showcase__detail-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* When the description gets long, make sure panel can expand */
  .showcase__detail.active {
    max-height: 1400px;
  }
}

@media (max-width: 480px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .showcase__card-icon {
    width: 36px;
    height: 36px;
  }

  .showcase__card-icon svg {
    width: 15px;
    height: 15px;
  }

  .showcase__card-name {
    font-size: 0.82rem;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-grid__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid__content h2 {
  margin-bottom: var(--space-md);
}

.about-grid__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

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

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat__text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ============================================
   NEWS / WHAT'S NEW
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-pale);
}

.news-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.news-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.news-card__link,
.news-card__read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-brand);
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color var(--transition-fast);
}

.news-card__link:hover,
.news-card__read-more:hover {
  color: var(--color-brand-dark);
}

/* News Modal */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.news-modal--open {
  opacity: 1;
  visibility: visible;
}

.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 56, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.news-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -8px 48px rgba(30, 42, 56, 0.2);
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 1;
}

.news-modal__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-top: 12px;
}

.news-modal--open .news-modal__panel {
  transform: translateY(0);
}

.news-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.news-modal__close:hover {
  background: var(--color-border);
  color: var(--color-dark);
}

.news-modal__content {
  padding: 72px var(--space-lg) calc(var(--space-xl) + env(safe-area-inset-bottom)) var(--space-lg);
}

.news-modal__header {
  margin-bottom: var(--space-md);
}

.news-modal__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

.news-modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-dark);
  margin: 0;
}

.news-modal__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 4px 0 0 0;
}

.news-modal__description {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.news-modal__providers {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.news-modal__providers-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-md);
}

.news-provider-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.news-provider-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

.news-provider-card:hover {
  border-color: var(--color-brand-pale);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  background: linear-gradient(135deg, var(--color-brand-ghost) 0%, var(--color-white) 100%);
}

.news-provider-card__image {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.news-provider-card__image--photo .news-provider-card__image img,
.news-provider-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-provider-card__image:not(.news-provider-card__image--photo) img {
  object-fit: contain;
  padding: 6px;
}

.news-provider-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.news-provider-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.news-provider-card__role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.news-provider-card__arrow {
  font-size: 1.2rem;
  color: var(--color-brand);
  transition: transform var(--transition-fast);
}

.news-provider-card:hover .news-provider-card__arrow {
  transform: translateX(4px);
}

/* Desktop: center modal as overlay */
@media (min-width: 769px) {
  .news-modal {
    align-items: center;
    padding: var(--space-lg);
  }

  .news-modal__panel {
    max-height: 85vh;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(30, 42, 56, 0.2);
    transform: translateY(20px) scale(0.98);
  }

  .news-modal--open .news-modal__panel {
    transform: translateY(0) scale(1);
  }

  .news-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .news-provider-card {
    flex-direction: column;
    text-align: center;
  }

  .news-provider-card__arrow {
    display: none;
  }

  .news-provider-card__image {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand);
  border-radius: 50%;
  color: var(--color-white);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-info__item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-info__item a {
  color: var(--color-brand);
  font-weight: 400;
}

.contact-info__item a:hover {
  color: var(--color-brand-dark);
  text-decoration: underline;
}

.contact-form {
  /* No box - aligns with left column content */
}

.contact-form h3 {
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-dark);
  background-color: var(--color-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(106, 175, 230, 0.1);
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.contact-map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--color-border);
  max-width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 0;
  display: block;
}

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

  .section {
    padding: var(--space-xl) 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    row-gap: var(--space-lg);
  }

  .contact-info {
    gap: var(--space-md);
  }

  .contact-info__item {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .contact-info__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .contact-info__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-info__item p,
  .contact-info__item a {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .contact-form {
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
  }

  .contact-form h3 {
    font-size: 1.25rem;
  }

  .contact-map {
    aspect-ratio: 4/3;
    min-height: 200px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-map iframe {
    min-height: 200px;
  }

  .hero--page {
    min-height: 35vh;
    padding-top: var(--header-height);
  }

  .hero--page .hero__content {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .container {
    padding: 0 16px;
  }

  .contact-grid {
    gap: var(--space-md);
  }

  .contact-info__item {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .contact-info__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
  }

  .contact-info__item > div {
    min-width: 0;
    flex: 1;
  }

  .contact-map {
    margin-top: var(--space-md);
    min-height: 180px;
    aspect-ratio: 4/3;
  }

  .contact-form {
    padding-top: var(--space-lg);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on focus in iOS */
  }

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

  .contact-form .btn {
    padding: 14px 24px;
    min-height: 48px;
  }

  .hero--page {
    min-height: 30vh;
  }
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.profile-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h1 {
  margin-bottom: var(--space-xs);
}

.profile-qualifications {
  font-size: 0.88rem;
  color: var(--color-brand);
  font-weight: 500;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.profile-info p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.85;
}

.profile-contact {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-item {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.service-item:hover {
  border-color: var(--color-brand-pale);
  box-shadow: var(--shadow-sm);
}

.service-item__dot {
  width: 8px;
  height: 8px;
  background: var(--color-brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-item span {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .profile-header {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* Inner page hero */
.hero--page {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero--page .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--page .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--page .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 42, 56, 0.6) 0%, rgba(30, 42, 56, 0.2) 70%);
  z-index: 1;
}

.hero--page .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.hero--page .hero__content .label {
  color: var(--color-brand-light);
  margin-bottom: var(--space-md);
  display: block;
}

.hero--page .hero__content h1 {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: var(--space-md);
}

.hero--page .hero__content p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtle top division */
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.6fr 1fr;
  gap: 60px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer__brand img {
  height: 84px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s;
}

.footer__brand:hover img {
  opacity: 1;
}

.footer__brand-text {
  display: none;
  font-family: 'Raleway', var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.footer__brand-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Raleway', var(--font-body);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.footer__info-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

.footer .label {
  color: var(--color-white);
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: block;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul.footer__practitioners-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.footer ul li {
  margin: 0;
}

.footer ul a,
.footer ul span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul a:hover {
  color: var(--color-brand-light);
  transform: translateX(4px);
}

.footer__bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    text-align: left;
  }

  /* 1. Brand (Full Width) */
  .footer__grid>div:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer__info-text {
    margin: 0 auto;
  }

  /* 2. Navigation (Left Col) */
  .footer__grid>div:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  /* 4. Contact (Right Col) */
  .footer__grid>div:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  /* 3. Practitioners (Full Width, 2-col inside) */
  .footer__grid>div:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: center;
  }

  .footer ul {
    align-items: flex-start;
  }

  .footer ul.footer__practitioners-list {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
  }

  .footer ul a:hover {
    transform: translateX(4px);
  }

  .footer__bottom {
    margin-top: 48px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-left {
  transform: translateX(-30px);
}

.fade-in-right {
  transform: translateX(30px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   PRICE LIST MODALS (Room 5)
   ============================================ */
.news-modal__panel--price-list {
  background: #ffffff;
  color: #333;
  max-width: 700px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #eaeaea;
}

.price-list-wrapper {
  padding: 10px;
}

.price-list__header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
}

.price-list__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px solid rgba(196, 164, 124, 0.4);
}

.price-list__logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  mix-blend-mode: multiply;
}

.price-list__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  color: #3A352F;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.price-list__items {
  display: flex;
  flex-direction: column;
}

.price-list__item {
  padding: 18px 20px;
  position: relative;
}

.price-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px solid rgba(196, 164, 124, 0.2);
}

.price-list__item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 6px;
}

.price-list__item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #2b2824;
  text-transform: uppercase;
  font-weight: 500;
}

.price-list__item-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #2b2824;
  font-weight: 400;
}

.price-list__item-desc {
  font-size: 0.85rem;
  color: #6a645d;
  line-height: 1.5;
}

.price-list-details {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.price-list-details li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 3px;
  display: flex;
  align-items: flex-start;
}

.price-list-details li::before {
  content: "•";
  color: #C4A47C;
  margin-right: 8px;
}

.price-list__footer {
  text-align: center;
  margin-top: 15px;
  padding-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #3A352F;
}