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

    :root {
      --gold: #6e4fa3;
      --gold-mid: #5c3f8f;
      --gold-light: #9474c8;
      --gold-pale: #b09ed0;
      --cream: #c8b8e0;
      --cream-2: #baaad6;
      --cream-3: #a898ca;
      --dark: #1a1128;
      --muted: #6e6088;
      --text: #1e1530;
      --text-2: #4a3868;
      --text-3: #7a6898;
    }

    html {
      scroll-behavior: smooth;
    }

    ::selection {
      background: #c9a96e;
      color: #fff;
    }

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

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 60px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      overflow: visible;
      transition: padding 0.4s;
      background: rgba(110, 75, 160, 0.88);
      border-bottom: none;
      box-shadow: none;
    }

    nav::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to bottom, rgba(110, 75, 160, 0.88), transparent);
      pointer-events: none;
      opacity: var(--fade-opacity, 1);
    }

    nav.scrolled {
      background: rgba(110, 75, 160, 1);
      padding: 10px 60px;
      border-bottom: none;
      box-shadow: 0 2px 20px rgba(50, 28, 90, 0.12);
    }

    .nav-left {
      display: flex;
      align-items: center;
    }

    .nav-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    /* centre logo — invisible position anchor for the flying logo */
    .nav-logo {
      width: 36px;
      height: 36px;
      display: block;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
    }

    .nav-logo-sub {
      font-size: 0.52rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      visibility: hidden;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.95rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #c9a96e;
    }

    .nav-cta {
      font-size: 0.9rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      background: #fff;
      padding: 10px 26px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    .nav-cta:hover {
      background: #c9a96e;
      color: #fff;
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('lavender_touch_hero.jpg') center center / cover no-repeat;
      background-position: center center;
      width: 100%;
      height: 100%;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom,
          rgba(80, 50, 130, 0.75) 0%,
          rgba(60, 35, 110, 0.70) 50%,
          rgba(26, 17, 40, 0.80) 100%);
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle, rgba(200, 184, 224, 0.08) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .hero-content {
      position: relative;
      text-align: center;
      max-width: 900px;
      padding: 0 40px;
    }

    .hero-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.9s 0.2s forwards;
    }

    .hero-logo-icon {
      color: var(--gold);
      margin-bottom: 8px;
      filter: drop-shadow(0 4px 24px rgba(110, 79, 163, 0.3));
      width: 110px;
      height: 110px;
      visibility: hidden;
      /* layout anchor — flying logo SVG sits on top */
    }

    .hero-logo-wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      letter-spacing: 0.08em;
      color: #fff;
      line-height: 1;
      margin-bottom: 12px;
    }

    /* ── FLYING LOGO ── */
    #flying-logo {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 200;
      pointer-events: none;
      width: 110px;
      height: 110px;
      color: #fff;
      opacity: 0;
      will-change: transform;
      transform-origin: center center;
    }

    #flying-logo.ready {
      opacity: 1;
    }

    .hero-logo-tagline {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #c9a96e;
    }

    .hero-logo-tagline::before,
    .hero-logo-tagline::after {
      content: '';
      width: 36px;
      height: 1px;
      background: #c9a96e;
      opacity: 0.8;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 300;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.06em;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #fff;
      background: var(--gold);
      padding: 16px 40px;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      font-weight: 500;
    }

    .btn-primary:hover {
      background: #c9a96e;
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      background: #fff;
      padding: 16px 40px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s, transform 0.2s;
      font-weight: 500;
    }

    .btn-ghost:hover {
      background: #c9a96e;
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s 1.4s forwards;
    }

    .hero-scroll span {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      border-top: none;
      border-bottom: none;
      background: #3b2560;
      overflow: hidden;
      padding: 18px 0;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 28px;
      padding: 0 28px;
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #fff;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #c9a96e;
      opacity: 1;
    }

    /* ── SECTION COMMONS ── */
    section {
      padding: 120px 60px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.65rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text);
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    /* ── ABOUT ── */
    .about {
      background: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 3 L49 26 L26 49 L3 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.8'/%3E%3Cpath d='M26 12 L40 26 L26 40 L12 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='3.5' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='1.2' fill='%236e4fa3'/%3E%3Cline x1='26' y1='3' x2='26' y2='12' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='49' y1='26' x2='40' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='26' y1='49' x2='26' y2='40' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='3' y1='26' x2='12' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Ccircle cx='26' cy='3' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='49' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='26' cy='49' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='3' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3C/svg%3E");
      background-size: 52px 52px;
      opacity: 0.22;
      -webkit-mask-image: linear-gradient(to right, black 0%, transparent 42%, transparent 58%, black 100%);
      mask-image: linear-gradient(to right, black 0%, transparent 42%, transparent 58%, black 100%);
      pointer-events: none;
      z-index: 0;
    }

    .about>* {
      position: relative;
      z-index: 1;
    }

    .about-visual {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      background: url('stone.jpg') center center / cover no-repeat;
      border: 1px solid rgba(110, 79, 163, 0.18);
      position: relative;
      overflow: hidden;
    }

    .about-img-icon {
      display: none;
    }

    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 130px;
      height: 130px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .about-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 400;
      color: #fff;
      line-height: 1;
    }

    .about-badge span {
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
    }

    .about .section-label {
      color: #c9a96e;
    }

    .about .section-label::before {
      background: #c9a96e;
    }

    .about-text .section-title {
      margin-bottom: 28px;
    }

    .about-body {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--text-2);
      margin-bottom: 40px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      border-top: 1px solid rgba(110, 79, 163, 0.18);
      padding-top: 40px;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-top: 6px;
    }

    /* ── STATIC NAV (inner pages) ── */
    nav.nav-static {
      background: rgba(110, 75, 160, 1) !important;
      box-shadow: 0 4px 24px rgba(50, 28, 90, 0.12) !important;
      transition: none !important;
    }

    nav.nav-static::after {
      display: none;
    }

    nav.nav-static .nav-logo {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      width: 36px;
      height: 36px;
      color: #c9a96e;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── INNER PAGE HERO ── */
    .page-hero {
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 3 L49 26 L26 49 L3 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.8'/%3E%3Cpath d='M26 12 L40 26 L26 40 L12 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='3.5' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='1.2' fill='%236e4fa3'/%3E%3Cline x1='26' y1='3' x2='26' y2='12' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='49' y1='26' x2='40' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='26' y1='49' x2='26' y2='40' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='3' y1='26' x2='12' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Ccircle cx='26' cy='3' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='49' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='26' cy='49' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='3' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3C/svg%3E");
      background-size: 52px 52px;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }

    .page-hero>* {
      position: relative;
      z-index: 1;
    }

    .page-hero .section-label {
      color: #6e4fa3;
    }

    .page-hero .section-label::before {
      background: #6e4fa3;
    }

    .page-hero .section-title {
      color: var(--text);
    }

    .page-hero .section-title em {
      color: #6e4fa3;
    }

    .page-hero p {
      color: var(--text-2);
    }

    .page-hero .back-link {
      display: flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-3);
      text-decoration: none;
      margin-bottom: 32px;
      transition: color 0.3s;
    }

    .page-hero .back-link:hover {
      color: #6e4fa3;
    }

    /* ── BALINESE DIVIDER ── */
    .balinese-divider {
      line-height: 0;
      overflow: hidden;
      background: transparent;
    }

    .balinese-divider--dark {
      background: #1a1128;
    }

    .balinese-divider svg {
      display: block;
      width: 100%;
      height: 48px;
    }

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

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
    }

    /* ── SERVICES SPLIT / COLLAGE ── */
    .services-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    /* 2×2 collage */
    .services-collage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      border-radius: 20px;
      overflow: hidden;
      min-height: 460px;
      gap: 3px;
      background: #e8e4f0;
    }

    .collage-img {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      transition: transform 0.5s ease;
    }

    .collage-img:hover {
      transform: scale(1.06);
    }

    /* Panel */
    .services-panel {
      background: #fff;
      border-radius: 20px;
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 20px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(30, 21, 48, 0.07);
    }

    .services-panel>* {
      position: relative;
      z-index: 1;
    }

    .services-panel .section-label {
      color: #c9a96e;
    }

    .services-panel .section-label::before {
      background: #c9a96e;
    }

    .services-panel-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.15;
      margin: 0;
    }

    .services-panel-desc {
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--text-2);
      max-width: 380px;
      margin: 0;
    }

    .services-panel-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c9a96e;
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 169, 110, 0.35);
      padding-bottom: 4px;
      width: fit-content;
      margin-top: 32px;
      transition: gap 0.3s, border-color 0.3s;
    }

    .services-panel-link:hover {
      gap: 16px;
      border-color: #c9a96e;
    }

    .services-panel-link svg {
      transition: transform 0.3s;
    }

    .services-panel-link:hover svg {
      transform: translateX(4px);
    }

    .services-nav {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .service-card {
      background: #fff;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: default;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      box-shadow: 0 2px 16px rgba(30, 21, 48, 0.07);
      flex: 0 0 calc(33.33% - 40px);
      min-width: 0;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(30, 21, 48, 0.13);
    }

    .service-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(160deg, #c4aee8 0%, #9474c8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .service-img span {
      font-size: 3.6rem;
      opacity: 0.6;
      position: relative;
      z-index: 1;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .service-card:hover .service-img span {
      opacity: 0.85;
      transform: scale(1.1);
    }

    .service-body {
      padding: 20px 20px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .service-number {
      display: none;
    }

    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 14px;
      letter-spacing: 0.01em;
      line-height: 1.2;
    }

    .service-duration {
      display: inline-block;
      font-size: 0.75rem;
      color: var(--text-3);
      margin-bottom: 12px;
      font-weight: 400;
      letter-spacing: 0.06em;
      border: none;
      padding: 0;
    }

    .service-desc {
      font-size: 0.82rem;
      line-height: 1.65;
      color: var(--text-3);
      margin-bottom: 14px;
      flex: 1;
    }

    .service-price {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
    }

    .service-price sup {
      font-size: 0.8rem;
      vertical-align: super;
      font-weight: 400;
    }

    .price-from {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--text-3);
      text-decoration: underline;
      margin-right: 2px;
    }

    .price-unit {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--text-3);
      margin-left: 1px;
    }

    /* ── EXPERIENCE ── */
    /* ── GIFT CARDS ── */
    .giftcards {
      background: #fff;
      position: relative;
      overflow: hidden;
    }
    /* Blurry lavender orbs */
    .giftcards::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 65% 70% at 5% 50%, rgba(160,110,220,0.45) 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 95% 10%, rgba(140,95,210,0.38) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(180,140,230,0.32) 0%, transparent 55%),
        radial-gradient(ellipse 40% 45% at 75% 50%, rgba(170,125,215,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 35% 40% at 52% 8%, rgba(190,150,235,0.35) 0%, transparent 55%),
        radial-gradient(ellipse 30% 35% at 88% 75%, rgba(155,105,218,0.3) 0%, transparent 55%),
        radial-gradient(ellipse 28% 32% at 50% 45%, rgba(175,130,225,0.2) 0%, transparent 55%);
      filter: blur(52px);
      pointer-events: none;
      z-index: 0;
    }
    /* Batik pattern overlay */
    .giftcards::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 3 L49 26 L26 49 L3 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.8'/%3E%3Cpath d='M26 12 L40 26 L26 40 L12 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='3.5' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='1.2' fill='%236e4fa3'/%3E%3Cline x1='26' y1='3' x2='26' y2='12' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='49' y1='26' x2='40' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='26' y1='49' x2='26' y2='40' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='3' y1='26' x2='12' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Ccircle cx='26' cy='3' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='49' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='26' cy='49' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='3' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3C/svg%3E");
      background-size: 52px 52px;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    .giftcards-inner {
      position: relative;
      z-index: 1;
    }
    .giftcards-header {
      margin-bottom: 56px;
    }
    .section-label--light {
      color: #c9a96e;
    }
    .section-label--light::before {
      background: #c9a96e;
    }
    .section-title--light {
      color: var(--text);
    }
    .section-title--light em {
      color: #b8892a;
    }
    .giftcards-sub {
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--text-2);
      max-width: 480px;
      margin-top: 16px;
    }

    /* Gift card grid */
    .giftcards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 52px;
    }
    .gc-card {
      background: #fff;
      border: 1px solid rgba(201,169,110,0.18);
      border-radius: 20px;
      padding: 32px 28px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: 0 2px 20px rgba(201,169,110,0.08);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .gc-card::before {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(201,169,110,0.06);
      pointer-events: none;
    }
    .gc-card:hover {
      border-color: rgba(201,169,110,0.4);
      box-shadow: 0 8px 40px rgba(201,169,110,0.15);
      transform: translateY(-4px);
    }
    .gc-card--featured {
      background: linear-gradient(145deg, #fffbf4 0%, #fff 60%);
      border-color: rgba(201,169,110,0.45);
      box-shadow: 0 4px 32px rgba(201,169,110,0.18);
    }
    .gc-card--featured:hover {
      box-shadow: 0 12px 48px rgba(201,169,110,0.28);
      border-color: rgba(201,169,110,0.65);
    }
    .gc-card-top {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .gc-logo {
      color: #c9a96e;
      flex-shrink: 0;
    }
    .gc-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-2);
      letter-spacing: 0.06em;
    }
    .gc-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1;
    }
    .gc-card--featured .gc-amount {
      color: #b8892a;
    }
    .gc-desc {
      font-size: 0.83rem;
      line-height: 1.7;
      color: var(--text-2);
      flex: 1;
    }
    .gc-tag {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-2);
      border: 1px solid rgba(110,79,163,0.18);
      border-radius: 20px;
      padding: 4px 12px;
      width: fit-content;
    }
    .gc-card--featured .gc-tag {
      color: #b8892a;
      border-color: rgba(201,169,110,0.45);
    }

    /* CTA row */
    .giftcards-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .giftcards-note {
      font-size: 0.75rem;
      color: var(--text-2);
      letter-spacing: 0.04em;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--cream-2);
    }

    .testimonials-header {
      margin-bottom: 64px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testi-card {
      background: #fff;
      border: 1px solid rgba(110, 79, 163, 0.08);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 2px 16px rgba(30, 21, 48, 0.06);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .testi-card:hover {
      border-color: rgba(201, 169, 110, 0.3);
      box-shadow: 0 8px 32px rgba(30, 21, 48, 0.1);
    }

    .testi-stars {
      color: #c9a96e;
      font-size: 0.9rem;
      letter-spacing: 3px;
      margin-bottom: 20px;
    }

    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      line-height: 1.75;
      color: var(--text-2);
      margin-bottom: 28px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold-pale);
      border: 1px solid rgba(110, 79, 163, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .testi-name {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text);
    }

    .testi-since {
      font-size: 0.7rem;
      color: var(--text-3);
      margin-top: 2px;
    }

    /* ── BOOKING ── */
    .booking {
      background: #fff;
      position: relative;
      overflow: hidden;
    }
    .booking::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 65% 70% at 5% 50%, rgba(160,110,220,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 95% 10%, rgba(140,95,210,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 50% 55% at 50% 100%, rgba(180,140,230,0.45) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 75% 50%, rgba(170,125,215,0.4) 0%, transparent 55%),
        radial-gradient(ellipse 40% 45% at 52% 8%, rgba(190,150,235,0.48) 0%, transparent 55%),
        radial-gradient(ellipse 35% 40% at 88% 75%, rgba(155,105,218,0.42) 0%, transparent 55%),
        radial-gradient(ellipse 32% 36% at 50% 45%, rgba(175,130,225,0.35) 0%, transparent 55%),
        radial-gradient(ellipse 30% 38% at 20% 85%, rgba(165,115,222,0.4) 0%, transparent 55%),
        radial-gradient(ellipse 28% 34% at 65% 25%, rgba(185,145,228,0.38) 0%, transparent 55%),
        radial-gradient(ellipse 25% 30% at 38% 60%, rgba(170,120,220,0.3) 0%, transparent 55%);
      filter: blur(52px);
      pointer-events: none;
      z-index: 0;
    }
    .booking::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 3 L49 26 L26 49 L3 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.8'/%3E%3Cpath d='M26 12 L40 26 L26 40 L12 26 Z' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='3.5' fill='none' stroke='%236e4fa3' stroke-width='0.6'/%3E%3Ccircle cx='26' cy='26' r='1.2' fill='%236e4fa3'/%3E%3Cline x1='26' y1='3' x2='26' y2='12' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='49' y1='26' x2='40' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='26' y1='49' x2='26' y2='40' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Cline x1='3' y1='26' x2='12' y2='26' stroke='%236e4fa3' stroke-width='0.5'/%3E%3Ccircle cx='26' cy='3' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='49' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='26' cy='49' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3Ccircle cx='3' cy='26' r='1' fill='%236e4fa3' opacity='0.5'/%3E%3C/svg%3E");
      background-size: 52px 52px;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    .booking > * {
      position: relative;
      z-index: 1;
    }

    .booking-body {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--text-2);
      margin-bottom: 40px;
    }

    /* Shared info card styles (used on booking + contact pages) */
    .contact-info-card {
      background: #fff;
      border-radius: 14px;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      box-shadow: 0 2px 10px rgba(30, 21, 48, 0.06);
    }

    .contact-info-card-icon {
      font-size: 1.3rem;
      margin-bottom: 6px;
    }

    .contact-detail-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-2);
    }

    .contact-detail-value {
      font-size: 0.95rem;
      color: var(--text);
    }

    /* Main 2-col grid: left column + map — mirrors contact-grid */
    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 40px;
      align-items: stretch;
      margin-bottom: 40px;
    }

    .booking-left {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Info cards — 3 columns inside the left column */
    .booking-info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    /* Hours card */
    .booking-hours-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px 18px;
      box-shadow: 0 2px 12px rgba(30, 21, 48, 0.07);
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Map card */
    .booking-map-card {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 480px;
      box-shadow: 0 4px 24px rgba(30, 21, 48, 0.08);
    }

    .booking-map-card iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    /* CTA row — centered */
    .booking-cta-row {
      display: flex;
      justify-content: center;
    }

    /* ── OPENING HOURS (productivity style) ── */
    .booking-hours {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(30, 21, 48, 0.07);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hours-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text);
    }

    .hours-grid {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hours-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 1px 4px rgba(30, 21, 48, 0.06);
      transition: background 0.2s;
    }

    .hours-row.is-today {
      background: #fff;
      border: 1px solid rgba(201, 169, 110, 0.4);
      box-shadow: 0 2px 12px rgba(201, 169, 110, 0.12);
    }

    .hours-day-chip {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(110, 79, 163, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }

    .hours-row.is-today .hours-day-chip {
      background: #c9a96e;
      color: #fff;
    }

    .hours-day-name {
      flex: 1;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text);
    }

    .hours-row.is-today .hours-day-name {
      font-weight: 600;
    }

    .hours-time {
      font-size: 0.82rem;
      color: var(--text-2);
      font-variant-numeric: tabular-nums;
    }

    .hours-row.is-today .hours-time {
      color: #c9a96e;
      font-weight: 500;
    }

    .hours-open-badge {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4caf88;
      background: rgba(76, 175, 136, 0.1);
      border-radius: 20px;
      padding: 2px 8px;
    }

    /* Compact hours variant */
    .hours-grid--sm .hours-row {
      padding: 7px 10px;
      gap: 9px;
    }

    .hours-grid--sm .hours-day-chip {
      width: 28px;
      height: 28px;
      font-size: 0.65rem;
      border-radius: 6px;
    }

    .hours-grid--sm .hours-day-name {
      font-size: 0.8rem;
    }

    .hours-grid--sm .hours-time {
      font-size: 0.75rem;
    }

    .hours-grid--sm .hours-open-badge {
      font-size: 0.6rem;
      padding: 2px 6px;
    }

    .hours-book-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: var(--dark);
      color: #fff;
      border-radius: 40px;
      font-size: 0.82rem;
      font-weight: 500;
      text-decoration: none;
      align-self: flex-start;
      transition: background 0.25s;
    }

    .hours-book-cta:hover {
      background: #c9a96e;
    }

    /* contact map card */
    .contact-map-card {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 4px 24px rgba(30, 21, 48, 0.08);
    }

    .contact-map-card iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    .booking-form {
      background: var(--cream-2);
      border: 1px solid rgba(110, 79, 163, 0.14);
      padding: 48px;
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--cream);
      border: 1px solid rgba(110, 79, 163, 0.2);
      color: var(--text);
      padding: 14px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input::placeholder {
      color: var(--text-3);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: rgba(110, 79, 163, 0.5);
      background: #fff;
    }

    .form-textarea {
      resize: none;
      height: 100px;
    }

    .form-select {
      cursor: pointer;
    }

    .form-select option {
      background: var(--cream);
      color: var(--text);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.3s, transform 0.2s;
    }

    .form-submit:hover {
      background: var(--gold-mid);
      transform: translateY(-1px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(110, 79, 163, 0.15);
      padding: 64px 60px 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand .nav-logo {
      display: block;
      font-size: 1.6rem;
      margin-bottom: 16px;
      color: var(--gold-light);
    }

    .footer-tagline {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.959);
      max-width: 260px;
    }

    .footer-socials {
      display: flex;
      gap: 14px;
      margin-top: 28px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(110, 79, 163, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(232, 223, 245, 0.45);
      text-decoration: none;
      font-size: 0.8rem;
      transition: border-color 0.3s, color 0.3s;
    }

    .social-link:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
    }

    .footer-col-title {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.959);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(110, 79, 163, 0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.959);
    }

    .footer-bottom-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-bottom-links a {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.959);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
      color: var(--gold-light);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        transform: scaleY(1);
        opacity: 1;
      }

      50% {
        transform: scaleY(0.6);
        opacity: 0.4;
      }
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {

      nav,
      section,
      footer {
        padding-left: 40px;
        padding-right: 40px;
      }

      nav.scrolled {
        padding-left: 40px;
        padding-right: 40px;
      }

      .about {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .booking-grid {
        grid-template-columns: 1fr;
      }

      .booking-info-cards {
        grid-template-columns: repeat(3, 1fr);
      }

      .about-visual {
        max-width: 400px;
      }

      .services-split {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .services-collage {
        min-height: 320px;
      }

      .services-panel {
        padding: 48px 36px;
      }

      .services-grid {
        gap: 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 20px 24px;
        grid-template-columns: 1fr auto 1fr;
      }

      nav.scrolled {
        padding: 14px 24px;
      }

      .nav-links {
        display: none;
      }

      .hero-bg {
        background-position: center center !important;
        background-size: cover !important;
      }

      section {
        padding: 80px 24px;
      }

      footer {
        padding: 48px 24px 32px;
      }

      .services-collage {
        min-height: 280px;
      }

      .services-panel {
        padding: 48px 24px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .giftcards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }

      .booking-info-cards {
        grid-template-columns: 1fr;
      }

      .booking-grid {
        grid-template-columns: 1fr;
      }

      .booking-form {
        padding: 32px 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }