:root {
    --cream: #F5EFE6;
    --warm-white: #FAF7F2;
    --blush: #C8866A;
    --blush-light: #E8B49A;
    --blush-deep: #A0614A;
    --espresso: #1A0F0A;
    --cocoa: #3D2218;
    --mocha: #6B3D2E;
    --gold: #B8965A;
    --gold-light: #D4AF7A;
    --text-body: #2C1810;
    --text-muted: #7A5C4E;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--warm-white);
    color: var(--text-body);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* Custom cursor (disabled in light preview) */
  .cursor, .cursor-ring { display: none; }

  /* Top Trust Bar */
  .top-bar {
    background: var(--espresso);
    color: var(--cream);
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 101;
  }
  .top-bar a { color: var(--cream); text-decoration: none; }
  .top-bar .tb-rating { display: flex; align-items: center; gap: 10px; }
  .top-bar .tb-rating .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
  .top-bar .tb-phone { display: flex; align-items: center; gap: 8px; }
  @media (max-width: 1024px) {
    .top-bar { padding: 8px 24px; font-size: 0.62rem; flex-direction: column; gap: 4px; }
  }

  /* Navigation */
  nav {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(200,134,106,0.1);
  }
  nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(200, 134, 106, 0.15);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--espresso);
    text-decoration: none;
  }
  .nav-logo span { color: var(--blush); font-style: italic; }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cocoa);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--blush);
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--blush); }
  .nav-links a:hover::after { width: 100%; }
  .nav-book {
    background: var(--espresso);
    color: var(--cream) !important;
    padding: 10px 28px;
    letter-spacing: 0.18em;
    transition: background 0.3s ease !important;
  }
  .nav-book::after { display: none !important; }
  .nav-book:hover { background: var(--blush) !important; color: white !important; }

  /* Hero */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--blush);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--espresso);
    margin-bottom: 16px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--blush);
    display: block;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 56px;
    text-transform: uppercase;
  }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mocha);
    max-width: 420px;
    margin-bottom: 56px;
  }
  .hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .btn-primary {
    background: var(--blush);
    color: white;
    padding: 16px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--blush-deep);
    transition: left 0.4s ease;
  }
  .btn-primary:hover::before { left: 0; }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-secondary {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cocoa);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease, color 0.3s ease;
  }
  .btn-secondary:hover { gap: 16px; color: var(--blush); }
  .btn-secondary::after { content: '→'; }

  .hero-rating {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 134, 106, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
  .rating-text { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-muted); }
  .rating-text strong { color: var(--espresso); font-weight: 500; }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush-deep) 50%, var(--cocoa) 100%);
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }
  .hero-image-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }
  .hero-image-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.9);
  }
  .hero-image-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .hero-vertical-text {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
  }
  .hero-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
  }
  .hero-ornament::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
  }
  @keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

  /* Ticker */
  .ticker-wrap {
    background: var(--espresso);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .ticker {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .ticker-item::after {
    content: '✦';
    color: var(--blush);
    font-size: 0.5rem;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* About */
  #about {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  .about-left { position: relative; }
  .about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush-deep) 100%);
    position: relative;
    overflow: hidden;
  }
  .about-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  .about-image-frame::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none;
    z-index: 2;
  }
  .about-frame-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 80%;
    height: 80%;
    border: 1px solid var(--blush);
    z-index: -1;
  }
  .about-stat {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--espresso);
    color: var(--cream);
    padding: 24px 32px;
  }
  .about-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--blush-light);
    line-height: 1;
  }
  .about-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.7;
  }
  .about-right { padding-left: 20px; }
  .section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--blush);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 32px;
  }
  .section-title em { font-style: italic; color: var(--blush); }
  .about-body {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--mocha);
    margin-bottom: 24px;
  }
  .about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--blush);
    margin-top: 40px;
  }
  .about-credentials {
    margin-top: 40px;
    display: flex;
    gap: 40px;
  }
  .credential {
    text-align: center;
  }
  .credential-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--blush-deep);
  }
  .credential-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* Services */
  #services {
    background: var(--cream);
    padding: 140px 60px;
  }
  .services-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .services-header .section-eyebrow {
    justify-content: center;
  }
  .services-header .section-eyebrow::before { display: none; }
  .services-header .section-title { color: var(--espresso); }
  .services-header .section-title em { color: var(--blush-deep); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .service-card {
    background: white;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(200,134,106,0.12);
    box-shadow: 0 4px 24px rgba(160,97,74,0.04);
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blush);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
  }
  .service-card:hover { box-shadow: 0 16px 48px rgba(160,97,74,0.12); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(200, 134, 106, 0.18);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.5s ease;
  }
  .service-card:hover .service-number { color: rgba(200, 134, 106, 0.35); }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
  }
  .service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
  }
  .service-price-from {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .service-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--blush-deep);
  }
  .service-link {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }
  .service-link:hover { gap: 16px; }
  .service-link::after { content: '→'; }
  .service-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .service-book-link {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(200,134,106,0.25);
    padding-left: 28px;
    transition: color 0.3s ease, gap 0.3s ease;
  }
  .service-book-link:hover { color: var(--blush-deep); gap: 16px; }
  .service-book-link::after { content: '→'; }
  .service-card.featured .service-book-link {
    color: rgba(245,239,230,0.5);
    border-left-color: rgba(255,255,255,0.15);
  }
  .service-card.featured .service-book-link:hover { color: var(--blush-light); }
  .service-card.featured {
    background: var(--espresso);
    grid-row: span 1;
    border-color: var(--espresso);
  }
  .service-card.featured .service-name { color: var(--cream); }
  .service-card.featured .service-number { color: rgba(255,255,255,0.12); }
  .service-card.featured .service-desc { color: rgba(245,239,230,0.6); }
  .service-card.featured .service-price-from { color: rgba(245,239,230,0.5); }
  .service-card.featured .service-price-amount { color: var(--blush-light); }
  .service-card.featured .service-link { color: var(--blush-light); }

  /* How It Works */
  #process {
    padding: 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .process-header { margin-bottom: 80px; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush));
  }
  .process-step { padding: 0 32px; text-align: center; }
  .step-dot {
    width: 64px; height: 64px;
    border: 1px solid var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: var(--warm-white);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .process-step:hover .step-dot {
    background: var(--blush);
    transform: scale(1.1);
  }
  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--blush);
    transition: color 0.4s ease;
  }
  .process-step:hover .step-number { color: white; }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--text-muted);
  }

  /* Reviews */
  #reviews {
    background: var(--cream);
    padding: 140px 60px;
  }
  .reviews-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    max-width: 1400px;
    margin: 0 auto 80px;
  }
  .reviews-meta {
    text-align: right;
  }
  .reviews-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    line-height: 1;
    color: var(--blush-deep);
  }
  .reviews-score-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
  }
  /* Reviews Carousel */
  .reviews-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  .reviews-track-wrap {
    overflow: hidden;
  }
  .reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .review-card {
    background: white;
    padding: 40px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
  }
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(26, 15, 10, 0.1);
  }
  .review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--blush-light);
    line-height: 0.5;
    margin-bottom: 16px;
  }
  .review-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--mocha);
    margin-bottom: 28px;
    font-style: italic;
  }
  .review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .review-name {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--espresso);
  }
  .review-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; }
  .review-card.highlighted {
    background: var(--blush-deep);
    color: white;
  }
  .review-card.highlighted .review-quote { color: rgba(255,255,255,0.2); }
  .review-card.highlighted .review-text { color: rgba(255,255,255,0.85); }
  .review-card.highlighted .review-name { color: white; }
  .review-card.highlighted .review-stars { color: var(--gold-light); }

  /* Carousel Controls */
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
  }
  .carousel-arrow {
    width: 44px; height: 44px;
    border: 1px solid rgba(200,134,106,0.3);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--blush-deep);
    font-size: 1rem;
  }
  .carousel-arrow:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
  }
  .carousel-dots {
    display: flex;
    gap: 10px;
  }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(200,134,106,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }
  .carousel-dot.active {
    background: var(--blush-deep);
    width: 24px;
    border-radius: 4px;
  }

  /* Featured Clients */
  .featured-clients {
    max-width: 1400px;
    margin: 80px auto 0;
  }
  .featured-clients-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .featured-clients-header .section-eyebrow {
    justify-content: center;
  }
  .featured-clients-header .section-eyebrow::before { display: none; }
  .featured-clients-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.8;
  }
  .featured-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .featured-client-card {
    background: white;
    border: 1px solid rgba(200,134,106,0.12);
    box-shadow: 0 4px 24px rgba(160,97,74,0.04);
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .featured-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(160,97,74,0.12);
  }
  .fc-photo {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
  }
  .fc-photo-inner {
    position: absolute;
    inset: 0;
  }
  .fc-body {
    padding: 24px 22px;
  }
  .fc-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--mocha);
    margin-bottom: 16px;
  }
  .fc-quote::before { content: '"'; color: var(--blush-light); }
  .fc-quote::after { content: '"'; color: var(--blush-light); }
  .fc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fc-name {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--espresso);
  }
  .fc-insta {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--blush-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .fc-insta:hover { color: var(--blush); }
  .fc-insta::before { content: '@'; }

  /* Location */
  #location {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  .location-details { }
  .location-address {
    margin: 40px 0;
  }
  .location-address p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--espresso);
  }
  .location-hours {
    margin: 40px 0;
  }
  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 134, 106, 0.15);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--mocha);
  }
  .hours-row span:first-child { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.7rem; }
  .location-map {
    height: 500px;
    background: linear-gradient(135deg, #e8d5c8 0%, #c8a090 100%);
    position: relative;
    overflow: hidden;
  }
  .map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .map-pin {
    width: 48px; height: 48px;
    background: var(--espresso);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin-bottom: 24px;
    position: relative;
  }
  .map-pin::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px;
    background: var(--blush);
    border-radius: 50%;
  }
  .map-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--espresso);
    font-style: italic;
  }
  .map-sublabel {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mocha);
    margin-top: 8px;
  }

  /* Booking CTA */
  #booking {
    background: var(--blush-deep);
    padding: 140px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #booking::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
  }
  #booking::after {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .booking-inner { position: relative; z-index: 1; }
  .booking-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    justify-content: center;
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .booking-title em { font-style: italic; color: var(--blush-light); }
  .booking-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 56px;
    line-height: 1.8;
  }
  .btn-white {
    background: white;
    color: var(--blush-deep);
    padding: 18px 56px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
  }
  .btn-white:hover {
    background: var(--espresso);
    color: white;
  }
  .fresha-badge {
    margin-top: 32px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .fresha-badge strong { color: rgba(255,255,255,0.6); }

  /* Before & After Gallery */
  #gallery {
    padding: 140px 60px;
    background: var(--espresso);
    overflow: hidden;
  }
  .gallery-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
  }
  .gallery-header .section-title { color: var(--cream); }
  .gallery-header .section-title em { color: var(--blush-light); }
  .gallery-header-right { text-align: right; }
  .gallery-insta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--blush-light);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-bottom: 16px;
  }
  .gallery-insta-link:hover { gap: 18px; color: white; }
  .gallery-insta-link::after { content: ' →'; font-style: normal; }
  .gallery-desc {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(245,239,230,0.4);
    max-width: 320px;
    margin-left: auto;
  }
  .gallery-instruction {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,239,230,0.3);
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .gallery-instruction::before,
  .gallery-instruction::after {
    content: '';
    width: 40px; height: 1px;
    background: rgba(200,134,106,0.3);
  }

  /* Filter tabs */
  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto 48px;
    flex-wrap: wrap;
  }
  .filter-btn {
    background: transparent;
    border: 1px solid rgba(200,134,106,0.2);
    color: rgba(245,239,230,0.4);
    padding: 10px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
  }

  /* Before/After Slider */
  .ba-slider {
    position: relative;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    background: #111;
  }
  .ba-slider.tall   { aspect-ratio: 4/5; }
  .ba-slider.medium { aspect-ratio: 3/4; }
  .ba-slider.square { aspect-ratio: 1/1; }

  .ba-before, .ba-after {
    position: absolute;
    inset: 0;
  }
  .ba-before img, .ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ba-before { z-index: 1; }
  .ba-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
  }

  /* Skin tone gradients — before (darker/uneven) vs after (corrected) */
  .lip-n-before  { background: radial-gradient(ellipse at 50% 70%, #2A1010 0%, #1A0808 60%, #120505 100%); }
  .lip-n-after   { background: radial-gradient(ellipse at 50% 70%, #C87060 0%, #A85040 60%, #904030 100%); }
  .lip-b-before  { background: radial-gradient(ellipse at 50% 65%, #3A2020 0%, #281010 60%, #1C0808 100%); }
  .lip-b-after   { background: radial-gradient(ellipse at 50% 65%, #E09080 0%, #D07868 60%, #C06858 100%); }
  .scar-before   { background: radial-gradient(ellipse at 40% 50%, #9A7060 0%, #7A5848 60%, #5C4038 100%); }
  .scar-after    { background: radial-gradient(ellipse at 40% 50%, #C8A898 0%, #B09080 60%, #987868 100%); }
  .mark-before   { background: radial-gradient(ellipse at 50% 40%, #C0A898 0%, #A89080 60%, #907868 100%); }
  .mark-after    { background: radial-gradient(ellipse at 50% 40%, #C0A898 0%, #A89080 40%, #2A2020 55%, #A89080 65%, #907868 100%); }
  .micro-before  { background: radial-gradient(ellipse at 50% 45%, #7A5848 0%, #604030 60%, #482818 100%); }
  .micro-after   { background: radial-gradient(ellipse at 50% 45%, #D0A898 0%, #C09080 60%, #A87868 100%); }
  .knuck-before  { background: radial-gradient(ellipse at 50% 50%, #4A2E20 0%, #341E10 60%, #200E05 100%); }
  .knuck-after   { background: radial-gradient(ellipse at 50% 50%, #B88870 0%, #9A6850 60%, #845040 100%); }

  /* SVG face silhouette overlay */
  .ba-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    opacity: 0.06;
  }
  .ba-face svg { width: 55%; height: 55%; fill: white; }

  /* Before / After labels */
  .ba-label {
    position: absolute;
    top: 18px;
    z-index: 10;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: white;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    pointer-events: none;
  }
  .ba-label-before { left: 18px; }
  .ba-label-after  { right: 18px; }

  /* Drag divider */
  .ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.9);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    color: var(--blush-deep);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -3px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: none;
  }
  .ba-slider:hover .ba-handle {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  /* Treatment info — slides up on hover */
  .ba-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    background: linear-gradient(transparent, rgba(20,8,4,0.92));
    padding: 48px 22px 22px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    pointer-events: none;
  }
  .ba-slider:hover .ba-info { transform: translateY(0); pointer-events: auto; }
  .ba-treatment-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 6px;
  }
  .ba-treatment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ba-treatment-tag {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-light);
  }
  .ba-book-btn {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
    transition: border-color 0.3s;
    cursor: pointer;
  }
  .ba-book-btn:hover { border-color: var(--blush-light); color: var(--blush-light); }

  /* Hint animation on first load */
  @keyframes hintDivider {
    0%   { left: 50%; }
    25%  { left: 30%; }
    75%  { left: 70%; }
    100% { left: 50%; }
  }
  @keyframes hintClip {
    0%   { clip-path: inset(0 50% 0 0); }
    25%  { clip-path: inset(0 70% 0 0); }
    75%  { clip-path: inset(0 30% 0 0); }
    100% { clip-path: inset(0 50% 0 0); }
  }
  .ba-slider.do-hint .ba-divider { animation: hintDivider 2s ease 0.6s 1; }
  .ba-slider.do-hint .ba-after   { animation: hintClip    2s ease 0.6s 1; }

  /* Layout grids */
  .gallery-photo-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .gallery-photo-card {
    background: var(--cocoa);
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .gallery-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  }
  .gallery-photo-card .gpc-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
  }
  .gallery-photo-card .gpc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-photo-card .gpc-info {
    padding: 20px 22px 24px;
  }
  .gallery-photo-card .gpc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 6px;
  }
  .gallery-photo-card .gpc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .gallery-photo-card .gpc-tag {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush-light);
  }
  .gallery-photo-card .gpc-book {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
    transition: border-color 0.3s;
  }
  .gallery-photo-card .gpc-book:hover { border-color: var(--blush-light); color: var(--blush-light); }

  .gallery-main {
    max-width: 1400px;
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .gallery-main .ba-slider:first-child { grid-row: span 2; }

  .gallery-row {
    max-width: 1400px;
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .gallery-cta {
    text-align: center;
    margin-top: 60px;
  }
  .gallery-cta a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--blush-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(200,134,106,0.4);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
  }
  .gallery-cta a:hover { color: white; border-color: white; }

  @media (max-width: 1024px) {
    #gallery { padding: 80px 40px; }
    .gallery-header { grid-template-columns: 1fr; }
    .gallery-header-right { text-align: left; }
    .gallery-desc { margin-left: 0; }
    .gallery-main { grid-template-columns: 1fr 1fr; }
    .gallery-main .ba-slider:first-child { grid-row: span 1; }
    .gallery-row { grid-template-columns: repeat(2, 1fr); }
    .gallery-photo-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    #gallery { padding: 80px 24px; }
    .gallery-main { grid-template-columns: 1fr; }
    .gallery-main .ba-slider { aspect-ratio: 4/3 !important; }
    .gallery-row { grid-template-columns: 1fr 1fr; }
    .gallery-filters { gap: 6px; }
    .gallery-photo-grid { grid-template-columns: 1fr; }
  }

  /* Footer */
  footer {
    background: var(--espresso);
    padding: 80px 60px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(200,134,106,0.15);
    margin-bottom: 40px;
  }
  .footer-brand {}
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
  }
  .footer-logo span { color: var(--blush-light); font-style: italic; }
  .footer-tagline {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(245,239,230,0.45);
    max-width: 280px;
    margin-bottom: 32px;
  }
  .footer-social {
    display: flex;
    gap: 16px;
  }
  .social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(200,134,106,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush-light);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }
  .social-link:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: white;
  }
  .footer-col-title {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blush-light);
    margin-bottom: 24px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a {
    font-size: 0.82rem;
    color: rgba(245,239,230,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
  }
  .footer-links a:hover { color: var(--blush-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,239,230,0.25);
    letter-spacing: 0.1em;
  }
  .footer-fresha {
    font-size: 0.7rem;
    color: rgba(245,239,230,0.25);
    letter-spacing: 0.1em;
  }
  .footer-fresha a { color: var(--blush-light); text-decoration: none; }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Mobile hamburger */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-toggle span { display: block; width: 24px; height: 1px; background: var(--espresso); transition: all 0.3s ease; }

  /* Page load animation */
  .page-loader {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderFade 0.8s ease 1.8s forwards;
  }
  .loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--cream);
    font-style: italic;
    opacity: 0;
    animation: loaderLogo 1s ease 0.3s forwards;
  }
  @keyframes loaderLogo { to { opacity: 1; } }
  @keyframes loaderFade { to { opacity: 0; pointer-events: none; } }

  /* Responsive */
  @media (max-width: 1024px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 50vw; }
    .hero-left { padding: 60px 40px; }
    #about { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
    .about-stat { left: 0; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
    .process-steps::before { display: none; }
    #location { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
    .reviews-header { grid-template-columns: 1fr; }
    .reviews-meta { text-align: left; }
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
    .featured-clients-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav { padding: 24px 40px; }
    nav.scrolled { padding: 16px 40px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 640px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .hero-left { padding: 48px 24px; }
    #services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    #process { padding: 80px 24px; }
    .process-steps { grid-template-columns: 1fr; }
    #booking { padding: 80px 24px; }
    #instagram { padding: 60px 24px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    footer { padding: 60px 24px 30px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    #reviews { padding: 80px 24px; }
    .review-card { flex: 0 0 100%; }
    .carousel-controls { gap: 20px; }
    .featured-clients-grid { grid-template-columns: 1fr; }
    .about-credentials { flex-direction: column; gap: 24px; }
  }

/* ============================================
   SHARED SUB-PAGE COMPONENTS
   ============================================ */

/* Nav dropdown */
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%; left: -20px;
  background: white;
  box-shadow: 0 16px 48px rgba(160,97,74,0.12);
  border: 1px solid rgba(200,134,106,0.1);
  min-width: 240px;
  padding: 16px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--mocha);
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--blush-deep); background: var(--cream); }
.nav-dropdown a::after { display: none; }

/* Page Hero (sub-pages) */
.page-hero {
  padding: 180px 60px 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border: 1px solid rgba(200,134,106,0.15);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border: 1px solid rgba(200,134,106,0.1);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: var(--blush-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--espresso);
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--blush-deep); }
.page-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mocha);
  max-width: 600px;
  margin-top: 28px;
}
.page-hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-meta .meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.page-hero-meta .meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--blush-deep);
}
.page-hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Content section (article-style body for service pages) */
.content-section {
  padding: 100px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.content-section.narrow { max-width: 800px; }
.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--espresso);
  margin: 56px 0 24px;
  line-height: 1.2;
}
.content-section h2 em { font-style: italic; color: var(--blush-deep); }
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--mocha);
  margin-bottom: 24px;
}
.content-section ul {
  margin: 24px 0 24px 24px;
  color: var(--mocha);
  font-size: 0.95rem;
  line-height: 1.9;
}
.content-section ul li { margin-bottom: 10px; }
.content-section strong { color: var(--espresso); font-weight: 500; }

/* Pull quote */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--blush-deep);
  border-left: 2px solid var(--blush);
  padding: 8px 0 8px 32px;
  margin: 48px 0;
}

/* Two-column feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0;
}
.feature-box {
  background: white;
  border: 1px solid rgba(200,134,106,0.12);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(160,97,74,0.04);
}
.feature-box-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--blush);
  margin-bottom: 16px;
  font-style: italic;
}
.feature-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}
.feature-box p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
}
.pricing-table tr {
  border-bottom: 1px solid rgba(200,134,106,0.15);
}
.pricing-table td {
  padding: 20px 0;
  font-size: 0.92rem;
  color: var(--mocha);
}
.pricing-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--espresso);
}
.pricing-table td:last-child {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--blush-deep);
  white-space: nowrap;
}
.pricing-table .duration {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* FAQ Accordion */
.faq-section {
  background: var(--cream);
  padding: 100px 60px;
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,134,106,0.2);
}
.faq-question {
  padding: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blush);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--mocha);
  padding-bottom: 28px;
  max-width: 760px;
}

