  :root {
    --blush: #f5e6e0;
    --rose: #5d0e11;
    --deep: #2a1a16;
    --gold: #c8a96e;
    --cream: #fdf8f4;
    --text: #3d2b26;
    --muted: #9a7b74;
    --white: #fff;
    --menu-maroon: var(--rose);
    --menu-gold: #c5a059;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--rose);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--rose);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform 0.3s ease, opacity 0.2s;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    background: transparent;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(253,248,244,0.96);
    backdrop-filter: blur(12px);
    padding: 14px 60px;
    box-shadow: 0 2px 30px rgba(42,26,22,0.07);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--deep);
    text-decoration: none;
  }
  .nav-logo span { color: var(--rose); font-style: italic; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-book {
    background: var(--rose);
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 2px;
    letter-spacing: 0.1em !important;
  }
  .nav-book::after { display: none !important; }
  .nav-book:hover { background: var(--deep); color: var(--white); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 1.5px; background: var(--deep); transition: all 0.3s; }

  /* MOBILE NAV */
  .mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    /* Above fixed nav (z-index 100) so overlay isn’t pierced by the bar */
    background: var(--cream); z-index: 200;
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--text); text-decoration: none;
    letter-spacing: 0.04em;
  }
  .mobile-menu a:hover { color: var(--rose); }
  .close-btn { position: absolute; top: 28px; right: 32px; font-size: 1.6rem; cursor: pointer; color: var(--muted); }

  /* HERO */
  #home {
    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: 140px 60px 80px 80px;
    position: relative; z-index: 2;
  }
  .hero-tag {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--rose); }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--deep); margin-bottom: 28px;
  }
  .hero-h1 em { color: var(--rose); font-style: italic; }
  .hero-sub {
    font-size: 1rem; color: var(--muted);
    line-height: 1.7; max-width: 420px;
    margin-bottom: 44px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--rose); color: var(--white);
    padding: 14px 32px; border-radius: 2px;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
  .btn-secondary {
    border: 1px solid var(--rose); color: var(--rose);
    padding: 14px 32px; border-radius: 2px;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--blush); transform: translateY(-2px); }
  .hero-stats {
    display: flex; gap: 48px; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(201,120,106,0.2);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; color: var(--rose);
    line-height: 1;
  }
  .stat-label { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--blush);
  }
  .hero-imgs {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  }
  .hero-imgs div {
    overflow: hidden; position: relative;
  }
  .hero-imgs div img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 8s ease;
  }
  .hero-imgs div:hover img { transform: scale(1.06); }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(245,230,224,0.3) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
  }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  .scroll-line { width: 1px; height: 40px; background: var(--rose); }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

  /* FLOATING PETALS */
  .petal {
    position: fixed; pointer-events: none; z-index: 10;
    font-size: 1.4rem; opacity: 0;
    animation: fall linear infinite;
  }
  @keyframes fall {
    0% { opacity: 0.7; transform: translateY(-20px) rotate(0deg); }
    100% { opacity: 0; transform: translateY(100vh) rotate(360deg); }
  }

  /* SECTIONS */
  section { padding: 100px 80px; }

  .section-tag {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-tag::before { content: ''; width: 28px; height: 1px; background: var(--rose); }
  .section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300; line-height: 1.1;
    color: var(--deep); margin-bottom: 20px;
  }
  .section-h2 em { color: var(--rose); font-style: italic; }

  /* ABOUT */
  #about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--white);
  }
  .about-imgs {
    position: relative; height: 560px;
  }
  .about-img1 {
    position: absolute; top: 0; left: 0;
    width: 75%; height: 75%; object-fit: cover;
    border-radius: 0 0 80px 0;
    box-shadow: 20px 20px 60px rgba(42,26,22,0.12);
    transition: transform 0.4s;
  }
  .about-img2 {
    position: absolute; bottom: 0; right: 0;
    width: 60%; height: 55%; object-fit: cover;
    border-radius: 60px 0 0 0;
    box-shadow: -10px -10px 40px rgba(42,26,22,0.1);
  }
  .about-badge {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    background: var(--rose);
    border-radius: 50%; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white); text-align: center;
    box-shadow: 0 8px 30px rgba(201,120,106,0.4);
    animation: spin-badge 20s linear infinite;
  }
  @keyframes spin-badge { to { transform: translate(-50%,-50%) rotate(360deg); } }
  .about-badge-inner { animation: spin-badge-reverse 20s linear infinite; text-align: center; }
  @keyframes spin-badge-reverse { to { transform: rotate(-360deg); } }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 600; line-height: 1;
  }
  .about-badge-text { font-size: 0.62rem; letter-spacing: 0.05em; opacity: 0.9; }
  .about-content p {
    color: var(--muted); line-height: 1.85;
    margin-bottom: 20px;
  }
  .about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 36px;
  }
  .value-item {
    padding: 20px; border: 1px solid rgba(201,120,106,0.2);
    border-radius: 4px; transition: all 0.3s;
  }
  .value-item:hover {
    border-color: var(--rose);
    background: var(--blush);
    transform: translateY(-3px);
  }
  .value-icon { font-size: 1.4rem; margin-bottom: 8px; }
  .value-title { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
  .value-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

  /* ── SERVICES ── */
  #services { background: var(--cream); }

  .services-intro { max-width: 600px; margin-bottom: 40px; }
  .services-intro p { color: var(--muted); line-height: 1.7; margin-top: 12px; }

  .services-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-top: 22px;
  }
  .services-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
  }
  .trust-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  /* Menu board */
  .services-menu-board {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(42, 26, 22, 0.08);
    padding: 0 0 48px;
    border: 1px solid rgba(93, 14, 17, 0.12);
    overflow: hidden;
  }

  /* Board header */
  .smb-header {
    background: linear-gradient(135deg, var(--rose) 0%, #2a0a0c 60%, #3d0a10 100%);
    padding: 28px 48px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .smb-header::after {
    content: '';
    position: absolute;
    top: -40%; right: -5%;
    width: 40%; height: 180%;
    background: radial-gradient(ellipse, rgba(200,169,110,.2) 0%, transparent 65%);
    pointer-events: none;
  }
  .smb-header__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
  }
  .smb-header__ornament span {
    display: block;
    height: 1px;
    width: 50px;
    background: rgba(200,169,110,.55);
  }
  .smb-header__diamond { color: var(--gold); font-size: 0.65rem; }
  .smb-header__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative; z-index: 1;
    margin-bottom: 12px;
  }
  .smb-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 0;
    font-size: 0.76rem;
    color: rgba(255,255,255,.75);
    position: relative; z-index: 1;
    letter-spacing: 0.04em;
  }
  .smb-header__meta i { font-style: normal; margin-right: 4px; }
  .smb-header__meta a { color: var(--gold); text-decoration: none; }
  .smb-header__meta a:hover { text-decoration: underline; }
  .smb-header__sep { margin: 0 12px; opacity: .4; }

  /* Padding inside board (below header) */
  .services-menu-board > .services-menu-columns,
  .services-menu-board > [class^="smb-"],
  .services-menu-board > [class^="pedi-"] {
    padding-left: 48px;
    padding-right: 48px;
  }

  .services-menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
    padding-top: 36px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(93,14,17,.08);
    margin-top: 28px;
  }
  .menu-cat-title {
    background: var(--rose);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .menu-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .menu-line-name { flex: 0 1 auto; }
  .menu-line-leader {
    flex: 1 1 auto;
    min-width: 8px;
    border-bottom: 1px dotted rgba(61, 43, 38, 0.35);
    height: 0;
    align-self: center;
    margin-bottom: 2px;
  }
  .menu-line-price {
    flex: 0 0 auto;
    font-weight: 700;
    white-space: nowrap;
    color: var(--menu-maroon);
  }
  .menu-subblock { margin-top: 22px; }
  .services-menu-figure {
    margin: 28px 0 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42, 26, 22, 0.12);
    border: 1px solid rgba(93, 14, 17, 0.12);
  }
  .services-menu-figure img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
  }
  .services-menu-figure figcaption {
    font-size: 0.72rem;
    color: var(--muted);
    padding: 10px 14px;
    background: var(--cream);
    letter-spacing: 0.04em;
  }
  .shape-of-nails {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(93, 14, 17, 0.06);
    border: 1px solid rgba(93, 14, 17, 0.12);
  }
  .shape-of-nails h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--menu-maroon);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .shape-of-nails ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    list-style: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--deep);
  }
  .shape-of-nails li {
    padding: 6px 12px;
    background: var(--white);
    border-radius: 100px;
    border: 1px solid rgba(93, 14, 17, 0.15);
  }
  .pedicure-card {
    border: 1px solid rgba(93, 14, 17, 0.14);
    border-radius: 14px;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    margin-bottom: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .pedicure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(42, 26, 22, 0.1);
  }
  .pedicure-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px 20px;
    margin-bottom: 10px;
  }
  .pedicure-card h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--menu-maroon);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .pedicure-card .pedicure-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--menu-maroon);
    margin-bottom: 0;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.35;
    max-width: min(220px, 46%);
  }
  .pedicure-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
  }
  .pedicure-card p + p {
    margin-top: 10px;
  }
  .pedicure-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--menu-gold);
    color: var(--menu-maroon);
    padding: 4px 10px;
    border-radius: 100px;
  }
  .addons-pill {
    display: inline-block;
    background: var(--menu-maroon);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 8px;
  }
  .addons-intro {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 500;
  }

  /* ── Pedicure tier grid ── */
  .pedi-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 48px 0;
  }
  .pedi-tier-grid > .menu-cat-title {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .pedi-tier-card {
    border-radius: 14px;
    border: 1px solid rgba(93,14,17,.1);
    background: #fff;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .pedi-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42,26,22,.1);
  }
  .pedi-tier-card--featured {
    border-color: rgba(200,169,110,.5);
    background: linear-gradient(180deg, #fffbf4 0%, #fff 100%);
  }
  .pedi-tier-card__accent {
    height: 4px;
    width: 100%;
  }
  .pedi-tier-card__inner {
    padding: 20px 20px 18px;
  }
  .pedi-tier-card__tier {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pedi-tier-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep);
    margin: 0 0 8px;
    line-height: 1.25;
  }
  .pedi-tier-card__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 10px;
  }
  .pedi-tier-card__price span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
  }
  .pedi-tier-card--featured .pedi-tier-card__price { color: var(--gold); }
  .pedi-tier-card__desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 6px;
  }
  .pedi-tier-card__desc:last-child { margin-bottom: 0; }

  /* ── Add-ons row ── */
  .smb-addons-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 28px 48px 0;
  }
  .smb-addons-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--rose);
    padding: 6px 16px;
    border-radius: 100px;
    flex-shrink: 0;
  }
  .smb-addon-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--deep);
    flex: 1;
    min-width: 200px;
  }
  .smb-addon-item__name { flex: 0 1 auto; }
  .smb-addon-item__name em { font-style: normal; color: var(--muted); font-weight: 400; font-size: .78rem; }
  .smb-addon-item__leader {
    flex: 1 1 auto; height: 0;
    border-bottom: 1px dotted rgba(61,43,38,.25);
    align-self: center; min-width: 8px;
  }
  .smb-addon-item__price {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--rose);
    white-space: nowrap;
  }

  /* ── Board CTA ── */
  .smb-cta {
    padding: 28px 48px 0;
    display: flex;
    align-items: center;
    gap: 20px 32px;
    flex-wrap: wrap;
  }
  .smb-cta__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--rose);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background .2s;
  }
  .smb-cta__btn:hover { background: var(--deep); color: #fff; }
  .smb-cta p {
    font-size: 0.76rem;
    font-style: italic;
    color: var(--muted);
    margin: 0;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative; overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    group: true;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--rose);
    transition: width 0.4s ease;
  }
  .service-card:hover::before { width: 100%; }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(42,26,22,0.1); z-index: 2; }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: rgba(201,120,106,0.15);
    position: absolute; top: 20px; right: 24px;
    line-height: 1; transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(201,120,106,0.3); }
  .service-icon { font-size: 2rem; margin-bottom: 16px; }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400;
    color: var(--deep); margin-bottom: 10px;
  }
  .service-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
  .service-price {
    margin-top: 20px;
    font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--rose);
    display: flex; align-items: center; gap: 8px;
  }
  .service-price::before { content: ''; width: 16px; height: 1px; background: var(--rose); }

  /* GALLERY STRIP */
  .gallery-strip {
    display: flex; gap: 12px;
    padding: 60px 80px;
    background: var(--deep); overflow: hidden;
  }
  .gallery-strip-item {
    flex: 0 0 240px; height: 320px;
    overflow: hidden; border-radius: 4px;
    position: relative;
  }
  .gallery-strip-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
  }
  .gallery-strip-item:hover img { transform: scale(1.08); filter: brightness(1); }
  .gallery-text {
    padding: 60px 80px 0;
    background: var(--deep);
    color: var(--white); display: flex;
    align-items: center; justify-content: space-between;
  }
  .gallery-text .section-tag::before { background: var(--gold); }
  .gallery-text .section-tag { color: var(--gold); }
  .gallery-text .section-h2 { color: var(--white); margin: 0; }
  .gallery-text .section-h2 em { color: var(--gold); }
  .gallery-sub { color: rgba(255,255,255,0.5); font-size: 0.88rem; max-width: 340px; line-height: 1.7; }

  /* TESTIMONIALS */
  #testimonials {
    background: var(--blush);
    padding: 100px 80px;
  }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header .section-tag { justify-content: center; }
  .testimonials-header .section-tag::before { display: none; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: var(--white); padding: 36px 32px;
    border-radius: 4px; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(42,26,22,0.1); }
  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; line-height: 0.8;
    color: var(--rose); opacity: 0.2;
    position: absolute; top: 20px; left: 24px;
  }
  .testimonial-text { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blush);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--rose);
  }
  .author-name { font-weight: 500; font-size: 0.88rem; }
  .author-location { font-size: 0.75rem; color: var(--muted); }
  .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 16px; }

  /* CONTACT */
  #contact {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .contact-left {
    padding: 100px 60px 100px 80px;
    background: var(--deep); color: var(--white);
  }
  .contact-left .section-tag { color: var(--gold); }
  .contact-left .section-tag::before { background: var(--gold); }
  .contact-left .section-h2 { color: var(--white); }
  .contact-left .section-h2 em { color: var(--gold); }
  .contact-info { margin-top: 48px; display: flex; flex-direction: column; gap: 28px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(200,169,110,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
    color: var(--gold);
  }
  .contact-detail-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .contact-detail-val { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
  .hours-row { display: flex; justify-content: space-between; font-size: 0.83rem; color: rgba(255,255,255,0.75); }

  .contact-right { padding: 100px 80px 100px 60px; }
  .contact-right .section-tag { margin-bottom: 12px; }
  .contact-right p { color: var(--muted); margin-bottom: 36px; font-size: 0.9rem; line-height: 1.7; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%; padding: 14px 16px;
    border: 1px solid rgba(201,120,106,0.2);
    border-radius: 2px; background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: var(--text);
    transition: border-color 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--rose); }
  .form-group textarea { height: 120px; resize: none; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit {
    background: var(--rose); color: var(--white);
    border: none; padding: 15px 40px;
    border-radius: 2px; font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    width: 100%;
  }
  .btn-submit:hover { background: var(--deep); transform: translateY(-2px); }

  /* MAP */
  .map-section {
    position: relative; height: 480px;
    display: grid; grid-template-columns: 380px 1fr;
  }
  .map-overlay-info {
    background: var(--deep);
    padding: 50px 40px;
    z-index: 2; display: flex;
    flex-direction: column; justify-content: center;
  }
  .map-section iframe { width: 100%; height: 100%; display: block; }

  @media (max-width: 900px) {
    .map-section { grid-template-columns: 1fr; height: auto; }
    .map-overlay-info { padding: 40px 24px; }
    .map-section iframe { height: 300px; }
  }

  /* FOOTER */
  footer {
    background: var(--deep); color: rgba(255,255,255,0.6);
    padding: 50px 80px 30px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand .nav-logo { color: var(--white); font-size: 1.8rem; display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.83rem; line-height: 1.7; }
  .footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    padding: 24px 80px;
    background: var(--deep); border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
  }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--rose); color: var(--rose); }

  /* ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

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

  @media (max-width: 900px) {
    .services-menu-board { padding-bottom: 32px; }
    .smb-header { padding: 22px 24px 20px; }
    .smb-header__sep { display: none; }
    .smb-header__meta { flex-direction: column; gap: 4px; }
    .services-menu-board > .services-menu-columns,
    .services-menu-board > [class^="smb-"],
    .services-menu-board > [class^="pedi-"] { padding-left: 24px; padding-right: 24px; }
    .smb-pedi-divider { padding-left: 24px; padding-right: 24px; }
    .smb-addons-row { padding-left: 24px; padding-right: 24px; }
    .smb-cta { padding-left: 24px; padding-right: 24px; }
    .services-menu-columns { grid-template-columns: 1fr; gap: 32px; }
    .pedi-tier-grid { grid-template-columns: 1fr 1fr; padding-left: 24px; padding-right: 24px; }
    .services-grid-2 { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .pedi-tier-grid { grid-template-columns: 1fr; }
    .smb-addons-row { flex-direction: column; align-items: flex-start; }
    .smb-addon-item { width: 100%; }
    .services-trust-row { gap: 8px 20px; }
  }
  /* GALLERY FILTER */
  .gallery-filter { display:flex; gap:8px; flex-wrap:wrap; }
  .gfbtn {
    padding: 8px 18px; border-radius: 100px;
    border: 1.5px solid rgba(201,120,106,0.3);
    background: transparent; color: var(--muted);
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
    cursor: pointer; transition: all 0.25s;
  }
  .gfbtn:hover { border-color: var(--rose); color: var(--rose); }
  .gfbtn.active { background: var(--rose); border-color: var(--rose); color: #fff; }

  /* MASONRY GRID */
  .masonry-grid { columns: 4; column-gap: 12px; }
  .masonry-item {
    break-inside: avoid; margin-bottom: 12px;
    position: relative; overflow: hidden;
    border-radius: 6px; cursor: pointer;
  }
  .masonry-item img {
    width: 100%; display: block;
    transition: transform 0.5s ease;
    aspect-ratio: 3/4; object-fit: cover;
  }
  .masonry-item.tall img { aspect-ratio: 2/3; }
  .masonry-item.wide img { aspect-ratio: 4/3; }
  .masonry-item:hover img { transform: scale(1.07); }
  .masonry-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(42,26,22,0.65) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .masonry-item:hover .masonry-overlay { opacity: 1; }
  .masonry-overlay span {
    color: #fff; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .masonry-item.hidden { display: none; }

  /* LIGHTBOX */
  .lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(20,10,8,0.95); z-index: 500;
    align-items: center; justify-content: center;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    position: relative; max-width: 88vw; max-height: 88vh;
    display: flex; align-items: center; gap: 16px;
  }
  .lightbox-inner img {
    max-width: 70vw; max-height: 85vh;
    border-radius: 6px; object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: lbfade 0.3s ease;
  }
  @keyframes lbfade { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }
  .lb-close {
    position: absolute; top: -44px; right: 0;
    background: none; border: none; color: #fff;
    font-size: 1.5rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
  }
  .lb-close:hover { opacity: 1; }
  .lb-prev, .lb-next {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 2rem; width: 48px; height: 48px;
    border-radius: 50%; cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .lb-prev:hover, .lb-next:hover { background: var(--rose); border-color: var(--rose); }
  .lb-caption {
    position: absolute; bottom: -36px; left: 0; right: 0;
    text-align: center; color: rgba(255,255,255,0.5);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .masonry-grid { columns: 2; }
    #gallery { padding: 60px 24px 80px !important; }
    #gallery > div:first-child { flex-direction: column; align-items: flex-start; gap: 20px; }
    .lightbox-inner img { max-width: 90vw; }
    .lb-prev, .lb-next { display: none; }
  }

  .sticky-cta {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--rose); color: var(--white);
    padding: 14px 28px; border-radius: 100px;
    text-decoration: none; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(201,120,106,0.5);
    transition: all 0.3s; z-index: 50;
    display: flex; align-items: center; gap: 8px;
  }
  .sticky-cta:hover { background: var(--deep); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(42,26,22,0.25); }
  .sticky-cta-pulse {
    width: 8px; height: 8px; background: var(--white);
    border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 120px 24px 60px; }
    .hero-right { height: 360px; }
    #about, #contact { grid-template-columns: 1fr; }
    .about-imgs { height: 320px; }
    section { padding: 30px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-strip, .gallery-text { padding: 40px 24px; }
    footer { grid-template-columns: 1fr 1fr; gap: 32px; padding: 50px 24px 30px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .contact-left { padding: 70px 24px; }
    .contact-right { padding: 70px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    .about-values { grid-template-columns: 1fr; }
  }
