/* ================================================
   URBAN HAIR & BEAUTY — styles.css (multi-page)
   ================================================ */

:root {
  --dark:        #000000;
  --dark-mid:    #222222;
  --dark-lt:     #2a2a2a;
  --white:       #ffffff;
  --off-white:   #faf8f5;
  --rose-gold:   #c4956a;
  --rose-gold-dk:#b07d55;
  --gold:        #f4a416;
  --text:        #444444;
  --grey-dk:     #666666;
  --grey-mid:    #e0e0e0;
  --grey-lt:     #eeeeee;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 8px 30px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --t:           all 0.3s ease;
  --nav-h:       268px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; background: #000000; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: #000000; line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

body.menu-open { overflow: hidden; }
html, body { max-width: 100%; }
section, header, footer, nav, div, main { max-width: 100%; }

/* ── PERFORMANCE ── */
* { -webkit-backface-visibility: hidden; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
.section { padding: 96px 0; }
.section--grey { background: var(--off-white); }
.section--dark { background: var(--dark); }

/* ── PAGE FADE IN ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
main { animation: fadeIn 0.25s ease forwards; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }

.label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-gold); margin-bottom: 10px;
}
.label--gold { color: var(--gold); }

.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--dark); margin-bottom: 14px;
}
.heading--light { color: var(--white); }

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--dark); margin-bottom: 14px;
}
.straight-dash {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: inline-block;
}

.subhead { font-size: 1rem; color: var(--grey-dk); line-height: 1.8; max-width: 600px; }
.subhead--light { color: rgba(255,255,255,0.72); }

.section-hd { margin-bottom: 52px; }
.section-hd.centered { text-align: center; }
.section-hd.centered .subhead { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  transition: var(--t); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1.2;
}
.btn--primary { background: var(--rose-gold); color: var(--white); }
.btn--primary:hover { background: var(--rose-gold-dk); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-lt); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── INSTAGRAM BANNER ── */
.instagram-banner {
    width: 100%;
    background: #c4956a;
    padding: 10px 24px;
    text-align: center;
    z-index: 1001;
    position: relative;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.instagram-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
    padding: 8px 16px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.instagram-banner-link:hover {
    opacity: 0.85;
}

.instagram-banner-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.instagram-banner-handle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
    shape-rendering: geometricPrecision;
}

@media (max-width: 768px) {
    .instagram-banner {
        padding: 6px 16px;
    }

    .instagram-banner-link {
        min-height: 44px;
        width: 100%;
        justify-content: center;
    }

    .instagram-banner-text {
        font-size: 12px;
    }

    .instagram-banner-handle {
        font-size: 12px;
    }

    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .instagram-banner {
        padding: 8px 16px;
    }

    .instagram-banner-text {
        font-size: 12px;
    }

    .instagram-banner-handle {
        font-size: 12px;
    }

    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}

/* ── NAVIGATION ── */
.site-nav {
  position: absolute; top: 42px; left: 0; right: 0;
  z-index: 1000; background: var(--dark);
  height: var(--nav-h);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 480px) {
    .site-nav {
        top: 38px;
    }
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: var(--nav-h);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; height: 268px; padding: 12px 0; }
.nav-logo-img { height: 242px; width: auto; max-width: 980px; object-fit: contain; display: block; }

.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 400;
  transition: var(--t); position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--rose-gold); transition: width 0.25s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  background: var(--rose-gold) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 4px; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--rose-gold-dk) !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; width: 44px; height: 44px; padding: 10px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  top: 268px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 28px;
  color: rgba(255,255,255,0.75); font-size: 0.95rem; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--t);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose-gold); padding-left: 36px; }
.mobile-menu a.mobile-cta { color: var(--rose-gold); font-weight: 500; }

