/* ============================================================
   FOREVER FERA — Complete Stylesheet (Desktop + Mobile Fixed)
   ============================================================ */

:root {
  --bg: #fefefe;
  --bg2: #f9f7fa;
  --bg3: #f2eff5;
  --rose: #d4a5b5;
  --rose-deep: #b85a7a;
  --rose-pale: #e8c9d4;
  --champagne: #8b735a;
  --champagne-light: #e6d9c7;
  --mauve: #9b7a8a;
  --text: #2c1e35;
  --text-muted: #6b5b7a;
  --text-dim: #9a8ba3;
  --border: rgba(44, 30, 53, 0.1);
  --border-strong: rgba(44, 30, 53, 0.2);
  --primary: #b85a7a;
  --primary-dark: #9b4f6f;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --silver-1: #4a4a4a;
  --silver-2: #6e6e6e;
  --silver-3: #2d2d2d;
  --gold-1: #c9952a;
  --gold-2: #e8b84b;
  --gold-3: #a07820;
  --plat-1: #4a90d9;
  --plat-2: #7bb8f0;
  --plat-3: #1a5fa8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* ── Custom Cursor ──────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 20%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s var(--ease-expo),
    height 0.25s var(--ease-expo), opacity 0.25s;
  will-change: transform;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(232, 160, 176, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-expo), width 0.3s var(--ease-expo),
    height 0.3s var(--ease-expo), background 0.3s, border-color 0.3s;
  will-change: transform;
}

.cursor.hovered { width: 14px; height: 14px; background: var(--rose-pale); }
.cursor-follower.hovered {
  width: 48px; height: 48px;
  border-color: var(--rose-deep);
  background: rgba(196, 104, 130, 0.08);
}

/* ── Topbar ─────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 64px;
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

.topbar a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.topbar a:hover { color: var(--rose); }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-expo);
}

nav.scrolled {
  background: rgba(254, 254, 254, 0.98);
  box-shadow: 0 8px 40px rgba(44, 30, 53, 0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span { color: var(--rose); }

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-deep);
  transition: width 0.3s var(--ease-expo);
}

.nav-links a:hover::after { width: 100%; }

.nav-pill {
  background: transparent;
  border: 1px solid var(--rose-deep);
  color: var(--rose);
  padding: 9px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.25s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.nav-pill::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-expo);
  z-index: -1;
  border-radius: 40px;
}

.nav-pill:hover { color: #fff; }
.nav-pill:hover::before { transform: scaleX(1); }

/* ── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
  z-index: 201;
}

.hamburger:hover { background: rgba(184, 90, 122, 0.08); }

.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s var(--ease-expo), opacity 0.25s, background 0.2s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 8, 18, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-expo);
}

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg2);
  border-left: 1px solid var(--border-strong);
  padding: 88px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-expo);
  overflow-y: auto;
}

.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu.open .mobile-menu-panel    { transform: translateX(0); }

.mobile-menu-panel a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  transition: color 0.25s, padding-left 0.3s var(--ease-expo),
    opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
}

.mobile-menu.open .mobile-menu-panel a { opacity: 1; transform: translateX(0); }
.mobile-menu-panel a:hover { color: var(--rose); padding-left: 8px; }
.mobile-menu-panel a:last-child { border-bottom: none; }

.mobile-menu.open .mobile-menu-panel a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-panel a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-panel a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-panel a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-panel a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff !important;
  border-radius: 40px;
  padding: 14px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: none !important;
  box-shadow: 0 8px 28px rgba(184, 90, 122, 0.3);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s !important;
}

.mobile-menu-cta:hover {
  transform: translateY(-2px) !important;
  padding-left: 28px !important;
  box-shadow: 0 14px 40px rgba(184, 90, 122, 0.45) !important;
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-contact a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  padding: 0 !important;
  border: none !important;
  opacity: 0;
  transform: none;
}

.mobile-menu.open .mobile-menu-contact a {
  opacity: 1;
  transition-delay: 0.35s;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/*
 * FIX: Video is always displayed — cover the whole viewport on ALL screen sizes.
 * We no longer hide it on mobile; mobile browsers support autoplay muted video.
 */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  transition: filter 1.5s ease;
}

@keyframes slowZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.14); }
}

.hero.loaded .hero-video { filter: blur(0); }

/*
 * Fallback image — hidden by default.
 * Only shown when JS adds class "no-video" to .hero (e.g. video load error).
 */
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: none;
}

