/* ── AVIVA SKIN CLINIC DESIGN SYSTEM ── */

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

:root {
  /* Elevated Cool-Teal and Mineral color palette (based on original colors) */
  --ivory: #E6F3F5;
  /* Premium soft glacier ice-cyan (elevating the original #bff7ff) */
  --blush: #F2E5DB;
  /* Extremely soft blush/sand for warm contrast */
  --terracotta: #C2845E;
  /* Warm copper/terracotta highlights */
  --gold: #C29B70;
  /* Soft refined gold accents */
  --charcoal: #122022;
  /* Deep mineral dark teal-black (high contrast, premium readability) */
  --mid: #4B5B5E;
  /* Slate-teal body text */
  --light-text: #87979A;
  /* Cool muted gray-teal */
  --newcot: #0A3E47;
  /* Rich deep ocean teal (elevating the original #0A2E36) */
  --split-bg: #C6E7E9;
  /* Premium soft mint-cyan (elevating the original #80ffe5) */

  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;

  /* Animation */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* ── LAYOUT SECTIONS ── */
section {
  padding: 8rem 8vw;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 6vw;
  }
}

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}

.section-title em {
  font-style: italic;
  color: var(--newcot);
  font-weight: 400;
}

/* ── BUTTONS & CTAs ── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--newcot);
  border-color: var(--newcot);
  color: var(--ivory);
  transform: translateY(-2px);
}

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

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 1rem 2.2rem;
  text-decoration: none;
  margin-left: 1rem;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

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

/* ── SCROLL-TRIGGERED ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION BAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 8vw;
  background: rgba(218, 234, 237, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 149, 106, 0.08);
  transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  padding: 1rem 8vw;
  background: rgba(218, 234, 237, 0.95);
  box-shadow: 0 4px 30px rgba(28, 25, 23, 0.04);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--charcoal);
  font-weight: 600;
}

.nav-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--charcoal);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: scale(1.06);
}

/* ── MOBILE MENU SYSTEM ── */
.mobile-cta-wrapper {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
  z-index: 101;
  outline: none;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}

.nav-overlay {
  display: none;
  /* No longer needed for dropdown menu */
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 6vw;
  }

  nav.scrolled {
    padding: 0.9rem 6vw;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(230, 243, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 149, 106, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 8vw 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(28, 25, 23, 0.08);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(196, 149, 106, 0.06);
  }

  .nav-links li.mobile-cta-wrapper {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    display: block;
    padding: 0.9rem 0;
    color: var(--charcoal);
  }

  .nav-links a::after {
    display: none;
    /* Hide hover underline for dropdown links */
  }

  .mobile-cta-wrapper {
    display: block;
    margin-top: 1.2rem;
  }

  .mobile-cta-wrapper .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }

  /* Hamburger transform open state */
  .nav-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .nav-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .logo-detail {
    display: none;
  }
}

/* ── HOME PAGE (INDEX) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 6rem 8vw;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--newcot);
  font-weight: 400;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  background: var(--ivory);
  padding: 1.4rem 2rem 1.4rem 2.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-badge p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--light-text);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}

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

  .hero-left {
    padding: 6rem 8vw 4rem;
  }

  .hero-right {
    min-height: 45vh;
  }

  .hero-sub {
    max-width: 100%;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding-top: 8rem;
  }

  .hero-left .btn-primary,
  .hero-left .btn-outline {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-left .btn-outline {
    margin-top: 0.8rem;
  }
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--charcoal);
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Premium Infinite Marquee effect */
.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 30s linear infinite;
  padding-left: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.strip-item span {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.75);
  font-weight: 500;
}

.strip-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SERVICES PREVIEW ── */
.services-preview {
  background: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 3.5rem 2.5rem;
  transition: var(--transition-slow);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.02);
  border-top: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(28, 25, 23, 0.08);
  border-top-color: var(--gold);
}

