
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --rose:        #C9808A;
      --rose-light:  #E8B4B8;
      --rose-pale:   #F5E6E8;
      --blush:       #F2D9DC;
      --cream:       #FDF8F5;
      --champagne:   #F0E4D7;
      --gold:        #C4A882;
      --gold-light:  #E8D5BC;
      --mocha:       #6B4C4C;
      --deep:        #2C1A1A;
      --text:        #3D2B2B;
      --text-muted:  #8A6B6B;
      --white:       #FFFFFF;
      --nav-h:       88px;
    }

    /* ─── SCROLLBAR ─────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--cream);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--rose-light);
      border-radius: 100px;
      border: 2px solid var(--cream);
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--rose);
    }
    * {
      scrollbar-width: thin;
      scrollbar-color: var(--rose-light) var(--cream);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Pompiere', cursive;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 1000;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
      animation: navSlideDown 1s cubic-bezier(.22,1,.36,1) both;
    }

    @keyframes navSlideDown {
      0%   { transform: translateY(-110%); opacity: 0; }
      100% { transform: translateY(0);     opacity: 1; }
    }

    nav.scrolled {
      background: rgba(253, 248, 245, 0.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 2px 32px rgba(196,168,130,.18);
    }

    .logo {
      display: flex;
      flex-direction: column;
      gap: 1px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-main {
      font-family: 'Rubik Glitch', cursive;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--deep);
      line-height: 1;
      letter-spacing: .02em;
    }
    .logo-main span { color: var(--rose); }
    .logo-sub {
      font-family: 'Pompiere', cursive;
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.4rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Pompiere', cursive;
      font-size: .95rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      position: relative;
      transition: color .25s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1.5px;
      background: var(--rose);
      transition: width .3s ease;
    }
    .nav-links a:hover { color: var(--rose); }
    .nav-links a:hover::after { width: 100%; }

    .btn-book-nav {
      font-family: 'Pompiere', cursive;
      font-size: .9rem;
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--rose);
      border: none;
      padding: .75rem 1.6rem;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      white-space: nowrap;
    }
    .btn-book-nav:hover {
      background: var(--mocha);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(201,128,138,.35);
    }

    /* ─── HAMBURGER ─────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      z-index: 1100;
      width: 32px;
      height: 32px;
    }
    /* Three lines — top & bottom longer, middle shorter */
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .35s cubic-bezier(.22,1,.36,1);
      transform-origin: center;
    }
    .hamburger span:nth-child(1) { width: 28px; }
    .hamburger span:nth-child(2) { width: 18px; }
    .hamburger span:nth-child(3) { width: 28px; }

    /* X state */
    .hamburger.open span:nth-child(1) {
      width: 24px;
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
      width: 24px;
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ─── MOBILE SLIDE-UP MENU ───────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 50vh;
      background: var(--cream);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.4rem;
      padding: 1.8rem 6%;
      transform: translateY(100%);
      transition: transform .42s cubic-bezier(.22,1,.36,1);
      border-top: 1px solid var(--blush);
      box-shadow: 0 -12px 48px rgba(44,26,26,.12);
      border-radius: 24px 24px 0 0;
      overflow: hidden;
    }
    .mobile-menu.open {
      transform: translateY(0);
    }

    /* 2-per-row link grid */
    .mobile-menu-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem 1.4rem;
      width: 100%;
      max-width: 340px;
    }
    .mobile-menu-links a {
      font-family: 'Pompiere', cursive;
      font-size: 1.15rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      text-align: center;
      padding: .55rem .5rem;
      border-radius: 10px;
      border: 1px solid var(--blush);
      background: rgba(245,230,232,.18);
      transition: color .2s, background .2s, border-color .2s;
    }
    .mobile-menu-links a:hover {
      color: var(--rose);
      background: rgba(232,180,184,.18);
      border-color: var(--rose-light);
    }

    .mobile-menu .btn-book-nav {
      font-size: .88rem;
      padding: .85rem 2.2rem;
      width: 100%;
      max-width: 340px;
      text-align: center;
      display: block;
    }

    /* Overlay behind menu */
    .menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(44,26,26,.18);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s ease;
    }
    .menu-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 760px) {
      .nav-links, .btn-book-nav { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .menu-overlay { display: block; }
    }

    /* ─── HERO ─────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding-top: var(--nav-h);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 2.5rem;
      padding-left: 5%;
      padding-right: 5%;
      padding-bottom: 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -10%; right: -5%;
      width: 55vw; height: 75vh;
      background: radial-gradient(ellipse at 70% 30%, #F5E6E8 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 5%; left: -5%;
      width: 40vw; height: 50vh;
      background: radial-gradient(ellipse at 30% 70%, #F0E4D7 0%, transparent 70%);
      pointer-events: none;
    }

    .petal {
      position: absolute;
      border-radius: 50% 10% 50% 10%;
      opacity: .18;
      pointer-events: none;
    }
    .petal-1 {
      width: 80px; height: 120px;
      background: var(--rose-light);
      top: 18%; left: 3%;
      transform: rotate(30deg);
      animation: float1 7s ease-in-out infinite;
    }
    .petal-2 {
      width: 55px; height: 85px;
      background: var(--gold);
      bottom: 20%; right: 3%;
      transform: rotate(-50deg);
      animation: float2 9s ease-in-out infinite;
    }
    .petal-3 {
      width: 40px; height: 60px;
      background: var(--rose);
      top: 60%; left: 6%;
      transform: rotate(70deg);
      animation: float1 11s ease-in-out infinite reverse;
    }

    @keyframes float1 {
      0%,100% { transform: rotate(30deg) translateY(0); }
      50%     { transform: rotate(30deg) translateY(-18px); }
    }
    @keyframes float2 {
      0%,100% { transform: rotate(-50deg) translateY(0); }
      50%     { transform: rotate(-50deg) translateY(14px); }
    }

    /* ─── DESKTOP IMAGE STACKS ─── */
    .img-stack {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 560px;
    }
    .img-stack-left  { align-items: flex-start; padding-left: 1rem; }
    .img-stack-right { align-items: flex-end;   padding-right: 1rem; }

    .stack-card {
      position: absolute;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 56px rgba(44,26,26,.18);
      transition: transform .5s cubic-bezier(.34,1.56,.64,1);
    }
    .stack-card:hover { transform: scale(1.04) !important; }

    .stack-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.08) brightness(1.02);
    }

    .stack-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid rgba(196,168,130,.4);
      border-radius: inherit;
      z-index: 3;
      pointer-events: none;
    }

    .img-stack-left .stack-card:nth-child(1) {
      width: 210px; height: 275px;
      top: 20px; left: 10px;
      transform: rotate(-8deg);
      z-index: 2;
      transform-origin: bottom center;
    }
    .img-stack-left .stack-card:nth-child(2) {
      width: 185px; height: 250px;
      bottom: 30px; left: 55px;
      transform: rotate(6deg);
      z-index: 1;
      transform-origin: top center;
    }
    .img-stack-right .stack-card:nth-child(1) {
      width: 210px; height: 275px;
      top: 20px; right: 10px;
      transform: rotate(8deg);
      z-index: 2;
      transform-origin: bottom center;
    }
    .img-stack-right .stack-card:nth-child(2) {
      width: 185px; height: 250px;
      bottom: 30px; right: 55px;
      transform: rotate(-6deg);
      z-index: 1;
      transform-origin: top center;
    }

    /* Left slide-in animations */
    .img-stack-left .stack-card:nth-child(1) {
      opacity: 0;
      animation: slideFromLeft 1.1s cubic-bezier(.22,1,.36,1) 0.5s forwards;
    }
    .img-stack-left .stack-card:nth-child(2) {
      opacity: 0;
      animation: slideFromLeft 1.1s cubic-bezier(.22,1,.36,1) 0.95s forwards;
    }
    .img-stack-left .float-review {
      opacity: 0;
      animation: slideFromLeft 1s cubic-bezier(.22,1,.36,1) 1.4s forwards;
    }

    @keyframes slideFromLeft {
      0%   { opacity: 0; transform: translateX(-80px) rotate(var(--rot, 0deg)); filter: blur(6px); }
      100% { opacity: 1; transform: translateX(0)     rotate(var(--rot, 0deg)); filter: blur(0); }
    }

    .img-stack-left .stack-card:nth-child(1) { --rot: -8deg; }
    .img-stack-left .stack-card:nth-child(2) { --rot:  6deg; }

    /* Right slide-in animations */
    .img-stack-right .stack-card:nth-child(1) {
      opacity: 0;
      animation: slideFromRight 1.1s cubic-bezier(.22,1,.36,1) 0.5s forwards;
    }
    .img-stack-right .stack-card:nth-child(2) {
      opacity: 0;
      animation: slideFromRight 1.1s cubic-bezier(.22,1,.36,1) 0.95s forwards;
    }
    .img-stack-right .float-badge {
      opacity: 0;
      animation: slideFromRight 1s cubic-bezier(.22,1,.36,1) 1.4s forwards;
    }

    @keyframes slideFromRight {
      0%   { opacity: 0; transform: translateX(80px) rotate(var(--rot, 0deg)); filter: blur(6px); }
      100% { opacity: 1; transform: translateX(0)    rotate(var(--rot, 0deg)); filter: blur(0); }
    }

    .img-stack-right .stack-card:nth-child(1) { --rot:  8deg; }
    .img-stack-right .stack-card:nth-child(2) { --rot: -6deg; }

    /* ─── FLOATING CARDS ─── */
    .float-review {
      position: absolute;
      bottom: 5%; left: -10px;
      background: var(--white);
      border-radius: 14px;
      padding: .9rem 1.1rem;
      box-shadow: 0 12px 40px rgba(44,26,26,.14);
      display: flex;
      align-items: center;
      gap: .7rem;
      z-index: 10;
      animation: floatUp 6s ease-in-out infinite;
      border: 1px solid var(--blush);
      min-width: 190px;
    }
    .float-review .stars { color: #F0B429; font-size: .85rem; letter-spacing: 1px; }
    .float-review .rev-text { font-size: .78rem; font-weight: 500; color: var(--text); line-height: 1.4; font-family: 'Pompiere', cursive; }
    .float-review .rev-count { font-size: .68rem; color: var(--text-muted); font-family: 'Pompiere', cursive; }
    .float-review .rev-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--rose-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      color: var(--rose);
    }

    .float-badge {
      position: absolute;
      top: 5%; right: -10px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
      border-radius: 14px;
      padding: .85rem 1rem;
      box-shadow: 0 12px 32px rgba(201,128,138,.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .25rem;
      z-index: 10;
      animation: floatUp 8s ease-in-out infinite reverse;
      min-width: 120px;
    }
    .float-badge .badge-icon { font-size: 1.3rem; color: var(--white); }
    .float-badge .badge-title { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--white); font-family: 'Pompiere', cursive; }
    .float-badge .badge-sub   { font-size: .6rem; color: rgba(255,255,255,.85); letter-spacing: .05em; font-family: 'Pompiere', cursive; }

    @keyframes floatUp {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-10px); }
    }

    /* ─── CENTER CONTENT ─── */
    .hero-center {
      text-align: center;
      z-index: 2;
      max-width: 520px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1.4rem;
      padding: .4rem 1.1rem;
      border: 1px solid var(--rose-light);
      border-radius: 100px;
      background: rgba(232,180,184,.12);
      font-family: 'Pompiere', cursive;
      opacity: 0;
      animation: slideUpFade 1s cubic-bezier(.22,1,.36,1) 0.3s forwards;
    }
    .hero-tag i { font-size: .6rem; }

    h1 {
      font-family: 'Quintessential', cursive;
      font-size: clamp(2.5rem, 4.2vw, 3.6rem);
      font-weight: 400;
      line-height: 1.22;
      color: var(--deep);
      letter-spacing: .02em;
      margin-bottom: 1.3rem;
      opacity: 0;
      filter: blur(14px);
      animation: blurReveal 1.3s cubic-bezier(.22,1,.36,1) 0.65s forwards;
    }
    h1 em {
      font-family: 'Protest Revolution', cursive;
      font-style: normal;
      color: var(--rose);
    }

    .hero-sub {
      font-family: 'Pompiere', cursive;
      font-size: 1.18rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 2.2rem;
      letter-spacing: .03em;
      opacity: 0;
      filter: blur(10px);
      animation: blurReveal 1.2s cubic-bezier(.22,1,.36,1) 1s forwards;
    }

    @keyframes blurReveal {
      0%   { opacity: 0; filter: blur(14px); transform: translateY(18px); }
      60%  { opacity: 1; filter: blur(2px);  transform: translateY(4px);  }
      100% { opacity: 1; filter: blur(0);    transform: translateY(0);    }
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: slideUpFade 1s cubic-bezier(.22,1,.36,1) 1.25s forwards;
    }

    .scroll-hint {
      margin-top: 2.8rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      opacity: 0;
      animation: slideUpFade 1s cubic-bezier(.22,1,.36,1) 1.5s forwards;
    }
    .scroll-hint span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); font-family: 'Pompiere', cursive; opacity: .55; }
    .scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, var(--rose-light), transparent);
      animation: pulse 2s ease-in-out infinite;
      opacity: .55;
    }

    @keyframes slideUpFade {
      0%   { opacity: 0; transform: translateY(36px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

    .btn-primary {
      font-family: 'Pompiere', cursive;
      font-size: .95rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--rose);
      border: none;
      padding: 1rem 2.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .btn-primary:hover {
      background: var(--mocha);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(201,128,138,.38);
    }

    .btn-outline {
      font-family: 'Pompiere', cursive;
      font-size: .95rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--mocha);
      background: transparent;
      border: 1.5px solid var(--rose-light);
      padding: 1rem 2.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color .25s, color .25s, background .25s, transform .2s;
    }
    .btn-outline:hover {
      border-color: var(--rose);
      color: var(--rose);
      background: rgba(232,180,184,.08);
      transform: translateY(-2px);
    }

    /* ─── MOBILE IMAGE GRID ─── */
    /* Hidden on desktop, shown on tablet/mobile */
    .mobile-img-grid {
      display: none;
      width: 100%;
      padding: 0 4% 2rem;
      position: relative;
      z-index: 2;
    }

    .mobile-img-grid .grid-row {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    /* Row 1: tilt outward — left leans left, right leans right */
    .mobile-img-grid .row-top .mob-card:nth-child(1) {
      transform: rotate(-7deg);
      transform-origin: bottom right;
      z-index: 2;
    }
    .mobile-img-grid .row-top .mob-card:nth-child(2) {
      transform: rotate(7deg);
      transform-origin: bottom left;
      z-index: 2;
    }

    /* Row 2: tilt inward — left leans right, right leans left */
    .mobile-img-grid .row-bottom {
      margin-top: 16px;
    }
    .mobile-img-grid .row-bottom .mob-card:nth-child(1) {
      transform: rotate(6deg);
      transform-origin: top right;
      z-index: 1;
    }
    .mobile-img-grid .row-bottom .mob-card:nth-child(2) {
      transform: rotate(-6deg);
      transform-origin: top left;
      z-index: 1;
    }

    .mob-card {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(44,26,26,.16);
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
      flex-shrink: 0;
      position: relative;
    }
    .mob-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid rgba(196,168,130,.35);
      border-radius: inherit;
      z-index: 3;
      pointer-events: none;
    }
    .mob-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.08) brightness(1.02);
    }

    /* Tablet sizing */
    @media (max-width: 1050px) and (min-width: 481px) {
      .mob-card { width: 165px; height: 215px; }
    }
    /* Mobile sizing */
    @media (max-width: 480px) {
      .mob-card { width: 138px; height: 182px; }
    }

    /* Mobile grid animations — slide up with stagger */
    .mobile-img-grid .row-top .mob-card:nth-child(1) {
      opacity: 0;
      animation: mobCardIn 1s cubic-bezier(.22,1,.36,1) 0.4s forwards;
    }
    .mobile-img-grid .row-top .mob-card:nth-child(2) {
      opacity: 0;
      animation: mobCardIn 1s cubic-bezier(.22,1,.36,1) 0.65s forwards;
    }
    .mobile-img-grid .row-bottom .mob-card:nth-child(1) {
      opacity: 0;
      animation: mobCardIn 1s cubic-bezier(.22,1,.36,1) 0.9s forwards;
    }
    .mobile-img-grid .row-bottom .mob-card:nth-child(2) {
      opacity: 0;
      animation: mobCardIn 1s cubic-bezier(.22,1,.36,1) 1.1s forwards;
    }

    @keyframes mobCardIn {
      0%   { opacity: 0; transform: translateY(40px) scale(.94); filter: blur(6px); }
      100% { opacity: 1; transform: translateY(0)    scale(1);   filter: blur(0);   }
    }
    /* Re-apply tilt after animation (overrides the keyframe end state) */
    .mobile-img-grid .row-top .mob-card:nth-child(1).anim-done  { transform: rotate(-7deg); }
    .mobile-img-grid .row-top .mob-card:nth-child(2).anim-done  { transform: rotate(7deg);  }
    .mobile-img-grid .row-bottom .mob-card:nth-child(1).anim-done { transform: rotate(6deg);  }
    .mobile-img-grid .row-bottom .mob-card:nth-child(2).anim-done { transform: rotate(-6deg); }

    /* ─── ENTRY ANIMATIONS (scroll-based for future sections) ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .25s; }
    .delay-3 { transition-delay: .4s; }
    .delay-4 { transition-delay: .55s; }
    .delay-5 { transition-delay: .7s; }
    .delay-6 { transition-delay: .85s; }

    .slide-left  { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s ease; }
    .slide-right { opacity: 0; transform: translateX( 40px); transition: opacity .9s ease, transform .9s ease; }
    .slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 1050px) {
      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        padding-top: calc(var(--nav-h) + 2rem);
        gap: 1.5rem;
      }
      /* hide desktop stacks, show mobile grid */
      .img-stack { display: none; }
      .mobile-img-grid { display: block; }
      .hero-center { max-width: 600px; margin: 0 auto; }
    }
    @media (max-width: 760px) {
      .nav-links, .btn-book-nav { display: none; }
      .hamburger { display: flex; }
      .hero-btns {
        flex-direction: column;
        align-items: center;
      }
      .hero-btns a {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }
    }
    
    /* ─── SOCIAL PROOF MARQUEE ─────────────────────── */