.hero.no-video .hero-video    { display: none; }
.hero.no-video .hero-fallback { display: block; }

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(44, 30, 53, 0.25) 0%,
    rgba(44, 30, 53, 0.10) 40%,
    rgba(44, 30, 53, 0.50) 100%
  );
}

.slider-dots {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  padding: 0;
}

.sdot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--rose);
  border-color: var(--rose);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 160, 176, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(212, 184, 150, 0.06) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, -80px 80px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: var(--rose);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--rose-deep);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 9vw, 104px);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(44, 30, 53, 0.4);
}

.split-chars .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(6deg);
  animation: charIn 0.7s var(--ease-back) forwards;
}

@keyframes charIn {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 240, 248, 0.85);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(44, 30, 53, 0.3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 52px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line span {
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--rose-deep);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-rose {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease-expo);
  box-shadow: 0 8px 32px rgba(184, 90, 122, 0.35);
}

.btn-rose::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--rose);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.btn-rose:hover::before { opacity: 1; }
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(184, 90, 122, 0.45);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s var(--ease-expo);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: scale(1.02);
}

/* ── Layout Helpers ─────────────────────────────────────────────────────── */
section { padding: 110px 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.tag::before { content: '✦'; font-size: 8px; }

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 18px;
}

.h2 em { font-style: italic; color: var(--rose-pale); }

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
}

.rule {
  width: 48px; height: 1px;
  background: var(--mauve);
  margin: 20px 0;
}

/* ── SEO Section ────────────────────────────────────────────────────────── */
.seo-content {
  background: var(--bg2);
  padding: 40px 0;
}

/* ── About ──────────────────────────────────────────────────────────────── */
.about { background: var(--bg2); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.6s, transform 0.6s var(--ease-expo);
}

.about-visual:hover .about-img-main {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.01);
}

.about-img-inset {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--bg2);
  filter: brightness(0.9) saturate(0.8);
  transition: transform 0.5s var(--ease-expo), filter 0.5s;
}

.about-visual:hover .about-img-inset {
  transform: translate(-6px, -6px);
  filter: brightness(0.95) saturate(1);
}

.about-since {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--bg3);
  border: 1px solid var(--border-strong);
  padding: 20px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease-back);
}

.about-visual:hover .about-since { transform: translateY(-4px); }

.about-since strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--rose);
  line-height: 1;
}

.about-since span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

.pillar {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 18px 20px;
  transition: border-color 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

.pillar:hover {
  border-color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 104, 130, 0.12);
}

.pillar-icon { color: var(--rose); font-size: 16px; margin-bottom: 10px; }
.pillar h4 { font-size: 13.5px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.pillar p  { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

.tel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  transition: gap 0.3s var(--ease-back);
}

.tel-row:hover { gap: 20px; }

.tel-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(196, 104, 130, 0.15);
  border: 1px solid var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  transition: background 0.3s, transform 0.3s var(--ease-back);
}

.tel-row:hover .tel-icon {
  background: var(--rose-deep);
  transform: scale(1.12) rotate(-10deg);
}

/* ── Services ───────────────────────────────────────────────────────────── */
.services { background: var(--bg); }

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

.services-mosaic-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.svc {
  position: relative;
  overflow: hidden;
  background: #0d0a12;
  cursor: none;
  min-height: 260px;
}

.svc:not(.tall) { aspect-ratio: 4 / 5; }
.svc.tall       { grid-row: span 2; }

/* ─── KEY FIX: object-fit MUST be cover, NOT contain ─────────────────────
   "contain" leaves black bars around images that don't match the cell ratio.
   "cover" fills the cell properly, cropping if needed — exactly like a thumbnail. */
.svc img,
.svc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* was "contain" — that caused the black bars */
  object-position: center;
  filter: brightness(0.82) saturate(0.85) contrast(1.08);
  transition: filter 0.65s var(--ease-expo), transform 0.75s var(--ease-expo), opacity 0.4s;
  will-change: transform, filter;
  display: block;
}

.svc:hover img,
.svc:hover .svc-video {
  filter: brightness(0.92) saturate(1.05) contrast(1.04);
  transform: scale(1.03);
}

.svc::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 40%, rgba(13, 10, 18, 0.55) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(13, 10, 18, 0.72) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity 0.5s;
}

