/* ═══════════════════════════════════════════════════════════════════
   CROWN OF BEAUTY SKINCARE — MAIN STYLESHEET
   /assets/css/style.css

   TABLE OF CONTENTS
   ─────────────────
    1.  CSS Variables
    2.  Reset & Base
    3.  Typography
    4.  Layout — Container & Sections
    5.  Layout — Grid Systems
    6.  Layout — Flex Helpers
    7.  Visibility Helpers
    8.  Header & Navigation
    9.  Hero Sections
   10.  Buttons
   11.  Service Cards
   12.  Review / Testimonial Cards
   13.  Flip Cards (Skin Concerns)
   14.  Treatment Step Cards
   15.  First-Visit Step Blocks
   16.  FAQ Accordion
   17.  Before & After Result Cards
   18.  Contact Cards
   19.  Location Tags
   20.  Photo / Video Gallery
   21.  Video Modal
   22.  Review Carousel (Mobile)
   23.  Sticky Mobile CTA Bar
   24.  Breadcrumb Navigation
   25.  Philosophy Cards
   26.  Footer
   27.  Privacy Policy Content
   28.  Animations
   29.  Responsive Breakpoints
   ═══════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────
   1. CSS VARIABLES
   ───────────────────────────────────────────────────────────────── */

:root {
  /* Brand colours */
  --brown:           #8b7355;
  --brown-hover:     #7a6845;
  --sage:            #7A8467;
  --sage-dark:       #6b7560;
  --cream:           #f5f0e8;
  --cream-alt:       #f8f7f5;
  --cream-card:      #fdfcfb;
  --cream-review:    #f5ede8;
  --dark-surface:    #3d3830;

  /* Text */
  --text-darkest:    #141414;
  --text-dark:       #1f2937;
  --text-medium:     #374151;
  --text-body:       #4b5563;
  --text-light:      #6b7280;
  --text-subtle:     #9ca3af;
  --text-white:      #ffffff;

  /* Borders */
  --border:          #e8dfd0;
  --border-light:    #f0ebe3;
  --border-hr:       #e5e0d8;

  /* Fonts */
  --font-serif:      'Cormorant Garamond', serif;
  --font-display:    'Bodoni Moda', serif;
  --font-sans:       Inter, sans-serif;

  /* Container widths */
  --container-xl:    1200px;
  --container-lg:    1100px;
  --container-md:    1000px;
  --container-sm:    900px;
  --container-xs:    800px;
  --container-xxs:   700px;
  --container-600:   600px;

  /* Spacing */
  --section-py:      5rem;    /* 80px */
  --section-py-lg:   7rem;    /* 112px */
  --section-px:      1rem;

  /* Radii */
  --radius-card:     1.5rem;
  --radius-large:    1.75rem;
  --radius-pill:     9999px;
  --radius-sm:       1rem;

  /* Shadows */
  --shadow-card:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-card-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-image:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-image-lg: 0 18px 50px rgba(0,0,0,0.18);
  --shadow-badge:    0 2px 10px rgba(0,0,0,0.10);

  /* Transitions */
  --transition:      0.3s ease;
  --transition-fast: 0.2s ease;
}


/* ─────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────────────── */

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background: #fff;
  color: var(--text-medium);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

address {
  font-style: normal;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.25;
}

p {
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────── */

/* Overline label — small uppercase text above a heading */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* Large hero heading — homepage h1 */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-darkest);
  margin: 0;
}

/* Inner-page hero heading — about, services, contact h1 */
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-darkest);
  margin: 0 0 1rem;
}

/* Section-level h2 */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #1f2937;
  margin: 0;
}

/* Smaller h2 variant */
.section-title--md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* Card / sub-section h3 */
.card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  color: #1f2937;
  margin: 0;
}

/* Hero sub-heading / intro text */
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.65;
  color: #4b5563;
}

/* Body text — standard */
.body-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* Body text — large */
.body-text--lg {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-body);
}

/* Italic pull-quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

/* Decorative horizontal rule */
.divider {
  width: 180px;
  height: 1px;
  background: #d4c4b0;
  margin: 1.25rem auto 0;
}

.divider--left {
  margin-left: 0;
  margin-right: auto;
}

.divider--sm {
  width: 80px;
  margin: 0 auto 1.25rem;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }


/* ─────────────────────────────────────────────────────────────────
   4. LAYOUT — CONTAINER & SECTIONS
   ───────────────────────────────────────────────────────────────── */

