/* ============================================
   AESTHETICS BY SARAH WILLIAMS
   Main Stylesheet
   ============================================

   Contents:
   1. Reset & Variables
   2. Base & Typography
   3. Navbar
   4. Homepage: Hero
   5. Homepage: About
   6. Homepage: Treatments
   7. Homepage: Why Choose
   8. Homepage: Reviews
   9. Homepage: Accreditations
   10. Homepage: FAQ
   11. Homepage: CTA
   12. Footer
   13. Page Hero (shared)
   14. About Page
   15. Services Page
   16. Gallery Page
   17. Contact Page
   18. Book Page
   19. Holmfirth Page
   20. Legal Pages
   21. 404 Page
   22. Animations
   ============================================ */

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


/* ============================================
   1. RESET & VARIABLES
   ============================================ */

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

:root {
  --navy: #1f2a68;
  --ivory: #f7f5f2;
  --warm-grey: #ececec;
  --champagne: #d6c3a5;
  --dark-text: #1d1d1d;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}


/* ============================================
   2. BASE & TYPOGRAPHY
   ============================================ */

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}


/* ============================================
   3. NAVBAR
   ============================================ */

.sw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  transition: box-shadow 0.4s ease, transform 0.35s ease;
}

.sw-nav.nav-scrolled {
  box-shadow: 0 2px 20px rgba(31, 42, 104, 0.25);
}

.sw-nav.nav-hidden {
  transform: translateY(-100%);
}

.sw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 20px;
  transition: padding 0.3s ease;
}

/* Logo */
.sw-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.sw-nav__logo img {
  height: 90px;
  width: auto;
  transition: height 0.3s ease;
}

.sw-nav.nav-scrolled .sw-nav__logo img {
  height: 68px;
}

/* Desktop links */
.sw-nav__links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.sw-nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.sw-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}

.sw-nav__links a:hover {
  color: var(--champagne);
}

.sw-nav__links a:hover::after {
  width: 100%;
}

/* Services dropdown */
.sw-nav__dropdown {
  position: relative;
}

.sw-nav__dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sw-nav__dropdown-arrow {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.sw-nav__dropdown:hover .sw-nav__dropdown-arrow {
  transform: rotate(180deg);
}

.sw-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  min-width: 260px;
}

.sw-nav__dropdown:hover .sw-nav__dropdown-menu {
  display: block;
}

.sw-nav__dropdown-menu-inner {
  background: var(--navy);
  border: 1px solid rgba(247, 245, 242, 0.08);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 12px 40px rgba(31, 42, 104, 0.35);
}

.sw-nav__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(247, 245, 242, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.sw-nav__dropdown-menu a::after {
  display: none;
}

.sw-nav__dropdown-menu a:hover {
  color: var(--champagne);
  background: rgba(247, 245, 242, 0.04);
}

.sw-nav__dropdown-menu a.sw-nav__dropdown-all {
  border-top: 1px solid rgba(247, 245, 242, 0.06);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Desktop CTA */
.sw-nav__cta {
  display: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--champagne);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.sw-nav__cta:hover {
  background: #c9b393;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(214, 195, 165, 0.3);
}

/* Mobile phone icon */
.sw-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(214, 195, 165, 0.15);
  border: 1px solid rgba(214, 195, 165, 0.3);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.sw-nav__phone:hover,
.sw-nav__phone:active {
  background: rgba(214, 195, 165, 0.25);
  transform: scale(1.05);
}

.sw-nav__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--champagne);
}

/* Hamburger */
.sw-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.sw-nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.sw-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.sw-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.sw-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.sw-nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu overlay */
.sw-nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

.sw-nav__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* Nav links */
.sw-nav__mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sw-nav__mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 245, 242, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.3s ease,
              opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sw-nav__mobile-menu nav a::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14m-7-7l7 7-7 7' stroke='%23d6c3a5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.sw-nav__mobile-menu nav a:hover::after,
.sw-nav__mobile-menu nav a:active::after {
  opacity: 0.7;
}

.sw-nav__mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.sw-nav__mobile-menu.is-open nav a:nth-child(1) { transition-delay: 0.08s; }
.sw-nav__mobile-menu.is-open nav a:nth-child(2) { transition-delay: 0.13s; }
.sw-nav__mobile-menu.is-open nav a:nth-child(3) { transition-delay: 0.18s; }
.sw-nav__mobile-menu.is-open nav a:nth-child(4) { transition-delay: 0.23s; }
.sw-nav__mobile-menu.is-open nav a:nth-child(5) { transition-delay: 0.28s; }

.sw-nav__mobile-menu nav a:hover,
.sw-nav__mobile-menu nav a:active {
  color: var(--champagne);
}

/* Bottom section */
.sw-nav__mobile-bottom {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-nav__mobile-menu.is-open .sw-nav__mobile-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.sw-nav__mobile-cta {
  margin-top: 0;
}

.sw-nav__mobile-cta a {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--champagne);
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sw-nav__mobile-cta a:active {
  background: #c9b393;
}

.sw-nav__mobile-contact {
  margin-top: 16px;
}

.sw-nav__mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ivory);
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(247, 245, 242, 0.15);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.sw-nav__mobile-contact a:active {
  border-color: rgba(247, 245, 242, 0.3);
  background: rgba(247, 245, 242, 0.04);
}

.sw-nav__mobile-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--champagne);
  flex-shrink: 0;
}

.sw-nav__mobile-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 245, 242, 0.06);
}