/* Related treatments row */
.related-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.related-card {
  background: white;
  border: 1px solid rgba(200,134,106,0.12);
  padding: 40px 32px;
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
  box-shadow: 0 4px 24px rgba(160,97,74,0.04);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(160,97,74,0.12);
}
.related-card .rc-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 10px;
}
.related-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Generic CTA band (mini booking strip for sub-pages) */
.cta-band {
  background: var(--espresso);
  padding: 80px 60px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}
.cta-band h2 em { font-style: italic; color: var(--blush-light); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(200,134,106,0.25);
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blush);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: var(--blush);
  color: white;
  border: none;
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}
.contact-form button:hover { background: var(--blush-deep); }
.contact-info-item {
  margin-bottom: 36px;
}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 10px;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--espresso);
  line-height: 1.6;
}
.contact-info-value a { color: var(--espresso); text-decoration: none; }
.contact-info-value a:hover { color: var(--blush-deep); }

/* About page extras */
.timeline {
  margin: 56px 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(200,134,106,0.15);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--blush-deep);
  font-style: italic;
}
.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .page-hero { padding: 140px 40px 80px; }
  .feature-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 80px 40px; gap: 48px; }
  .nav-dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .timeline-item { grid-template-columns: 70px 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 120px 24px 60px; }
  .content-section { padding: 60px 24px; }
  .faq-section { padding: 60px 24px; }
  .related-section { padding: 60px 24px; }
  .contact-grid { padding: 60px 24px; }
  .cta-band { padding: 60px 24px; }
  .service-links { gap: 16px; }
  .service-book-link { border-left: none; padding-left: 0; }
}