/* ── HERO (home — full screen slideshow) ── */
.hero {
  position: relative; min-height: 100vh; height: auto;
  display: flex; align-items: flex-start; justify-content: flex-start;
  background-color: var(--dark); overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.5s ease-in-out;
  will-change: opacity; transform: translateZ(0); backface-visibility: hidden;
}
.hero-slide.active { opacity: 1; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 320px 32px 60px 32px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-label {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-gold);
  margin-bottom: 18px; background: rgba(196,149,106,0.14); padding: 8px 16px; border-radius: 2px;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600;
  color: var(--white); line-height: 1.1; margin-bottom: 22px; letter-spacing: 1px;
}
.hero-sub {
  font-weight: 300; font-size: 1.05rem; color: rgba(255,255,255,0.82);
  max-width: 640px; margin: 0 auto 34px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 308px 32px 80px 32px;
  text-align: center;
}
.page-hero h1,
.page-hero .heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.page-hero .label { color: var(--rose-gold); margin-bottom: 12px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.trust-item {
  color: var(--white); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 20px 36px; border-right: 1px solid rgba(255,255,255,0.1); white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

/* ── ABOUT SECTION ── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center center;
    border-radius: 4px;
    border: 3px solid #c4956a;
    display: block;
}
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { font-size: 0.97rem; color: var(--grey-dk); line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 9px; margin: 4px 0; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--dark); padding-left: 18px; position: relative; line-height: 1.5; }
.about-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--rose-gold); border-radius: 50%; }

/* ── SERVICES PREVIEW (home) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.srv-card {
  display: block; background: var(--white); border: 1px solid var(--grey-lt);
  border-top: 3px solid transparent; border-radius: var(--radius);
  padding: 32px 26px; transition: var(--t); text-decoration: none;
}
.srv-card:hover { border-top-color: var(--rose-gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.srv-card__num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--rose-gold); opacity: 0.4; margin-bottom: 12px; line-height: 1; }
.srv-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
.srv-card__desc { font-size: 0.88rem; color: var(--grey-dk); line-height: 1.72; }
.srv-card__arrow { display: inline-flex; align-items: center; gap: 5px; color: var(--rose-gold); font-size: 0.8rem; font-weight: 500; margin-top: 14px; }

/* ── SERVICES PAGE ── */
.services-page-section { padding: 64px 0 32px; }
.services-page-section:last-of-type { padding-bottom: 80px; }
.service-category-hd { margin-bottom: 36px; padding-bottom: 18px; border-bottom: 1px solid var(--grey-mid); }
.service-category-hd h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); }
.service-category-hd p { font-size: 0.95rem; color: var(--grey-dk); margin-top: 8px; line-height: 1.7; }
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card-full {
  background: var(--white); border: 1px solid var(--grey-lt);
  border-top: 3px solid var(--rose-gold); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: var(--t);
}
.service-card-full:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card-full h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.service-card-full p { font-size: 0.9rem; color: var(--grey-dk); line-height: 1.78; flex: 1; }
.service-card-full .btn { align-self: flex-start; margin-top: 6px; }

/* ── REVIEWS CAROUSEL (home) ── */
.reviews-section { background: var(--dark); padding: 96px 0; }
.carousel-outer { position: relative; padding: 0 56px; }
#carouselWrapper { overflow: hidden; width: 100%; }
#carouselTrack { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.review-card {
  flex-shrink: 0; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 24px 22px; box-sizing: border-box;
  display: flex; flex-direction: column; height: 180px; overflow: hidden; margin-right: 20px;
}
.review-card:last-child { margin-right: 0; }
.review-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; flex-shrink: 0; margin-bottom: 8px; line-height: 1; }
.review-card .review-text { font-style: italic; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.82); flex: 1; overflow: hidden; min-height: 0; display: block; word-break: break-word; }
.review-card .review-name { font-weight: 600; font-size: 12px; color: var(--white); flex-shrink: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 8px; margin-top: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card .review-label { font-size: 10px; color: var(--rose-gold); text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; margin-top: 2px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.35);
  color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: var(--t); padding: 0; line-height: 1;
}
.carousel-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
.carousel-btn svg { display: block; width: 18px; height: 18px; flex-shrink: 0; margin: 0; padding: 0; }
#carouselPrev { left: 0; }
#carouselNext { right: 0; }