.svc::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(184, 90, 122, 0.0);
  transition: background 0.5s;
}

.svc:hover::after  { background: rgba(184, 90, 122, 0.07); }
.svc:hover::before { opacity: 0.7; }

.svc-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 48px 22px 22px;
  background: linear-gradient(
    to top,
    rgba(10, 6, 16, 0.97) 0%,
    rgba(13, 8, 20, 0.70) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(6px);
  transition: transform 0.45s var(--ease-expo);
}

.svc:hover .svc-label { transform: translateY(0); }

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.svc-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.38s 0.07s, transform 0.38s 0.07s var(--ease-expo);
}

.svc:hover .svc-tag { opacity: 1; transform: translateY(0); }

/* ── Stats Strip ────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--rose-deep);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
}

.stat-item {
  padding: 10px;
  border-right: 1px solid rgba(44, 30, 53, 0.2);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 8px;
}

.stat-num sup { font-size: 28px; }

.stat-lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials { background: var(--bg2); }

.testi-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}

.testi-header .rule { margin: 20px auto; }

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 34px 28px;
  transition: border-color 0.3s, transform 0.4s var(--ease-expo), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196, 104, 130, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.tcard:hover::before { opacity: 1; }
.tcard:hover {
  border-color: var(--rose-deep);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.tcard-stars { color: var(--rose); font-size: 12px; letter-spacing: 3px; margin-bottom: 18px; }
.tcard-q    { font-family: 'Playfair Display', serif; font-size: 36px; line-height: 0.5; color: var(--mauve); margin-bottom: 16px; }
.tcard-text { font-size: 14px; line-height: 1.85; color: var(--text-muted); font-style: italic; font-weight: 300; margin-bottom: 24px; }
.tcard-name { font-size: 14px; font-weight: 500; color: var(--text); }
.tcard-role { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }

/* ── Plans ──────────────────────────────────────────────────────────────── */
.plans {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.plans-bg-slider { position: absolute; inset: 0; z-index: 0; }

.plans-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.plans-slide.active { opacity: 1; }

.plans-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 6, 18, 0.88) 0%,
    rgba(25, 12, 38, 0.82) 40%,
    rgba(10, 6, 18, 0.90) 100%
  );
}

.plans .container { position: relative; z-index: 2; }

.plans-head { text-align: center; margin-bottom: 72px; }
.plans-head .h2 em { color: var(--rose); }

.plans-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  border-radius: 2px;
  padding: 44px 36px 40px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.plan-features { flex: 1; }
.plan-card:hover { transform: translateY(-10px); }

.plan-shine {
  position: absolute;
  top: -60%; left: -60%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-expo);
  pointer-events: none;
}

.plan-card:hover .plan-shine { transform: translate(40%, 40%); }

