/* R8ST Massage and Spa — site styles */

  :root {
    --brown: #82694c;
    --brown-dark: #6a543c;
    --brown-light: #a98a6a;
    --brown-50: #f7f2ec;
    --brown-100: #ede4d7;
    --cream: #faf6f0;
    --ink: #2a241d;
    --ink-soft: #5a4f43;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(130, 105, 76, 0.06);
    --shadow-md: 0 10px 40px rgba(130, 105, 76, 0.1);
    --shadow-lg: 0 20px 60px rgba(130, 105, 76, 0.15);
  }

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

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body { overflow-x: hidden; }

  /* ---------- HERO OPEN BADGE ---------- */
  .open-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--brown-50);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid rgba(130, 105, 76, 0.18);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .open-badge .open-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brown-light);
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  /* Open — filled brown dot with gentle pulse */
  .open-badge.is-open {
    color: var(--brown);
    background: var(--cream);
    border-color: rgba(130, 105, 76, 0.35);
  }
  .open-badge.is-open .open-dot {
    background: var(--brown);
    animation: pulse-brown 2.4s ease-out infinite;
  }
  @keyframes pulse-brown {
    0%, 100% { box-shadow: 0 0 0 0 rgba(130, 105, 76, 0.45); }
    50%      { box-shadow: 0 0 0 6px rgba(130, 105, 76, 0); }
  }
  /* Closed — hollow muted dot, subdued tone */
  .open-badge.is-closed {
    color: var(--ink-soft);
    background: var(--brown-50);
    border-color: rgba(130, 105, 76, 0.15);
    opacity: 0.85;
  }
  .open-badge.is-closed .open-dot {
    background: transparent;
    border: 1.5px solid var(--brown-light);
    opacity: 0.7;
  }

  /* ---------- BACK TO TOP ---------- */
  .back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: var(--brown);
    border: 1px solid rgba(130, 105, 76, 0.2);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 88;
  }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: var(--brown);
    color: var(--white);
  }

  /* ---------- LIGHTBOX ---------- */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.25s ease;
  }
  .lightbox[hidden] { display: none; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    text-align: center;
  }
  .lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
  }
  .lightbox-close,
  .lightbox-nav {
    position: absolute;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }
  .lightbox-close:hover,
  .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
  .lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
  .lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .gallery-item { cursor: zoom-in; }

  /* Floating mobile CTA — Call + LINE, fixed bottom-right */
  .mobile-fab {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-fab a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s ease;
  }
  .mobile-fab a:active { transform: scale(0.94); }
  .mobile-fab .fab-call { background: var(--brown); }
  .mobile-fab .fab-line { background: #06C755; }
  .mobile-fab .fab-fb   { background: #1877F2; }
  .mobile-fab .fab-ig   { background: linear-gradient(135deg, #833AB4 0%, #C13584 35%, #FD1D1D 65%, #FCAF45 100%); }
  .mobile-fab a svg { display: block; }
  /* Smaller FAB since we have 4 now */
  @media (max-width: 640px) {
    .mobile-fab { gap: 10px; right: 14px; bottom: 14px; }
    .mobile-fab a { width: 48px; height: 48px; }
    .mobile-fab a svg { width: 22px; height: 22px; }
  }

  /* Skip-to-content link — visible only on keyboard focus */
  .skip-to-content {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 200;
    background: var(--brown);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: top 0.2s ease;
  }
  .skip-to-content:focus {
    top: 16px;
    outline: 2px solid var(--cream);
    outline-offset: 2px;
  }

  body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brown);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .eyebrow {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
  }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--brown);
    margin: 0 auto 28px;
    opacity: 0.5;
  }

  /* ---------- NAV ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(130, 105, 76, 0.08);
    transition: padding 0.3s ease;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
  }
  .logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 180px;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    position: relative;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 6px 0;
    transition: color 0.2s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links a:hover { color: var(--brown); }
  .nav-links a:hover::after { width: 18px; }
  .nav-links a.active {
    color: var(--brown);
    font-weight: 600;
  }
  .nav-links a.active::after { width: 22px; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--brown);
    color: var(--white) !important;
    border-radius: 999px;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .nav-cta:hover { background: var(--brown-dark); transform: translateY(-1px); }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--brown);
    margin: 5px 0;
    transition: all 0.3s;
  }

  /* ---------- HERO (Cinematic full-bleed) ---------- */
  .hero {
    min-height: 92vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--ink);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-scrim {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(20, 16, 12, 0.35) 0%,
        rgba(20, 16, 12, 0.55) 55%,
        rgba(20, 16, 12, 0.75) 100%),
      radial-gradient(ellipse 70% 60% at 50% 55%, rgba(20, 16, 12, 0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
  }
  .hero .container {
    position: relative;
    z-index: 2;
  }
  .hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-content .eyebrow {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
  }
  .hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    line-height: 1.05;
    white-space: nowrap;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
  }
  .hero-tagline .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
    vertical-align: middle;
    margin: 0 12px 4px;
    opacity: 0.6;
  }
  /* Open Now badge on cinematic bg — frosted glass, standalone at top */
  .hero .open-badge {
    display: inline-flex;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-content > .eyebrow {
    display: block;
  }
  .hero .open-badge.is-open {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .hero .open-badge.is-open .open-dot {
    background: #86EFAC;
    animation: pulse-green-cinematic 2.4s ease-out infinite;
  }
  .hero .open-badge.is-closed .open-dot { border-color: rgba(255, 255, 255, 0.6); }
  @keyframes pulse-green-cinematic {
    0%, 100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.5); }
    50%      { box-shadow: 0 0 0 6px rgba(134, 239, 172, 0); }
  }
  /* Secondary CTA on cinematic bg */
  .hero .btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border-color: var(--white);
  }
  .hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--brown);
    color: var(--white);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(130, 105, 76, 0.25);
  }
  .btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(130, 105, 76, 0.35);
  }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    color: var(--brown);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .btn-ghost:hover { background: var(--brown-50); }

  /* ---------- SECTIONS ---------- */
  section {
    padding: 120px 0;
    position: relative;
  }
  /* Reusable SVG wave transition at bottom of any section */
  .section-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    z-index: 3;
    pointer-events: none;
    display: block;
  }
  .section-wave--flip { transform: scaleX(-1); }
  .section-head {
    text-align: center;
    margin-bottom: 72px;
  }
  .section-head h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    margin-bottom: 20px;
  }
  .section-head p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 18px;
  }

  /* ---------- ABOUT ---------- */
  .about {
    background: var(--cream);
    position: relative;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-visual {
    aspect-ratio: 1 / 1.15;
    background: var(--brown-50);
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }
  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-visual::after {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--brown);
    opacity: 0.3;
    border-radius: 8px;
    z-index: -1;
  }
  .about-content h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    margin-bottom: 32px;
  }
  .about-content h2 em {
    font-style: italic;
    color: var(--brown-light);
  }
  .about-content p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-wrap: pretty;
  }
  .about-signature {
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .about-signature::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--brown);
    opacity: 0.5;
  }

  /* About Stats — 3 metrics with dividers */
  .about-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.28);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }
  .about-stat {
    flex: 1;
    text-align: center;
  }
  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 500;
    color: var(--brown);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .about-stat-num span {
    font-size: 28px;
    color: var(--brown-light);
    margin-left: 1px;
  }
  .about-stat-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 10px;
  }
  .about-stat-divider {
    width: 1px;
    height: 46px;
    background: rgba(130, 105, 76, 0.35);
    flex-shrink: 0;
  }

  /* ---------- PRICING ---------- */
  .pricing { background: var(--white); position: relative; }
  .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: var(--brown-50);
    padding: 6px;
    border-radius: 999px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-tab {
    flex: 1 1 auto;
    padding: 11px 20px;
    background: transparent;
    border: none;
    border-radius: 999px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
  }
  .pricing-tab:hover { color: var(--brown); }
  .pricing-tab.active {
    background: var(--brown);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(130, 105, 76, 0.25);
  }
  .pricing-tab .tab-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--brown);
    color: var(--white);
    font-size: 10px;
    border-radius: 999px;
    letter-spacing: 0.1em;
    vertical-align: middle;
  }
  .pricing-tab.active .tab-badge {
    background: var(--white);
    color: var(--brown);
  }

  .pricing-panel {
    display: none;
    animation: fadeIn 0.4s ease;
  }
  .pricing-panel.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .pricing-panel-header {
    text-align: center;
    margin-bottom: 28px;
  }
  .pricing-panel-header h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .pricing-panel-header h3 em {
    font-style: italic;
    color: var(--brown-light);
  }
  .pricing-panel-header p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 16px;
  }

  .price-table-wrap {
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-table {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
  }
  .price-table thead {
    background: var(--brown);
    color: var(--white);
  }
  .price-table th {
    padding: 14px 18px;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .price-table th.num { text-align: right; }
  .price-table tbody tr {
    border-bottom: 1px solid rgba(130, 105, 76, 0.1);
    transition: background 0.2s ease;
  }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table tbody tr:hover { background: var(--brown-50); }
  .price-table td {
    padding: 16px 18px;
    font-size: 15px;
    color: var(--ink);
  }
  .price-table td.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.005em;
  }
  .price-table td.num {
    text-align: right;
    font-weight: 600;
    color: var(--ink);
  }
  .price-table td.num.dash {
    color: var(--brown-light);
    opacity: 0.55;
    font-weight: 400;
  }
  .price-table td .thb {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-left: 2px;
    letter-spacing: 0.04em;
  }

  .package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card {
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.15);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--brown);
  }
  .package-card:hover {
    transform: translateY(-4px);
    border-color: var(--brown);
    box-shadow: var(--shadow-lg);
  }
  .package-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  .package-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 600;
  }
  .package-duration::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brown);
  }
  .package-price-badge {
    background: var(--brown);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(130, 105, 76, 0.3);
    white-space: nowrap;
  }
  .package-price-badge small {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-left: 4px;
    opacity: 0.85;
  }
  .package-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    text-wrap: pretty;
  }
  .package-combo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(130, 105, 76, 0.12);
  }
  .combo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-soft);
    font-size: 15px;
  }
  .combo-item-bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brown-50);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .combo-item strong {
    color: var(--ink);
    font-weight: 600;
  }
  .combo-item-duration {
    margin-left: auto;
    color: var(--brown);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .package-plus {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--brown);
    text-align: center;
    line-height: 1;
    font-style: italic;
    opacity: 0.6;
  }

  /* ---------- SERVICES ---------- */
  .services { background: var(--white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.12);
    border-radius: 16px;
    padding: 22px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brown), var(--brown-light));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(130, 105, 76, 0.25);
  }
  .service-card:hover::before { width: 100%; }

  .service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 300;
    color: var(--brown);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .service-card:hover .service-number { opacity: 0.18; }

  .service-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start;
  }
  .service-badge--signature { background: rgba(130, 105, 76, 0.12); color: var(--brown); }
  .service-badge--popular   { background: rgba(22, 163, 74, 0.12); color: #16a34a; }
  .service-badge--premium   { background: rgba(168, 85, 247, 0.1); color: #7e22ce; }
  .service-badge--traditional { background: rgba(202, 138, 4, 0.12); color: #a16207; }

  .service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--brown);
    background: var(--brown-50);
    transition: background 0.3s ease, transform 0.4s ease;
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card:hover .service-icon {
    background: var(--brown);
    color: var(--white);
    transform: rotate(-4deg) scale(1.05);
  }
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 500;
  }
  .service-card .service-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--brown-light);
    font-size: 14px;
    margin-bottom: 10px;
  }
  .service-card p {
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 13.5px;
  }

  .service-durations {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .duration-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    background: var(--cream);
    border: 1px solid rgba(130, 105, 76, 0.15);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brown);
    transition: all 0.2s ease;
  }
  .service-card:hover .duration-chip {
    background: var(--white);
    border-color: var(--brown-light);
  }

  .service-benefits {
    margin-bottom: 14px;
  }
  .benefits-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 7px;
  }
  .benefits-tags {
    display: flex;
    gap: 4px 10px;
    flex-wrap: wrap;
  }
  .benefits-tags span {
    position: relative;
    padding-left: 14px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
  }
  .benefits-tags span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: 1.5px solid var(--brown);
    border-bottom: 1.5px solid var(--brown);
    transform: rotate(-45deg);
  }

  .service-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 14px;
    border-top: 1px solid rgba(130, 105, 76, 0.12);
    margin-top: auto;
  }
  .service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--brown);
    font-weight: 500;
    line-height: 1;
  }
  .service-price small {
    font-size: 10px;
    color: var(--ink-soft);
    font-weight: 600;
    display: block;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Nunito Sans', sans-serif;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brown);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 0;
    transition: gap 0.3s ease;
  }
  .service-link:hover { gap: 10px; }
  .service-link svg { transition: transform 0.3s ease; }

  .services-note {
    text-align: center;
    padding: 22px 28px;
    background: var(--brown-50);
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--brown);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .services-note strong {
    font-weight: 600;
    font-style: normal;
  }

  /* ---------- GALLERY ---------- */
  .gallery { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  /* 10th card: center it in the last row on desktop (3-col) */
  .gallery-grid .gallery-item:nth-child(10) {
    grid-column: 2 / 3;
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 36, 29, 0.55) 0%, rgba(42, 36, 29, 0) 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 24px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.01em;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .gallery-caption::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--white);
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 4px;
    opacity: 0.7;
  }
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- HAPPY GUESTS (3x3 MOOD BOARD GRID) ---------- */
  .guests {
    background: #FAF7F2;
    padding: 140px 0;
  }
  .guests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto;
  }
  .guests-cell {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--brown-50);
    border-radius: 2px;
  }
  .guests-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .guests-cell:hover img { transform: scale(1.05); }
  .guests-cell-text {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  .guests-cell-text .script-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--brown);
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .guests-cell-text .script-title em {
    font-style: italic;
    color: var(--brown-light);
    display: block;
    margin-top: 4px;
  }
  .guests-cell-text .divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 12px;
  }
  .guests-cell-text .divider-ornament .line {
    width: 36px;
    height: 1px;
    background: var(--brown);
    opacity: 0.6;
  }
  .guests-cell-text .divider-ornament .diamond {
    width: 5px;
    height: 5px;
    background: var(--brown);
    transform: rotate(45deg);
    opacity: 0.7;
  }
  .guests-cell-text .subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

    /* ---------- WHY CHOOSE US ---------- */
  .why {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .why::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130, 105, 76, 0.06), transparent 70%);
    pointer-events: none;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    position: relative;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-item {
    text-align: center;
    padding: 0 12px;
  }
  .why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    box-shadow: var(--shadow-sm);
    position: relative;
  }
  .why-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--brown);
    border-radius: 50%;
    opacity: 0.2;
  }
  .why-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .why-item p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    text-wrap: pretty;
  }

  /* ---------- REVIEWS ---------- */
  .reviews { background: var(--white); position: relative; }
  .reviews-head-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--brown-50);
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
  .rating-badge-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--brown);
  }
  .rating-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--brown);
    line-height: 1;
  }
  .rating-badge-text small {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 6px;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
  .review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 3px solid var(--brown);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  }
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .review-quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--brown);
    opacity: 0.12;
    font-style: italic;
  }
  .review-stars {
    display: inline-flex;
    gap: 4px;
    color: var(--brown);
    margin-bottom: 20px;
  }
  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 28px;
    flex-grow: 1;
    text-wrap: pretty;
  }
  .review-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(130, 105, 76, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brown-50);
    border: 1px solid var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--brown);
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .review-author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.2;
  }
  .review-author-meta {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .review-date {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--brown);
  }
  .reviews-cta-wrap {
    text-align: center;
  }
  .btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--brown);
    border: 1px solid var(--brown);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-google:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(130, 105, 76, 0.25);
  }

  /* ---------- VISIT ---------- */
  .visit { background: var(--white); }
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
  .visit-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .info-card {
    padding: 32px;
    border: 1px solid rgba(130, 105, 76, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .info-card:hover {
    border-color: var(--brown);
    box-shadow: var(--shadow-sm);
  }
  .info-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  .info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--brown-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    flex-shrink: 0;
  }
  .info-card h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .info-card p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-left: 60px;
  }
  .info-card p strong {
    color: var(--ink);
    font-weight: 600;
  }
  .info-card .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 15px;
  }
  .info-card .hours-row span:last-child {
    color: var(--brown);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  .visit-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 460px;
    background: var(--brown-50);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(130, 105, 76, 0.18);
  }
  .map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .map-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(130, 105, 76, 0.12);
    z-index: 2;
    max-width: calc(100% - 40px);
  }
  .map-badge-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--brown);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .map-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .map-badge-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.1;
  }
  .map-badge-text span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .map-link {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    z-index: 2;
    border: 1px solid rgba(130, 105, 76, 0.12);
  }
  .map-link:hover {
    background: var(--brown);
    color: var(--white);
  }

  /* ---------- FAQ (Accordion) ---------- */
  .faq {
    background: var(--white);
  }
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    border: 1px solid rgba(130, 105, 76, 0.15);
    border-radius: 16px;
    background: var(--cream);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .faq-item[open] {
    border-color: var(--brown-light);
    box-shadow: var(--shadow-sm);
  }
  .faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--brown);
    transition: color 0.2s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--brown-dark); }
  .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .faq-item[open] .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 26px 22px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
  }

  /* ---------- CONTACT / CHAT WITH US ---------- */
  .contact {
    background: var(--cream);
  }
  .contact-scroller {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 20px;
    padding: 12px 20px 24px;
    /* Thin brand-colored scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--brown-light) transparent;
  }
  .contact-grid::-webkit-scrollbar { height: 6px; }
  .contact-grid::-webkit-scrollbar-track { background: transparent; }
  .contact-grid::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 3px;
    opacity: 0.5;
  }
  .contact-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(130, 105, 76, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  }
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  /* Scroller arrow buttons — desktop only */
  .scroller-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.2);
    color: var(--brown);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }
  .scroller-btn:hover {
    background: var(--brown);
    color: var(--white);
  }
  .scroller-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }
  .scroller-btn--left  { left: -16px; }
  .scroller-btn--right { right: -16px; }

  /* Direct-link card visual (replaces QR) */
  .contact-icon-wrap {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
  }
  .contact-card:hover .contact-icon-wrap {
    transform: scale(1.03);
  }
  .contact-icon-wrap svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
  }
  .contact-card-header {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .contact-card-logo {
    flex-shrink: 0;
  }
  .contact-card-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #3C1E1E;
    letter-spacing: 0.005em;
  }
  .contact-card-body {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
  }
  .contact-qr-wrap {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border: 1px solid rgba(130, 105, 76, 0.15);
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
  }
  .contact-card:hover .contact-qr-wrap {
    transform: scale(1.02);
  }
  .contact-qr-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .contact-card-id {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .contact-card-note {
    font-size: 13px;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.4;
  }
  .contact-card-cta {
    margin-top: auto;
    padding-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    transition: gap 0.2s ease;
  }
  .contact-card:hover .contact-card-cta {
    gap: 14px;
  }

  /* ---------- BOOKING CTA BAND ---------- */
  .cta-band {
    background: var(--brown);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  .cta-band h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
  }
  .cta-band h2 em { font-style: italic; opacity: 0.8; }
  .cta-band p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band .btn-primary {
    background: var(--white);
    color: var(--brown);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .cta-band .btn-primary:hover {
    background: var(--cream);
    color: var(--brown-dark);
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 28px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .logo img {
    height: 56px;
    max-width: 220px;
  }
  .footer-brand p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.6);
  }
  .footer-col h4 {
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
  }
  .footer-socials a:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-visual { aspect-ratio: 16 / 9; max-width: 100%; }
    .about-visual::after { display: none; }
    .about-content h2 { margin-bottom: 20px; }
    .about-content p { font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
    .about-signature { margin-top: 24px; font-size: 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 24px; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gallery-grid .gallery-item:nth-child(10) { grid-column: auto; }
    .guests { padding: 100px 0; }
    .guests-grid { gap: 8px; max-width: 720px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-card { flex: 0 0 300px; }
    .scroller-btn { display: none; }
    section { padding: 80px 0 130px; }
    .section-head { margin-bottom: 56px; }
    .hero { padding: 120px 0 60px; min-height: 85vh; }
    .cta-band { padding-bottom: 80px; }
    footer { padding-top: 64px; }
    .hero-scrim {
      background:
        linear-gradient(180deg, rgba(20, 16, 12, 0.3) 0%, rgba(20, 16, 12, 0.55) 60%, rgba(20, 16, 12, 0.85) 100%);
    }
  }
  @media (max-width: 640px) {
    .container { padding: 0 22px; }
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .mobile-fab { display: flex; }
    .back-to-top { right: auto; left: 20px; width: 42px; height: 42px; }
    .contact-card { flex: 0 0 270px; }
    .contact-grid { gap: 16px; padding: 12px 16px 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .review-card { padding: 26px 22px 22px; }
    .review-text { font-size: 17px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-caption { font-size: 15px; padding: 12px 14px; opacity: 1; transform: none; }
    .guests { padding: 60px 0; }
    /* Mobile Happy Guests: 2-col grid with text cell spanning full width */
    .guests-grid {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      max-width: 100%;
    }
    .guests-cell-text {
      grid-column: 1 / -1;
      aspect-ratio: 2.4 / 1;
      padding: 16px;
    }
    .guests-cell-text .script-title { font-size: 28px; line-height: 1.1; }
    .guests-cell-text .divider-ornament { margin-top: 10px; margin-bottom: 8px; }
    .guests-cell-text .subtitle { font-size: 10px; letter-spacing: 0.22em; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-brand .logo { justify-content: center; }
    .footer-col h4 { text-align: center; }
    .footer-col ul { padding: 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    /* Mobile width squeeze — consistent across sections */
    .services-grid   { max-width: 340px; margin-left: auto; margin-right: auto; }
    .services-note   { max-width: 340px; margin-left: auto; margin-right: auto; }
    .package-grid    { max-width: 340px; margin-left: auto; margin-right: auto; }
    .why-grid        { max-width: 340px; margin-left: auto; margin-right: auto; }
    .reviews-grid    { max-width: 360px; margin-left: auto; margin-right: auto; }
    .faq-list        { max-width: 360px; margin-left: auto; margin-right: auto; }
    .about-grid      { max-width: 400px; margin-left: auto; margin-right: auto; }
    .visit-grid      { max-width: 400px; margin-left: auto; margin-right: auto; }
    .section-head    { max-width: 420px; margin-left: auto; margin-right: auto; }
    section { padding: 60px 0 120px; }
    .section-head { margin-bottom: 44px; }
    .section-head h2 { font-size: 32px; margin-bottom: 14px; }
    .section-head p { font-size: 16px; }
    .about-visual { aspect-ratio: 16 / 9; max-height: 200px; }
    .about-grid { gap: 24px; }
    .about-content h2 { font-size: 28px; margin-bottom: 16px; }
    .about-content p { font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
    .about-signature { margin-top: 20px; font-size: 16px; gap: 12px; }
    .about-signature::before { width: 28px; }
    .about-stats { margin-top: 28px; padding: 18px 14px; gap: 8px; }
    .about-stat-num { font-size: 30px; }
    .about-stat-num span { font-size: 20px; }
    .about-stat-label { font-size: 9px; letter-spacing: 0.14em; margin-top: 6px; }
    .about-stat-divider { height: 36px; }
    .pricing-panel-header h3 { font-size: 32px; }
    .pricing-panel-header p { font-size: 15px; }
    .faq-item summary { padding: 18px 20px; font-size: 19px; gap: 14px; }
    .faq-answer { padding: 0 20px 18px; font-size: 15px; }

    /* Hero mobile polish */
    .hero { padding: 100px 0 50px; min-height: 80vh; }
    .hero .open-badge { margin-bottom: 16px; }
    .hero-content .eyebrow { margin-bottom: 14px; }
    .hero h1 {
      font-size: 40px;
      line-height: 1.05;
      margin-bottom: 18px;
      white-space: normal;
    }
    .hero-tagline {
      font-size: 17px;
      line-height: 1.5;
      margin-bottom: 28px;
      max-width: 100%;
    }
    .hero-tagline .dot { margin: 0 6px 3px; }
    .hero-ctas { gap: 14px; }
    .hero-ctas .btn-primary { padding: 14px 26px; font-size: 14px; }
    .hero-ctas .btn-ghost { padding: 12px 16px; font-size: 13px; }
  }

  /* Mobile menu */
  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    padding: 80px 32px 40px;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-menu a.active {
    color: var(--brown);
    font-style: italic;
    padding-left: 14px;
    border-left: 2px solid var(--brown);
  }
  .mobile-menu .nav-cta {
    display: inline-flex;
    color: var(--white) !important;
    margin-top: 16px;
  }
  .mobile-menu .nav-cta.active {
    padding-left: 22px;
    color: var(--white) !important;
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Pricing responsive */
  @media (max-width: 820px) {
    .package-grid { grid-template-columns: 1fr; }
    .pricing-tabs {
      flex-direction: row;
      flex-wrap: nowrap;
      padding: 5px;
      gap: 4px;
    }
    .pricing-tab {
      flex: 1 1 0;
      min-width: 0;
      padding: 9px 4px;
      font-size: 10px;
      letter-spacing: 0.04em;
      overflow: hidden;
      text-overflow: ellipsis;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .pricing-tab .tab-badge {
      margin-left: 0;
      padding: 2px 5px;
      font-size: 8px;
      flex-shrink: 0;
    }
    .package-card { padding: 26px 22px; }
    .package-head { flex-direction: column; gap: 14px; align-items: flex-start; }
  }

  /* Pricing: stacked card layout on mobile (<= 640px) */
  @media (max-width: 640px) {
    .price-table-wrap {
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
      max-width: 360px;
    }
    .price-table { display: block; }
    .price-table thead { display: none; }
    .price-table tbody { display: block; }
    .price-table tbody tr {
      display: block;
      background: var(--white);
      border: 1px solid rgba(130, 105, 76, 0.15);
      border-radius: 14px;
      margin-bottom: 12px;
      padding: 16px 18px;
      box-shadow: var(--shadow-sm);
    }
    .price-table tbody tr:last-child { margin-bottom: 0; }
    .price-table tbody tr:hover { background: var(--white); }
    .price-table td {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px dashed rgba(130, 105, 76, 0.12);
    }
    .price-table td:last-child { border-bottom: none; padding-bottom: 2px; }
    .price-table td.service-name {
      display: block;
      padding: 0 0 10px 0;
      font-size: 20px;
      border-bottom: 1px solid rgba(130, 105, 76, 0.18);
      margin-bottom: 6px;
    }
    .price-table td.num {
      text-align: right;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--brown);
    }
    .price-table td.num::before {
      content: attr(data-label);
      font-family: 'Nunito Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-soft);
      opacity: 1;
    }
    .price-table td.num .thb {
      font-size: 10px;
      font-weight: 600;
      color: var(--ink-soft);
      letter-spacing: 0.1em;
      margin-left: 3px;
    }
    .price-table td.num.dash { color: var(--brown-light); opacity: 0.5; font-size: 16px; }
    .price-table td.num.dash::before { opacity: 0.55; }
  }