/* ============================================
   AFTERCARE PAGE
   ============================================ */
.aftercare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
.aftercare-card {
  background: white;
  border: 1px solid rgba(200,134,106,0.12);
  box-shadow: 0 4px 24px rgba(160,97,74,0.04);
  padding: 36px 32px;
}
.aftercare-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aftercare-card.do h3::before { content: '✓'; color: var(--blush-deep); font-size: 1.1rem; }
.aftercare-card.dont h3::before { content: '✕'; color: var(--text-muted); font-size: 1.1rem; }
.aftercare-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--mocha);
  font-size: 0.88rem;
  line-height: 1.85;
}
.aftercare-card ul li { margin-bottom: 10px; }

.aftercare-timeline {
  margin: 48px 0;
}
.at-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200,134,106,0.15);
}
.at-step:first-child { padding-top: 0; }
.at-step-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--blush-deep);
}
.at-step-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--mocha);
  margin: 0;
}

.aftercare-note {
  background: var(--cream);
  border-left: 3px solid var(--blush);
  padding: 24px 28px;
  margin: 40px 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--mocha);
}
.aftercare-note strong { color: var(--espresso); }

@media (max-width: 1024px) {
  .aftercare-grid { grid-template-columns: 1fr; }
  .at-step { grid-template-columns: 100px 1fr; gap: 20px; }
}