.sw-nav__mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 245, 242, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sw-nav__mobile-social a:active {
  background: rgba(214, 195, 165, 0.15);
}

.sw-nav__mobile-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(247, 245, 242, 0.5);
}

/* Nav spacer */
.sw-nav-spacer {
  height: 98px;
}

/* Tablet nav */
@media (min-width: 768px) and (max-width: 991px) {
  .sw-nav__logo img {
    height: 96px;
  }

  .sw-nav.nav-scrolled .sw-nav__logo img {
    height: 72px;
  }

  .sw-nav-spacer {
    height: 104px;
  }

  .sw-nav__mobile-menu {
    padding: 140px 60px 48px;
    align-items: center;
  }

  .sw-nav__mobile-menu nav {
    max-width: 400px;
    width: 100%;
  }

  .sw-nav__mobile-bottom {
    max-width: 400px;
    width: 100%;
  }
}

/* Desktop nav */
@media (min-width: 992px) {
  .sw-nav__inner {
    padding: 2px 40px;
  }

  .sw-nav.nav-scrolled .sw-nav__inner {
    padding: 2px 40px;
  }

  .sw-nav__logo img {
    height: 100px;
  }

  .sw-nav.nav-scrolled .sw-nav__logo img {
    height: 76px;
  }

  .sw-nav__links {
    display: flex;
  }

  .sw-nav__cta {
    display: inline-block;
  }

  .sw-nav__hamburger,
  .sw-nav__phone,
  .sw-nav__mobile-actions {
    display: none;
  }

  .sw-nav-spacer {
    height: 104px;
  }
}


/* ============================================
   4. HOMEPAGE: HERO
   ============================================ */

.sw-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: var(--navy);
}

.sw-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sw-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.sw-hero__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 42, 104, 0.15) 0%,
    rgba(31, 42, 104, 0.3) 40%,
    rgba(31, 42, 104, 0.75) 70%,
    rgba(31, 42, 104, 0.92) 100%
  );
  z-index: 2;
}

/* Content */
.sw-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 24px 70px;
  max-width: 720px;
}

.sw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 195, 165, 0.12);
  border: 1px solid rgba(214, 195, 165, 0.25);
  border-radius: 40px;
  padding: 6px 14px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.sw-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  flex-shrink: 0;
}

.sw-hero__badge span {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  line-height: 1;
}

.sw-hero__headline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s 0.45s ease forwards;
}

.sw-hero__headline em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hero__sub {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247, 245, 242, 0.75);
  margin-bottom: 24px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s 0.6s ease forwards;
}

.sw-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s 0.75s ease forwards;
}

.sw-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--champagne);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.sw-hero__btn-primary:hover {
  background: #c9b393;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(214, 195, 165, 0.25);
}

.sw-hero__btn-primary svg {
  width: 16px;
  height: 16px;
  fill: var(--navy);
  flex-shrink: 0;
}

.sw-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(247, 245, 242, 0.25);
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sw-hero__btn-secondary:hover {
  background: rgba(247, 245, 242, 0.06);
  border-color: rgba(247, 245, 242, 0.4);
}

/* Trust strip */
.sw-hero__trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(31, 42, 104, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214, 195, 165, 0.1);
  opacity: 0;
  animation: fadeIn 0.7s 1s ease forwards;
}

.sw-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.sw-hero__trust-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
}

.sw-hero__trust-label {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.25;
}

.sw-hero__trust-divider {
  width: 1px;
  background: rgba(214, 195, 165, 0.2);
  align-self: stretch;
}

/* Tablet */
@media (min-width: 768px) {
  .sw-hero {
    justify-content: center;
    padding-top: 110px;
  }

  .sw-hero__content {
    padding: 0 60px 100px;
    max-width: 800px;
    margin-top: -40px;
  }

  .sw-hero__badge {
    padding: 8px 18px;
    margin-bottom: 24px;
  }

  .sw-hero__badge span {
    font-size: 0.72rem;
  }

  .sw-hero__headline {
    font-size: 3rem;
    margin-bottom: 18px;
  }

  .sw-hero__sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .sw-hero__actions {
    flex-direction: row;
    gap: 16px;
  }

  .sw-hero__btn-primary {
    font-size: 0.85rem;
    padding: 16px 32px;
  }

  .sw-hero__btn-secondary {
    font-size: 0.85rem;
    padding: 15px 32px;
  }

  .sw-hero__trust {
    gap: 36px;
    padding: 20px 40px;
  }

  .sw-hero__trust-num {
    font-size: 1.4rem;
  }

  .sw-hero__trust-label {
    font-size: 0.62rem;
  }
}

/* MacBook / small desktop */
@media (min-width: 1200px) and (max-width: 1599px) {
  .sw-hero__content {
    padding: 0 80px 100px;
    margin-top: 0;
  }

  .sw-hero__headline {
    font-size: 3rem;
  }

  .sw-hero__sub {
    font-size: 0.92rem;
  }

  .sw-hero__btn-primary {
    font-size: 0.8rem;
    padding: 14px 28px;
  }

  .sw-hero__btn-secondary {
    font-size: 0.8rem;
    padding: 13px 28px;
  }

  .sw-hero__trust {
    gap: 40px;
    padding: 22px 60px;
  }

  .sw-hero__trust-num {
    font-size: 1.5rem;
  }

  .sw-hero__trust-label {
    font-size: 0.65rem;
  }
}

