/* ============================================================
   EFW MEDSPA — SHARED DESIGN SYSTEM
   Evolve From Within MedSpa | css/efw.css
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --cream:         #FAF8F5;
  --cream-mid:     #F2EDE6;
  --cream-dark:    #E8DDD0;
  --burgundy:      #7B2D40;
  --burgundy-dark: #5C1E2E;
  --burgundy-light:#A85268;
  --rose-gold:     #C4917A;
  --rose-gold-lt:  #DDB89E;
  --sage:          #8A9B82;
  --dark:          #1A0E11;
  --dark-mid:      #2D1820;
  --white:         #FFFFFF;
  --text-primary:  #1A0E11;
  --text-secondary:#5A3A42;
  --text-muted:    #6B5058; /* darkened for WCAG AA 4.5:1 contrast */
  --border:        rgba(123,45,64,0.12);
  --shadow-sm:     0 2px 8px rgba(26,14,17,0.06);
  --shadow-md:     0 8px 32px rgba(26,14,17,0.10);
  --shadow-lg:     0 24px 64px rgba(26,14,17,0.14);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; scroll-padding-top: 148px; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Language Toggle ---- */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid rgba(123,45,64,.2);
  border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--text-muted); cursor: pointer;
  transition: border-color .2s, color .2s; font-family: var(--font-sans);
}
.lang-toggle:hover { border-color: var(--burgundy); color: var(--burgundy); }
.lang-toggle .lt-active { color: var(--burgundy); }
.lang-toggle .lt-sep { opacity: .3; }
/* Hide desktop nav toggle on mobile — lives in hamburger menu instead */
@media (max-width: 1000px) { #langToggle { display: none !important; } }
/* Mobile menu toggle — inherits base .lang-toggle size, just pinned left */
.lang-toggle-mobile {
  align-self: flex-start;
  margin-bottom: 20px;
}

/* ---- Skip Link (keyboard accessibility) ---- */
.skip-link {
  position: fixed; top: -100%; left: 24px;
  background: var(--burgundy); color: var(--cream);
  padding: 12px 24px; border-radius: 0 0 14px 14px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  z-index: 99999; text-decoration: none;
  transition: top .2s ease;
  box-shadow: 0 4px 16px rgba(26,14,17,.25);
}
.skip-link:focus { top: 0; outline: none; }

/* ---- Global Focus Visible (keyboard navigation) ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible,
.btn-book:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 3px;
}
.faq-q:focus-visible,
.tab-btn:focus-visible,
.nav-dropdown-btn:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---- Touch Targets (min 44×44px) ---- */
.hamburger  { min-width: 44px; min-height: 44px; display: none; align-items: center; justify-content: center; }
.mobile-close { min-width: 44px; min-height: 44px; }
.nav-dropdown-btn { min-height: 44px; }
.faq-q { min-height: 48px; }
.tab-btn { min-height: 48px; }
@media (max-width: 1000px) { .hamburger { display: flex; } }

/* ---- Custom Cursor ---- */


/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 58px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1280px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-radius: 100px;
  background: rgba(250,248,245,.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(123,45,64,.08);
  box-shadow: 0 4px 24px rgba(26,14,17,.07);
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.scrolled { background: rgba(250,248,245,.97); box-shadow: 0 8px 32px rgba(26,14,17,.12); }

.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-mark {
  width: 34px; height: 34px; background: var(--burgundy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 13px; color: var(--cream); flex-shrink: 0;
}
.nav-name { font-family: var(--font-serif); font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.15; }
.nav-name small {
  display: block; font-family: var(--font-sans);
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  letter-spacing: .02em; transition: color .2s; cursor: pointer;
  padding: 8px 14px; border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--burgundy); background: rgba(123,45,64,.05); }

/* Dropdown Nav */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  padding: 8px 14px; border-radius: 100px; cursor: pointer;
  background: none; border: none; font-family: var(--font-sans);
  transition: color .2s, background .2s;
}
.nav-dropdown-btn:hover { color: var(--burgundy); background: rgba(123,45,64,.05); }
.nav-dropdown-btn svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-btn:hover { color: var(--burgundy); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 8px; min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 12px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: background .2s, color .2s; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--cream-mid); color: var(--burgundy); }
.nav-dropdown-menu .menu-sep {
  height: 1px; background: var(--border); margin: 6px 8px;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px;
  background: var(--burgundy); color: var(--cream); border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  transition: background .3s, transform .3s, box-shadow .3s; cursor: pointer;
  text-decoration: none; flex-shrink: 0;
}
.nav-cta:hover { background: var(--burgundy-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,45,64,.28); }

