
  /* ─── CSS VARIABLES ─── */
  :root {
    --primary: #B5965A;
    --primary-dark: #8C7040;
    --primary-light: rgba(181,150,90,0.12);
    --dark: #1A1410;
    --text: #2C2420;
    --text-muted: #7A6E69;
    --bg: #FAF7F2;
    --bg2: #F3EDE4;
    --bg3: #EBE3D6;
    --white: #FFFFFF;
    --border: #E4DAC8;
    --green-wa: #25D366;
    --header-height: 72px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: auto; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

  /* ScrollSmoother wrapper */
  #smooth-wrapper { overflow: hidden; }
  #smooth-content {}

  /* ─── HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 17, 2, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
  }

  header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .logo span { color: var(--dark); font-weight: 400; }

  nav { display: flex; align-items: center; gap: 2rem; }

  nav a {
    color: #faf7f2!important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.3s;
  }

  nav a:hover { color: var(--primary); }
  nav a:hover::after { width: 100%; }

  .header-ctas { display: flex; gap: 0.75rem; align-items: center; }

  .btn-book {
    padding: 0.55rem 1.4rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-book:hover { background: var(--primary-dark); color: var(--white); }

  .btn-wa {
    padding: 0.55rem 1.2rem;
    background: var(--green-wa);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
  }

  .btn-wa:hover { opacity: 0.88; color: var(--white); }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #f7f7f7!important;
    transition: 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 4rem) 2rem 5rem;
  }

  .hero-ornament {
    position: absolute;
    right: -8vw;
    top: 50%;
    transform: translateY(-50%);
    width: 54vw;
    height: 54vw;
    max-width: 820px;
    max-height: 820px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,150,90,0.09) 0%, rgba(181,150,90,0.03) 50%, transparent 70%);
    border: 1px solid rgba(181,150,90,0.12);
    pointer-events: none;
  }

  .hero-ornament-2 {
    position: absolute;
    left: -6vw;
    bottom: 5%;
    width: 36vw;
    height: 36vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,150,90,0.06) 0%, transparent 70%);
    border: 1px solid rgba(181,150,90,0.08);
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(181,150,90,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(181,150,90,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #141311!important;
    margin-bottom: 2rem;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    color: #1a1410!important;
    font-style: italic;
  }

  .hero-sub {
    font-size: 1rem;
    color: #504742!important;
    margin-bottom: 2.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 300;
  }

  .hero-sub span { color: var(--primary); margin: 0 0.5rem; }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-hero-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

  .btn-hero-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--dark);
    border: 1px solid #b5965a!important;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .btn-hero-outline:hover {
    border-color: var(--green-wa);
    color: var(--green-wa);
    background: rgba(37,211,102,0.05);
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .hero-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    color: #201d1b!important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-bottom: 0.5rem;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--dark);
    padding: 1.6rem 2rem;
    overflow: hidden;
  }

  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:last-child { border-right: none; }

  .trust-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
  }

  .trust-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── SECTION BASE ─── */
  section { padding: 6.5rem 2rem; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
    opacity: 0.6;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 540px;
  }

  /* ─── ABOUT US ─── */
  .about-section { background: var(--white); overflow: hidden; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-media {
    position: relative;
  }

  .about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }

  .about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--primary);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(145deg, var(--bg2) 0%, var(--bg3) 100%);
  }

  .about-img-placeholder .icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
  }

  .about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: var(--bg3);
    border-radius: 2px;
    border: 6px solid var(--white);
    overflow: hidden;
  }

  .about-img-secondary .about-img-placeholder {
    font-size: 0.68rem;
  }

  .about-badge {
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 2px;
    text-align: center;
    min-width: 90px;
  }

  .about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    display: block;
  }

  .about-badge .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-top: 0.2rem;
  }

  .about-content {}

  .about-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }

  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark);
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.5;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }

  .about-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .about-feat-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .about-feat-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.2rem;
  }

  .about-feat-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ─── SERVICES ─── */
  .services-section { background: var(--bg); }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--bg3);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem;
    transition: background 0.3s;
    cursor: pointer;
  }

  .service-card:hover { background: var(--bg); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg3);
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.3s;
  }

  .service-card:hover .service-num { color: var(--primary); opacity: 0.4; }

  .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.7rem;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .tag {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    background: var(--bg2);
  }

  .service-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    border: none;
    background: none;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 0.7rem; }

  /* ─── BEFORE/AFTER GALLERY ─── */
  .gallery-section {
    background: var(--dark);
    padding: 6.5rem 2rem;
  }

  .gallery-section .section-title { color: var(--white); }

  .gallery-section .section-label { color: var(--primary); }
  .gallery-section .section-label::before { background: var(--primary); }

  .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
    margin-top: 3.5rem;
  }

  .ba-card {
    background: rgba(255,255,255,0.03);
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .ba-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(181,150,90,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .ba-card:hover::after { opacity: 1; }

  .ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(145deg, #1e1a16, #242017);
    color: rgba(255,255,255,0.18);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.4s;
  }

  .ba-card:hover .ba-placeholder { background: linear-gradient(145deg, #221e19, #2a2318); }

  .ba-label {
    position: absolute;
    bottom: 1rem; left: 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    z-index: 2;
  }

  /* ─── OFFER BAND ─── */
  .offer-section {
    background: var(--primary);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .offer-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.04) 40px,
      rgba(255,255,255,0.04) 41px
    );
  }

  .offer-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .offer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }

  .offer-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }

  .offer-section > .offer-inner > p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .offer-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    text-decoration: line-through;
  }

  .btn-offer {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-offer:hover { background: #111; transform: translateY(-2px); }

  .offer-urgency {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1.2rem;
    letter-spacing: 0.04em;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { background: var(--bg2); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    border-left: 3px solid var(--primary);
    position: relative;
  }

  .testi-stars {
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
  }

  .testi-text {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
  }

  .testi-name {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--dark);
  }

  .testi-service {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
  }

  /* ─── WHY US ─── */
  .why-section { background: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }

  .why-card:hover {
    border-color: var(--primary);
    background: var(--bg);
    transform: translateY(-4px);
  }

  .why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.2rem;
    background: var(--bg2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
  }

  .why-card:hover .why-icon {
    background: var(--primary-light);
    border-color: var(--primary);
  }

  .why-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ─── PACKAGES ─── */
  .packages-section { background: var(--bg); }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .package-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    background: var(--white);
  }

  .package-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(181,150,90,0.12);
  }

  .package-card.featured { border-color: var(--primary); }

  .pkg-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    text-align: center;
  }

  .pkg-body { padding: 2rem; }

  .pkg-body h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .pkg-price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
  }

  .pkg-price .original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
  }

  .pkg-savings {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 1rem;
  }

  .pkg-services {
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .pkg-services li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--bg2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .pkg-services li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── BOOKING ─── */
  .booking-section { background: var(--bg2); }

  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }

  .calendar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--border);
  }

  .cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .cal-header h4 {
    font-size: 1.1rem;
    color: var(--dark);
  }

  .cal-nav { display: flex; gap: 0.5rem; }

  .cal-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    border-radius: 2px;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .cal-btn:hover { background: var(--bg); }

  .cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.5rem;
  }

  .cal-day-name {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 0.3rem 0;
    text-transform: uppercase;
  }

  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }

  .cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--dark);
  }

  .cal-day.other-month { color: var(--bg3); cursor: default; }
  .cal-day.past { color: var(--border); cursor: not-allowed; }
  .cal-day.today { background: var(--bg2); font-weight: 500; }
  .cal-day.selected { background: var(--primary); color: var(--white); }
  .cal-day:not(.past):not(.other-month):hover { background: var(--bg); }

  .time-slots { margin-top: 1.5rem; }

  .time-slots h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
  }

  .slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .slot {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.78rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--text);
    background: var(--bg);
  }

  .slot:hover { border-color: var(--primary); color: var(--primary); }
  .slot.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }
  .slot.full { background: var(--bg2); color: var(--border); cursor: not-allowed; font-size: 0.68rem; }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: var(--dark);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(181,150,90,0.1) 0%, transparent 70%);
  }

  .final-cta h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
  }

  .final-cta p {
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    position: relative;
  }

  .final-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  /* ─── CONTACT STRIP ─── */
  .contact-strip {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
  }

  .contact-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .contact-item strong {
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .btn-call {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 0.4rem;
    transition: background 0.2s;
  }

  .btn-call:hover { background: var(--primary-dark); color: var(--white); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 4.5rem 2rem 2rem;
  }

  .footer-inner { max-width: 1100px; margin: 0 auto; }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand .logo { display: block; margin-bottom: 1rem; color: var(--primary); }
  .footer-brand .logo span { color: rgba(255,255,255,0.7); }

  .footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: rgba(255,255,255,0.8); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.22);
  }

  .footer-links { display: flex; gap: 1.5rem; }

  .footer-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.22);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.55); }

  /* ─── POPUP ─── */
  .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,20,16,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .popup-overlay.active { display: flex; }

  .popup-box {
    background: var(--white);
    border-radius: 2px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }

  .popup-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    background: none; border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
  }

  .popup-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
  }

  .popup-box p.sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .form-group { margin-bottom: 1rem; }

  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--dark);
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 1rem;
    transition: background 0.2s;
  }

  .btn-submit:hover { background: var(--primary-dark); }

  /* ─── WA FLOAT ─── */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
    z-index: 900;
    transition: transform 0.2s;
  }

  .wa-float:hover { transform: scale(1.1); }

  /* ─── GSAP REVEAL BASE STATES ─── */
  /* Initial states are set via gsap.set() in JS to avoid CSS/GSAP conflicts */
  /* These are fallback visibility rules only — JS overrides on load */

  /* ─── RESPONSIVE ─── */
  @media (max-width: 992px) {
    nav, .header-ctas { display: none; }
    .menu-toggle { display: flex; }
    nav.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: var(--header-height);
      left: 0; right: 0;
      background: #898181!important;
      padding: 1.5rem 2rem;
      gap: 1.2rem;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      z-index: 999;
    }
    nav.open a { color: var(--text); font-size: 1rem; }
    .header-ctas.mobile-open {
      display: flex;
      position: fixed;
      top: calc(var(--header-height) + 14rem);
      left: 0; right: 0;
      padding: 1rem 2rem;
      background: var(--white);
      justify-content: center;
      border-bottom: 1px solid var(--border);
      z-index: 999;
    }
    .trust-inner { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-secondary { right: 1rem; }
    .ba-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .booking-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    header { padding: 0 1.2rem; }
    .hero-scroll { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  }

  @media (max-width: 600px) {
    section { padding: 4rem 1.2rem; }
    .ba-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(3,1fr); }
    .hero-content { text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .section-label { justify-content: center; }
    .section-title { text-align: center; }
    .about-badge { left: 0.5rem; }
  }


  .about-img-main-img,
.about-img-secondary-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.ba-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.ba-card {
  background: #111;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}



/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;          /* Adjust size */
  width: auto;           /* Keep aspect ratio */
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* Subtle zoom on hover */
  opacity: 0.9;           /* Slight fade effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 45px;        /* Smaller logo on mobile */
  }
}