/* Base section — full-width, standard vertical padding, horizontal gutter */
.section {
  width: 100%;
  padding: var(--section-py) var(--section-px);
}

.section--lg {
  padding-top: var(--section-py-lg);
  padding-bottom: var(--section-py-lg);
}

/* Background variants */
.section--white  { background: #ffffff; }
.section--cream  { background: var(--cream); }
.section--off    { background: var(--cream-alt); }
.section--dark   { background: var(--dark-surface); }
.section--hero   {
  background-image: url('/images/Facial_New_Hope_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Centred max-width containers */
.container {
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container--lg  { max-width: var(--container-lg); margin: 0 auto; }
.container--md  { max-width: var(--container-md); margin: 0 auto; }
.container--sm  { max-width: var(--container-sm); margin: 0 auto; }
.container--xs  { max-width: var(--container-xs); margin: 0 auto; }
.container--xxs { max-width: var(--container-xxs); margin: 0 auto; }
.container--600 { max-width: var(--container-600); margin: 0 auto; }

/* Text-centre hero banner (inner pages) */
.page-hero {
  background-image: url('/images/Facial_New_Hope_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 5rem 1rem;
  text-align: center;
}

/* Section text centred block — thin max-width */
.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro .section-title {
  margin-top: 0.5rem;
}


/* ─────────────────────────────────────────────────────────────────
   5. LAYOUT — GRID SYSTEMS
   ───────────────────────────────────────────────────────────────── */

/* 2-column responsive grid (hero / text+image split) */
.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* 3-column responsive grid */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

/* 2-col at sm, 3-col at lg */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Skin concern flip cards — 2 col mobile, 4 col desktop */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Before/after results — 2 col mobile, 4 col desktop */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Philosophy cards — 1 col mobile, 3 col desktop */
.philosophy-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

/* First-visit 3 steps */
.steps-grid {
  display: grid;
  gap: 2rem;
}

/* Treatment step cards — 1-2-4 col */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Footer columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Reviews desktop grid */
.reviews-grid {
  display: none;   /* shown on desktop via media query */
  gap: 1.5rem;
}

/* 2-col small grid (skin analysis checklist etc.) */
.grid-2-sm {
  display: grid;
  gap: 1rem;
}


/* ─────────────────────────────────────────────────────────────────
   6. LAYOUT — FLEX HELPERS
   ───────────────────────────────────────────────────────────────── */

/* Vertically stacked children with gap */
.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stack--sm {
  gap: 0.75rem;
}

.stack--xs {
  gap: 0.5rem;
}

/* Horizontal row, centred */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal row, centred, wraps */
.flex-wrap-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Button group — stacks on mobile, row on sm */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

/* Credential / badge row */
.creds-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
}

.creds-row .sep {
  color: var(--sage);
}

/* Inline icon + text pair */
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Review platform badges */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-fast);
  box-shadow: var(--shadow-badge);
}

.platform-badge:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.platform-badge .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.platform-badge .rating-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

/* Social media icon links */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #4b5563;
  text-decoration: none;
  transition: color var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.social-link:hover {
  color: var(--sage);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* Inline social row (contact page) */
.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.social-row a:hover {
  color: var(--brown);
}

.social-row a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hours table row in footer/contact */
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #4b5563;
}

/* Bullet list items */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #374151;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 8px;
}

/* Check-mark icon badge (About page) */
.check-badge {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: var(--radius-pill);
  background: #e0efe4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}


/* ─────────────────────────────────────────────────────────────────
   7. VISIBILITY HELPERS
   ───────────────────────────────────────────────────────────────── */

.desktop-only { display: none; }
.mobile-only  { display: block; }


/* ─────────────────────────────────────────────────────────────────
   8. HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────── */

/* Top info bar */
/* Mobile info bar — phone + address, mobile only */
.mobile-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e5dd;
  padding: 0.45rem 1rem;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #4b4b3a;
}

.mobile-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.mobile-info-item:hover {
  color: var(--sage);
}

.mobile-info-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--brown);
}

.mobile-info-divider {
  width: 1px;
  height: 14px;
  background: #d4cfc5;
  flex-shrink: 0;
}

.top-bar {
  display: none;   /* shown on md+ via media query */
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e5dd;
}