/* ── REVIEWS PAGE ── */
.rating-summary {
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 30px; margin-bottom: 48px;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 600; color: var(--white); line-height: 1; }
.rating-stars-lg { display: flex; gap: 4px; justify-content: center; margin: 8px 0; }
.rating-stars-lg span { color: var(--gold); font-size: 22px; }
.rating-count { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.rating-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.rating-body { font-size: 0.97rem; color: rgba(255,255,255,0.75); line-height: 1.8; }

.reviews-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card-full {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px; transition: var(--t);
  display: flex; flex-direction: column; gap: 12px;
}
.review-card-full:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }
.review-card-full .stars-full { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-card-full .review-text-full { font-style: italic; font-size: 0.9rem; line-height: 1.78; color: rgba(255,255,255,0.82); flex: 1; }
.review-card-full .review-name-full { font-weight: 600; font-size: 0.88rem; color: var(--white); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; }
.review-card-full .review-label-full { font-size: 0.72rem; color: var(--rose-gold); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.g-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; height: 270px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.g-item:hover img { transform: scale(1.06); }
.g-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.g-item:hover .g-item__overlay { background: rgba(0,0,0,0.42); }
.g-item__overlay svg { width: 36px; height: 36px; stroke: var(--white); fill: none; stroke-width: 2; opacity: 0; transition: var(--t); stroke-linecap: round; }
.g-item:hover .g-item__overlay svg { opacity: 1; }

/* ── CTA BAND ── */
.cta-band { padding: 90px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; max-width: 520px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; }
.contact-intro { font-size: 0.97rem; color: var(--grey-dk); line-height: 1.8; margin: 16px 0 28px; }
.c-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 40px; height: 40px; background: rgba(196,149,106,0.12); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; stroke: var(--rose-gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.c-detail { display: flex; flex-direction: column; gap: 2px; }
.c-label { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #999999; }
.c-value { font-size: 0.95rem; color: var(--dark); line-height: 1.5; }
.c-value a { color: var(--dark); transition: var(--t); }
.c-value a:hover { color: var(--rose-gold); }

.hours-table { width: 100%; margin-top: 4px; }
.hours-table tr { border-bottom: 1px solid var(--grey-lt); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; font-size: 0.88rem; color: var(--grey-dk); }
.hours-table td:first-child { font-weight: 500; color: var(--dark); }
.hours-table td:last-child { text-align: right; }

/* ── FORM ── */
.form-wrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--grey-dk); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-mid); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--dark); background: var(--white); transition: var(--t); outline: none; -webkit-appearance: none; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose-gold); box-shadow: 0 0 0 3px rgba(196,149,106,0.12); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#formSubmit { width: 100%; padding: 14px; background: var(--rose-gold); color: var(--white); border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: var(--t); margin-top: 4px; }
#formSubmit:hover { background: var(--rose-gold-dk); transform: translateY(-2px); }
#formSubmit:disabled { opacity: 0.65; cursor: default; transform: none; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start; }
.footer-logo { height: 60px; width: auto; max-width: 240px; object-fit: contain; display: block; margin: 0 auto 20px auto; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.86rem; color: rgba(255,255,255,0.52); transition: var(--t); }
.footer-col ul a:hover { color: var(--rose-gold); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: var(--t); }
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__close svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── FADE-UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── BUTTON VARIANTS ── */
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--block { width: 100%; justify-content: center; display: flex; }

/* ── GALLERY PAGE ── */
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: zoom-in; height: 270px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.42); }
.gallery-overlay span {
  color: var(--white); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; transition: var(--t);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ── LIGHTBOX CLOSE BUTTON ── */
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--white); font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ── REVIEWS PAGE ── */
.reviews-dark-section { background: var(--dark); padding: 96px 0; }
.rating-summary {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; margin-bottom: 56px;
}
.rating-score {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  font-weight: 600; color: var(--white); line-height: 1;
}
.rating-summary .rating-stars { color: var(--gold); font-size: 26px; letter-spacing: 4px; }
.rating-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.stars--gold { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-full-text {
  font-style: italic; font-size: 0.9rem; line-height: 1.78;
  color: rgba(255,255,255,0.82); flex: 1;
}
.review-full-name {
  font-weight: 600; font-size: 0.88rem; color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; margin-top: auto;
}
.review-full-label {
  font-size: 0.72rem; color: var(--rose-gold);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px;
}

/* ── REVIEWS LIGHT CARD GRID ── */
.review-card-light {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: var(--t);
}
.review-card-light:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.review-card-light .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.review-card-light .review-text { font-style: italic; font-size: 0.87rem; line-height: 1.75; color: var(--grey-dk); flex: 1; }
.review-card-light .review-name { font-weight: 600; font-size: 0.84rem; color: var(--dark); border-top: 1px solid var(--grey-mid); padding-top: 10px; margin-top: 12px; }
.review-card-light .review-label { font-size: 0.7rem; color: var(--rose-gold); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.reviews-google-cta {
  border: 2px solid var(--rose-gold); border-radius: var(--radius-lg);
  padding: 52px 40px; text-align: center; margin-top: 64px;
  background: var(--white);
}
.reviews-google-cta h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 600; color: var(--dark); margin-bottom: 14px;
}
.reviews-google-cta p { font-size: 0.93rem; color: var(--grey-dk); line-height: 1.78; max-width: 520px; margin: 0 auto 28px; }

/* ── SERVICES PAGE FULL CARDS ── */
.services-grid--full { grid-template-columns: repeat(2, 1fr); }
.srv-card--full {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 22px; cursor: default; height: auto;
}
.srv-card--full:hover { cursor: default; }
.srv-card--full .srv-card__num { flex-shrink: 0; padding-top: 2px; }
.srv-card__body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.srv-card__body .srv-card__title { margin-bottom: 0; }
.srv-card__body .srv-card__desc { flex: 1; }

/* ── PRICING TABLES ── */
.pricing-wrap { max-width: 900px; }
.price-section { margin-bottom: 52px; }
.price-section:last-child { margin-bottom: 0; }
.price-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--dark);
  padding-bottom: 10px; margin-bottom: 18px;
  border-bottom: 2px solid var(--rose-gold); display: block;
}
.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--grey-lt); gap: 8px;
}
.price-row:last-child { border-bottom: none; }
.price-name { color: var(--dark); font-size: 0.91rem; flex: 1; padding-right: 16px; line-height: 1.45; }
.price-sub { font-size: 0.8rem; color: var(--grey-dk); display: block; margin-top: 2px; font-style: italic; }
.price-value { color: var(--rose-gold); font-weight: 500; font-size: 0.91rem; white-space: nowrap; flex-shrink: 0; }
.price-note {
  background: rgba(196,149,106,0.07); border-left: 3px solid var(--rose-gold);
  padding: 14px 18px; border-radius: 0 6px 6px 0; margin: 16px 0;
  font-size: 0.875rem; color: var(--grey-dk); line-height: 1.75;
}
.price-note strong { color: var(--dark); font-weight: 500; }