/* Large monitor */
@media (min-width: 1600px) {
  .sw-hero__content {
    padding: 0 80px 120px;
    margin-top: -40px;
  }

  .sw-hero__headline {
    font-size: 3.8rem;
  }

  .sw-hero__sub {
    font-size: 1.05rem;
  }

  .sw-hero__trust {
    gap: 48px;
    padding: 24px 60px;
  }

  .sw-hero__trust-num {
    font-size: 1.6rem;
  }

  .sw-hero__trust-label {
    font-size: 0.7rem;
  }
}


/* ============================================
   5. HOMEPAGE: ABOUT
   ============================================ */

.sw-about {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.sw-about__image-col {
  position: relative;
}

.sw-about__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 42, 104, 0.08);
}

.sw-about__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.sw-about__image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 60%;
  background: var(--champagne);
  border-radius: 0 4px 0 0;
}

/* Credential chips */
.sw-about__chips {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sw-about__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--navy);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.sw-about__chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
  flex-shrink: 0;
}

/* Text column */
.sw-about__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-about__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-about__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sw-about__heading em {
  font-style: italic;
  color: var(--champagne);
  white-space: nowrap;
}

.sw-about__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 16px;
}

.sw-about__text strong {
  font-weight: 500;
  color: var(--dark-text);
}

/* Value props grid */
.sw-about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.sw-about__value {
  padding: 0;
}

.sw-about__value-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.sw-about__value-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--champagne);
}

.sw-about__value-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.sw-about__value-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
  line-height: 1.5;
}

.sw-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-about__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-about__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

@media (min-width: 768px) {
  .sw-about {
    padding: 100px 40px;
  }

  .sw-about__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }

  .sw-about__image-col {
    position: sticky;
    top: 120px;
  }

  .sw-about__heading {
    font-size: 2.6rem;
  }
}

@media (min-width: 1200px) {
  .sw-about__inner {
    gap: 80px;
  }

  .sw-about__heading {
    font-size: 2.8rem;
  }
}


/* ============================================
   6. HOMEPAGE: TREATMENTS
   ============================================ */

.sw-treatments {
  background: var(--navy);
  padding: 64px 20px;
  overflow: hidden;
}

.sw-treatments__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sw-treatments__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-treatments__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-treatments__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-treatments__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-treatments__intro {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 245, 242, 0.6);
  margin-bottom: 40px;
  max-width: 560px;
}

.sw-treatments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.sw-treatments__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  text-decoration: none;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.sw-treatments__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sw-treatments__card:hover img {
  transform: scale(1.04);
}

.sw-treatments__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(31, 42, 104, 0.6) 65%,
    rgba(31, 42, 104, 0.92) 100%
  );
  transition: background 0.4s ease;
}

.sw-treatments__card:hover .sw-treatments__card-overlay {
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(31, 42, 104, 0.5) 55%,
    rgba(31, 42, 104, 0.88) 100%
  );
}

.sw-treatments__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.sw-treatments__card-category {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}

.sw-treatments__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}

.sw-treatments__card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(247, 245, 242, 0.65);
  margin-bottom: 16px;
}

.sw-treatments__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: gap 0.3s ease;
}

.sw-treatments__card:hover .sw-treatments__card-link {
  gap: 12px;
}

.sw-treatments__card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sw-treatments__cta-wrap {
  text-align: center;
}

.sw-treatments__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--champagne);
  padding: 15px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.sw-treatments__cta:hover {
  background: #c9b393;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(214, 195, 165, 0.2);
}

@media (min-width: 768px) {
  .sw-treatments {
    padding: 100px 40px;
  }

  .sw-treatments__heading {
    font-size: 2.6rem;
  }

  .sw-treatments__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sw-treatments__card {
    aspect-ratio: 3 / 4;
  }

  .sw-treatments__card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .sw-treatments__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sw-treatments__card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

@media (min-width: 1200px) {
  .sw-treatments__heading {
    font-size: 2.8rem;
  }
}


/* ============================================
   7. HOMEPAGE: WHY CHOOSE
   ============================================ */

.sw-why {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sw-why__header {
  text-align: center;
  margin-bottom: 40px;
}

.sw-why__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-why__label::before,
.sw-why__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-why__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sw-why__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-why__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
}

.sw-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.sw-why__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(31, 42, 104, 0.04);
  border: 1px solid rgba(31, 42, 104, 0.04);
}

.sw-why__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sw-why__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--champagne);
}

.sw-why__card-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.sw-why__card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.6);
}

/* Reassurance banner */
.sw-why__banner {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.sw-why__banner-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 8px;
}

.sw-why__banner-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sw-why__banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-why__banner-btn:hover {
  background: #cbb596;
  transform: translateY(-1px);
}

.sw-why__banner-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

@media (min-width: 768px) {
  .sw-why {
    padding: 100px 40px;
  }

  .sw-why__heading {
    font-size: 2.6rem;
  }

  .sw-why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sw-why__banner {
    padding: 48px 40px;
  }
}

@media (min-width: 1024px) {
  .sw-why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================
   8. HOMEPAGE: REVIEWS
   ============================================ */

.sw-reviews {
  background: var(--warm-grey);
  padding: 64px 20px;
  overflow: hidden;
}

.sw-reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sw-reviews__header {
  text-align: center;
  margin-bottom: 40px;
}

.sw-reviews__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-reviews__label::before,
.sw-reviews__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-reviews__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sw-reviews__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-reviews__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
}