/* Hamburger — animates to × when menu open */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(250,248,245,.85); backdrop-filter: blur(8px);
  transition: border-color .2s;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--dark); transition: all .35s cubic-bezier(.4,0,.2,1); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 1000px) { .nav-links { display: none; } .nav-cta { display: none; } .hamburger { display: flex; } }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(100vw, 420px);
  background: var(--dark-mid);
  z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  box-shadow: -24px 0 80px rgba(0,0,0,.35);
  overflow-y: auto;
}
/* Backdrop */
.mobile-menu::before {
  content: '';
  position: fixed; inset: 0; right: min(100vw, 420px);
  background: rgba(26,14,17,.6);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .45s ease;
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu.open::before { opacity: 1; }

/* Menu header */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 0;
}
.mobile-menu-logo {
  width: 64px; height: 64px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .85;
}
.mobile-close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,.6); cursor: pointer; border-radius: 50%;
  border: 1px solid rgba(250,248,245,.12);
  transition: border-color .2s, color .2s; flex-shrink: 0;
  background: none;
}
.mobile-close:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

/* Rose-gold accent line */
.mobile-divider {
  height: 1px; background: linear-gradient(90deg, var(--rose-gold) 0%, transparent 100%);
  margin: 24px 28px 8px; opacity: .5;
}

/* Nav links */
.mobile-links { display: flex; flex-direction: column; padding: 8px 28px; flex: 1; }
.mobile-link {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: rgba(250,248,245,.5); line-height: 1.4; cursor: pointer;
  transition: color .25s, transform .25s; text-decoration: none;
  padding: 6px 0; display: flex; align-items: center; justify-content: space-between;
}
.mobile-link:hover, .mobile-link.active-page { color: var(--cream); }
.mobile-link:hover { transform: translateX(4px); }

/* Toggle buttons — match link style exactly, no browser defaults */
button.mobile-group-toggle {
  background: none; border: none; outline: none;
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: rgba(250,248,245,.5); line-height: 1.4; cursor: pointer;
  text-align: left; width: 100%; padding: 6px 0;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .25s, transform .25s;
}
button.mobile-group-toggle:hover { color: var(--cream); transform: translateX(4px); }
.toggle-icon {
  font-family: var(--font-sans); font-size: 18px; font-weight: 300;
  color: var(--rose-gold); opacity: .7; transition: transform .3s;
}
.mobile-group-toggle.open-group .toggle-icon { transform: rotate(45deg); }

/* Sub-links */
.mobile-sub-links {
  display: none; flex-direction: column; gap: 0;
  margin: 4px 0 12px 0;
  border-left: 1.5px solid rgba(196,145,122,.3);
  padding-left: 20px;
}
.mobile-sub-link {
  font-family: var(--font-sans); font-size: 14px; font-weight: 400;
  color: rgba(250,248,245,.35); cursor: pointer;
  transition: color .2s, transform .2s; text-decoration: none;
  padding: 7px 0;
  min-height: 44px; display: flex; align-items: center;
}
.mobile-sub-link:hover { color: rgba(250,248,245,.8); transform: translateX(4px); }

/* Menu footer */
.mobile-menu-footer {
  padding: 20px 28px 40px;
  border-top: 1px solid rgba(250,248,245,.06);
  display: flex; flex-direction: column; align-items: flex-start;
}
.mobile-menu-socials {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.mobile-menu-social {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(250,248,245,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,.4); transition: border-color .2s, color .2s;
  text-decoration: none;
}
.mobile-menu-social:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.mobile-menu-social svg { width: 15px; height: 15px; }
.mobile-menu-contact {
  font-size: 12px; color: rgba(250,248,245,.28); letter-spacing: .04em;
  margin-bottom: 20px;
}
.mobile-book {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; width: 100%;
  background: var(--burgundy); color: var(--cream); border-radius: 14px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: background .3s, transform .2s; text-decoration: none;
}
.mobile-book:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

/* ---- Section Utilities ---- */
.sec-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sec-tag-line { display: none; }
.sec-tag-text { font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-gold); }