.service-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-num {
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.service-card:hover .service-link::after {
  transform: translateX(6px);
}

@media (max-width: 990px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 3rem 2rem;
  }
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 8vw;
  background: var(--split-bg);
  /* Replaced bright neon green #80ffe5 with beautiful premium mint-cyan */
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  aspect-ratio: 1;
  background: var(--ivory);
  z-index: -1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about_link {
  text-decoration: none;
  color: var(--newcot);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.about_link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 8vw;
  }

  .about-accent {
    bottom: -1rem;
    right: -1rem;
  }
}

/* ── TESTIMONIAL SECTION ── */
.testimonial-section {
  background: var(--charcoal);
  text-align: center;
  padding: 6rem 12vw;
}

.testimonial-section blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.testimonial-section cite {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 5rem 6vw;
  }
}

/* ── ABOUT PAGE SPECIFIC ── */
.page-hero {
  padding: 15rem 8vw 8rem;
  background: var(--blush);
  /* Standardized background */
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}

.page-hero-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
  display: block;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--newcot);
  font-weight: 400;
}

.page-hero p {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 440px;
}

/* VALUES SECTION */
.values {
  padding: 8rem 8vw;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4rem;
}

.value-item {
  border-top: 2px solid var(--blush);
  padding-top: 2.5rem;
}

.value-item h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}

/* TEAM SECTION */
.team {
  padding: 8rem 8vw;
  background: var(--charcoal);
}

.team .section-label {
  color: var(--gold);
}

.team .section-title {
  color: var(--ivory);
}

.team-profile {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 4rem;
}

.team-profile-left {
  position: relative;
  max-width: 450px;
  width: 100%;
  justify-self: center;
}

.team-profile-left .team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-profile-left img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.team-profile-right {
  color: rgba(250, 247, 244, 0.75);
}

.team-profile-right h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.team-profile-right .role {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  font-weight: 500;
}

.team-profile-right p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.team-profile-right p:last-of-type {
  margin-bottom: 2.5rem;
}