/* Google rating summary */
.sw-reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(31, 42, 104, 0.04);
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.sw-reviews__rating:hover {
  box-shadow: 0 4px 20px rgba(31, 42, 104, 0.08);
}

.sw-reviews__rating-stars {
  display: flex;
  gap: 2px;
}

.sw-reviews__rating-stars svg {
  width: 18px;
  height: 18px;
}

.sw-reviews__rating-score {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.sw-reviews__rating-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
}

/* Review cards */
.sw-reviews__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sw-reviews__scroll::-webkit-scrollbar {
  display: none;
}

.sw-reviews__card {
  flex: 0 0 calc(100% - 16px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(31, 42, 104, 0.04);
  border: 1px solid rgba(31, 42, 104, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.sw-reviews__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.sw-reviews__card-stars svg {
  width: 16px;
  height: 16px;
}

.sw-reviews__card-quote {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.72);
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.sw-reviews__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(31, 42, 104, 0.06);
  padding-top: 16px;
}

.sw-reviews__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ivory);
  flex-shrink: 0;
}

.sw-reviews__card-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-text);
}

.sw-reviews__card-source {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.45);
}

/* Scroll indicators */
.sw-reviews__indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.sw-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 42, 104, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-reviews__dot.is-active {
  background: var(--navy);
  transform: scale(1.2);
}

/* Write a review */
.sw-reviews__write-review {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.sw-reviews__write-review a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 28px;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sw-reviews__write-review a:hover {
  background: var(--navy);
  color: var(--ivory);
}

.sw-reviews__write-review a svg {
  width: 16px;
  height: 16px;
}

/* Mobile: centre single review cards */
@media (max-width: 767px) {
  .sw-reviews__card {
    text-align: center;
  }

  .sw-reviews__card-stars {
    justify-content: center;
  }

  .sw-reviews__card-author {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .sw-reviews {
    padding: 100px 40px;
  }

  .sw-reviews__heading {
    font-size: 2.6rem;
  }

  .sw-reviews__card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .sw-reviews__card {
    flex: 0 0 calc(33.333% - 14px);
  }
}


/* ============================================
   9. HOMEPAGE: ACCREDITATIONS
   ============================================ */

.sw-accred {
  background: var(--navy);
  padding: 48px 20px;
}

.sw-accred__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sw-accred__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-accred__label::before,
.sw-accred__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(214, 195, 165, 0.4);
}

.sw-accred__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sw-accred__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sw-accred__logo-item img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sw-accred__logo-item:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.sw-accred__logo-text {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.5);
  line-height: 1.4;
  max-width: 180px;
  text-align: center;
}

@media (min-width: 768px) {
  .sw-accred {
    padding: 64px 40px;
  }

  .sw-accred__logos {
    gap: 64px;
  }

  .sw-accred__logo-item img {
    height: 88px;
    padding: 10px;
  }

  .sw-accred__logo-text {
    font-size: 0.74rem;
  }
}


/* ============================================
   10. HOMEPAGE: FAQ
   ============================================ */

.sw-faq {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.sw-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.sw-faq__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-faq__label::before,
.sw-faq__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-faq__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sw-faq__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-faq__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
}

.sw-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw-faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 104, 0.06);
  box-shadow: 0 2px 8px rgba(31, 42, 104, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.sw-faq__item:hover {
  box-shadow: 0 4px 16px rgba(31, 42, 104, 0.06);
}

.sw-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}

.sw-faq__trigger:hover {
  color: var(--navy);
}

.sw-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sw-faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  transition: transform 0.3s ease;
}

.sw-faq__item.is-open .sw-faq__icon {
  background: var(--navy);
}

.sw-faq__item.is-open .sw-faq__icon svg {
  stroke: var(--ivory);
  transform: rotate(45deg);
}

.sw-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.sw-faq__item.is-open .sw-faq__answer {
  max-height: 400px;
}

.sw-faq__answer-inner {
  padding: 0 24px 24px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
}

/* FAQ CTA */
.sw-faq__cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px 24px;
  background: var(--navy);
  border-radius: 12px;
}

.sw-faq__cta-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 6px;
}

.sw-faq__cta-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  margin-bottom: 20px;
}

.sw-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-faq__cta-btn:hover {
  background: #cbb596;
  transform: translateY(-1px);
}

.sw-faq__cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

@media (min-width: 768px) {
  .sw-faq {
    padding: 100px 40px;
  }

  .sw-faq__heading {
    font-size: 2.6rem;
  }

  .sw-faq__trigger {
    font-size: 1rem;
    padding: 24px 28px;
  }

  .sw-faq__answer-inner {
    padding: 0 28px 28px;
    font-size: 0.9rem;
  }
}


/* ============================================
   11. HOMEPAGE: CTA
   ============================================ */

.sw-cta {
  background: var(--warm-grey);
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}

.sw-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 104, 0.06);
  pointer-events: none;
}

.sw-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 104, 0.04);
  pointer-events: none;
}

.sw-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sw-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(31, 42, 104, 0.08);
  border: 1px solid rgba(31, 42, 104, 0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.sw-cta__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  animation: pulse 2s ease-in-out infinite;
}

.sw-cta__heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sw-cta__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-cta__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sw-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sw-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 16px 32px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 20px rgba(31, 42, 104, 0.2);
}

.sw-cta__btn-primary:hover {
  background: #171f52;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(31, 42, 104, 0.25);
}

.sw-cta__btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: var(--ivory);
}