.top-bar-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #4b4b3a;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.top-bar-item a:hover {
  color: var(--sage);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Main sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(248,247,245,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 1rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.site-nav {
  display: none;  /* shown on md+ */
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #2a2a2a;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--sage);
}

/* Services dropdown wrapper */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #2a2a2a;
  text-decoration: none;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle:hover {
  color: var(--sage);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  width: 295px;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 50;
}

.nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--cream-alt);
  color: var(--sage);
}

/* Book button in header */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-fast);
  margin-left: 0.5rem;
}

.nav-book-btn:hover {
  background: var(--sage);
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: flex;  /* always visible, hidden on md+ */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: #2a2a2a;
  touch-action: manipulation;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
  background: #faf9f7;
  display: none;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: #faf9f7;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-nav-header a img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  touch-action: manipulation;
}

.mobile-nav-body {
  padding: 12px 16px 32px;
}

.mobile-nav-link {
  display: block;
  padding: 16px;
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
  border-radius: 12px;
  border-bottom: 1px solid var(--border-light);
}

/* Services accordion in mobile menu */
.mobile-services-wrap {
  border-bottom: 1px solid var(--border-light);
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-services-toggle a {
  display: block;
  flex: 1;
  padding: 16px;
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
}

.mobile-services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 52px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
}

.mobile-services-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s;
}

.mobile-services-list {
  padding: 0 0 12px;
}

.mobile-services-item {
  display: block;
  padding: 12px 20px;
  color: #5a5a4a;
  font-size: 17px;
  font-family: var(--font-sans);
  text-decoration: none;
  border-radius: 8px;
}

.mobile-nav-cta {
  padding: 28px 0 0;
}

.mobile-nav-cta a {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brown);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
  box-sizing: border-box;
}


/* ─────────────────────────────────────────────────────────────────
   9. HERO SECTIONS
   ───────────────────────────────────────────────────────────────── */

.hero {
  background-image: url('/images/Facial_New_Hope_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 5rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.hero-video-col {
  width: 100%;
}

.hero-video-frame {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.18), 0 8px 24px -12px rgba(0,0,0,0.1);
  background: url('/images/Facial_New_Hope_video_background.webp') center/cover no-repeat;
}

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

/* Hero video wrap used on /start/ page */
.hero-video-wrap {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
}

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

/* Rounded image wrap */
.image-frame {
  border-radius: var(--radius-large);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Skin analysis dark-background highlight bar */
.analysis-bar {
  width: 100%;
  background: var(--dark-surface);
  padding: 4rem 1rem;
}

.analysis-bar-inner {
  max-width: var(--container-md);
  margin: 0 auto;
}

.analysis-bar .section-title {
  color: #fff;
}

.analysis-checklist {
  display: grid;
  gap: 1rem;
}

.analysis-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.analysis-check svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.analysis-check p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────────────
   10. BUTTONS
   ───────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-primary:hover {
  background: var(--sage);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary--full {
  width: 100%;
}

/* Outline video button */
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
  border-radius: var(--radius-pill);
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-video:hover {
  background: var(--brown);
  color: #fff;
}

/* Directions / small link-style button */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--brown);
  text-decoration: none;
  transition: text-decoration var(--transition-fast);
}

.btn-link:hover {
  text-decoration: underline;
}

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


/* ─────────────────────────────────────────────────────────────────
   11. SERVICE CARDS
   ───────────────────────────────────────────────────────────────── */

.service-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Taller image variant on services listing page */
.service-card--tall img {
  height: 240px;
}

/* Card body padding */
.card-body {
  padding: 1.5rem;
}

.service-card .card-body .card-title {
  margin-bottom: 0.5rem;
}

.service-card .card-body .body-text {
  margin-bottom: 1.25rem;
}

.service-card .card-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
}

/* Homepage service cards — body padding */
.service-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* "Learn More →" link on homepage service cards */
.service-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: color var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--brown-hover);
}

/* Pill badge inside service hero */
.badge-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage);
  color: #fff;
}


/* ─────────────────────────────────────────────────────────────────
   12. REVIEW / TESTIMONIAL CARDS
   ───────────────────────────────────────────────────────────────── */

.review-card {
  background: var(--cream-review);
  border-radius: var(--radius-large);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  flex-grow: 1;
  margin: 0;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 1.25rem 0 0;
}

.review-author span {
  font-weight: 400;
  color: var(--text-light);
}


/* ─────────────────────────────────────────────────────────────────
   13. FLIP CARDS (SKIN CONCERNS)
   ───────────────────────────────────────────────────────────────── */