/* ── PRICING ACCORDION ── */
.pricing-intro {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px auto;
    line-height: 1.7;
}

.price-categories {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-category {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.price-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.price-category-btn:hover {
    background: #faf8f5;
}

.price-category-btn.active {
    background: #1a1a1a;
}

.price-category-btn.active .price-category-title {
    color: #ffffff;
}

.price-category-btn.active .price-category-icon {
    color: #c4956a;
}

.price-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.price-category-icon {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #c4956a;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.price-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
    padding: 0 24px;
}

.price-category-content.active {
    padding: 0 24px 24px 24px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 24px;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    flex: 1;
    line-height: 1.5;
}

.pricing-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #c4956a;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888888;
    font-style: italic;
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

@media (max-width: 768px) {
    .price-category-btn {
        padding: 16px 20px;
    }

    .price-category-title {
        font-size: 1.2rem;
    }

    .price-category-content {
        padding: 0 20px;
    }

    .price-category-content.active {
        padding: 0 20px 20px 20px;
    }

    .pricing-item {
        flex-direction: column;
        gap: 4px;
    }

    .pricing-item-price {
        font-size: 13px;
    }
}

.pricing-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pricing-2col .price-section { margin-bottom: 0; }
.policy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.policy-card { background: var(--off-white); border: 1px solid var(--grey-lt); border-top: 2px solid var(--rose-gold); border-radius: var(--radius-lg); padding: 26px 22px; }
.policy-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.policy-card p { font-size: 0.86rem; color: var(--grey-dk); line-height: 1.75; }

/* ── CRYSTAL CLEAR PAGE ── */
.cc-intro-section { padding: 72px 0 48px; }
.cc-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem); font-weight: 600;
  color: var(--dark); line-height: 1.2; text-align: center;
  max-width: 780px; margin: 0 auto 32px;
}
.cc-price-display {
  display: inline-flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: center; background: var(--dark); padding: 20px 36px;
  border-radius: var(--radius-lg); border: 2px solid var(--rose-gold); margin-bottom: 60px;
}
.cc-price-display__main { text-align: center; }
.cc-price-display__amount { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--rose-gold); line-height: 1; display: block; }
.cc-price-display__label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.cc-price-display__sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.cc-price-display__course { text-align: center; }
.cc-price-display__course-val { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); line-height: 1; display: block; }
.cc-price-display__course-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.treatment-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
.treatment-step {
  background: var(--white); border: 1px solid var(--grey-lt);
  border-top: 3px solid var(--rose-gold); border-radius: var(--radius-lg);
  padding: 36px 28px; display: flex; flex-direction: column; gap: 10px;
}
.treatment-step__num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 400; color: var(--rose-gold); opacity: 0.3; line-height: 1; }
.treatment-step__title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.treatment-step__sub { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose-gold); }
.treatment-step__desc { font-size: 0.89rem; color: var(--grey-dk); line-height: 1.78; }

