/* ================================================
   Indo Irish Photography — Enhancements
   Phase 4 (Animations) · Phase 5 (Cursor)
   Phase 6 (UI Components)
   ================================================ */

/* ─── BACK TO TOP ─────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.88);
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.4s ease,
              background 0.2s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
#back-to-top:hover {
  background: #c9a96e;
  transform: translateY(-3px) scale(1.08);
}
body.has-sticky-cta #back-to-top {
  bottom: calc(2rem + 56px);
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.4s ease,
              background 0.2s ease;
}

/* ─── PAGE TRANSITION ─────────────────────────── */
#page-transition {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 99999;
  pointer-events: none;
  transform-origin: top;
}
#page-transition.pt-leaving {
  animation: ptLeave 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
#page-transition.pt-entering {
  animation: ptEnter 0.48s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes ptLeave {
  from { transform: scaleY(1); transform-origin: top; }
  to   { transform: scaleY(0); transform-origin: top; }
}
@keyframes ptEnter {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

/* ─── GLASSMORPHISM NAV ───────────────────────── */
.site-navbar {
  transition: background 0.38s ease,
              backdrop-filter 0.38s ease,
              box-shadow 0.38s ease;
}
.site-navbar.glass {
  background: rgba(24, 24, 26, 0.97) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 6px 24px rgba(0,0,0,0.22);
}

/* Respect reduced-motion: neutralise transitions/animations and reveal content */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-support-reveal { opacity: 1 !important; transform: none !important; }
}

/* ─── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease, bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: waPulse 3.5s ease-in-out 4s infinite;
}
.whatsapp-float:hover {
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.38); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.38), 0 0 0 10px rgba(37,211,102,0.10); }
}
body.has-sticky-cta .whatsapp-float {
  bottom: calc(5.5rem + 56px);
}

/* ─── HERO FULLSCREEN ─────────────────────────── */
.hero-fullscreen {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.22) 100%
  );
}
.hero-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
/* Line-by-line reveal */
.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.12;
}
.hero-line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}
.hero-line-inner.revealed {
  transform: translateY(0);
  opacity: 1;
}
/* Hero CTA buttons */
.btn-hero-primary,
.btn-hero-secondary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.88rem 2.2rem;
  border: 2px solid;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease,
              transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease;
  position: relative;
}
.btn-hero-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
.btn-hero-primary:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
/* Trust bar */
.trust-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  display: block;
}
.trust-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: scrollBob 2.2s ease-in-out 2s infinite;
}
.scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 576px) {
  .trust-divider { display: none; }
  .hero-scroll-indicator { display: none; }
}

/* ─── REVEAL ANIMATIONS (IntersectionObserver) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="100"] { transition-delay: 0.10s; }
[data-reveal][data-delay="200"] { transition-delay: 0.20s; }
[data-reveal][data-delay="300"] { transition-delay: 0.30s; }
[data-reveal][data-delay="400"] { transition-delay: 0.40s; }
[data-reveal][data-delay="500"] { transition-delay: 0.50s; }
[data-reveal][data-delay="600"] { transition-delay: 0.60s; }

/* ─── GALLERY HOVER ZOOM ──────────────────────── */
.item a,
.image-gradient figure {
  display: block;
  overflow: hidden;
  position: relative;
}
.item a img,
.image-gradient figure img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: block;
  width: 100%;
}
.item a:hover img,
.image-gradient:hover figure img {
  transform: scale(1.07);
}
.item a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  pointer-events: none;
}
.item a:hover::after {
  background: rgba(0,0,0,0.12);
}

/* ─── GALLERY MASONRY ─────────────────────────── */
.masonry-gallery {
  columns: 4 200px;
  column-gap: 5px;
}
.masonry-gallery .item {
  break-inside: avoid;
  margin-bottom: 5px;
  display: block;
}
.masonry-gallery .item a {
  display: block;
}
@media (max-width: 991px) { .masonry-gallery { columns: 3 160px; } }
@media (max-width: 575px) { .masonry-gallery { columns: 2 130px; } }