.sw-cta__btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(31, 42, 104, 0.25);
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-cta__btn-phone:hover {
  border-color: var(--navy);
  background: rgba(31, 42, 104, 0.04);
}

.sw-cta__btn-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--champagne);
}

/* Trust strip */
.sw-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 42, 104, 0.1);
}

.sw-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.45);
  letter-spacing: 0.02em;
}

.sw-cta__trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
  flex-shrink: 0;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .sw-cta {
    padding: 120px 40px;
  }

  .sw-cta__heading {
    font-size: 3rem;
  }

  .sw-cta__text {
    font-size: 0.95rem;
  }

  .sw-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .sw-cta__btn-primary,
  .sw-cta__btn-phone {
    width: auto;
  }

  .sw-cta__trust {
    gap: 32px;
  }
}


/* ============================================
   12. FOOTER
   ============================================ */

.sw-footer {
  background: var(--navy);
  padding: 56px 20px 0;
  color: var(--ivory);
}

.sw-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sw-footer__brand {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 245, 242, 0.08);
}

.sw-footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
  display: inline-block;
}

.sw-footer__tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--champagne);
  opacity: 0.7;
}

.sw-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.sw-footer__col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}

.sw-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.sw-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.65);
  line-height: 1.5;
}

.sw-footer__contact-item a {
  color: rgba(247, 245, 242, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-footer__contact-item a:hover {
  color: var(--champagne);
}

.sw-footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--champagne);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.sw-footer__links,
.sw-footer__treatments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.sw-footer__links a,
.sw-footer__treatments a {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.sw-footer__links a:hover,
.sw-footer__treatments a:hover {
  color: var(--champagne);
}

.sw-footer__hf-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(247, 245, 242, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-footer__hf-link:hover {
  color: var(--champagne);
}

/* Credentials */
.sw-footer__credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 245, 242, 0.08);
}

.sw-footer__credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(214, 195, 165, 0.08);
  border: 1px solid rgba(214, 195, 165, 0.12);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(214, 195, 165, 0.7);
}

.sw-footer__credential svg {
  width: 12px;
  height: 12px;
  stroke: var(--champagne);
  opacity: 0.6;
}

/* Bottom bar */
.sw-footer__bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.sw-footer__copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.3);
  line-height: 1.5;
}

.sw-footer__copy a {
  color: rgba(247, 245, 242, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-footer__copy a:hover {
  color: var(--champagne);
}

.sw-footer__social {
  display: flex;
  gap: 12px;
}

.sw-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247, 245, 242, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-footer__social-link:hover {
  background: rgba(214, 195, 165, 0.15);
  transform: translateY(-2px);
}

.sw-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(247, 245, 242, 0.5);
  transition: fill 0.3s ease;
}

.sw-footer__social-link:hover svg {
  fill: var(--champagne);
}

@media (min-width: 768px) {
  .sw-footer {
    padding: 72px 40px 0;
  }

  .sw-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .sw-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .sw-footer__grid {
    grid-template-columns: 1.1fr 1fr 0.8fr 0.8fr;
    gap: 48px;
  }

  .sw-footer__brand {
    text-align: left;
  }
}


/* ============================================
   13. PAGE HERO (shared internal pages)
   ============================================ */

.sw-page-hero {
  background: var(--navy);
  padding: 48px 20px 52px;
  text-align: center;
}

.sw-page-hero__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-page-hero__label::before,
.sw-page-hero__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(214, 195, 165, 0.4);
}

.sw-page-hero__heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-page-hero__heading em {
  font-style: italic;
  color: var(--champagne);
  white-space: nowrap;
}

.sw-page-hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sw-page-hero {
    padding: 72px 40px 80px;
  }

  .sw-page-hero__heading {
    font-size: 3rem;
  }
}


/* ============================================
   14. ABOUT PAGE
   ============================================ */

/* Meet Sarah */
.sw-meet {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-meet__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sw-meet__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 42, 104, 0.08);
}

.sw-meet__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.sw-meet__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-meet__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-meet__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sw-meet__heading em {
  font-style: italic;
  color: var(--champagne);
  white-space: nowrap;
}

.sw-meet__role {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.sw-meet__body p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 16px;
}

.sw-meet__body strong {
  font-weight: 500;
  color: var(--dark-text);
}

.sw-meet__quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--champagne);
}

/* Why medical professional */
.sw-why-medical {
  background: var(--navy);
  padding: 64px 20px;
}

.sw-why-medical__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sw-why-medical__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-why-medical__label::before,
.sw-why-medical__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(214, 195, 165, 0.4);
}

.sw-why-medical__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sw-why-medical__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-why-medical__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247, 245, 242, 0.65);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sw-why-medical__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.sw-why-medical__card {
  background: rgba(247, 245, 242, 0.06);
  border: 1px solid rgba(247, 245, 242, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
}

.sw-why-medical__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(214, 195, 165, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sw-why-medical__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
}

.sw-why-medical__card-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
}

.sw-why-medical__card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.6;
}

.sw-why-medical__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-why-medical__btn:hover {
  background: #cbb596;
  transform: translateY(-1px);
}

.sw-why-medical__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

/* Clinic section */
.sw-clinic {
  background: var(--warm-grey);
  padding: 64px 20px;
}

.sw-clinic__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sw-clinic__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 42, 104, 0.08);
}

.sw-clinic__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.sw-clinic__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-clinic__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-clinic__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sw-clinic__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-clinic__body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 24px;
}