.sp-section {
  background: var(--cream);
  padding: 3rem 5%;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mocha) 100%);
  border-radius: 20px;
  padding: 1.1rem 0;
  max-width: 960px;
  margin: 0 auto;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--rose), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--mocha), transparent); }
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Pompiere', cursive;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.marquee-item i { color: rgba(255,255,255,.65); font-size: .75rem; }
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}

/* ─── SERVICES SECTION ─────────────────────────── */
.services-section {
  background: var(--cream);
  padding: 5rem 5% 4rem;
}

/* eyebrow reuse */
.sp-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1rem;
}
.sp-eyebrow span {
  display: inline-block; width: 32px; height: 1px; background: var(--rose-light);
}

.services-header { text-align: center; margin-bottom: 2.8rem; }

.services-title {
  font-family: 'Quintessential', cursive;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 400; color: var(--deep);
  line-height: 1.25; margin-bottom: .6rem;
}
.services-title em { color: var(--rose); font-style: normal; }

.services-sub {
  font-size: 1.1rem; color: var(--text-muted);
  letter-spacing: .03em; max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* ── Tabs ── */
.services-tabs {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: .6rem;
  margin-bottom: 3rem;
}
.tab-btn {
  font-family: 'Pompiere', cursive;
  font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--blush);
  padding: .55rem 1.4rem;
  border-radius: 100px; cursor: pointer;
  transition: all .25s ease;
}
.tab-btn:hover {
  border-color: var(--rose-light);
  color: var(--rose);
  background: rgba(232,180,184,.08);
}
.tab-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201,128,138,.3);
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

/* ── Card ── */
.svc-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--blush);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease, border-color .3s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(201,128,138,.14);
  border-color: var(--rose-light);
}

/* image wrap — INCREASED HEIGHT */
.svc-img-wrap {
  position: relative; overflow: hidden; height: 260px;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
  filter: saturate(1.06) brightness(1.02);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }

/* category badge */
.svc-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rose); color: var(--white);
  font-family: 'Pompiere', cursive;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 100px;
}
.lash-badge   { background: var(--gold); }
.makeup-badge { background: var(--mocha); }
.tattoo-badge { background: var(--deep); }

/* popular tag */
.svc-popular-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(253,248,245,.92);
  color: var(--rose);
  font-family: 'Pompiere', cursive;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 100px;
  display: flex; align-items: center; gap: .3rem;
  backdrop-filter: blur(6px);
}
.svc-popular-tag i { font-size: .6rem; }

/* card body */
.svc-body {
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}
.svc-icon-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.svc-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--rose);
}
.lash-icon   { background: #FDF5EC; color: var(--gold); }
.makeup-icon { background: #F5EDEB; color: var(--mocha); }
.tattoo-icon { background: #EDE8E8; color: var(--deep); }

.svc-price {
  font-size: .88rem; color: var(--text-muted); letter-spacing: .04em;
}
.svc-price strong { color: var(--rose); font-weight: 600; }

.svc-name {
  font-family: 'Quintessential', cursive;
  font-size: 1.22rem; font-weight: 400;
  color: var(--deep); margin-bottom: .5rem;
}
.svc-desc {
  font-size: .95rem; color: var(--text-muted);
  line-height: 1.65; flex: 1; margin-bottom: 1.2rem;
}

/* book button */
.svc-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Pompiere', cursive;
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid var(--rose-light);
  background: transparent;
  padding: .6rem 1.2rem; border-radius: 10px;
  text-decoration: none; align-self: flex-start;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.svc-btn i { font-size: .7rem; transition: transform .25s; }
.svc-btn:hover {
  background: var(--rose); color: var(--white);
  border-color: var(--rose);
  transform: translateY(-1px);
}
.svc-btn:hover i { transform: translateX(3px); }

.lash-btn   { color: var(--gold);  border-color: var(--gold-light); }
.lash-btn:hover   { background: var(--gold);  border-color: var(--gold); }
.makeup-btn { color: var(--mocha); border-color: #D4B8B0; }
.makeup-btn:hover { background: var(--mocha); color: var(--white); border-color: var(--mocha); }
.tattoo-btn { color: var(--deep);  border-color: #B0A0A0; }
.tattoo-btn:hover { background: var(--deep); color: var(--white); border-color: var(--deep); }

/* ── CTA strip ── */
.services-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; flex-wrap: wrap;
  background: var(--white); border: 1.5px solid var(--blush);
  border-radius: 20px; padding: 1.6rem 2rem;
  max-width: 600px; margin: 0 auto;
}
.services-cta p {
  font-size: 1.05rem; color: var(--text-muted); letter-spacing: .02em;
}
.services-cta strong { color: var(--deep); }

/* ── filter hide ── */
.svc-card.hidden {
  display: none;
}

/* ── responsive ── */
@media (max-width: 600px) {
  .services-section { padding: 4rem 4% 3rem; }
  /* ONE card per row on mobile */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .svc-img-wrap { height: 240px; }
  .svc-body { padding: 1rem; }
  .svc-name { font-size: 1.05rem; }
  .svc-desc { font-size: .88rem; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-img-wrap { height: 220px; }
}

/* ─── GALLERY SECTION ─────────────────────────── */
.gallery-section {
  background: var(--cream);
  padding: 5rem 5% 5rem;
  position: relative;
}
.gallery-header { text-align: center; margin-bottom: 2.6rem; }

/* filters — mirrors services tabs but isolated */
.gallery-filters {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.6rem;
}
.gal-filter-btn {
  font-family: 'Pompiere', cursive;
  font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--blush);
  padding: .55rem 1.4rem;
  border-radius: 100px; cursor: pointer;
  transition: all .25s ease;
}
.gal-filter-btn:hover {
  border-color: var(--rose-light);
  color: var(--rose);
  background: rgba(232,180,184,.08);
}
.gal-filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201,128,138,.3);
}

/* masonry via CSS columns */
.gallery-masonry {
  column-count: 4;
  column-gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* item */
.gal-item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(44,26,26,.12);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  /* staggered entrance */
  opacity: 0;
  transform: translateY(26px) scale(.97);
  animation: galItemIn .8s cubic-bezier(.22,1,.36,1) forwards;
}
.gal-item::before {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(196,168,130,.4);
  border-radius: inherit;
  z-index: 3; pointer-events: none;
}
.gal-item img {
  width: 100%; height: auto; display: block;
  filter: saturate(1.06) brightness(1.02);
  transition: transform .55s ease;
}
.gal-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(201,128,138,.22);
}
.gal-item:hover img { transform: scale(1.07); }

@keyframes galItemIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* hover overlay */
.gal-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(to top, rgba(44,26,26,.55) 0%, rgba(44,26,26,.05) 45%, transparent 75%);
  opacity: 0;
  transition: opacity .35s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-tag {
  font-family: 'Pompiere', cursive;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--white);
  background: rgba(201,128,138,.85);
  padding: .3rem .8rem; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.gal-zoom {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(253,248,245,.92);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transform: translateY(8px);
  transition: transform .35s ease;
}
.gal-item:hover .gal-zoom { transform: translateY(0); }

/* filter hide + empty state */
.gal-item.hidden { display: none; }
.gal-empty {
  display: none;
  text-align: center;
  font-size: 1.1rem; color: var(--text-muted);
  letter-spacing: .03em; margin-top: 1rem;
}
.gal-empty.show { display: block; }

/* ── Lightbox ── */
.gal-lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(44,26,26,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.gal-lightbox.open { opacity: 1; visibility: visible; }

.gal-lb-stage {
  max-width: 760px; max-height: 86vh;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.gal-lightbox.open .gal-lb-stage { transform: scale(1); }

.gal-lb-stage img {
  max-width: 100%; max-height: 76vh;
  border-radius: 16px; display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  border: 2px solid rgba(196,168,130,.45);
}
.gal-lb-caption {
  margin-top: 1rem; text-align: center;
  display: flex; flex-direction: column; gap: .35rem;
}
.gal-lb-tag {
  font-family: 'Pompiere', cursive;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose-light);
}
.gal-lb-title {
  font-family: 'Quintessential', cursive;
  font-size: 1.3rem; color: var(--white); letter-spacing: .02em;
}

/* lightbox buttons */
.gal-lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(253,248,245,.12);
  color: var(--white);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .2s, border-color .25s;
  z-index: 2010;
}
.gal-lb-btn:hover {
  background: var(--rose); border-color: var(--rose);
  transform: scale(1.08);
}
.gal-lb-close { top: 3vh; right: 4vw; }
.gal-lb-prev  { left: 4vw;  top: 50%; transform: translateY(-50%); }
.gal-lb-next  { right: 4vw; top: 50%; transform: translateY(-50%); }
.gal-lb-prev:hover, .gal-lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ── responsive masonry ── */
@media (max-width: 1050px) { .gallery-masonry { column-count: 3; } }
@media (max-width: 760px)  {
  .gallery-masonry { column-count: 2; column-gap: .8rem; }
  .gal-item { margin-bottom: .8rem; }
  .gal-lb-prev { left: 2vw; }
  .gal-lb-next { right: 2vw; }
  .gal-lb-close { right: 4vw; }
}
@media (max-width: 420px)  {
  .gallery-section { padding: 4rem 4%; }
  .gal-lb-btn { width: 42px; height: 42px; }
}

/* ─── ABOUT SECTION ─────────────────────────── */
.about-section {
  background: linear-gradient(180deg, var(--cream) 0%, #FBF1EE 100%);
  padding: 5.5rem 5%;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -8%; left: -6%;
  width: 38vw; height: 50vh;
  background: radial-gradient(ellipse at 30% 30%, var(--rose-pale) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Visual collage ── */
.about-visual {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 82%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(44,26,26,.2);
  border: 2px solid rgba(196,168,130,.4);
}
.about-img-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%; height: 46%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(44,26,26,.22);
  border: 3px solid var(--cream);
  z-index: 2;
}
.about-img-main img,
.about-img-sub img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(1.06) brightness(1.02);
  transition: transform .6s ease;
}
.about-img-main:hover img,
.about-img-sub:hover img { transform: scale(1.06); }

/* experience badge */
.about-exp-badge {
  position: absolute;
  top: 10%; right: -2%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 16px 38px rgba(201,128,138,.35);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  animation: floatUp 6s ease-in-out infinite;
}
.about-exp-badge .exp-num {
  font-family: 'Quintessential', cursive;
  font-size: 2rem; line-height: 1;
}
.about-exp-badge .exp-num span { font-size: 1.1rem; vertical-align: super; }
.about-exp-badge .exp-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.3; opacity: .92;
}

/* review chip */
.about-review-chip {
  position: absolute;
  bottom: -4%; left: 2%;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 16px;
  padding: .85rem 1.1rem;
  max-width: 230px;
  box-shadow: 0 14px 40px rgba(44,26,26,.14);
  z-index: 4;
  animation: floatUp 7s ease-in-out infinite reverse;
}
.about-review-chip .chip-stars { color: #F0B429; font-size: .8rem; letter-spacing: 1px; margin-bottom: .3rem; }
.about-review-chip .chip-text {
  font-size: .82rem; color: var(--text); line-height: 1.45; font-style: italic;
}

/* ── Content ── */
.about-content { position: relative; }

.about-title {
  font-family: 'Quintessential', cursive;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 400; color: var(--deep);
  line-height: 1.25; margin: .4rem 0 1.2rem;
}
.about-title em { color: var(--rose); font-style: normal; }

.about-lead {
  font-size: 1.18rem; color: var(--text);
  line-height: 1.7; margin-bottom: 1rem; letter-spacing: .02em;
}
.about-text {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.8rem; letter-spacing: .02em;
}

/* stats */
.about-stats {
  display: flex; align-items: center;
  gap: 1.2rem; margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: .15rem; }
.stat-num {
  font-family: 'Quintessential', cursive;
  font-size: 1.9rem; color: var(--rose); line-height: 1;
}
.stat-label {
  font-size: .82rem; color: var(--text-muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--rose-light), transparent);
}

/* feature pills */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-pill {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
}
.feature-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(201,128,138,.14);
  border-color: var(--rose-light);
}
.feature-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--rose-pale);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.feature-pill h4 {
  font-family: 'Quintessential', cursive;
  font-size: 1.02rem; font-weight: 400; color: var(--deep);
  margin-bottom: .2rem;
}
.feature-pill p {
  font-size: .85rem; color: var(--text-muted); line-height: 1.5;
}