/* ─── PRICING CARDS ───────────────────────────── */
/* Label (used in prices.html Phase 2 rewrite) */
.pricing-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
}
/* Legacy: pricing-card-title also supported */
.pricing-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
}
.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-card-title {
  color: rgba(255,255,255,0.5);
}
.pricing-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.09);
  border-color: #d4c5a9;
}
.pricing-card.featured {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.pricing-card.featured:hover {
  border-color: #1a1a1a;
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
/* Stagger-in starting state (set by JS) */
.pricing-card.card-hidden {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}
/* Badge */
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: #c9a96e;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 0 0 3px 3px;
}
/* Icon wrap (legacy icon approach) */
.pricing-icon-wrap {
  width: 58px;
  height: 58px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-icon-wrap {
  border-color: rgba(255,255,255,0.12);
}
/* Price */
.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card.featured .pricing-price { color: #c9a96e; }
/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.85rem;
  color: #555;
  padding: 0.38rem 0 0.38rem 1.4rem;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  line-height: 1.55;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-weight: 700;
  font-size: 0.78rem;
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.06);
}
.pricing-card.featured .pricing-features li::before { color: #c9a96e; }
/* Book button */
.btn-book-package {
  display: block;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.88rem 1rem;
  border: 2px solid #1a1a1a;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.btn-book-package:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.28);
}
.pricing-card.featured .btn-book-package {
  background: #c9a96e;
  border-color: #c9a96e;
}
.pricing-card.featured .btn-book-package:hover {
  background: #b8933e;
  border-color: #b8933e;
  color: #fff;
}

/* ─── THANK YOU PAGE ──────────────────────────── */
.thank-you-section {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
}

/* ─── STATS SECTION ───────────────────────────── */
.stats-section {
  background: #faf8f5;
  border-top: 1px solid #ece8e0;
  border-bottom: 1px solid #ece8e0;
}
.stat-block {
  padding: 0.5rem 0;
}
.stat-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.45rem;
  display: block;
}
.stat-accent { color: #c9a96e; }
.stat-divider-v {
  width: 1px;
  background: #e4ddd3;
  align-self: stretch;
  margin: 0.5rem 0;
}
@media (max-width: 767px) {
  .stat-divider-v { display: none; }
  .stats-section .col-6 { border-bottom: 1px solid #ece8e0; }
  .stats-section .col-6:nth-child(3),
  .stats-section .col-6:nth-child(4) { border-bottom: none; }
}

/* ─── TESTIMONIAL CARDS ───────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid #ede9e4;
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.6rem;
  left: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  color: #c9a96e;
  opacity: 0.18;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
}
.testimonial-stars {
  color: #c9a96e;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 700;
  font-size: 0.84rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
.testimonial-author-role {
  font-size: 0.68rem;
  color: #999;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ─── STICKY BOOKING CTA ──────────────────────── */
.sticky-booking-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  z-index: 9989;
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sticky-booking-cta.visible {
  transform: translateY(0);
}
.sticky-cta-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin: 0;
  white-space: nowrap;
}
.btn-sticky-book {
  background: #c9a96e;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.62rem 1.6rem;
  border: none;
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.22s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-sticky-book:hover {
  background: #b8933e;
  color: #fff;
  text-decoration: none;
  transform: scale(1.04);
}
.btn-sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.btn-sticky-close:hover { color: rgba(255,255,255,0.85); }

/* ─── MODERN FAQ ──────────────────────────────── */
.faq-list { border-top: 1px solid #e8e8e8; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.faq-toggle:hover { color: #c9a96e; }
.faq-toggle:focus { outline: 2px solid #c9a96e; outline-offset: 2px; }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.35s ease;
  font-size: 1.15rem;
  line-height: 1;
  color: #888;
  position: relative;
}
.faq-icon::before { content: '+'; position: absolute; }
.faq-toggle.open .faq-icon {
  background: #c9a96e;
  border-color: #c9a96e;
  transform: rotate(45deg);
  color: #fff;
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              padding-bottom 0.3s ease;
}
.faq-body.open {
  max-height: 500px;
  padding-bottom: 1.2rem;
}
.faq-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.78;
  margin: 0;
}

/* ─── CURSOR (Phase 5, desktop only) ─────────── */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor [data-magnetic],
  body.has-cursor input,
  body.has-cursor textarea,
  body.has-cursor select,
  body.has-cursor label {
    cursor: none !important;
  }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              background 0.3s ease, border-radius 0.3s ease,
              opacity 0.25s ease;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201, 169, 110, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease,
              border-color 0.3s ease, opacity 0.25s ease;
  will-change: left, top;
}
/* CTA hover: dot enlarges, ring expands */
.cursor-dot.is-cta {
  width: 14px; height: 14px;
  background: #1a1a1a;
}
.cursor-ring.is-cta {
  width: 54px; height: 54px;
  border-color: rgba(26,26,26,0.25);
}
/* Gallery hover: dot becomes "VIEW" circle */
.cursor-dot.is-gallery {
  width: 66px; height: 66px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-ring.is-gallery {
  opacity: 0;
}
/* Link hover: subtle dot growth */
.cursor-dot.is-link {
  width: 12px; height: 12px;
}
.cursor-ring.is-link {
  width: 46px; height: 46px;
}

/* ─── MAGNETIC BUTTONS ────────────────────────── */
[data-magnetic] {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════════════════════
   PHASE 5 — MOBILE FIXES
   ══════════════════════════════════════════════ */

/* 1. Global horizontal overflow guard */
html,
.site-wrap {
  overflow-x: hidden;
}

/* 2. MOBILE OFFCANVAS NAV MENU
   main.js toggles .offcanvas-menu on <body> and
   clones .js-clone-nav into .site-mobile-menu-body.
   style.css was removed; these rules replace it.
   ─────────────────────────────────────────────── */

/* Lock page scroll while menu is open */
body.offcanvas-menu {
  overflow: hidden;
}

/* Semi-transparent backdrop (pseudo-element, not a DOM node,
   so main.js mouseup handler still closes menu on outside click) */
body.offcanvas-menu::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 99985;
  animation: mobileBackdropIn 0.32s ease forwards;
  pointer-events: none;
}
@keyframes mobileBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Slide-in panel */
.site-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: #FAF7F2;
  z-index: 99990;
  transform: translateX(110%);
  transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  will-change: transform;
}
body.offcanvas-menu .site-mobile-menu {
  transform: translateX(0);
}

/* Close button row */
.site-mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}
.site-mobile-menu-close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 !important;
  border-radius: 50%;
  cursor: pointer;
  color: #1C1C1E;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s ease;
}
.site-mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.06);
}
/* Ensure the icon span fills the full touch target */
.site-mobile-menu-close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Nav body */
.site-mobile-menu-body {
  flex: 1;
  padding-bottom: 2rem;
  overflow-y: auto;
}