.sw-clinic__address {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}

.sw-clinic__address strong {
  font-weight: 500;
}

/* About CTA */
.sw-about-cta {
  background: var(--ivory);
  padding: 64px 20px;
  text-align: center;
}

.sw-about-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.sw-about-cta__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-about-cta__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-about-cta__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sw-about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-about-cta__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-about-cta__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

/* About page desktop */
@media (min-width: 768px) {
  .sw-meet {
    padding: 100px 40px;
  }

  .sw-meet__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .sw-meet__heading {
    font-size: 2.6rem;
  }

  .sw-why-medical {
    padding: 100px 40px;
  }

  .sw-why-medical__heading {
    font-size: 2.6rem;
  }

  .sw-why-medical__cards {
    grid-template-columns: 1fr 1fr;
  }

  .sw-clinic {
    padding: 100px 40px;
  }

  .sw-clinic__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .sw-clinic__heading {
    font-size: 2.4rem;
  }

  .sw-about-cta {
    padding: 100px 40px;
  }

  .sw-about-cta__heading {
    font-size: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .sw-why-medical__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================
   15. SERVICES HUB PAGE
   ============================================ */

.sw-services-intro {
  background: var(--ivory);
  padding: 56px 20px;
  text-align: center;
}

.sw-services-intro__text {
  max-width: 740px;
  margin: 0 auto;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.65);
}

/* Treatment hub grid */
.sw-services-grid {
  background: var(--ivory);
  padding: 0 20px 64px;
}

.sw-services-grid__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.sw-services-grid__card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 42, 104, 0.04);
  border: 1px solid rgba(31, 42, 104, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-services-grid__card:hover {
  box-shadow: 0 8px 32px rgba(31, 42, 104, 0.08);
  transform: translateY(-3px);
}

.sw-services-grid__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sw-services-grid__card-body {
  padding: 24px;
}

.sw-services-grid__card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.sw-services-grid__card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.6);
  margin-bottom: 16px;
}

.sw-services-grid__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: gap 0.3s ease;
}

.sw-services-grid__card:hover .sw-services-grid__card-link {
  gap: 12px;
}

.sw-services-grid__card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
}

/* Services CTA */
.sw-services-cta {
  background: var(--warm-grey);
  padding: 64px 20px;
  text-align: center;
}

.sw-services-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.sw-services-cta__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-services-cta__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-services-cta__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sw-services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-services-cta__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-services-cta__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

@media (min-width: 768px) {
  .sw-services-intro {
    padding: 80px 40px;
  }

  .sw-services-grid {
    padding: 0 40px 100px;
  }

  .sw-services-grid__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sw-services-cta {
    padding: 100px 40px;
  }

  .sw-services-cta__heading {
    font-size: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .sw-services-grid__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Centre the lone last card on tablet (same pattern as homepage treatments) */
@media (min-width: 768px) and (max-width: 1023px) {
  .sw-services-grid__card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    justify-self: center;
  }
}


/* ============================================
   16. CONTACT PAGE
   ============================================ */

.sw-contact {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.sw-contact__info {
  max-width: 480px;
}

.sw-contact__intro {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.65);
  margin-bottom: 36px;
}

.sw-contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.sw-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sw-contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sw-contact__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
}

.sw-contact__detail-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}

.sw-contact__detail-value {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.5;
}

.sw-contact__detail-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-contact__detail-value a:hover {
  color: var(--champagne);
}

.sw-contact__social {
  display: flex;
  gap: 12px;
}

.sw-contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-contact__social-link:hover {
  background: #171f52;
  transform: translateY(-2px);
}

.sw-contact__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--champagne);
}

/* Form */
.sw-contact__form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 24px rgba(31, 42, 104, 0.06);
  border: 1px solid rgba(31, 42, 104, 0.04);
}

.sw-contact__form-wrap iframe {
  min-height: 620px;
}

.sw-contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.sw-contact__form-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.5);
  margin-bottom: 28px;
}

/* Map */
.sw-map {
  background: var(--warm-grey);
  padding: 64px 20px;
}

.sw-map__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sw-map__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-map__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-map__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.sw-map__embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(31, 42, 104, 0.06);
}

.sw-map__embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .sw-contact {
    padding: 100px 40px;
  }

  .sw-contact__form-wrap {
    padding: 44px 40px;
  }

  .sw-map {
    padding: 100px 40px;
  }

  .sw-map__heading {
    font-size: 2.4rem;
  }

  .sw-map__embed iframe {
    height: 440px;
  }
}

@media (min-width: 1024px) {
  .sw-contact__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}


/* ============================================
   17. HOLMFIRTH PAGE
   ============================================ */

/* Holmfirth hero */
.sw-hf-hero {
  background: var(--navy);
  padding: 48px 20px 56px;
  text-align: center;
}

.sw-hf-hero__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-hf-hero__label::before,
.sw-hf-hero__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(214, 195, 165, 0.4);
}

.sw-hf-hero__heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-hf-hero__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hf-hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.sw-hf-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-hf-hero__btn:hover {
  background: #cbb596;
  transform: translateY(-1px);
}

.sw-hf-hero__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

/* Holmfirth about */
.sw-hf-about {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-hf-about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sw-hf-about__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 42, 104, 0.08);
}

.sw-hf-about__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.sw-hf-about__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-hf-about__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-hf-about__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sw-hf-about__heading em {
  font-style: italic;
  color: var(--champagne);
  white-space: nowrap;
}