/* footer: signature + cta */
.about-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
}
.about-signature { display: flex; flex-direction: column; }
.sig-name {
  font-family: 'Protest Revolution', cursive;
  font-size: 1.8rem; color: var(--rose); line-height: 1;
}
.sig-role {
  font-size: .8rem; color: var(--text-muted);
  letter-spacing: .14em; text-transform: uppercase; margin-top: .25rem;
}

/* ── responsive ── */
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .about-section { padding: 4rem 4%; }
  .about-visual { height: 420px; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 1rem; }
  .stat-num { font-size: 1.6rem; }
  .about-lead { font-size: 1.08rem; }
  .about-foot { flex-direction: column; align-items: flex-start; }
  .about-foot .btn-primary { width: 100%; text-align: center; }
  .about-review-chip { max-width: 190px; padding: .7rem .9rem; }
  .about-exp-badge { padding: .8rem 1rem; }
  .about-exp-badge .exp-num { font-size: 1.6rem; }
}
@media (max-width: 380px) {
  .about-visual { height: 360px; }
  .about-review-chip { display: none; }
}

/* ─── PRICING SECTION ─────────────────────────── */
.pricing-section {
  background: var(--cream);
  padding: 5.5rem 5%;
  position: relative;
}
.pricing-header { text-align: center; margin-bottom: 2rem; }