.silver {
  background: linear-gradient(145deg, #1a1a1a 0%, #2e2e2e 50%, #1c1c1c 100%);
  border: 1px solid rgba(120, 120, 120, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(160, 160, 160, 0.1);
}

.silver:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(160, 160, 160, 0.15),
    0 0 0 1px rgba(120, 120, 120, 0.4);
}

.gold {
  background: linear-gradient(145deg, #1a1200 0%, #2e2000 50%, #1a1500 100%);
  border: 1px solid rgba(201, 149, 42, 0.4);
  box-shadow: 0 20px 60px rgba(160, 120, 0, 0.2), inset 0 1px 0 rgba(232, 184, 75, 0.15);
}

.gold:hover {
  box-shadow: 0 32px 80px rgba(201, 149, 42, 0.35),
    inset 0 1px 0 rgba(232, 184, 75, 0.2),
    0 0 0 1px rgba(201, 149, 42, 0.5);
}

.plan-popular-badge {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1a1200;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}

.platinum {
  background: linear-gradient(145deg, #0a1628 0%, #0e1f3d 50%, #081222 100%);
  border: 1px solid rgba(74, 144, 217, 0.35);
  box-shadow: 0 20px 60px rgba(26, 95, 168, 0.2), inset 0 1px 0 rgba(123, 184, 240, 0.12);
}

.platinum:hover {
  box-shadow: 0 32px 80px rgba(74, 144, 217, 0.35),
    inset 0 1px 0 rgba(123, 184, 240, 0.2),
    0 0 0 1px rgba(74, 144, 217, 0.5);
}

.plan-tier-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.silver-badge  { background: rgba(80,80,80,0.4);  color: #b0b0b0;       border: 1px solid rgba(120,120,120,0.4); }
.gold-badge    { background: rgba(201,149,42,0.18); color: var(--gold-2); border: 1px solid rgba(201,149,42,0.4); }
.platinum-badge {
  background: linear-gradient(135deg, rgba(74,144,217,0.2), rgba(123,184,240,0.1));
  color: var(--plat-2);
  border: 1px solid rgba(74,144,217,0.4);
}

.plan-icon { font-size: 32px; margin-bottom: 12px; display: block; }

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.silver .plan-name { color: #c8c8c8; }

.gold .plan-name {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-1));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.platinum .plan-name {
  background: linear-gradient(135deg, #a8d8ff, #fff 40%, #7bb8f0 60%, #c8e8ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: platShimmer 4s linear infinite;
}

@keyframes platShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.plan-tagline { font-size: 12px; letter-spacing: 0.1em; margin-bottom: 28px; opacity: 0.7; }
.silver .plan-tagline   { color: #909090; }
.gold .plan-tagline     { color: var(--gold-1); }
.platinum .plan-tagline { color: var(--plat-2); }

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }

.price-currency { font-size: 22px; font-family: 'Playfair Display', serif; }

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.silver .price-currency, .silver .price-num     { color: #c8c8c8; }
.gold .price-currency, .gold .price-num         { color: var(--gold-2); }
.platinum .price-currency, .platinum .price-num { color: #a8d8ff; }

.plan-guests {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid;
}

.silver .plan-guests   { color: #787878;                      border-color: rgba(120,120,120,0.2); }
.gold .plan-guests     { color: rgba(201,149,42,0.7);         border-color: rgba(201,149,42,0.2); }
.platinum .plan-guests { color: rgba(74,144,217,0.7);         border-color: rgba(74,144,217,0.2); }

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.silver .plan-features li   { color: rgba(200,200,200,0.8); }
.gold .plan-features li     { color: rgba(232,216,180,0.85); }
.platinum .plan-features li { color: rgba(180,210,240,0.85); }

.pf-check { font-size: 11px; font-weight: 700; width: 16px; flex-shrink: 0; margin-top: 2px; }
.silver .pf-check   { color: #7a7a7a; }
.gold .pf-check     { color: var(--gold-2); }
.platinum .pf-check { color: var(--plat-2); }
.pf-no { opacity: 0.4; }

.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.35s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.silver-btn {
  background: linear-gradient(135deg, #3a3a3a, #555, #3a3a3a);
  background-size: 200% auto;
  color: #e0e0e0;
  border: 1px solid rgba(140,140,140,0.4);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.silver-btn:hover {
  background-position: right center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(160,160,160,0.4);
  transform: translateY(-2px);
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1), var(--gold-2), var(--gold-1));
  background-size: 200% auto;
  color: #1a1200;
  box-shadow: 0 6px 28px rgba(201,149,42,0.4);
  animation: goldBtnShimmer 3s linear infinite;
}

@keyframes goldBtnShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.gold-btn:hover {
  box-shadow: 0 12px 40px rgba(201,149,42,0.55);
  transform: translateY(-2px) scale(1.01);
}

.platinum-btn {
  background: linear-gradient(135deg, var(--plat-3), var(--plat-1), #a8d8ff, var(--plat-2), var(--plat-1));
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 6px 28px rgba(74,144,217,0.4);
  animation: platBtnShimmer 4s linear infinite;
}

@keyframes platBtnShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.platinum-btn:hover {
  box-shadow: 0 12px 40px rgba(74,144,217,0.55);
  transform: translateY(-2px) scale(1.01);
}

.plans-note { text-align: center; margin-top: 48px; font-size: 13px; color: rgba(255,255,255,0.4); }

.plans-note a {
  color: var(--rose-pale);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.plans-note a:hover { color: var(--rose); }

.featured { transform: translateY(-16px); }
.featured:hover { transform: translateY(-26px); }

/* ── Enquiry ────────────────────────────────────────────────────────────── */
.enquiry {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.enquiry-info { padding-top: 12px; }

.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  transition: transform 0.3s var(--ease-expo);
}

.info-block:hover { transform: translateX(6px); }

.info-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s, border-color 0.3s;
}

.info-block:hover .info-icon { background: rgba(196,104,130,0.12); border-color: var(--rose); }

.info-text strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 3px; }
.info-text span   { color: var(--text-muted); font-size: 13.5px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.fg { margin-bottom: 26px; }

.fg label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, padding-left 0.3s var(--ease-expo);
  appearance: none;
  -webkit-appearance: none;
}

.fg select option { background: var(--bg3); }
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-dim); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-bottom-color: var(--rose); padding-left: 6px; }

.fg textarea { resize: none; height: 90px; }

.form-btn {
  position: relative;
  overflow: hidden;
  background: var(--rose-deep);
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s var(--ease-expo);
}

.form-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--rose);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 40px;
}

.form-btn:hover::after { opacity: 1; }
.form-btn:hover {
  color: var(--bg);
  transform: scale(1.01);
  box-shadow: 0 14px 40px rgba(196,104,130,0.35);
}

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 40px;
}

.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1478147427282-58a87a433b38?w=1600&q=80') center/cover no-repeat;
  will-change: transform, filter;
  transition: filter 0.45s var(--ease-expo);
}

.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(44,30,53,0.4);
  transition: background 0.45s var(--ease-expo);
}

.cta-banner:hover .cta-bg          { filter: brightness(1.04); }
.cta-banner:hover .cta-bg::after   { background: rgba(44,30,53,0.32); }
.cta-banner:hover .h2 em           { color: var(--rose-deep); }

.cta-inner { position: relative; z-index: 1; }

.cta-banner .h2     { margin: 0 auto 20px; max-width: 700px; color: #fff; }
.cta-banner .body-text { margin: 0 auto 44px; color: rgba(255,255,255,0.65); max-width: 440px; }

footer {
  background: var(--bg2);
  color: var(--text-muted);
  padding: 84px 0 36px;
}

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

.footer-brand p { font-size: 13.5px; line-height: 1.85; max-width: 270px; margin-top: 14px; }

.footer-contact {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--champagne); margin-top: 12px;
}

.footer-contact a { color: var(--champagne); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--rose); }

.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); text-decoration: none; }
.footer-logo span { color: var(--rose); }