.sw-hf-about__body p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 16px;
}

.sw-hf-about__body strong {
  font-weight: 500;
  color: var(--dark-text);
}

.sw-hf-about__credentials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.sw-hf-about__credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(31, 42, 104, 0.06);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--navy);
}

.sw-hf-about__credential svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
}

/* Holmfirth treatments */
.sw-hf-treatments {
  background: var(--navy);
  padding: 64px 20px;
}

.sw-hf-treatments__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sw-hf-treatments__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-hf-treatments__label::before,
.sw-hf-treatments__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(214, 195, 165, 0.4);
}

.sw-hf-treatments__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-hf-treatments__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hf-treatments__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.sw-hf-treatments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.sw-hf-treatments__card {
  background: rgba(247, 245, 242, 0.06);
  border: 1px solid rgba(247, 245, 242, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sw-hf-treatments__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(214, 195, 165, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sw-hf-treatments__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
}

.sw-hf-treatments__card-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
}

.sw-hf-treatments__card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.5);
  line-height: 1.55;
}

.sw-hf-treatments__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-hf-treatments__btn:hover {
  background: #cbb596;
  transform: translateY(-1px);
}

.sw-hf-treatments__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

/* Holmfirth results */
.sw-hf-results {
  background: var(--warm-grey);
  padding: 64px 20px;
}

.sw-hf-results__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sw-hf-results__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-hf-results__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hf-results__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.5);
  margin-bottom: 32px;
}

.sw-hf-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sw-hf-results__item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 42, 104, 0.06);
}

.sw-hf-results__item img {
  width: 100%;
  height: auto;
}

.sw-hf-results__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-hf-results__link:hover {
  color: var(--champagne);
}

.sw-hf-results__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Holmfirth location */
.sw-hf-location {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-hf-location__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.sw-hf-location__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-hf-location__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-hf-location__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sw-hf-location__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hf-location__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.65);
  margin-bottom: 28px;
}

.sw-hf-location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.sw-hf-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sw-hf-location__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sw-hf-location__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--champagne);
}

.sw-hf-location__detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 2px;
}

.sw-hf-location__detail-value {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.5;
}

.sw-hf-location__detail-value a {
  color: var(--navy);
  text-decoration: none;
}

.sw-hf-location__detail-value a:hover {
  color: var(--champagne);
}

.sw-hf-location__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-hf-location__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-hf-location__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

.sw-hf-location__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(31, 42, 104, 0.06);
}

.sw-hf-location__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Holmfirth CTA */
.sw-hf-cta {
  background: var(--warm-grey);
  padding: 64px 20px;
  text-align: center;
}

.sw-hf-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.sw-hf-cta__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-hf-cta__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-hf-cta__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sw-hf-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sw-hf-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-hf-cta__btn-primary:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-hf-cta__btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

.sw-hf-cta__btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(31, 42, 104, 0.2);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.sw-hf-cta__btn-phone:hover {
  border-color: var(--navy);
  background: rgba(31, 42, 104, 0.04);
}

.sw-hf-cta__btn-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--champagne);
}

/* Holmfirth desktop */
@media (min-width: 768px) {
  .sw-hf-hero {
    padding: 72px 40px 80px;
  }

  .sw-hf-hero__heading {
    font-size: 3rem;
  }

  .sw-hf-about {
    padding: 100px 40px;
  }

  .sw-hf-about__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .sw-hf-about__heading {
    font-size: 2.4rem;
  }

  .sw-hf-treatments {
    padding: 100px 40px;
  }

  .sw-hf-treatments__heading {
    font-size: 2.6rem;
  }

  .sw-hf-treatments__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sw-hf-results {
    padding: 100px 40px;
  }

  .sw-hf-results__heading {
    font-size: 2.4rem;
  }

  .sw-hf-results__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .sw-hf-location {
    padding: 100px 40px;
  }

  .sw-hf-location__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .sw-hf-location__heading {
    font-size: 2.4rem;
  }

  .sw-hf-cta {
    padding: 100px 40px;
  }

  .sw-hf-cta__heading {
    font-size: 2.6rem;
  }

  .sw-hf-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .sw-hf-treatments__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================
   18. BOOK PAGE
   ============================================ */

.sw-book {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-book__inner {
  max-width: 680px;
  margin: 0 auto;
}

.sw-book__form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 24px rgba(31, 42, 104, 0.06);
  border: 1px solid rgba(31, 42, 104, 0.04);
}

.sw-book__form-wrap iframe {
  min-height: 620px;
}

.sw-book__form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.sw-book__form-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.5);
  margin-bottom: 28px;
}

/* Alternative contact */
.sw-book__alt {
  text-align: center;
  margin-bottom: 48px;
}

.sw-book__alt-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.sw-book__alt-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.55);
  margin-bottom: 24px;
}

.sw-book__alt-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sw-book__btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 32px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-book__btn-whatsapp:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-book__btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--champagne);
  flex-shrink: 0;
}

.sw-book__btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(31, 42, 104, 0.2);
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.sw-book__btn-phone:hover {
  border-color: var(--navy);
  background: rgba(31, 42, 104, 0.04);
}

.sw-book__btn-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--champagne);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sw-book {
    padding: 100px 40px;
  }

  .sw-book__form-wrap {
    padding: 44px 40px;
  }

  .sw-book__alt-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .sw-book__btn-whatsapp,
  .sw-book__btn-phone {
    width: auto;
  }
}