.sec-title {
  font-family: var(--font-serif); font-size: clamp(34px, 5vw, 62px);
  font-weight: 400; line-height: 1.06; letter-spacing: -.01em; color: var(--dark);
  margin-bottom: 48px;
}
@media (max-width: 640px) { .sec-title { margin-bottom: 24px; } }
.sec-title em { font-style: italic; color: var(--burgundy); }
.sec-title-light { color: var(--cream); }
.sec-title-light em { color: var(--rose-gold); }
.sec-body { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--text-secondary); }
.two-col-text .sec-body { margin-top: 48px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  background: var(--burgundy); color: var(--cream); border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  transition: background .3s, transform .3s, box-shadow .3s; cursor: pointer; text-decoration: none;
}
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(123,45,64,.28); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border: 1.5px solid var(--border); color: var(--dark); border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  transition: all .3s; cursor: pointer; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--burgundy); color: var(--burgundy); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border: 1.5px solid rgba(250,248,245,.22); color: var(--cream); border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  transition: all .3s; cursor: pointer; text-decoration: none;
}
.btn-ghost:hover { background: rgba(250,248,245,.08); border-color: rgba(250,248,245,.4); }

.btn-lg {
  padding: 18px 40px; font-size: 14px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  min-height: 80vh; max-height: none;
  position: relative; display: flex; align-items: flex-start;
  overflow: hidden; background: var(--cream); padding-top: 160px;
}
.page-hero-panel {
  position: absolute; right: 0; top: 0; width: 48%; height: 100%; overflow: hidden;
}
.page-hero-panel-fade {
  position: absolute; left: -1px; top: 0; width: 200px; height: 100%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%); z-index: 3;
}
.page-hero-content { position: relative; z-index: 5; width: 100%; padding-bottom: 80px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 28px;
}
.page-hero-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--burgundy); }
.page-hero-breadcrumb span { color: var(--rose-gold); }
.page-hero-tag {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.page-hero-tag-line { display: none; }
.page-hero-tag-text { font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-gold); }
.page-hero-h1 {
  font-family: var(--font-serif); font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 400; line-height: .95; letter-spacing: -.02em; color: var(--dark);
  max-width: 580px; margin-bottom: 24px;
}
.page-hero-h1 em { font-style: italic; color: var(--burgundy); }
.page-hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: var(--text-secondary); max-width: 420px; margin-bottom: 44px;
}
.page-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Learn More always appears over the dark hero overlay — needs light treatment */
.page-hero-actions .btn-secondary {
  color: var(--cream);
  border-color: rgba(250,248,245,.45);
}
.page-hero-actions .btn-secondary:hover {
  background: rgba(250,248,245,.1);
  border-color: var(--cream);
  color: var(--cream);
}

@media (max-width: 900px) {
  .page-hero-panel { width: 100%; height: 40%; top: auto; bottom: 0; }
  .page-hero-panel-fade {
    left: 0; top: -1px; width: 100%; height: 80px;
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  }
  .page-hero { min-height: auto; padding-bottom: 40%; }
}

