/* Saiba Hair Salon & Spa — site styles
   Extracted from index.html for maintainability. */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --forest: #022111;
    --gold: #ce9644;
    --gold-light: #e8b96a;
    --gold-deep: #8c6228; /* accessible deep-gold for text on light backgrounds */
    --gold-darkest: #654b1d; /* extra-dark gold, currently unused (kept for easy revert) */
    --logo-gold-shadow: #9F7632;
    --logo-gold-main: #DAA756;
    --logo-gold-light: #EDC271;
    --logo-gold-highlight: #FEE59D;
    --cream: #fdf4d6;
    --warm-white: #fdfcfa;
    --text-dark: #0e1a15;
    --text-mid: #3a4a3f;
    --text-muted: #7a8c82;
    --border: rgba(2,33,17,0.12);
    --utility-bar-h: 44px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); font-size: 16px; line-height: 1.7; font-weight: 300; }
  section[id] { scroll-margin-top: var(--utility-bar-h); }

  /* ── UTILITY BAR (phone / facebook / instagram) ── */
  .utility-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 210;
    height: var(--utility-bar-h);
    background: var(--forest);
    border-bottom: 0.5px solid rgba(206,150,68,0.18);
  }
  .utility-bar-inner {
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
  }
  .utility-link {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    color: var(--gold);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.22s ease, transform 0.22s ease;
  }
  .utility-link svg {
    width: 21px; height: 21px;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4)) drop-shadow(0 2px 3px rgba(0,0,0,0.35));
    transition: filter 0.22s ease;
  }
  .utility-link--social svg { width: 24px; height: 24px; }
  .utility-link:hover svg, .utility-link:focus-visible svg {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.3)) drop-shadow(0 3px 5px rgba(0,0,0,0.4));
  }
  .utility-link:hover, .utility-link:focus-visible { color: var(--gold-light); transform: translateY(-1px); }
  .utility-link:focus-visible { outline: 1.5px solid var(--gold-light); outline-offset: 2px; }
  .utility-sep { width: 1px; height: 16px; background: rgba(206,150,68,0.3); flex-shrink: 0; }
  .utility-book {
    display: flex; align-items: center; justify-content: center;
    height: 30px; padding: 0 0.85rem;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(206,150,68,0.55);
    border-radius: 3px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  }
  .utility-book:hover, .utility-book:focus-visible {
    background: rgba(206,150,68,0.12);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
  }
  .utility-book:focus-visible { outline: 1.5px solid var(--gold-light); outline-offset: 2px; }

  /* ── HAMBURGER NAV (pinned to the far right edge of the utility bar, independent of the icon group) ── */
  .hamburger {
    position: absolute; top: 50%; right: 1.25rem; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
    z-index: 300;
  }
  .hamburger span {
    display: block; width: 26px; height: 1.5px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .hamburger.open span { background: var(--gold); }

  /* drawer */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--forest);
    z-index: 250;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
    display: flex; flex-direction: column;
    padding: 6rem 3rem 3rem;
    border-left: 0.5px solid rgba(206,150,68,0.2);
  }
  .drawer.open { transform: translateX(0); }
  .drawer-overlay {
    position: fixed; inset: 0; z-index: 240;
    background: rgba(0,0,0,0.45);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }
  .drawer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 2.5rem;
  }
  .drawer nav { display: flex; flex-direction: column; gap: 0.25rem; }
  .drawer nav a {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.07);
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer nav a:hover { color: var(--gold); padding-left: 0.5rem; }
  .drawer-footer {
    margin-top: auto;
    font-size: 0.72rem; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
  }
  .drawer-footer a { color: rgba(255,255,255,0.2); text-decoration: none; }
  .drawer-footer a:hover { color: var(--gold); }

  /* ── LANDING / HERO ── */
  #home {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--forest);
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: 5rem;
    animation: fadeUp 1.1s 0.3s cubic-bezier(0.22,1,0.36,1) both;
  }
  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.75rem;
  }
  .hero-ctas {
    display: flex; gap: 1rem;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .btn-book {
    background: #e8b96a; color: var(--forest);
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .btn-book:hover { background: #ce9644; transform: translateY(-1px); }
  .btn-services {
    background: #e8b96a; color: var(--forest);
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .btn-services:hover { background: #ce9644; transform: translateY(-1px); }
  .scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    z-index: 1;
    animation: fadeUp 1.1s 0.8s cubic-bezier(0.22,1,0.36,1) both;
  }
  .scroll-hint span { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
  .scroll-line { width: 0.5px; height: 32px; background: rgba(255,255,255,0.18); animation: scrollPulse 2s 1.8s infinite; }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.55; }
  }
  /* ── SHARED SECTION STYLES ── */
  /* ── SHARED SECTION STYLES ── */
  section:not(#home) { padding: 6rem 4rem; }
  .section-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--forest); margin-bottom: 1.25rem; }
  .section-sub { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; line-height: 1.8; }
  .divider { width: 2.5rem; height: 1px; background: var(--gold); margin: 1.5rem 0; }

  /* ── ABOUT ── */
  #about { background: var(--cream); }
  #about .section-sub { font-size: 1.05rem; line-height: 1.85; color: #445048; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
  .about-visual { position: relative; aspect-ratio: 1100 / 608; border-radius: 2px; overflow: hidden; box-shadow: 0 24px 60px -24px rgba(2,33,17,0.35); }
  .about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .about-values { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2.5rem; }
  .value-item { display: flex; gap: 1rem; align-items: flex-start; }
  .value-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); min-width: 2rem; padding-top: 0.15rem; }
  .value-text { font-size: 0.88rem; color: var(--text-mid); }
  .value-label { font-weight: 500; color: var(--forest); display: block; margin-bottom: 0.15rem; }

  /* ── SERVICES ── */
  #services { background: var(--forest); }
  #services .section-title { color: var(--warm-white); }
  #services .section-sub { color: rgba(255,255,255,0.65); }
  #services .section-eyebrow { font-size: 1.05rem; }
  .services-header { max-width: 1100px; margin: 0 auto 4.75rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; max-width: 1100px; margin: 0 auto; background: var(--border); border: 1.5px solid var(--border); }
  .service-card { background: var(--cream); padding: 2.5rem; transition: background 0.25s; }
  .service-card:hover { background: var(--cream); }
  .service-icon { width: 36px; height: 36px; margin-bottom: 1.1rem; color: var(--gold); }
  .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--forest); margin-bottom: 0.5rem; }
  .service-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
  .service-price { font-size: 0.73rem; letter-spacing: 0.1em; color: var(--text-mid); border-top: 0.5px solid var(--border); padding-top: 1rem; }
  .service-price strong { color: var(--gold); }

  /* ── SERVICES STAGE (tiles ⇄ subview crossfade, same container) ── */
  .services-stage {
    display: grid;
    max-width: 1160px;
    margin: 0 auto;
  }
  .services-categories,
  .services-subview {
    grid-area: 1 / 1;
    width: 100%;
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }

  /* ── SERVICE CATEGORY TILES ── */
  .services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.15s;
  }
  .services-stage.is-detail .services-categories {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition-delay: 0s;
  }
  .category-tile {
    position: relative;
    display: block;
    aspect-ratio: 80 / 51;
    background: var(--forest); /* shows briefly while the image decodes */
    border: none;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
      0 14px 28px -14px rgba(0,0,0,0.6),
      0 4px 10px -4px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.14),
      inset 0 -3px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .category-tile:hover, .category-tile:focus-visible {
    transform: scale(1.015) translateY(-2px);
    box-shadow:
      0 22px 40px -16px rgba(0,0,0,0.65),
      0 8px 16px -6px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -3px 8px rgba(0,0,0,0.3);
    z-index: 2;
  }
  .category-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
  .category-tile:active { transform: scale(1.005); }
  .tile-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .category-tile:hover .tile-photo, .category-tile:focus-visible .tile-photo { transform: scale(1.035); }
  .tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,33,17,0.82) 0%, rgba(2,33,17,0.42) 34%, rgba(2,33,17,0) 65%);
    pointer-events: none;
  }
  .tile-content {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: none;
  }
  .tile-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--warm-white);
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--gold-light);
  }
  .tile-cta-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .category-tile:hover .tile-cta-arrow,
  .category-tile:focus-visible .tile-cta-arrow { transform: translateX(4px); }

  /* ── SERVICES SUBVIEW ── */
  .services-subview {
    max-width: 820px; margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition-delay: 0s;
  }
  .services-stage.is-detail .services-subview {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.15s;
  }
  .back-to-services {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); padding: 0.4rem 0; margin-bottom: 1.1rem;
    transition: gap 0.25s ease, color 0.25s ease;
  }
  .back-to-services svg { width: 14px; height: 14px; }
  .back-to-services:hover, .back-to-services:focus-visible { color: var(--gold-light); gap: 0.75rem; }
  .subview-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 0.5px solid rgba(255,255,255,0.15); }
  .subview-icon-wrap { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .subview-icon { width: 21px; height: 21px; color: var(--forest); }
  .subview-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--warm-white); }

  /* refined two-column service menu */
  .subservice-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.75rem;
  }
  .subservice-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem; font-weight: 400; line-height: 1.2; color: rgba(255,255,255,0.88);
    transition: background 0.28s ease;
  }
  .subservice-item:hover { background: rgba(206,150,68,0.07); }
  .subservice-name { transition: transform 0.28s ease; }
  .subservice-item:hover .subservice-name { transform: translateX(4px); }
  .subservice-arrow { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); transition: transform 0.28s ease, color 0.28s ease; }
  .subservice-item:hover .subservice-arrow { transform: translateX(5px); color: var(--gold-light); }

  /* ── PRODUCTS: four professional-brand entries (reuses .subservice-list / .subservice-item) ── */
  .subservice-list--brands { column-gap: 3rem; }
  .subservice-item--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1.85rem 1rem;
  }
  .brand-logo-wrap { display: inline-flex; align-items: center; min-height: 44px; }
  .brand-logo-wrap--chip {
    background: var(--cream);
    border-radius: 4px;
    padding: 0.5rem 0.95rem;
  }
  .brand-logo { display: block; width: auto; height: auto; max-width: 120px; max-height: 42px; }
  .brand-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400; line-height: 1.2;
    color: rgba(255,255,255,0.9);
  }
  .brand-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 360px;
  }
  .brand-learn-more {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
  }
  .brand-arrow { display: inline-block; transition: transform 0.25s ease; }
  .brand-learn-more:hover, .brand-learn-more:focus-visible { color: var(--gold-light); gap: 0.5rem; }
  .brand-learn-more:hover .brand-arrow, .brand-learn-more:focus-visible .brand-arrow { transform: translateX(4px); }

  .subview-book-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 0.5px solid rgba(255,255,255,0.15);
  }
  .subview-book-btn {
    display: inline-block;
    background: var(--gold); color: var(--forest);
    text-decoration: none;
    padding: 0.9rem 2.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.13em; text-transform: uppercase;
    border-radius: 2px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .subview-book-btn:hover, .subview-book-btn:focus-visible { background: var(--gold-light); transform: translateY(-1px); }

  /* ── OUR STORY ── */
  #our-story { background: var(--cream); }
  .our-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
  .our-story-photo { position: relative; height: 500px; background: var(--forest); border-radius: 2px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .our-story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .our-story-photo-placeholder { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: var(--gold); opacity: 0.4; }
  .our-story-text { display: flex; flex-direction: column; justify-content: center; }
  .our-story-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--forest); line-height: 1.7; margin-bottom: 2rem; }
  .our-story-signature { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; }
  @media (max-width: 900px) {
    .our-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .our-story-photo { height: 320px; }
  }

  /* ── TEAM ── */
  #team { background: var(--forest); }
  .team-header { max-width: 1100px; margin: 0 auto 3.5rem; }
  .team-header .section-title { color: #fff; }
  .team-header .section-eyebrow { color: var(--gold-light); }
  .team-header .section-sub { color: rgba(255,255,255,0.45); }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
  .team-card { border: 0.5px solid rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; transition: border-color 0.25s; }
  .team-card:hover { border-color: var(--gold); }
  .team-avatar { height: 220px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold); }
  .team-info { padding: 1.5rem; }
  .team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.2rem; }
  .team-role { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .team-bio { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; line-height: 1.75; }

  /* ── GALLERY ── */
  #gallery { background: var(--forest); }
  #gallery .section-title { color: var(--warm-white); }
  #gallery .section-sub { color: rgba(255,255,255,0.65); }
  #gallery .section-eyebrow { color: var(--gold-light); }
  .gallery-header { max-width: 1100px; margin: 0 auto 3rem; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 210px 210px; gap: 0.75rem; max-width: 1100px; margin: 0 auto; }
  .gallery-item { background: var(--forest); border-radius: 2px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-placeholder { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.18); text-align: center; padding: 1rem; }
  .gallery-overlay { position: absolute; inset: 0; background: rgba(206,150,68,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
  .gallery-item:hover .gallery-overlay { background: rgba(206,150,68,0.14); }
  .gallery-tag { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0); transition: color 0.3s; }
  .gallery-item:hover .gallery-tag { color: #fff; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--cream); }
  .testimonials-header { max-width: 1100px; margin: 0 auto 3.5rem; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
  .testimonial-card { background: var(--cream); padding: 2rem; border-radius: 2px; border-left: 2px solid var(--gold); position: relative; }
  .testimonial-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 0.6; color: var(--gold); opacity: 0.2; position: absolute; top: 1.5rem; right: 1.5rem; }
  .testimonial-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
  .testimonial-author { font-size: 0.8rem; font-weight: 500; color: var(--forest); }
  .testimonial-source { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }
  .stars { display: flex; gap: 3px; margin-bottom: 1rem; }
  .star { color: var(--gold); font-size: 0.72rem; }

  /* ── CONTACT ── */
  #contact { background: var(--forest); }
  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  #contact .section-title { color: #fff; }
  #contact .section-eyebrow { color: var(--gold-light); }
  #contact .section-sub { color: rgba(255,255,255,0.45); }
  .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .contact-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; display: block; }
  .contact-value { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
  .contact-value a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .contact-value a:hover { color: var(--gold); }
  .booking-box {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 2.5rem;
    scroll-margin-top: calc(var(--utility-bar-h) + 1.5rem);
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
  }
  /* When arriving via a direct link to #booking (e.g. the QR code), briefly
     highlight the box so "Book your appointment" is unmistakably the focus. */
  .booking-box:target {
    border-color: rgba(206,150,68,0.7);
    box-shadow: 0 0 0 1px rgba(206,150,68,0.35), 0 20px 44px -20px rgba(0,0,0,0.55);
    animation: bookingFocusPulse 1.8s ease-out 1;
  }
  @keyframes bookingFocusPulse {
    0%   { box-shadow: 0 0 0 6px rgba(206,150,68,0.28), 0 20px 44px -20px rgba(0,0,0,0.55); }
    100% { box-shadow: 0 0 0 1px rgba(206,150,68,0.35), 0 20px 44px -20px rgba(0,0,0,0.55); }
  }
  .booking-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
  .booking-sub { font-size: 0.83rem; color: rgba(255,255,255,0.38); margin-bottom: 2rem; line-height: 1.7; }
  .vagaro-btn { display: block; background: var(--gold); color: var(--forest); text-decoration: none; padding: 1rem 2.2rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; text-align: center; transition: background 0.2s; }
  .vagaro-btn:hover { background: var(--gold-light); }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 0.5px solid rgba(255,255,255,0.08); }
  .hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; }
  .hours-day { color: rgba(255,255,255,0.4); }
  .hours-time { color: rgba(255,255,255,0.65); }

  /* ── FOOTER ── */
  footer { background: #010e08; padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between; border-top: 0.5px solid rgba(255,255,255,0.05); }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }
  .footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    section:not(#home) { padding: 4rem 1.5rem; }
    .utility-bar-inner { padding: 0 1.5rem; }
    .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .services-categories { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
  }

  /* ── MOBILE ── */
  @media (max-width: 600px) {
    .utility-bar-inner { justify-content: center; padding: 0 1.25rem; gap: 0.85rem; }
    #home { min-height: 100svh; }
    .hero-bg-img { object-fit: contain; object-position: center center; background: var(--forest); }
    .hero-content {
      width: 100%;
      padding: 0 1.5rem;
      margin-bottom: 3.5rem;
      align-items: center;
      text-align: center;
    }
    .hero-tagline { font-size: 1.15rem; margin-bottom: 1.5rem; }
    .hero-ctas { flex-direction: column; align-items: center; width: 100%; gap: 0.75rem; }
    .btn-book, .btn-services {
      width: 100%; max-width: 280px;
      text-align: center;
      padding: 1rem 1.5rem;
      font-size: 0.92rem;
    }
    .drawer { padding: 5rem 2rem 2.5rem; }
    .drawer nav a { font-size: 1.6rem; }
    section:not(#home) { padding: 3rem 1.25rem; }
    .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .about-grid { gap: 2rem; }
    .our-story-inner { gap: 2rem; }
    .our-story-photo { height: 280px; }
    .our-story-quote { font-size: 1.05rem; }
    .services-grid { gap: 0; }
    .service-card { padding: 1.75rem 1.25rem; }
    .services-categories { grid-template-columns: 1fr; }
    .tile-content { left: 1.25rem; right: 1.25rem; bottom: 1.1rem; }
    .tile-title { font-size: 1.3rem; }
    .tile-cta { font-size: 0.88rem; }
    .subview-title { font-size: 1.6rem; }
    .subview-header { gap: 0.85rem; margin-bottom: 1.1rem; padding-bottom: 0.9rem; }
    .subview-icon-wrap { width: 39px; height: 39px; }
    .subservice-list { grid-template-columns: 1fr; }
    .subservice-item { font-size: 1.05rem; padding: 1.3rem 0.5rem; }
    .team-grid { gap: 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; }
    .booking-box { padding: 1.75rem 1.25rem; }
    .hours-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.25rem; }
  }