/* Cloned nav list (.js-clone-nav becomes .site-nav-wrap) */
.site-nav-wrap {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
}
.site-nav-wrap > li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-nav-wrap > li > a {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1C1C1E;
  padding: 0.85rem 3.25rem 0.85rem 1.5rem;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.2s ease, padding-left 0.22s ease;
  min-height: 52px;
}
.site-nav-wrap > li > a:hover,
.site-nav-wrap > li > a:focus {
  color: #2D4A3E;
  padding-left: 2rem;
  text-decoration: none;
}

/* Sub-menu (Bootstrap collapse toggles .show class) */
.site-nav-wrap .collapse,
.site-nav-wrap .collapsing {
  background: rgba(45, 74, 62, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.site-nav-wrap .collapse li,
.site-nav-wrap .collapsing li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.site-nav-wrap .collapse li:last-child,
.site-nav-wrap .collapsing li:last-child {
  border-bottom: none;
}
.site-nav-wrap .collapse li a,
.site-nav-wrap .collapsing li a {
  display: flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.88rem;
  color: #8A857E;
  padding: 0.55rem 1.5rem;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.site-nav-wrap .collapse li a:hover,
.site-nav-wrap .collapsing li a:hover {
  color: #2D4A3E;
  padding-left: 2rem;
  text-decoration: none;
}

/* Expand arrow toggle */
.arrow-collapse {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
  z-index: 2;
}
.arrow-collapse::before {
  content: '+';
  font-size: 1rem;
  font-weight: 400;
  color: #8A857E;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease, color 0.22s ease;
}
.arrow-collapse.active {
  background: #2D4A3E;
  border-color: #2D4A3E;
}
.arrow-collapse.active::before {
  transform: rotate(45deg);
  color: #fff;
}

/* 3. Hamburger button touch target */
@media (max-width: 1199px) {
  .ds-hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.5rem;
  }
}

/* 4. Hero — stack CTA buttons vertically on very small screens */
@media (max-width: 400px) {
  .ds-hero-actions {
    flex-direction: column;
  }
  .ds-hero-actions .ds-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 5. Pricing grid modifiers
   --3 : same as base (3 cols ≥1024px), documents intent
   --4 : force 4 cols at wide desktop for 4-tier grids     */
@media (min-width: 640px) {
  .ds-pricing-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .ds-pricing-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .ds-pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .ds-pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* 6. Mobile typography — prevent text overflow in cards */
@media (max-width: 480px) {
  .ds-pricing-name,
  .ds-pricing-price {
    word-break: break-word;
  }
  .ds-pricing-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
}

/* 7. Booking wizard — ensure content panel scrolls on small screens */
@media (max-width: 480px) {
  .bw-modal {
    max-height: 92dvh;
  }
}

/* 8. Sticky booking CTA — don't overlap booking wizard */
@media (max-width: 767px) {
  .sticky-booking-cta .container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sticky-cta-text {
    white-space: normal;
    font-size: 0.72rem;
  }
}

/* 9. Footer — ensure bottom bar wraps gracefully */
@media (max-width: 480px) {
  .ds-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