/* ---- Booking CTA (shared) ---- */
.booking-cta {
  padding: 140px 0; background: var(--dark); position: relative; overflow: hidden;
}
.booking-cta::before {
  content: ''; position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(196,145,122,.09) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,145,122,.28), transparent);
}
.booking-cta-inner { text-align: center; position: relative; z-index: 1; }
.booking-cta-tag {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px;
}
.booking-cta-tag-line { display: none; }
.booking-cta-tag-text { font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-gold); }
.booking-cta-h {
  font-family: var(--font-serif); font-size: clamp(40px, 6vw, 86px);
  font-weight: 400; line-height: .97; letter-spacing: -.02em; color: var(--cream); margin-bottom: 24px;
}
.booking-cta-h em { font-style: italic; color: var(--rose-gold); }
.booking-cta-p {
  font-size: 17px; font-weight: 300; line-height: 1.65;
  color: rgba(250,248,245,.58); max-width: 480px; margin: 0 auto 48px;
}
.booking-cta-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.btn-book {
  display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px;
  background: var(--rose-gold); color: var(--dark); border-radius: 100px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: all .35s cubic-bezier(.4,0,.2,1); cursor: pointer; text-decoration: none;
}
.btn-book:hover { background: var(--rose-gold-lt); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(196,145,122,.38); }

/* ---- New Patient Banner ---- */
.np-banner {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  background: var(--burgundy); padding: 11px 0; text-align: center;
  z-index: 200;
}
.np-banner-text {
  font-size: 13.5px; font-weight: 500; color: var(--cream); letter-spacing: .02em;
}
.np-banner-text strong { font-weight: 700; }

/* ---- FAQ Accordion ---- */
.faq-section { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: left; cursor: pointer; background: none;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  color: var(--dark); gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--burgundy); }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .3s; color: var(--text-muted);
}
.faq-item.open .faq-q-icon { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px; font-weight: 300; line-height: 1.75;
  color: var(--text-secondary); max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ---- Benefit Cards ---- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  padding: 28px 24px; border-radius: 18px;
  border: 1px solid var(--border); background: var(--white);
  transition: all .3s ease;
}
.benefit-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--burgundy); fill: none; stroke-width: 1.5; }
.benefit-title { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--dark); margin-bottom: 8px; }
.benefit-desc { font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

/* ---- Process Steps ---- */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }

.ps-item { padding: 44px 32px 44px 0; border-right: 1px solid var(--border); }
.ps-item:last-child { border-right: none; padding-right: 0; }
.ps-item:not(:first-child) { padding-left: 32px; }
@media (max-width: 900px) {
  .ps-item { border-bottom: 1px solid var(--border); }
  .ps-item:nth-child(2) { border-right: none; }
  .ps-item:nth-child(3) { border-right: 1px solid var(--border); }
  .ps-item:nth-child(3), .ps-item:nth-child(4) { border-bottom: none; }
}
.ps-num {
  font-family: var(--font-serif); font-size: 60px; font-weight: 400; line-height: 1;
  color: var(--cream-dark); margin-bottom: 20px; transition: color .4s;
}
.ps-item:hover .ps-num { color: var(--rose-gold); }
.ps-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.ps-desc { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--text-secondary); }

/* ---- Related Treatments ---- */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  border-radius: 20px; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; position: relative;
  transition: transform .4s cubic-bezier(.4,0,.2,1); text-decoration: none;
}
.related-card:hover { transform: translateY(-6px); }
.related-card-bg { position: absolute; inset: 0; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.related-card:hover .related-card-bg { transform: scale(1.05); }
img.related-card-bg { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.related-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,14,17,.85) 0%, rgba(26,14,17,.1) 60%, transparent 100%);
}
.related-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.related-card-label { font-size: 9px; font-weight: 700; letter-spacing: .2em; color: var(--rose-gold); margin-bottom: 6px; }
.related-card-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--cream); line-height: 1.25; }

