:root {
  --bg: #0b1220;
  --bg-soft: #111b2e;
  --card: rgba(12, 19, 34, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: #a9b8d0;
  --gold: #d4b06a;
  --gold-2: #f0d8a1;
  --accent: #8fd0a1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #09111d 0%, #0e1728 50%, #0a1423 100%);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(143, 208, 161, 0.12), transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(212, 176, 106, 0.14), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(119, 170, 255, 0.10), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.site-nav {
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  padding: 1rem 0;
}
.site-nav.scrolled {
  background: rgba(5, 12, 21, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,176,106,.95), rgba(255,255,255,.18));
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: var(--shadow);
}
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text { color: #fff; font-weight: 700; }
.brand-sub { color: var(--gold-2); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-link { color: rgba(255,255,255,.82); font-weight: 500; }
.nav-link:hover, .nav-link:focus { color: #fff; }

.btn {
  border-radius: 999px;
  padding: .9rem 1.4rem;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #081018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: none;
  box-shadow: 0 12px 30px rgba(212, 176, 106, 0.28);
}
.btn-gold:hover { color: #081018; }

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero.png') center center / cover no-repeat;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 9, 16, .84) 0%, rgba(7, 15, 27, .66) 38%, rgba(8, 16, 29, .26) 100%),
    linear-gradient(180deg, rgba(11,18,32,.10) 0%, rgba(11,18,32,.40) 100%);
  z-index: -1;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-2);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title, .section-heading h2, .cta-box h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.hero-title {
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  max-width: 11ch;
  margin-bottom: 1.4rem;
}
.hero-title span {
  color: var(--gold-2);
  text-shadow: 0 0 24px rgba(212, 176, 106, .25);
}
.hero-text {
  max-width: 640px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions { margin: 2rem 0 2.2rem; }
.glass-card {
  background: rgba(7, 15, 28, 0.52);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  min-height: 96px;
}
.stat-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.stat-card span { color: var(--muted); font-size: .92rem; }
.hero-side-card {
  padding: 1.4rem;
  border-radius: 28px;
  margin-top: 5rem;
}
.hero-side-top, .hero-side-bottom {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}
.badge-soft {
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 600;
}
.mini-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.hero-side-card h2 { font-size: 2rem; margin: 1rem 0; }
.feature-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.feature-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .55rem 0;
  color: rgba(255,255,255,.88);
}
.feature-list i { color: var(--accent); }
.hero-side-bottom { justify-content: space-between; }
.price-badge {
  padding: .65rem .95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,176,106,.24), rgba(212,176,106,.08));
  border: 1px solid rgba(212,176,106,.32);
  color: var(--gold-2);
  font-weight: 800;
}
.scroll-indicator {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 34px; height: 56px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 30px;
  display: grid;
  place-items: center;
}
.scroll-indicator span {
  width: 6px; height: 12px;
  border-radius: 999px;
  background: #fff;
  animation: floatDot 1.7s infinite;
}
@keyframes floatDot {
  0% { transform: translateY(-6px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.section-padding { padding: 110px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.section-heading h2 { font-size: clamp(2.1rem, 5vw, 3.65rem); margin-bottom: 1rem; }
.section-heading p, .gallery-intro { color: var(--muted); line-height: 1.8; font-size: 1.03rem; }
.section-heading.narrow { max-width: 780px; }

.info-card, .experience-card, .pricing-card {
  height: 100%;
  border-radius: 26px;
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-card i, .experience-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(143,208,161,.18), rgba(212,176,106,.18));
  color: #fff;
  font-size: 1.35rem;
}
.info-card h3, .experience-card h3, .pricing-card h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.info-card p, .experience-card p { color: var(--muted); margin: 0; line-height: 1.7; }

.stacked-visual { position: relative; min-height: 620px; }
.main-visual {
  width: 88%;
  margin-left: auto;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 560px;
}
.accent-visual {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 46%;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.floating-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  background: rgba(7,15,28,.65);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(16px);
  padding: .8rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.experience-card.tall { min-height: 100%; }
.experience-card.highlight {
  background: linear-gradient(180deg, rgba(212,176,106,.12), rgba(255,255,255,.03));
  transform: translateY(-10px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 260px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,15,26,.75) 100%);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-large { grid-column: span 7; grid-row: span 2; min-height: 540px; }
.gallery-grid .gallery-item:not(.gallery-large) { grid-column: span 5; }
.gallery-caption {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
}

.pricing-card { padding: 2rem; }
.pricing-top { margin-bottom: 1.1rem; }
.pricing-label {
  display: inline-block;
  margin-bottom: .7rem;
  padding: .42rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.pricing-label.alt { background: rgba(143,208,161,.16); color: #e8fff0; }
.pricing-top h3 { font-size: 3rem; margin-bottom: .4rem; }
.pricing-top p { color: var(--muted); margin-bottom: 0; }
.pricing-list { list-style: none; padding: 0; margin: 0; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .78rem 0;
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-list i.bi-check2 { color: var(--accent); }
.pricing-list i.bi-x-lg { color: #ff9696; font-size: .9rem; margin-top: .22rem; }
.starter-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
}
.premium-card {
  background: linear-gradient(180deg, rgba(212,176,106,.12), rgba(255,255,255,.04));
  border-color: rgba(212,176,106,.25);
}

.section-cta { padding-top: 30px; }
.cta-box {
  border-radius: 34px;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(11,18,32,.9), rgba(22,34,54,.82)),
    url('../images/view-2.png') center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.section-kicker.light { color: var(--gold-2); }
.cta-box p { color: rgba(255,255,255,.82); line-height: 1.8; }
.cta-actions .btn i { margin-right: .55rem; }

.site-footer {
  padding: 1.5rem 0 2.4rem;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
}

.fade-up, .fade-left {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .85s ease, transform .85s ease;
}
.fade-left { transform: translate3d(32px, 0, 0); }
.fade-up.in-view, .fade-left.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@media (max-width: 1199.98px) {
  .hero-title { max-width: 12ch; }
  .gallery-large { grid-column: span 12; min-height: 460px; }
  .gallery-grid .gallery-item:not(.gallery-large) { grid-column: span 6; }
}

@media (max-width: 991.98px) {
  .hero-section .row { padding-top: 110px; padding-bottom: 100px; }
  .hero-side-card { margin-top: 2rem; }
  .stacked-visual { min-height: auto; }
  .main-visual { width: 100%; min-height: 420px; }
  .accent-visual { position: relative; left: auto; bottom: auto; width: 72%; margin-top: -60px; }
  .experience-card.highlight { transform: none; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 86px 0; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-large, .gallery-grid .gallery-item:not(.gallery-large) { grid-column: auto; min-height: 260px; }
  .scroll-indicator { display: none; }
  .cta-box { background-position: 64% center; }
  .site-footer .container { text-align: center; }
}