/* billing toggle */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: .9rem; flex-wrap: wrap;
}
.toggle-label {
  font-family: 'Pompiere', cursive;
  font-size: .95rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--deep); transition: color .25s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.toggle-label.muted { color: var(--text-muted); }
.toggle-save {
  font-size: .62rem; letter-spacing: .08em;
  background: var(--rose-pale); color: var(--rose);
  padding: .2rem .5rem; border-radius: 100px;
}
.toggle-switch {
  width: 58px; height: 30px;
  border-radius: 100px;
  border: 1.5px solid var(--rose-light);
  background: var(--white);
  cursor: pointer; position: relative;
  transition: background .3s ease, border-color .3s ease;
  flex-shrink: 0;
}
.toggle-knob {
  position: absolute; top: 50%; left: 3px;
  transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--rose);
  transition: left .3s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.toggle-switch.active { background: var(--rose); border-color: var(--rose); }
.toggle-switch.active .toggle-knob { left: 30px; background: var(--white); }

.pricing-toggle-note {
  text-align: center;
  font-size: .88rem; color: var(--text-muted);
  letter-spacing: .02em; margin-bottom: 2.6rem;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
}
.pricing-toggle-note i { color: var(--rose); font-size: .82rem; }

/* grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto 2.6rem;
  align-items: stretch;
}

/* card */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 22px;
  padding: 2rem 1.6rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease, border-color .3s ease, opacity .3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(201,128,138,.16);
  border-color: var(--rose-light);
}

/* when nail plan active, dim the one-off (non-nail) cards */
.pricing-grid.plan-active .price-card:not(.is-nails) {
  opacity: .58;
  filter: saturate(.85);
}
.pricing-grid.plan-active .price-card:not(.is-nails):hover {
  opacity: 1; filter: none;
}