/* ---- Two-Column Layout ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse .two-col-text { order: 2; }
.two-col.reverse .two-col-visual { order: 1; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } .two-col.reverse .two-col-text, .two-col.reverse .two-col-visual { order: unset; } }

.two-col-visual {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; position: relative;
}
.two-col-visual-inner { width: 100%; height: 100%; }

/* ---- Dark Split Section ---- */
.dark-split {
  padding: 120px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.dark-split::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,145,122,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Footer ---- */
.footer { background: #110808; padding: 80px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  align-items: start;
  padding-bottom: 60px; border-bottom: 1px solid rgba(250,248,245,.05); margin-bottom: 36px;
}
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 580px) {
  .footer { padding: 40px 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 16px; padding-bottom: 28px; margin-bottom: 20px; }
  /* Logo row — full width, logo left, socials right */
  .footer-top > div:first-child { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
  /* Contact+Hours — also full width so it's not orphaned alone */
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-tagline { display: none; }
  .footer-logo { margin-bottom: 0; }
  /* Aesthetic Services — 2-col list to save vertical space */
  .footer-top > div:nth-child(2) .footer-links { columns: 2; column-gap: 12px; display: block; }
  .footer-top > div:nth-child(2) .footer-lnk { display: block; break-inside: avoid; }
  .footer-col-h { margin-bottom: 14px; }
  .footer-links { gap: 8px; }
  .footer-lnk { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.footer-mark {
  width: 40px; height: 40px; background: var(--burgundy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 14px; color: var(--cream);
}
.footer-name { font-family: var(--font-serif); font-size: 17px; color: var(--cream); line-height: 1.15; }
.footer-name span {
  display: block; font-family: var(--font-sans);
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250,248,245,.35); margin-top: 3px;
}
.footer-tagline { font-family: var(--font-serif); font-size: 17px; font-style: italic; color: rgba(250,248,245,.42); line-height: 1.6; margin-bottom: 28px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(250,248,245,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,.45); cursor: pointer; transition: border-color .2s, color .2s; text-decoration: none;
}
.footer-social:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-h { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(250,248,245,.3); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-lnk { font-size: 13.5px; font-weight: 300; color: rgba(250,248,245,.55); cursor: pointer; transition: color .2s; text-decoration: none; }
.footer-lnk:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 11.5px; font-weight: 300; color: rgba(250,248,245,.22); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 11.5px; font-weight: 300; color: rgba(250,248,245,.22); cursor: pointer; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(250,248,245,.45); }

/* ---- Section Spacing ---- */
.section     { padding: 120px 0; }
.section-sm  { padding: 80px 0; }
.section-dark { padding: 120px 0; background: var(--dark); }
.section-mid  { padding: 120px 0; background: var(--cream-mid); }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--border); }
.divider-rose { background: linear-gradient(to right, transparent, var(--rose-gold), transparent); opacity: .3; }

/* ============================================================
   PRICE STRIP — sits immediately below hero on treatment pages
   ============================================================ */
.price-strip {
  background: var(--dark);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.price-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(250,248,245,.06);
}
.price-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.price-strip-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.price-strip-item { display: flex; flex-direction: column; gap: 1px; }
.price-strip-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 2px;
}
.price-strip-amount {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 500;
  color: var(--cream); line-height: 1;
}
.price-strip-unit {
  font-size: 11.5px; color: rgba(250,248,245,.45);
  font-family: var(--font-sans); font-weight: 400;
  margin-top: 3px;
}
.price-strip-sep {
  width: 1px; height: 44px; flex-shrink: 0;
  background: rgba(250,248,245,.1);
  align-self: center;
}
.price-strip-note {
  font-size: 12px; color: rgba(250,248,245,.38);
  line-height: 1.5; max-width: 280px;
  font-style: italic;
}
.price-strip-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--burgundy); color: var(--cream);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .2s ease;
  cursor: pointer;
}
.price-strip-cta:hover { background: var(--burgundy-dark); }
.price-strip-cta svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .price-strip-inner { gap: 24px; }
  .price-strip-items { gap: 28px; }
  .price-strip-note { display: none; }
}
@media (max-width: 640px) {
  .price-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 20px; }
  .price-strip-cta { align-self: stretch; justify-content: center; }
  .price-strip-amount { font-size: 26px; }
}

/* ============================================================
   IMAGE INTEGRATION SYSTEM
   ============================================================ */

/* Universal image cover */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.img-cover-top    { object-position: center top; }
.img-cover-bottom { object-position: center bottom; }

/* Page hero panel image */
.page-hero-panel img.img-cover {
  position: absolute; inset: 0;
  object-position: center top;
}

/* Service card image (replaces gradient bg divs) */
.svc-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover .svc-card-img { transform: scale(1.06); }

/* Hover zoom wrapper */
.img-zoom { overflow: hidden; border-radius: inherit; }
.img-zoom img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.img-zoom:hover img { transform: scale(1.05); }