.credentials {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.credential-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.credential-item span {
  font-size: 0.85rem;
  color: rgba(250, 247, 244, 0.55);
  line-height: 1.6;
}

/* STORY SECTION */
.story {
  padding: 8rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.story img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.story p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* STATS BAR */
.stats {
  background: var(--blush);
  padding: 6rem 8vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat h3 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat p {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 10rem;
    padding-bottom: 5rem;
    gap: 2rem;
  }

  .page-hero p {
    max-width: 100%;
  }

  .values-grid,
  .team-profile {
    grid-template-columns: 1fr;
    gap: 3rem;
  }


  .story {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

/* ── SERVICES PAGE SPECIFIC ── */
.services-page-hero {
  padding: 15rem 8vw 8rem;
  background: var(--charcoal);
  text-align: center;
}

.services-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  max-width: 800px;
  margin: 0 auto 1.8rem;
}

.services-page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.services-page-hero p {
  font-size: 0.98rem;
  color: rgba(250, 247, 244, 0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.category {
  padding: 8rem 8vw;
}

.category:nth-child(even) {
  background: var(--blush);
  /* Standardized split backgrounds */
}

.category-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.category-header img,
.category-header video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.category-num {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.category:nth-child(even) .category-num {
  color: var(--ivory);
}

.category-header p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.treatment-item {
  background: white;
  padding: 3rem;
  border-left: 3px solid transparent;
  transition: var(--transition-slow);
  box-shadow: 0 5px 20px rgba(28, 25, 23, 0.01);
}

.treatment-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 15px 40px rgba(28, 25, 23, 0.05);
}

.treatment-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.treatment-item p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
}

.treatment-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197, 155, 108, 0.1);
  padding: 0.4rem 0.9rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* PROCESS STRIP */
.process {
  padding: 8rem 8vw;
  background: var(--charcoal);
}

.process .section-label {
  color: var(--gold);
}

.process .section-title {
  color: var(--ivory);
  margin-bottom: 5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(197, 155, 108, 0.25);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.step:hover .step-num {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.1);
}

.step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 0.84rem;
  color: rgba(250, 247, 244, 0.5);
  line-height: 1.7;
}

/* CTA BAND */
.cta-band {
  padding: 6rem 8vw;
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--newcot);
  font-weight: 400;
}

@media (max-width: 900px) {
  .category-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .cta-band .btn-primary {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-band .btn-primary {
    display: block;
    width: 100%;
  }
}

/* ── CONTACT PAGE SPECIFIC ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 80vh;
}

.contact-info {
  padding: 6rem 5vw 6rem 8vw;
  background: var(--charcoal);
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 3.5rem;
  line-height: 1.25;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.info-block {
  margin-bottom: 2.5rem;
}

.info-block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.info-block p,
.info-block a {
  font-size: 0.95rem;
  color: rgba(250, 247, 244, 0.75);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.info-block a:hover {
  color: var(--gold);
}

.hours-grid {
  display: grid;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(250, 247, 244, 0.7);
}

.hours-row span:last-child {
  color: rgba(250, 247, 244, 0.45);
}

.divider {
  width: 50px;
  height: 1px;
  background: rgba(197, 155, 108, 0.3);
  margin: 3rem 0;
}

.contact-form-wrap {
  padding: 6rem 8vw 6rem 5vw;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.25;
  color: var(--charcoal);
}

.contact-form-wrap h2 em {
  font-style: italic;
  color: var(--newcot);
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1px solid #E5DCD4;
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(197, 155, 108, 0.05);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C59B6C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--newcot);
  border-color: var(--newcot);
}

.submit-btn:disabled {
  background: var(--light-text);
  border-color: var(--light-text);
  cursor: not-allowed;
}

.form-note {
  font-size: 0.78rem;
  color: var(--light-text);
  margin-top: 1.2rem;
  line-height: 1.6;
}

/* SUCCESS PAGE */
.success-msg {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.success-msg.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.success-msg h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.success-msg p {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 380px;
}

/* MAP SECTION */
.map-section {
  height: 450px;
  background: #E8DDD5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}

.map-section.clicked .map-overlay {
  pointer-events: none;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1400&q=80') center/cover;
  opacity: 0.25;
  filter: grayscale(100%) contrast(1.2);
}

.map-label p {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.map-label h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
}

.map-pin {
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
}

.map-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 6rem 8vw;
  }

  .contact-form-wrap {
    padding: 6rem 8vw;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-label {
    padding: 2rem 1.5rem;
    width: 85%;
  }
}

/* ── FOOTER STYLE ── */
footer {
  background: var(--charcoal);
  color: rgba(250, 246, 240, 0.55);
  padding: 6rem 8vw 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-brand p span {
  color: var(--gold);
}

.footer-brand small {
  font-size: 0.88rem;
  line-height: 1.8;
  display: block;
  max-width: 280px;
}

footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

footer ul a {
  color: rgba(250, 246, 240, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

footer ul a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.4);
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── HERO RATINGS TRUST LINE ── */
.hero-ratings {
  margin: 1.5rem 0;
}

.rating-info {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--mid);
}

.rating-info .stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.rating-info strong {
  font-weight: 500;
  color: var(--charcoal);
}

.rating-divider {
  color: var(--light-text);
  opacity: 0.5;
}

/* Join Video Call Button */
.join-call-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--newcot);
  border: 1px solid var(--newcot);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(10, 62, 71, 0.15);
}

.join-call-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
  box-shadow: 0 4px 16px rgba(18, 32, 34, 0.2);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .join-call-btn {
    display: inline-block;
    width: auto;
  }
}

/* ── REVIEWS MARQUEE (DARK THEME ACCORDING TO BRAND COLOR #122022) ── */
.review-marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--charcoal); /* Matches #122022 */
  padding: 60px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-marquee-track {
  display: inline-block;
  animation: scroll-marquee 25s linear infinite;
}

.review-marquee-track:hover {
  animation-play-state: paused;
}

.review-card {
  display: inline-block;
  width: 320px;
  margin: 0 20px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  white-space: normal;
  vertical-align: top;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
}

.review-card .stars {
  color: var(--gold); /* Refined brand gold */
  font-size: 18px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(230, 243, 245, 0.85);
  margin-bottom: 16px;
  font-style: italic;
  font-family: var(--sans);
}

.review-card h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* The Animation */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}