.footer-col h5 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s, padding-left 0.25s var(--ease-expo);
  display: inline-block;
}

.footer-col a:hover { color: var(--rose); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.footer-bottom .love { color: var(--text-dim); }

.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}

.reveal-up    { transform: translateY(52px); }
.reveal-fade  { transform: translateY(18px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.in,
.reveal-fade.in,
.reveal-left.in,
.reveal-right.in { opacity: 1; transform: translate(0); }

.stagger-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}

.stagger-child.in              { opacity: 1; transform: translateY(0); }
.featured.stagger-child.in     { transform: translateY(-16px); }
.featured.stagger-child:hover  { transform: translateY(-26px); }

.page-loader {
  position: fixed; inset: 0;
  z-index: 9997;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text);
  letter-spacing: 0.1em;
  animation: logoBreath 1.8s ease-in-out infinite;
}

.loader-logo span { color: var(--rose); }

@keyframes logoBreath {
  0%, 100% { opacity: 0.4; transform: scale(0.97); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

.loader-bar {
  width: 160px; height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--rose-deep);
  animation: loaderSlide 1.4s var(--ease-expo) forwards;
}

@keyframes loaderSlide { to { left: 0; } }

.magnetic {
  transform-origin: center center;
  transition: transform 0.35s var(--ease-expo);
}

.partners {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  overflow: hidden;
}

.partners-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 56px; }

.partner {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: color 0.3s, transform 0.3s var(--ease-back);
}

.partner:hover { color: var(--rose); transform: translateY(-3px); }

.team { background: var(--bg); }

.team-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.tmember-img { position: relative; overflow: hidden; aspect-ratio: 2/3; margin-bottom: 18px; }

.tmember-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.6);
  transition: filter 0.5s, transform 0.6s var(--ease-expo);
}

.tmember:hover .tmember-img img { filter: brightness(0.72) saturate(0.5); transform: scale(1.05); }

.tmember-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(196,104,130,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.tmember:hover .tmember-overlay { opacity: 1; }

.tmember-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); margin-bottom: 3px; transition: color 0.25s; }
.tmember:hover .tmember-name { color: var(--rose-pale); }
.tmember-role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); }


