/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-2: #0f0f18;
  --bg-3: #141420;
  --surface: #1a1a28;
  --surface-2: #222235;
  --gold: #c9a84c;
  --gold-light: #e8c76b;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #f5f4ef;
  --muted: #8a8a9a;
  --accent: #7b6ef6;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.4s, height 0.4s, opacity 0.3s;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section__header { text-align: center; margin-bottom: 72px; }
.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.section__header h2 em { font-style: italic; color: var(--gold); }
.section__header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 17px; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.25);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1010;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 24px 0; }
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 32px 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7b6ef6, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* reveal delay variants */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== TICKER ===== */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 20s linear infinite;
}
.ticker span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
}
.ticker__dot { color: rgba(10,10,15,0.4) !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== NICHES ===== */
.niches { background: var(--bg-2); }
.niches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.niche-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.niche-card:hover::before { opacity: 1; }
.niche-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
}
.niche-card__icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}
.niche-card__icon svg { width: 100%; height: 100%; }
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.niche-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.niche-card__features {
  list-style: none;
  margin-bottom: 28px;
}
.niche-card__features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.niche-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}
.niche-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.2s;
  display: inline-block;
}
.niche-card__link:hover { letter-spacing: 0.02em; }

/* ===== PACKAGES ===== */
.packages { background: var(--bg); }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
}
.pkg-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.pkg-card--featured {
  background: linear-gradient(135deg, #1e1c30, #16142a);
  border-color: rgba(201,168,76,0.35) !important;
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(201,168,76,0.12);
}
.pkg-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-card__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.pkg-card__tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pkg-card__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  margin-bottom: 20px;
}
.pkg-card__features {
  list-style: none;
  margin-bottom: 28px;
}
.pkg-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--white);
}
.check { color: var(--gold); font-size: 13px; flex-shrink: 0; }
.dim { color: var(--muted); flex-shrink: 0; }
.pkg-card__features li:has(.dim) { color: var(--muted); }

/* ===== ADVANCED DEMO ===== */
.advanced { background: var(--bg-3); }
.demo-video {
  margin: 60px 0;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.demo-video__inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d1a, #1a1025);
}
.demo-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-3));
}
.demo-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(201,168,76,0.25);
  margin: 32px 40px;
  border-radius: var(--radius-lg);
}
.demo-video__play {
  width: 72px; height: 72px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.demo-video__placeholder p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
}
.demo-video__placeholder span {
  font-size: 13px;
  color: rgba(138,138,154,0.6);
}

.demo-section {
  margin: 80px 0;
}
.demo-section__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.demo-section__title span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 100px;
}
.demo-section__desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.team-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.team-card__photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.team-card__photo--1 {
  background: linear-gradient(135deg, #2d1f3f, #1a2a4a);
  position: relative;
}
.team-card__photo--1::after, .team-card__photo--2::after, .team-card__photo--3::after {
  content: '👤';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.3;
}
.team-card__photo--2 { background: linear-gradient(135deg, #1f2f3f, #2d1f3f); }
.team-card__photo--3 { background: linear-gradient(135deg, #1f3f2f, #3f2d1f); }
.team-card__info { padding: 20px; }
.team-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.team-card__info span {
  font-size: 12px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.team-card__info p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.team-card__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  transition: all 0.2s;
}
.team-card__socials a:hover { background: var(--gold); color: var(--bg); }

/* Instagram grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.insta-cell {
  aspect-ratio: 1;
  background: hsl(var(--hue) 30% 20%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-cell:hover .insta-cell__overlay { opacity: 1; }
.insta-cell__overlay span { font-size: 13px; color: var(--white); }
.insta-follow { text-align: center; }

/* Bundles */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bundle-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.bundle-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }
.bundle-card--highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.35) !important;
}
.bundle-card__icon { font-size: 32px; margin-bottom: 14px; }
.bundle-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.bundle-card p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.bundle-card__tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* Reviews */
.reviews-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
.review-card {
  min-width: calc(50% - 10px);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.5s var(--transition);
  flex-shrink: 0;
}
.review-card__stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.7; font-style: italic; }
.review-card span { font-size: 13px; font-weight: 500; color: var(--gold); }
.reviews-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.reviews-nav button {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.reviews-nav button:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Newsletter */
.demo-section--newsletter {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(123,110,246,0.06));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.newsletter-text p { color: var(--muted); font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.newsletter-form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 24px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--muted); }

/* Booking form */
.booking-form { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; }
.booking-form__row, .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.06);
}
.form-group select option { background: var(--bg-2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(138,138,154,0.5); }

/* Map */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.map-embed iframe { display: block; filter: invert(0.85) hue-rotate(180deg); }

/* ===== PROCESS ===== */
.process { background: var(--bg-2); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.process__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.process__step p { font-size: 14px; color: var(--muted); }
.process__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.4), rgba(201,168,76,0.1));
  margin-top: 36px;
  flex-shrink: 0;
}