/* Premium Light Header Styling */
.luxury-header-light {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Soft Ivory with Transparency */
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(15px); /* Modern frosted glass effect */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease-in-out;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
}

/* Logo handling - makes it look like it belongs */
.logo-box img {
    height: 70px; /* Bigger for visibility */
    width: auto;
    border-radius: 4px; /* Optional: matches salon aesthetics */
    transition: transform 0.3s ease;
}

.logo-box:hover img {
    transform: scale(1.05);
}

/* Nav Links - Using Black for contrast on Light background */
.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #D4AF37; /* Gold on hover */
}

/* WhatsApp Link */
.wa-link {
    text-decoration: none;
    color: #25D366; /* Official WA Green */
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
}

/* The "Book Now" Hero Button */
.btn-book-gold {
    background: #000; /* Black button */
    color: #D4AF37; /* Gold text */
    border: 1px solid #D4AF37;
    padding: 10px 24px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-book-gold:hover {
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .logo-box img { height: 55px; }
}


.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Fallback */
}

/* Background Image Container */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* REPLACE THE URL BELOW WITH YOUR IMAGE */
    /* background-image: url('assets/images/hero.avif');  */
    background-image: url('../images/herobg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1); /* Necessary for the GSAP zoom-out effect */
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    
}

/* Ensure content sits above the background */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Adjust grid lines to be subtle over the image */
.hero-grid-lines {
    z-index: 3;
    opacity: 0.15;
}


.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}


.ba-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.ba-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.mute-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: rgba(255,255,255,0.8);
  color: #000;
}



.popup-close:hover {
  color: #000;
}