/* Philosophy / two-col visual image */
.two-col-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 24px; display: block;
}

/* Treatment option block image */
.option-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border-radius: 20px; display: block;
}

/* Results / before-after gallery */
.results-section { padding: 100px 0; }
.results-hd { margin-bottom: 56px; }
.results-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .results-gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .results-gallery { grid-template-columns: 1fr; } }

.result-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4; cursor: default;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s ease, transform .35s ease;
}
.result-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.result-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.result-card:hover img { transform: scale(1.04); }
.result-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(12px);
  padding: 6px 14px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--burgundy);
}

/* Treatment area grid (for filler page) */
.treatment-areas { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 580px) { .treatment-areas { grid-template-columns: 1fr; } }

.area-card {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.area-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.area-card:hover img { transform: scale(1.05); }
.area-card-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(26,14,17,.65); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream);
}

/* Drip card image (IV therapy) */
.drip-card-img {
  width: 100%; height: 160px;
  object-fit: cover; object-position: center;
  border-radius: 14px; display: block;
  margin-bottom: 16px;
  transition: transform .5s ease;
}
.drip-card:hover .drip-card-img { transform: scale(1.03); }

/* Team photo */
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Specials deal card image */
.deal-card-img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: center;
  border-radius: 14px 14px 0 0; display: block;
  transition: transform .5s ease;
}

/* Book Now / CTA image strip */
.cta-img-strip {
  position: absolute; inset: 0;
  object-fit: cover; object-position: center;
  width: 100%; height: 100%;
  opacity: .22;
}

/* Logo image in nav */
.nav-logo-img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: contain;
  display: block;
}

/* Footer logo — white + large */
.footer-logo .nav-logo-img {
  filter: brightness(0) invert(1);
  width: 150px; height: 150px;
}

/* Floating image inset (creative overlay) */
.img-inset {
  position: absolute;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-inset img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Skincare product card image */
.product-img {
  width: 100%; height: 220px;
  object-fit: contain; object-position: center;
  background: var(--cream-mid);
  border-radius: 12px; display: block; padding: 16px;
}

/* Disclaimer text under results */
.results-disclaimer {
  text-align: center; margin-top: 24px;
  font-size: 11px; color: var(--text-muted);
  letter-spacing: .04em;
}

/* ============================================================
   BEFORE / AFTER DRAG SLIDER  (matched to laserandme.com)
   ============================================================ */
.ba-section { padding: 100px 0; background: var(--cream-mid); }
.ba-header  { margin-bottom: 56px; }

/* 2-column grid, fixed 4:3 landscape sliders */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-grid.pairs-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 580px) { .ba-grid, .ba-grid.pairs-2 { grid-template-columns: 1fr; } }

.ba-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-md);
  background-color: var(--cream-mid);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .3s ease;
  aspect-ratio: 4 / 3;
}
.ba-slider:hover { box-shadow: var(--shadow-lg); }

/* Both images fill the full container */
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

/* Before image revealed via clip-path (GPU-accelerated, no wrapper needed) */
.ba-before { clip-path: inset(0 50% 0 0); }

/* Divider line — 1.5px semi-transparent white like laserandme */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Circular handle — white with rose-gold border like laserandme's gold border */
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  border: 1.5px solid rgba(196,145,122,.6);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
  z-index: 10;
  transition: box-shadow .2s, border-color .2s;
}
.ba-slider.ba-touched .ba-handle { cursor: grabbing; }
.ba-handle:hover { box-shadow: 0 4px 20px rgba(0,0,0,.25); border-color: rgba(196,145,122,.9); }

/* SVG arrows inside handle */
.ba-handle svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Labels — both same dark pill (exactly like laserandme) */
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(28,28,26,.55);
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 5;
  transition: opacity .2s;
}
.ba-label-before { left: 0.75rem; }
.ba-label-after  { right: 0.75rem; }

/* Fade labels when slider is being dragged */
.ba-slider.ba-touched .ba-label { opacity: 0.6; }

/* Hint pulse on the handle before user interacts */
@keyframes baHint {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(-50%,-50%) scale(1.2); border-color: rgba(196,145,122,1); }
}
.ba-slider:not(.ba-touched) .ba-handle {
  animation: baHint 1.6s ease-in-out 1.2s 2;
}