/* ── CONTACT PAGE V2 ── */
.contact-v2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-phones { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 24px; }
.contact-phone-card {
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 22px; background: var(--off-white);
  border-radius: var(--radius); border-left: 3px solid var(--rose-gold);
}
.contact-phone-card__label { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-dk); }
.contact-phone-card__num { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 600; color: var(--dark); transition: var(--t); line-height: 1.1; display: block; }
.contact-phone-card__num:hover { color: var(--rose-gold); }
.contact-appt-note {
  background: rgba(196,149,106,0.07); border-left: 3px solid var(--rose-gold);
  padding: 13px 17px; border-radius: 0 6px 6px 0; margin: 20px 0;
  font-size: 0.875rem; color: var(--grey-dk); line-height: 1.75;
}
.contact-addr-block { margin-top: 24px; }
.contact-addr-block__label { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-dk); margin-bottom: 6px; }
.contact-addr-block__text { font-size: 0.95rem; color: var(--dark); line-height: 1.65; }
.contact-book-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; }
.contact-book-card .heading { margin-bottom: 14px; }
.contact-book-card p { font-size: 0.92rem; color: var(--grey-dk); line-height: 1.75; margin-bottom: 20px; }

/* ── FOOTER LIST ITEMS (non-link) ── */
.footer-col ul li { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-info > .label { margin-bottom: 6px; }
.contact-info > .heading { margin-bottom: 14px; }
.contact-info > p { font-size: 0.95rem; color: var(--grey-dk); line-height: 1.8; margin-bottom: 4px; }
.contact-details { margin: 28px 0 0; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail__icon {
  width: 42px; height: 42px; background: rgba(196,149,106,0.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; stroke: var(--rose-gold); }
.contact-detail__label {
  font-size: 0.68rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: #999; margin-bottom: 3px;
}
.contact-detail__value { font-size: 0.95rem; color: var(--dark); line-height: 1.55; }
.contact-detail__value a { color: var(--dark); transition: var(--t); }
.contact-detail__value a:hover { color: var(--rose-gold); }

.opening-hours { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--grey-mid); }
.opening-hours h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--dark); margin-bottom: 18px; }
.hours-grid { display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--grey-lt); font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--dark); }
.hours-time { color: var(--grey-dk); }

.contact-form-wrap {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 40px;
}
.contact-form-wrap > .label { margin-bottom: 6px; }
.contact-form-wrap > .heading { margin-bottom: 10px; }
.contact-form-wrap > p {
  font-size: 0.95rem; color: var(--grey-dk); line-height: 1.75; margin-bottom: 28px;
}
.contact-form-wrap > p a { color: var(--rose-gold); }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .trust-item { padding: 16px 20px; font-size: 0.72rem; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 340px; }

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

  .pricing-2col { grid-template-columns: 1fr; gap: 0; }
  .pricing-2col .price-section { margin-bottom: 48px; }
  .treatment-steps { grid-template-columns: 1fr; }
  .policy-cards { grid-template-columns: 1fr; }
  .cc-price-display { flex-direction: column; }
  .cc-price-display__sep { width: 80px; height: 1px; }
  .contact-v2-grid { grid-template-columns: 1fr; gap: 40px; }

  .reviews-full-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { gap: 12px; }
  .rating-divider { width: 80px; height: 1px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item { height: 200px; }
  .gallery-item { height: 200px; }

  .reviews-dark-section { padding: 64px 0; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn-group { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .carousel-outer { padding: 0 44px; }

  .reviews-section { padding: 64px 0; }
  .section-hd { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .trust-inner { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; padding: 14px 0; }
  .trust-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid--full { grid-template-columns: 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; }

  .treatment-steps { grid-template-columns: 1fr; }
  .policy-cards { grid-template-columns: 1fr; }

  .reviews-full-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .g-item { height: 240px; }
  .gallery-item { height: 240px; }

  .hero-btns, .cta-inner .btn-group { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100vw;
  }

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

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .instagram-banner-handle {
        -webkit-font-smoothing: subpixel-antialiased;
        font-weight: 700;
        letter-spacing: 0.4px;
    }

    .instagram-banner-text {
        -webkit-font-smoothing: subpixel-antialiased;
        font-weight: 600;
    }

    .instagram-icon {
        shape-rendering: geometricPrecision;
        image-rendering: crisp-edges;
    }
}