.flip-card {
  perspective: 1000px;
  height: 180px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  box-shadow: var(--shadow-card-sm);
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card-back .stack--xs {
  width: 100%;
}

.flip-card-back p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

/* Circular icon container */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #eee6dd;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.flip-card-front .card-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0.375rem;
}

.flip-card-front p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────────
   14. TREATMENT STEP CARDS
   Used on: home page & /start/ (8-step treatment grid)
   ───────────────────────────────────────────────────────────────── */

.treatment-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card-sm);
}

.treatment-card-body {
  padding: 1.5rem;
  text-align: center;
}

.treatment-card-body .icon-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1rem;
}

.treatment-card-body .icon-step {
  font-family: var(--font-sans);
  font-size: 10px;
  color: #9a8f7e;
}

.treatment-expanded {
  overflow: visible;
  max-height: none;
  padding: 0 1.5rem 1.5rem;
}

.treatment-expanded p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #6b7280;
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────
   15. FIRST-VISIT STEP BLOCKS
   Used on: home & /start/ (3-step section)
   ───────────────────────────────────────────────────────────────── */

.step-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.step-block {
  text-align: center;
}

.step-block img {
  width: clamp(140px, 45vw, 190px);
  margin: 0 auto 1rem;
  display: block;
}

.step-block .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-block p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────────
   16. FAQ ACCORDION
   ───────────────────────────────────────────────────────────────── */

/* Div-based accordion (home, /start/, services listing) */
.faq-item {
  border-bottom: 1px solid var(--border-hr);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-content {
  max-height: 300px;
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Native <details> accordion (service detail pages) */
details.faq-item {
  border-bottom: 1px solid var(--border-hr);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brown);
  flex-shrink: 0;
  transition: transform 0.25s;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item .faq-answer {
  padding: 0 0 1.25rem;
}


/* ─────────────────────────────────────────────────────────────────
   17. BEFORE & AFTER RESULT CARDS
   ───────────────────────────────────────────────────────────────── */

.result-card {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: var(--cream);
}

.result-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.result-caption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  padding: 0.6rem 0.75rem 0.75rem;
  background: var(--cream);
}


/* ─────────────────────────────────────────────────────────────────
   18. CONTACT CARDS
   ───────────────────────────────────────────────────────────────── */

.contact-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-card .card-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.375rem;
}

.contact-tel {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-tel:hover {
  color: var(--brown);
}

.contact-email {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: #1f2937;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-email:hover {
  color: var(--brown);
}

/* Map container */
.map-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}


/* ─────────────────────────────────────────────────────────────────
   19. LOCATION TAGS
   ───────────────────────────────────────────────────────────────── */

.location-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.location-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  color: #4b5563;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}


/* ─────────────────────────────────────────────────────────────────
   20. PHOTO / VIDEO GALLERY
   ───────────────────────────────────────────────────────────────── */

/* ── Service Pill Navigation ──────────────────────────────────────────── */
.service-pill {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #fff;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.service-pill:hover {
  background: #f5f0e8;
  color: #8b7355;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: default;
}

.gallery-item.has-video {
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item.has-video:hover img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn span {
  width: 56px;
  height: 56px;
  background: rgba(220,30,30,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
}

.gallery-item.has-video:hover .play-btn span {
  transform: scale(1.1);
  background: rgba(220,30,30,1);
}

.play-btn svg {
  margin-left: 4px;
}

.gallery-caption {
  padding: 0.75rem 0.25rem 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #4b5563;
  text-align: center;
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────────
   21. VIDEO MODAL
   ───────────────────────────────────────────────────────────────── */

#vid-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
}

#vid-modal video {
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 8px;
  outline: none;
}

#vid-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}


/* ─────────────────────────────────────────────────────────────────
   22. REVIEW CAROUSEL (MOBILE SCROLL)
   ───────────────────────────────────────────────────────────────── */

.review-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 1rem 1rem;
  margin: 0 -1rem;
  -webkit-overflow-scrolling: touch;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-carousel-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 85vw;
  max-width: 320px;
  background: var(--cream-review);
  border-radius: var(--radius-large);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.review-carousel-item .review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-carousel-item .review-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  flex-grow: 1;
}

.review-carousel-item .review-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 1rem;
}


/* ─────────────────────────────────────────────────────────────────
   23. STICKY MOBILE CTA BAR
   ───────────────────────────────────────────────────────────────── */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  z-index: 60;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  backdrop-filter: blur(8px);
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}


/* ─────────────────────────────────────────────────────────────────
   24. BREADCRUMB NAVIGATION
   ───────────────────────────────────────────────────────────────── */