/* ============================================
   GUEST SPOTS PAGE
   ============================================ */
.location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.location-card {
  background: white;
  border: 1px solid rgba(200,134,106,0.12);
  box-shadow: 0 4px 24px rgba(160,97,74,0.04);
  overflow: hidden;
  transition: all 0.4s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(160,97,74,0.12);
}
.location-card-image {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.location-card-image .fc-photo-inner { position: absolute; inset: 0; }
.location-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.location-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(26,15,10,0.7);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}
.location-card-body { padding: 28px 28px 32px; }
.location-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}
.location-card-status {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 16px;
}
.location-card-body p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

.guest-cta-band {
  background: var(--cream);
  border: 1px dashed rgba(200,134,106,0.35);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
}
.guest-cta-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}
.guest-cta-band p {
  font-size: 0.9rem;
  color: var(--mocha);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.process-steps-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}
.psc-item {
  text-align: center;
}
.psc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 12px;
}
.psc-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 10px;
}
.psc-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

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

/* Full-width banner image (breaks out of content-section max-width) */
.content-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 56px;
  margin-bottom: 56px;
  overflow: hidden;
}
.content-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.content-banner-caption {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Treatment page hero circular photo */
.page-hero-photo {
  position: absolute;
  top: 40px; right: 40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200,134,106,0.25);
  box-shadow: 0 16px 48px rgba(160,97,74,0.12);
  z-index: 1;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .page-hero-photo { display: none; }
}

/* Gallery placeholder card (coming soon) */
.gallery-photo-card.coming-soon .gpc-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cocoa) 0%, var(--espresso) 100%);
}
.gpc-placeholder {
  text-align: center;
  color: rgba(245,239,230,0.35);
  padding: 20px;
}
.gpc-placeholder .gpc-placeholder-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: rgba(200,134,106,0.3);
  margin-bottom: 8px;
}
.gpc-placeholder-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============================================
   MASTER CLASSES PAGE
   ============================================ */
.course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.course-card {
  background: white;
  border: 1px solid rgba(200,134,106,0.12);
  box-shadow: 0 4px 24px rgba(160,97,74,0.04);
  padding: 36px 28px;
  transition: all 0.4s ease;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(160,97,74,0.12);
}
.course-card-level {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 16px;
}
.course-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}
.course-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.course-card-includes {
  list-style: none;
  margin-bottom: 24px;
}
.course-card-includes li {
  font-size: 0.82rem;
  color: var(--mocha);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.6;
}
.course-card-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-size: 0.7rem;
}
.course-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--blush-deep);
  border-top: 1px solid rgba(200,134,106,0.15);
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .course-cards { grid-template-columns: 1fr; }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