/* featured card */
.price-card.featured {
  border-color: var(--rose);
  box-shadow: 0 20px 50px rgba(201,128,138,.2);
  background: linear-gradient(180deg, #FFFDFC 0%, var(--rose-pale) 100%);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: var(--white);
  font-family: 'Pompiere', cursive;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 8px 20px rgba(201,128,138,.35);
  white-space: nowrap;
}
.price-ribbon i { font-size: .65rem; }

/* one-off tag (top-right of flat cards) */
.price-oneoff-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Pompiere', cursive;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--blush);
  padding: .25rem .6rem; border-radius: 100px;
  display: flex; align-items: center; gap: .3rem;
}
.price-oneoff-tag i { font-size: .58rem; color: var(--gold); }

/* head */
.price-card-head { text-align: center; margin-bottom: 1.4rem; }
.price-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--rose-pale); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto .9rem;
}
.featured .price-ico { background: var(--white); }
.price-name {
  font-family: 'Quintessential', cursive;
  font-size: 1.3rem; font-weight: 400; color: var(--deep);
  margin-bottom: .3rem;
}
.price-tagline {
  font-size: .9rem; color: var(--text-muted); line-height: 1.5;
}

/* amount */
.price-amount {
  position: relative;
  text-align: center; margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--blush);
  display: flex; align-items: baseline; justify-content: center; gap: .15rem;
}
.price-currency {
  font-family: 'Quintessential', cursive;
  font-size: 1.4rem; color: var(--rose);
}
.price-value {
  font-family: 'Quintessential', cursive;
  font-size: 2.6rem; color: var(--deep); line-height: 1;
  transition: opacity .25s ease;
}
.price-period {
  font-size: .9rem; color: var(--text-muted);
  letter-spacing: .04em; margin-left: .2rem;
}

/* save flag — appears only when plan active, on nails cards */
.price-save-flag {
  position: absolute; top: -6px; right: 50%;
  transform: translateX(120px) scale(.85);
  background: var(--gold); color: var(--white);
  font-family: 'Pompiere', cursive;
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 100px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap;
}
.plan-active .is-nails .price-save-flag {
  opacity: 1;
  transform: translateX(120px) scale(1);
}
@media (max-width: 420px) {
  .price-save-flag { right: 14px; transform: none; }
  .plan-active .is-nails .price-save-flag { transform: none; }
}

/* list */
.price-list {
  list-style: none; margin-bottom: 1.8rem; flex: 1;
  display: flex; flex-direction: column; gap: .7rem;
}
.price-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .95rem; color: var(--text); line-height: 1.4;
}
.price-list li i {
  font-size: .72rem; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--rose-pale); color: var(--rose);
}
.price-list li.muted { color: var(--text-muted); }
.price-list li.muted i { background: #F0E8E8; color: #B8A0A0; }

/* button */
.price-btn {
  display: block; text-align: center;
  font-family: 'Pompiere', cursive;
  font-size: .9rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid var(--rose-light);
  background: transparent;
  padding: .85rem 1rem; border-radius: 12px;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
}
.price-btn:hover {
  background: var(--rose); color: var(--white); border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,128,138,.3);
}
.featured .price-btn {
  background: var(--rose); color: var(--white); border-color: var(--rose);
}
.featured .price-btn:hover {
  background: var(--mocha); border-color: var(--mocha);
}

/* reassurance strip */
.pricing-note {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  max-width: 700px; margin: 0 auto;
}
.pricing-note span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--text-muted); letter-spacing: .03em;
}
.pricing-note span i { color: var(--rose); }
.note-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose-light);
}

/* price-change flash */
.price-value.flash { opacity: 0; }

/* responsive */
@media (max-width: 600px) {
  .pricing-section { padding: 4rem 4%; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .pricing-note { gap: .75rem; }
  .note-dot { display: none; }
}

/* ─── WHY CHOOSE US ─────────────────────────── */
.why-section {
  background: linear-gradient(180deg, #FBF1EE 0%, var(--cream) 100%);
  padding: 5.5rem 5%;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -6%;
  width: 40vw; height: 55vh;
  background: radial-gradient(ellipse at 70% 70%, var(--champagne) 0%, transparent 70%);
  opacity: .6; pointer-events: none;
}
.why-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }

/* grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1150px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}

/* card */
.why-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 20px;
  padding: 2rem 1.7rem 1.8rem;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease, border-color .3s ease;
}
/* hover sweep */
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(201,128,138,.16);
  border-color: var(--rose-light);
}
.why-card:hover::after { transform: scaleX(1); }

/* index number */
.why-index {
  position: absolute;
  top: 1.2rem; right: 1.3rem;
  font-family: 'Quintessential', cursive;
  font-size: 1.6rem;
  color: var(--rose-pale);
  line-height: 1;
  transition: color .3s ease;
}
.why-card:hover .why-index { color: var(--rose-light); }

/* icon */
.why-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--rose-pale);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background .35s ease, color .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-ico {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}

.why-name {
  font-family: 'Quintessential', cursive;
  font-size: 1.25rem; font-weight: 400; color: var(--deep);
  margin-bottom: .55rem;
}
.why-desc {
  font-size: .95rem; color: var(--text-muted); line-height: 1.65;
}

/* alternating tint for even cards (2, 4, 6) */
.why-card:nth-child(even) {
  background: linear-gradient(180deg, #FFFCF8 0%, var(--champagne) 100%);
  border-color: var(--gold-light);
}
.why-card:nth-child(even) .why-ico {
  background: var(--gold-light);
  color: var(--gold);
}
.why-card:nth-child(even) .why-index { color: var(--gold-light); }
.why-card:nth-child(even):hover { border-color: var(--gold); }
.why-card:nth-child(even):hover .why-index { color: var(--gold); }

/* ── trust bar ── */
.why-trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--mocha) 0%, var(--deep) 100%);
  border-radius: 22px;
  padding: 1.8rem 2rem;
  position: relative; z-index: 1;
  box-shadow: 0 24px 56px rgba(44,26,26,.22);
}
.trust-chip {
  display: flex; align-items: center; gap: .9rem;
  justify-content: center;
}
.trust-chip > i {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(232,180,184,.18);
  color: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.trust-chip > div { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Quintessential', cursive;
  font-size: 1.35rem; color: var(--white); line-height: 1.1;
}
.trust-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: .15rem;
}

/* ── responsive ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-trustbar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .why-section { padding: 4rem 4%; }
  .why-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .why-card { padding: 1.6rem 1.4rem; }
  .why-trustbar { grid-template-columns: 1fr 1fr; padding: 1.6rem 1.2rem; gap: 1.3rem; }
  .trust-chip { justify-content: flex-start; }
}
@media (max-width: 380px) {
  .why-trustbar { grid-template-columns: 1fr; }
  .trust-chip { justify-content: center; }
}

/* ─── TESTIMONIALS ─────────────────────────── */
.testi-section {
  background: var(--cream);
  padding: 5.5rem 5%;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute;
  top: -8%; left: -6%;
  width: 38vw; height: 50vh;
  background: radial-gradient(ellipse at 30% 30%, var(--rose-pale) 0%, transparent 70%);
  opacity: .6; pointer-events: none;
}
.testi-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }

/* carousel shell */
.testi-carousel {
  display: flex; align-items: center; gap: 1rem;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.testi-viewport { overflow: hidden; flex: 1; }
.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

/* slide = one card wrapper, width set by JS-friendly CSS vars */
.testi-slide {
  flex: 0 0 33.3333%;
  padding: .8rem;
  box-sizing: border-box;
}

/* card */
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 22px;
  padding: 2.2rem 1.8rem 1.8rem;
  height: 100%;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 14px 38px rgba(44,26,26,.07);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .3s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(201,128,138,.16);
  border-color: var(--rose-light);
}

/* decorative quote mark */
.testi-quote {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: 'Quintessential', cursive;
  font-size: 3.4rem; line-height: 1;
  color: var(--rose-pale);
  pointer-events: none;
}

/* stars */
.testi-stars {
  color: #F0B429; font-size: .9rem; letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* review text */
.testi-text {
  font-size: 1rem; color: var(--text); line-height: 1.7;
  flex: 1; margin-bottom: 1.6rem;
  letter-spacing: .01em;
}

/* footer: avatar + name */
.testi-client {
  display: flex; align-items: center; gap: .9rem;
  border-top: 1px solid var(--blush);
  padding-top: 1.2rem;
}
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--rose-light);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name {
  font-family: 'Quintessential', cursive;
  font-size: 1.1rem; color: var(--deep); line-height: 1.2;
}
.testi-role {
  font-size: .78rem; color: var(--text-muted);
  letter-spacing: .06em; margin-top: .15rem;
}

/* arrows */
.testi-arrow {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--rose-light);
  background: var(--white);
  color: var(--rose);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
}
.testi-arrow:hover {
  background: var(--rose); color: var(--white); border-color: var(--rose);
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(201,128,138,.3);
}

/* dots */
.testi-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 9px; height: 9px; border-radius: 100px;
  background: var(--rose-light);
  border: none; cursor: pointer; padding: 0;
  opacity: .45;
  transition: opacity .25s, width .3s ease, background .25s;
}
.testi-dot.active {
  opacity: 1; width: 26px;
  background: var(--rose);
}

/* responsive */
@media (max-width: 980px) {
  .testi-slide { flex-basis: 50%; }
}
@media (max-width: 680px) {
  .testi-section { padding: 4rem 4%; }
  .testi-slide { flex-basis: 100%; }
  .testi-arrow { display: none; }   /* swipe + dots on mobile */
  .testi-card { padding: 2rem 1.5rem 1.6rem; }
}

/* ─── BOOKING CTA ─────────────────────────── */
.book-section {
  padding: 5rem 5%;
  background: var(--cream);
  position: relative;
}

.book-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mocha) 60%, var(--deep) 100%);
  border-radius: 28px;
  padding: 5rem 4rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44,26,26,.28);
}

/* noise overlay for texture */
.book-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; border-radius: inherit;
}

/* gold shimmer sweep line */
.book-inner::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 40%, var(--gold) 60%, transparent 100%);
  border-radius: 28px 28px 0 0;
  z-index: 1;
}

/* ── decorative petals ── */
.book-petal {
  position: absolute;
  border-radius: 50% 10% 50% 10%;
  opacity: .1;
  pointer-events: none;
}
.book-petal-1 {
  width: 140px; height: 200px;
  background: var(--rose-light);
  top: -30px; left: -30px;
  transform: rotate(25deg);
  animation: float1 8s ease-in-out infinite;
}
.book-petal-2 {
  width: 90px; height: 140px;
  background: var(--gold-light);
  bottom: -20px; right: -20px;
  transform: rotate(-40deg);
  animation: float2 10s ease-in-out infinite;
}
.book-petal-3 {
  width: 60px; height: 95px;
  background: var(--white);
  top: 50%; left: -15px;
  transform: rotate(60deg);
  animation: float1 12s ease-in-out infinite reverse;
}

/* ── floating trust chips ── */
.book-chip {
  position: absolute;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  font-family: 'Pompiere', cursive;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: .45rem;
  z-index: 2;
  animation: floatUp 6s ease-in-out infinite;
}
.book-chip i { font-size: .72rem; color: var(--gold-light); }
.book-chip-left  { top: 1.8rem; left: 1.8rem; }
.book-chip-right { top: 1.8rem; right: 1.8rem; animation-direction: reverse; }

/* ── eyebrow ── */
.book-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.2rem;
  position: relative; z-index: 2;
}
.book-eyebrow span {
  display: inline-block; width: 28px; height: 1px;
  background: rgba(255,255,255,.4);
}

/* ── headline ── */
.book-title {
  font-family: 'Quintessential', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  position: relative; z-index: 2;
}
.book-title em {
  font-family: 'Protest Revolution', cursive;
  font-style: normal;
  color: var(--gold-light);
}

/* ── sub ── */
.book-sub {
  font-family: 'Pompiere', cursive;
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7; letter-spacing: .02em;
  margin-bottom: 2.4rem;
  position: relative; z-index: 2;
}

/* ── buttons ── */
.book-btns {
  display: flex; justify-content: center;
  align-items: center; gap: 1rem;
  flex-wrap: wrap;
  position: relative; z-index: 2;
  margin-bottom: 2rem;
}

.book-btn-primary {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: 'Pompiere', cursive;
  font-size: 1rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--deep);
  background: var(--white);
  border: none;
  padding: 1.05rem 2.4rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.book-btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,128,138,.12) 0%, transparent 60%);
  pointer-events: none;
}
.book-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.book-btn-primary i { color: var(--rose); font-size: .9rem; }

.book-btn-whatsapp {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: 'Pompiere', cursive;
  font-size: 1rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  border: none;
  padding: 1.05rem 2.4rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.book-btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37,211,102,.35);
}
.book-btn-whatsapp i { font-size: 1.15rem; }

/* ── trust row ── */
.book-trust {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; flex-wrap: wrap;
  font-family: 'Pompiere', cursive;
  font-size: .88rem; letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  position: relative; z-index: 2;
}
.book-trust i { color: var(--gold-light); margin-right: .25rem; }
.book-trust-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.35);
}