/* Instruction chip */
.ba-hint-chip {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(26,14,17,.55);
  backdrop-filter: blur(10px);
  color: rgba(250,248,245,.9);
  font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease;
  z-index: 5;
}
.ba-slider.ba-touched .ba-hint-chip { opacity: 0; }

/* ============================================================
   MOBILE AUDIT FIXES (≤640px)
   ============================================================ */
@media (max-width: 640px) {

  /* Section padding — halve on mobile */
  .section     { padding: 64px 0; }
  .section-sm  { padding: 48px 0; }
  .section-dark { padding: 64px 0; }
  .section-mid  { padding: 64px 0; }
  .ba-section  { padding: 64px 0; }
  .booking-cta { padding: 80px 0; }

  /* booking-cta — prevent overflow from pseudo-elements */
  .booking-cta::before,
  .booking-cta::after { width: 100vw; }

  /* Banner touch target — make "Book Now" link tappable */
  .np-banner { padding: 10px 16px; }
  .np-banner-text { font-size: 12.5px; }

  /* Mobile group toggle buttons — min touch height */
  .mobile-link,
  .mobile-group-toggle { min-height: 44px; display: flex; align-items: center; }

  /* Footer links — increase touch area */
  .footer-lnk { padding: 6px 0; display: block; }

  /* Booking CTA actions — stack on small screens */
  .booking-cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .booking-cta-actions .btn-book,
  .booking-cta-actions .btn-ghost { width: 100%; padding: 18px 40px; font-size: 13.5px; text-align: center; justify-content: center; box-sizing: border-box; }

  /* Two-col — reduce gap on mobile */
  .two-col { gap: 32px; }

  /* Process steps — single col, uniform padding so all numbers align */
  .process-steps { grid-template-columns: 1fr; }
  .ps-item,
  .ps-item:not(:first-child) { padding: 32px 0; border-right: none; }
  .ps-item:last-child { border-bottom: none; }

  /* Nav — push down on mobile to clear the taller (2-line) banner */
  .nav { top: 70px; }

  /* Page hero — clear banner (55px) + nav (70px + 78px) + gap */
  .page-hero { padding-top: 165px; min-height: unset; height: auto; padding-bottom: 48px; }

  /* Hero CTA buttons — stack full-width and equal size on mobile */
  .page-hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .page-hero-actions .btn-lg { width: 100%; text-align: center; justify-content: center; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ts-track, .marquee-track { animation: none !important; }
  .reveal { transition: none !important; }
}

/* ============================================================
   TOUCH DEVICES — strip all hover effects
   (hover: none) = no fine pointer / no true hover capability
   ============================================================ */
@media (hover: none) {
  /* Buttons */
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-ghost:hover,
  .btn-book:hover,
  .nav-cta:hover,
  .mobile-book:hover    { transform: none !important; box-shadow: none !important; }

  /* Service / result / area / drip cards */
  .svc-card:hover .svc-card-img,
  .drip-card:hover .drip-card-img,
  .img-zoom:hover img   { transform: none !important; }

  .benefit-card:hover   { transform: none !important; box-shadow: none !important; }
  .related-card:hover   { transform: none !important; }
  .related-card:hover .related-card-bg { transform: none !important; }
  .result-card:hover    { transform: none !important; box-shadow: none !important; }
  .result-card:hover img { transform: none !important; }
  .area-card:hover      { transform: none !important; box-shadow: none !important; }
  .area-card:hover img  { transform: none !important; }

  /* Before / after slider */
  .ba-slider:hover      { box-shadow: none !important; }
  .ba-handle:hover      { box-shadow: none !important; }

  /* Process step number tint */
  .ps-item:hover .ps-num { color: var(--cream-dark) !important; }

  /* Mobile menu link slides */
  .mobile-link:hover,
  button.mobile-group-toggle:hover,
  .mobile-sub-link:hover { transform: none !important; }

  /* Nav dropdown (touch — open via tap, not hover) */
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 0; pointer-events: none; }
}