@media (max-width: 960px) {

  /* Nav */
  .hamburger  { display: flex; }
  .nav-links,
  .nav-pill   { display: none; }
  nav         { padding: 0 20px; justify-content: space-between; }

  .topbar { padding: 8px 20px; gap: 16px; font-size: 11.5px; }

  .container { padding: 0 20px; }
  section    { padding: 72px 0; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: auto; }
  .about-img-main { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
  .about-img-inset { display: none; }
  .about-since { top: 16px; left: 16px; }

  .services-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-mosaic-wrap { padding: 0 20px; }
  .services-mosaic { grid-template-columns: 1fr 1fr; gap: 4px; }
  .svc.tall       { grid-row: span 1; aspect-ratio: 4 / 5; }
  .svc:not(.tall) { aspect-ratio: 4 / 5; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(44,30,53,0.2); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(44,30,53,0.2); }
  .stat-num { font-size: 46px; }
  .stat-num sup { font-size: 22px; }

  .testi-row { grid-template-columns: 1fr 1fr; gap: 14px; }

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

  .plans-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .featured,
  .featured:hover,
  .featured.stagger-child.in,
  .featured.stagger-child:hover { transform: none !important; }
  .featured:hover { transform: translateY(-10px) !important; }

  .enquiry-layout { grid-template-columns: 1fr; gap: 48px; }
  .frow { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 600px) {

  .hero-video {
    display: block;
    object-position: center center;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    margin-bottom: 20px;
  }

  .hero-sub { font-size: 14px; max-width: 92%; margin-bottom: 36px; }

  .hero-eyebrow { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 22px; }
  .hero-eyebrow::before,
  .hero-eyebrow::after { width: 24px; }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-rose, .btn-ghost { width: 100%; max-width: 280px; text-align: center; padding: 14px 24px; }

  .hero-scroll { display: none; }
  .slider-dots { bottom: 28px; }
  .about-img-main { aspect-ratio: 4 / 3; }
  .about-since { left: 12px; top: 12px; padding: 14px 18px; }
  .about-since strong { font-size: 32px; }
  .pillars { grid-template-columns: 1fr; gap: 10px; }
  .tel-row { font-size: 16px; }

  /* ── Services: single column ── */
  .services-mosaic { grid-template-columns: 1fr; gap: 4px; }

  .svc,
  .svc.tall,
  .svc:not(.tall) {
    grid-row: span 1;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  .svc-name { font-size: 16px; }
  .stats-strip { padding: 44px 0; }
  .stat-num    { font-size: 36px; }
  .stat-num sup { font-size: 16px; }
  .stat-lab    { font-size: 9.5px; letter-spacing: 0.14em; }
  .stat-item   { padding: 16px 8px; }
  .testi-row { grid-template-columns: 1fr; gap: 12px; }
  .tcard { padding: 24px 20px; }
  .tcard-text { font-size: 13px; }
  .tcard-q    { font-size: 28px; }

  /* ── Plans ── */
  .plans { padding: 80px 0; }
  .plans-head { margin-bottom: 48px; }
  .plans-row  { max-width: 100%; gap: 16px; }
  .plan-card  { padding: 28px 20px 24px; }
  .plan-name  { font-size: 26px; }
  .price-num  { font-size: 34px; }
  .price-currency { font-size: 18px; }
  .plan-features li { font-size: 13px; }
  .plan-features { gap: 9px; margin-bottom: 28px; }
  .plan-guests { margin-bottom: 24px; padding-bottom: 22px; }
  .fg input,
  .fg select,
  .fg textarea { font-size: 16px; }
  .fg { margin-bottom: 20px; }

  /* ── CTA ── */
  .cta-banner { padding: 80px 20px; }
  .cta-banner .h2 { font-size: clamp(22px, 7vw, 36px); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11.5px; }
  footer { padding: 60px 0 28px; }
}


/* ============================================================
   VERY SMALL (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {

  .nav-logo { font-size: 19px; letter-spacing: 0.04em; }
  .topbar   { display: none; }

  .hero h1  { font-size: 30px; }
  .hero-sub { font-size: 13px; }

  .container { padding: 0 16px; }
  section    { padding: 56px 0; }

  .services-mosaic-wrap { padding: 0 16px; }

  .plan-card { padding: 22px 16px 20px; }
  .plan-name { font-size: 22px; }
  .price-num { font-size: 30px; }

  .tcard { padding: 20px 16px; }

  .cta-banner { padding: 60px 16px; }
}
.nav-logo img {
  height: 80px;
  width: 150px;
  object-fit: contain; 
}