/* ============================================
   19. LEGAL PAGES (Privacy Policy / Terms)
   ============================================ */

.sw-legal {
  background: var(--ivory);
  padding: 56px 20px 64px;
}

.sw-legal__inner {
  max-width: 780px;
  margin: 0 auto;
}

.sw-legal__updated {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.45);
  margin-bottom: 40px;
}

.sw-legal h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sw-legal h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.sw-legal p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 14px;
}

.sw-legal ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.sw-legal li {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.sw-legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.sw-legal a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.sw-legal a:hover {
  color: var(--champagne);
}

.sw-legal strong {
  font-weight: 500;
  color: var(--dark-text);
}

@media (min-width: 768px) {
  .sw-legal {
    padding: 80px 40px 100px;
  }

  .sw-legal h2 {
    font-size: 1.7rem;
  }
}


/* ============================================
   20. 404 PAGE
   ============================================ */

.sw-404 {
  background: var(--ivory);
  padding: 80px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-404__inner {
  max-width: 520px;
}

.sw-404__code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.sw-404__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-404__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sw-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-404__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-404__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

@media (min-width: 768px) {
  .sw-404__code {
    font-size: 7rem;
  }

  .sw-404__heading {
    font-size: 2.6rem;
  }
}


/* ============================================
   21. INDIVIDUAL SERVICE PAGES
   ============================================ */

/* Service intro */
.sw-service-intro {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-service-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sw-service-intro__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 42, 104, 0.08);
}

.sw-service-intro__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sw-service-intro__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-service-intro__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.sw-service-intro__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sw-service-intro__heading em {
  font-style: italic;
  color: var(--champagne);
  white-space: nowrap;
}

.sw-service-intro__body p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.68);
  margin-bottom: 16px;
}

.sw-service-intro__body strong {
  font-weight: 500;
  color: var(--dark-text);
}

/* Quick facts strip */
.sw-service-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.sw-service-fact {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(31, 42, 104, 0.04);
  box-shadow: 0 2px 8px rgba(31, 42, 104, 0.03);
}

.sw-service-fact__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}

.sw-service-fact__value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

/* Treatment areas */
.sw-service-areas {
  background: var(--navy);
  padding: 64px 20px;
}

.sw-service-areas__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sw-service-areas__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-service-areas__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-service-areas__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.55);
  margin-bottom: 36px;
}

.sw-service-areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.sw-service-areas__item {
  background: rgba(247, 245, 242, 0.06);
  border: 1px solid rgba(247, 245, 242, 0.08);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-service-areas__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--champagne);
  flex-shrink: 0;
}

.sw-service-areas__item span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ivory);
}

/* What to expect */
.sw-service-expect {
  background: var(--warm-grey);
  padding: 64px 20px;
}

.sw-service-expect__inner {
  max-width: 900px;
  margin: 0 auto;
}

.sw-service-expect__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
}

.sw-service-expect__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-service-expect__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.5);
  text-align: center;
  margin-bottom: 40px;
}

.sw-service-expect__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.sw-service-expect__step {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(31, 42, 104, 0.04);
  border: 1px solid rgba(31, 42, 104, 0.04);
}

.sw-service-expect__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.sw-service-expect__step-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.sw-service-expect__step-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.6);
}

/* Gallery */
.sw-service-gallery {
  background: var(--ivory);
  padding: 64px 20px;
}

.sw-service-gallery__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sw-service-gallery__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sw-service-gallery__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-service-gallery__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.5);
  margin-bottom: 32px;
}

.sw-service-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sw-service-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 42, 104, 0.06);
}

.sw-service-gallery__item img {
  width: 100%;
  height: auto;
}

/* Service CTA */
.sw-service-cta {
  background: var(--warm-grey);
  padding: 64px 20px;
  text-align: center;
}

.sw-service-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.sw-service-cta__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sw-service-cta__heading em {
  font-style: italic;
  color: var(--champagne);
}

.sw-service-cta__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sw-service-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-service-cta__btn:hover {
  background: #171f52;
  transform: translateY(-1px);
}

.sw-service-cta__btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
}

/* Service page responsive */
@media (min-width: 768px) {
  .sw-service-intro {
    padding: 100px 40px;
  }

  .sw-service-intro__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .sw-service-intro__heading {
    font-size: 2.4rem;
  }

  .sw-service-areas {
    padding: 100px 40px;
  }

  .sw-service-areas__heading {
    font-size: 2.4rem;
  }

  .sw-service-areas__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sw-service-expect {
    padding: 100px 40px;
  }

  .sw-service-expect__heading {
    font-size: 2.4rem;
  }

  .sw-service-expect__steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sw-service-gallery {
    padding: 100px 40px;
  }

  .sw-service-gallery__heading {
    font-size: 2.4rem;
  }

  .sw-service-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sw-service-cta {
    padding: 100px 40px;
  }

  .sw-service-cta__heading {
    font-size: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .sw-service-gallery__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Centre lone last gallery image on tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .sw-service-gallery__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }
}


/* ============================================
   LIGHTBOX
   ============================================ */

.sw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(31, 42, 104, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.sw-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.sw-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
  cursor: default;
}

.sw-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(247, 245, 242, 0.1);
  border: 1px solid rgba(247, 245, 242, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sw-lightbox__close:hover {
  background: rgba(247, 245, 242, 0.2);
}

.sw-lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--ivory);
}


/* ============================================
   22. ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}