/* ===== OUR TEAM ===== */
.our-team { background: var(--bg); }
.our-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.our-team__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  align-items: flex-start;
  transition: all 0.4s;
}
.our-team__card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.our-team__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 2px solid rgba(201,168,76,0.3);
  position: relative;
  overflow: hidden;
}
.our-team__photo--robert { background: linear-gradient(135deg, #2a1f40, #1a1a35); }
.our-team__photo--robert::after { content: 'RT'; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 300; }
.our-team__photo--james { background: linear-gradient(135deg, #1f2a40, #1a2535); }
.our-team__photo--james::after { content: 'JW'; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 300; }
.our-team__photo--rhiannon { background: linear-gradient(135deg, #8b1a1a, #c0392b); }
.our-team__photo--rhiannon::after { content: 'RL'; font-family: var(--font-display); font-size: 1.3rem; color: white; font-weight: 300; }
.our-team__info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.our-team__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.our-team__info p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.our-team__links { display: flex; gap: 12px; }
.our-team__links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
}
.our-team__links a:hover { background: var(--gold); color: var(--bg); }
.our-team__links a svg { width: 16px; height: 16px; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-3); }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.contact__info { padding-top: 8px; }
.contact-detail { margin-bottom: 32px; }
.contact-detail__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-detail__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.2s;
}
a.contact-detail__value:hover { color: var(--gold); }
.contact-socials { display: flex; flex-direction: column; gap: 12px; }
.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-social:hover { color: var(--gold); }
.contact-social svg { width: 18px; height: 18px; }
.contact__form { background: var(--surface); border-radius: var(--radius-lg); padding: 44px; border: 1px solid rgba(255,255,255,0.05); }

/* ===== FOOTER ===== */
.footer { background: #050508; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.footer__logo em { font-style: normal; color: var(--gold); }
.footer__brand p { font-size: 14px; color: var(--muted); max-width: 260px; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.footer__socials a:hover { background: var(--gold); color: var(--bg); }
.footer__socials a svg { width: 15px; height: 15px; }
.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a, .footer__col ul li span {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(138,138,154,0.5);
}

/* ===== DEMO STRIP ===== */
.demo-strip {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(123,110,246,0.05));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.demo-strip__text p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 6px;
}
.demo-strip__text span { font-size: 13px; color: var(--muted); }
.demo-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.demo-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.demo-strip__btn:hover { transform: translateY(-3px); }
.demo-strip__btn--hair:hover { background: rgba(255,182,193,0.12); border-color: rgba(255,182,193,0.35); color: #ffb6c1; }
.demo-strip__btn--trade:hover { background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.35); color: #60a5fa; }
.demo-strip__btn--food:hover { background: rgba(251,191,36,0.12); border-color: rgba(251,191,36,0.35); color: #fbbf24; }

/* ===== HOSTING OPTIONS ===== */
.hosting { background: var(--bg-2); }
.hosting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 32px;
}
.hosting-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.hosting-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
.hosting-card--featured {
  background: linear-gradient(140deg, #1e1c2e, #16142a);
  border-color: rgba(201,168,76,0.35) !important;
  box-shadow: 0 0 60px rgba(201,168,76,0.1);
}
.hosting-card--featured:hover { transform: translateY(-6px); }
.hosting-card__popular {
  position: absolute; top: -13px; left: 32px;
  background: var(--gold); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px;
}
.hosting-card__icon { font-size: 36px; margin-bottom: 16px; }
.hosting-card__badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.hosting-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400; margin-bottom: 4px;
}
.hosting-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.hosting-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.hosting-card__list { list-style: none; margin-bottom: 28px; flex: 1; }
.hosting-card__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hosting-card__list li:last-child { border: none; }
.hcheck { color: var(--gold); font-size: 13px; flex-shrink: 0; }
.hdim { color: var(--muted); flex-shrink: 0; }
.hosting-card__list li:has(.hdim) { color: var(--muted); }
.hosting-card__price { margin-bottom: 24px; }
.hosting-card__price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.hosting-card__price-amount em { font-size: 1.3rem; font-style: normal; color: var(--muted); }
.hosting-card__price-label {
  display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px;
}
.hosting-card__price-note { font-size: 12px; color: var(--muted); }
.hosting-card__cta { align-self: flex-start; }
.hosting__footnote {
  max-width: 860px; margin: 0 auto;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 14px; color: var(--muted); text-align: center;
}
.hosting__footnote strong { color: var(--white); }

/* ===== PACKAGE PRICE TAG ===== */
.pkg-card__price-tag {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--gold);
  margin: 8px 0 4px; line-height: 1;
}
.pkg-card__price-tag em { font-size: 1rem; color: var(--muted); font-style: normal; }

/* ===== CONTACT MAP ===== */
.contact__map { margin-top: 20px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.contact__map iframe { display: block; filter: invert(0.88) hue-rotate(185deg) saturate(0.5); }

/* Contact form wrap */
.contact__form-wrap {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

/* Thank you panel */
.wd-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px;
  gap: 14px;
  min-height: 420px;
}
.wd-thanks__icon {
  width: 72px; height: 72px;
  background: var(--gold-dim);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold);
  margin-bottom: 8px;
}
.wd-thanks h3 {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300;
  color: var(--white);
}
.wd-thanks p {
  font-size: 15px; color: var(--muted);
  max-width: 340px; line-height: 1.75;
}
.wd-thanks__sub { font-size: 13px; color: var(--muted); margin-top: 8px; }
.wd-thanks__tel {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--gold); display: block; transition: color 0.2s;
}
.wd-thanks__tel:hover { color: var(--gold-light); }

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  transition: all 0.3s;
}
.review-card::before {
  content: '"';
  position: absolute; top: 20px; left: 32px;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: 0.25;
}
.review-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.review-card__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.review-card p {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.8; font-style: italic; margin-bottom: 24px;
  padding-left: 8px;
}
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__author-info strong {
  display: block; font-size: 15px; font-weight: 600; color: var(--white);
}
.review-card__author-info span {
  font-size: 13px; color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .niches__grid, .packages__grid { grid-template-columns: 1fr; }
  .packages__grid .pkg-card--featured { transform: none; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.4), rgba(201,168,76,0.1)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .our-team__grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .hosting__grid { grid-template-columns: 1fr; max-width: 560px; }
  .demo-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .demo-strip__btns { justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__actions { flex-direction: column; align-items: center; }
  .booking-form__row, .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .our-team__card { flex-direction: column; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .demo-video { height: 300px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .review-card { min-width: 100%; }
  .demo-section--newsletter { padding: 32px 24px; }
  .contact__form { padding: 28px 20px; }
}