/* responsive */
@media (max-width: 760px) {
  .book-inner { padding: 4rem 2rem 3.2rem; border-radius: 20px; }
  .book-chip-left, .book-chip-right { display: none; }
  .book-btns { flex-direction: column; }
  .book-btn-primary, .book-btn-whatsapp { width: 100%; max-width: 320px; justify-content: center; }
  .book-trust { gap: .6rem; }
  .book-trust-dot { display: none; }
  .book-br { display: none; }
}
@media (max-width: 480px) {
  .book-section { padding: 4rem 4%; }
  .book-inner { padding: 3.5rem 1.6rem 2.8rem; }
  .book-title { font-size: clamp(2rem, 7vw, 2.6rem); }
  .book-sub { font-size: 1rem; }
}

/* ─── SOCIAL FEED ─────────────────────────── */
.social-section {
  background: linear-gradient(180deg, var(--cream) 0%, #FBF1EE 100%);
  padding: 5.5rem 5%;
  position: relative;
  overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute;
  top: -6%; right: -5%;
  width: 40vw; height: 50vh;
  background: radial-gradient(ellipse at 70% 30%, var(--rose-pale) 0%, transparent 70%);
  opacity: .5; pointer-events: none;
}
.social-header { text-align: center; margin-bottom: 2.4rem; position: relative; z-index: 1; }

/* platform tabs */
.social-tabs {
  display: flex; justify-content: center;
  gap: .6rem; flex-wrap: wrap;
  margin-top: 1.8rem;
}
.stab {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Pompiere', cursive;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--blush);
  padding: .55rem 1.4rem;
  border-radius: 100px; cursor: pointer;
  transition: all .25s ease;
}
.stab i { font-size: .82rem; }
.stab:hover {
  border-color: var(--rose-light); color: var(--rose);
  background: rgba(232,180,184,.08);
}
.stab.active {
  background: var(--rose); border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201,128,138,.3);
}
.stab[data-platform="tiktok"].active { background: var(--deep); border-color: var(--deep); }
.stab[data-platform="instagram"].active {
  background: linear-gradient(135deg, #833AB4, #C9387A, #F77737);
  border-color: transparent;
}

/* grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative; z-index: 1;
}

/* post card */
.social-post {
  display: flex; flex-direction: column; gap: .65rem;
  transition: opacity .3s ease, transform .3s ease;
}
.social-post.hidden { display: none; }

/* image wrap */
.social-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(44,26,26,.12);
  border: 1.5px solid var(--blush);
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.social-img-wrap:hover {
  box-shadow: 0 24px 56px rgba(201,128,138,.22);
  transform: translateY(-5px);
}
.social-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(1.06) brightness(1.02);
  transition: transform .55s ease, filter .4s ease;
}
.social-img-wrap:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) brightness(.92);
}

/* reel shimmer border */
.social-img-wrap.is-reel {
  border-color: transparent;
  background: linear-gradient(var(--cream), var(--cream)) padding-box,
              linear-gradient(135deg, #EE1D52, #69C9D0) border-box;
  border: 2px solid transparent;
}

/* overlay */
.social-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,26,.7) 0%, rgba(44,26,26,.15) 55%, transparent 80%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 1.1rem 1rem;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}
.social-img-wrap:hover .social-overlay { opacity: 1; }

.social-overlay-meta {
  display: flex; gap: 1.2rem;
  font-family: 'Pompiere', cursive;
  font-size: .92rem; font-weight: 400; letter-spacing: .05em;
  color: var(--white);
  margin-bottom: .75rem;
}
.social-overlay-meta i { margin-right: .3rem; }

.social-view-btn {
  font-family: 'Pompiere', cursive;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--deep);
  background: var(--white);
  padding: .45rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.social-view-btn:hover {
  background: var(--rose); color: var(--white);
  transform: scale(1.04);
}

/* platform badge */
.social-platform-badge {
  position: absolute; top: 10px; left: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.instagram-badge {
  background: linear-gradient(135deg, #833AB4, #C9387A, #F77737);
  color: var(--white);
}
.tiktok-badge {
  background: var(--deep);
  color: var(--white);
}

/* reel play button */
.social-reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  padding-left: 3px;
  border: 1.5px solid rgba(255,255,255,.4);
  z-index: 3;
  transition: background .25s, transform .25s;
  pointer-events: none;
}
.social-img-wrap:hover .social-reel-play {
  background: rgba(238,29,82,.85);
  transform: translate(-50%, -50%) scale(1.1);
}

/* caption */
.social-caption {
  font-family: 'Pompiere', cursive;
  font-size: .92rem; color: var(--text-muted);
  line-height: 1.5; letter-spacing: .01em;
  padding: 0 .2rem;
}

/* ── CTA strip ── */
.social-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 22px;
  padding: 1.6rem 2rem;
  position: relative; z-index: 1;
}
.social-cta-handles {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.social-handle {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none;
  transition: transform .25s;
}
.social-handle:hover { transform: translateY(-2px); }
.social-handle > i {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.instagram-handle > i {
  background: linear-gradient(135deg, #833AB4, #C9387A, #F77737);
}
.tiktok-handle > i {
  background: var(--deep);
}
.handle-name {
  display: block;
  font-family: 'Pompiere', cursive;
  font-size: 1rem; color: var(--deep);
  letter-spacing: .04em;
}
.handle-label {
  display: block;
  font-size: .78rem; color: var(--text-muted);
  letter-spacing: .04em; margin-top: .1rem;
}
.social-handle-divider {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--blush), transparent);
}
.social-follow-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Pompiere', cursive;
  font-size: .9rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose) 0%, var(--mocha) 100%);
  padding: .9rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.social-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,128,138,.38);
}
.social-follow-btn i { font-size: .8rem; }

/* responsive */
@media (max-width: 980px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
}
@media (max-width: 700px) {
  .social-section { padding: 4rem 4%; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .social-cta { flex-direction: column; align-items: flex-start; }
  .social-follow-btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .social-caption { font-size: .82rem; }
  .social-handle-divider { display: none; }
}

/* ─── FOOTER ─────────────────────────── */
.site-footer {
  background: var(--deep);
  padding: 2.8rem 5%;
  position: relative;
  overflow: hidden;
}

/* subtle rose glow top-left */
.site-footer::before {
  content: '';
  position: absolute;
  top: -40%; left: -8%;
  width: 30vw; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,128,138,.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

/* logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.footer-logo-main {
  font-family: 'Rubik Glitch', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
  transition: opacity .25s;
}
.footer-logo-main span { color: var(--rose); }
.footer-logo:hover .footer-logo-main { opacity: .85; }
.footer-logo-sub {
  font-family: 'Pompiere', cursive;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
}

/* divider */
.footer-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-light), transparent);
  opacity: .4;
}

/* social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.footer-social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
}

/* copyright */
.footer-copy {
  font-family: 'Pompiere', cursive;
  font-size: .85rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.footer-copy i { font-size: .78rem; }
.footer-copy-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: inline-block;
}

/* responsive */
@media (max-width: 480px) {
  .site-footer { padding: 2.4rem 4%; }
  .footer-logo-main { font-size: 1.3rem; }
  .footer-copy-dot { display: none; }
}
  