.breadcrumb {
  background: var(--cream-alt);
  padding: 0.75rem 1rem;
}

.breadcrumb ol {
  max-width: var(--container-xl);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #6b7280;
}

.breadcrumb a {
  color: var(--brown);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  color: #d4c4b0;
}


/* ─────────────────────────────────────────────────────────────────
   25. PHILOSOPHY CARDS (ABOUT PAGE)
   ───────────────────────────────────────────────────────────────── */

.philosophy-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.philosophy-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.philosophy-card .body-text {
  font-size: 15px;
}


/* ─────────────────────────────────────────────────────────────────
   26. FOOTER
   ───────────────────────────────────────────────────────────────── */

.site-footer {
  width: 100%;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.site-footer-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 3rem 1rem 7rem; /* extra bottom on mobile clears sticky CTA */
}

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

.footer-brand img {
  height: 60px;
  width: auto;
  display: inline-block;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #4b5563;
  text-align: center;
}

.footer-contact a:not(.btn-primary) {
  color: #374151;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:not(.btn-primary):hover {
  color: var(--sage);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #6b7280;
}

.footer-bottom a {
  color: #6b7280;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--sage);
}

.footer-bottom .credit-link {
  color: var(--brown);
  font-weight: 500;
}

/* Scroll-to-top button */
#scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 90px; /* clears sticky CTA bar on mobile */
  right: 16px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: background 0.25s, transform 0.2s;
}

#scroll-top-btn:hover {
  background: var(--sage);
  transform: scale(1.08);
}


/* ─────────────────────────────────────────────────────────────────
   27. PRIVACY POLICY CONTENT
   ───────────────────────────────────────────────────────────────── */

.content-section p {
  margin-bottom: 0.9rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
}

.content-section ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.5rem 0 1.25rem;
}

.content-section li {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

.content-section li + li {
  margin-top: 0.25rem;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #1f2937;
  margin: 2rem 0 0.75rem;
}


/* ─────────────────────────────────────────────────────────────────
   28. ANIMATIONS
   ───────────────────────────────────────────────────────────────── */

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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


/* ─────────────────────────────────────────────────────────────────
   29. RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────────────── */

/* ── Small (≥ 640px) ── */
@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-sm {
    grid-template-columns: repeat(2, 1fr);
  }

  .analysis-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Medium (≥ 768px) ── */
@media (min-width: 768px) {

  /* Visibility */
  .desktop-only  { display: block; }
  .mobile-only   { display: none; }

  /* Header */
  .site-header-inner { padding: 0 1.5rem; }
  .site-nav      { display: flex; }
  .mobile-menu-btn { display: none; }
  .top-bar       { display: block; }
  .mobile-info-bar { display: none; } /* full top-bar visible on desktop */

  /* Hero */
  .hero-text {
    text-align: left;
  }

  .hero-inner .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  /* Page hero padding */
  .page-hero {
    padding: 7rem 1rem;
  }

  /* Analysis bar checklist */
  .analysis-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Grids */
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .concern-grid {
    gap: 1.5rem;
  }

  .results-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .site-footer-inner {
    padding: 4rem 2rem 3rem; /* reset bottom padding — no sticky CTA on desktop */
  }

  .footer-brand {
    text-align: left;
    align-items: flex-start;
  }

  .footer-col {
    align-items: flex-start;
    text-align: left;
  }

  .footer-col h3 {
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

  /* Reviews */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .review-carousel-wrapper {
    display: none;
  }

  /* Flip cards */
  .flip-card {
    height: 200px;
  }

  .flip-card-front,
  .flip-card-back {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }

  .flip-card-back p {
    font-size: 14px;
  }

  /* Social links */
  .social-links {
    justify-content: flex-start;
  }

  /* Icon badge */
  .icon-badge {
    width: 4rem;
    height: 4rem;
  }

  /* Result card image */
  .result-card img {
    height: 300px;
  }

  /* Sticky CTA hidden on desktop */
  .sticky-cta {
    display: none;
  }

  /* Scroll-to-top: restore normal position — no sticky CTA on desktop */
  #scroll-top-btn {
    bottom: 24px;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 0.75rem 1.5rem;
  }
}

/* ── Large (≥ 1024px) ── */
@media (min-width: 1024px) {

  .grid-2 {
    gap: 5rem;
  }

  .concern-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .treatment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-header-inner {
    padding: 0 1.5rem;
  }
}
