@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Playfair+Display:wght@700;900&display=swap');

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --bg:       #080c10;
  --bg2:      #0e1318;
  --card:     #111820;
  --border:   rgba(255,255,255,.07);
  --border2:  rgba(255,255,255,.12);
  --muted:    #8a9aad;
  --text:     #eef2ff;
  --gold:     #f5c842;
  --gold2:    #e8961a;
  --gold-dim: rgba(245,200,66,.10);
  --gold-glow:rgba(245,200,66,.22);
  --red:      #e84040;
  --shadow:   0 24px 60px rgba(0,0,0,.55);
  --r:        16px;
  --r-sm:     10px;
  --max:      1160px;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NOISE OVERLAY ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ─── AMBIENT GLOWS ──────────────────────────────── */
.glow-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.glow-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 600px;
  top: -200px; left: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,.07) 0%, transparent 70%);
  filter: blur(60px);
}
.glow-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  top: 40%; right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,150,26,.05) 0%, transparent 70%);
  filter: blur(80px);
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
  line-height: 1;
}
.serif { font-family: 'Playfair Display', serif; }

h1,h2,h3 { line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ─── KICKER / LABEL ─────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.03);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
}
.label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: inherit; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0e0900;
  border: 0;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(245,200,66,.25);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 10px 30px rgba(245,200,66,.35); transform: translateY(-2px); }

.btn-ghost { background: transparent; }

.btn-lg { padding: 15px 28px; font-size: 1rem; border-radius: var(--r); }

/* ─── NAV ────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,12,16,.85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 14px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-weight: 900; letter-spacing: .02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(245,200,66,.28);
  font-size: 1.1rem;
}
.logo-text { font-size: 1rem; line-height: 1.1; }
.logo-text small { display: block; font-size: .7rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-links a {
  padding: 8px 13px; border-radius: 9px;
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 10px; border-radius: 10px; border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

.mobile-panel {
  display: none; border-top: 1px solid var(--border);
  padding: 14px 0 20px;
}
.mobile-panel a {
  display: block; padding: 11px 12px; border-radius: 10px;
  font-weight: 700; color: var(--muted);
  transition: all .15s;
}
.mobile-panel a:hover, .mobile-panel a.active { background: rgba(255,255,255,.05); color: var(--text); }
.mobile-panel a.active { color: var(--gold); }
.mobile-panel .stack { display: grid; gap: 8px; margin-top: 12px; }

/* ─── HERO ───────────────────────────────────────── */
.hero { padding: 0; min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.hero-stripe {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(180deg, rgba(245,200,66,.06) 0%, rgba(232,150,26,.04) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  min-height: 92vh;
}

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 80px;
  padding-right: 48px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.hero-eyebrow .line { height: 1px; width: 40px; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.08rem; color: var(--muted);
  max-width: 44ch; margin-bottom: 32px;
  font-weight: 500;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
}
.hero-trust-item .icon { font-size: 1rem; }

.hero-visual {
  position: relative; display: flex; align-items: stretch;
}
.hero-img-wrap {
  position: relative; width: 100%;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 20%),
              linear-gradient(0deg, rgba(8,12,16,.5) 0%, transparent 40%);
}

.hero-badge {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(8,12,16,.9);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex; gap: 14px; align-items: center;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.hero-badge .stars { color: var(--gold); letter-spacing: 1px; }
.hero-badge strong { font-size: .95rem; }
.hero-badge span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ─── SCROLL TICKER ──────────────────────────────── */
.ticker {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  overflow: hidden; padding: 12px 0;
  position: relative; z-index: 2;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 28px;
  font-size: .83rem; font-weight: 800;
  color: #0e0900;
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-item .sep { opacity: .4; margin-left: 4px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTION HEADER ─────────────────────────────── */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.sec-head h2 { margin-top: 10px; }
.sec-head p  { color: var(--muted); max-width: 54ch; margin-top: 8px; font-weight: 500; }

/* ─── CARDS ──────────────────────────────────────── */
.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .2s;
}
.card:hover { border-color: var(--border2); }

.card-gold {
  border-color: rgba(245,200,66,.18);
  background: linear-gradient(160deg, rgba(245,200,66,.08), rgba(255,255,255,.02));
}

/* ─── FEATURES GRID ──────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

.feat-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--gold-dim); border: 1px solid var(--gold-glow);
  margin-bottom: 14px;
}
.feat-card h3 { margin-bottom: 6px; }
.feat-card p  { color: var(--muted); font-size: .9rem; font-weight: 500; }

/* ─── SPLIT / ABOUT ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

.photo-frame {
  position: relative; border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 480px; object-fit: cover; display: block; }
.photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,12,16,.7) 100%);
}
.photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  background: rgba(8,12,16,.88); border: 1px solid var(--border2);
  border-radius: var(--r-sm); padding: 12px 16px;
  backdrop-filter: blur(8px);
  display: flex; justify-content: space-between; align-items: center;
}

/* ─── CHECKLIST ──────────────────────────────────── */
.checklist { display: grid; gap: 10px; margin-top: 16px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 14px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.check-icon {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0; margin-top: 1px;
  background: var(--gold-dim); border: 1px solid var(--gold-glow);
  display: grid; place-items: center; font-size: .7rem; color: var(--gold);
}
.check-item b   { display: block; font-size: .9rem; }
.check-item span { color: var(--muted); font-size: .85rem; font-weight: 500; }

/* ─── PRICING ────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.price-card {
  padding: 24px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  display: flex; flex-direction: column; gap: 0;
  transition: transform .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.price-card.featured {
  border-color: rgba(245,200,66,.25);
  background: linear-gradient(165deg, rgba(245,200,66,.1), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(245,200,66,.12), 0 20px 50px rgba(0,0,0,.35);
}
.price-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.price-name { font-size: 1rem; font-weight: 800; }
.price-pop  { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; background: var(--gold); color: #0e0900; border-radius: 6px; }
.price-amount { font-size: 2.8rem; font-weight: 900; line-height: 1; margin: 10px 0 4px; }
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; font-weight: 700; }
.price-desc  { color: var(--muted); font-size: .85rem; font-weight: 500; margin-bottom: 16px; }
.price-perks { display: grid; gap: 7px; margin-bottom: 20px; }
.price-perk  {
  display: flex; gap: 8px; align-items: center;
  font-size: .85rem; font-weight: 500; color: var(--muted);
}
.price-perk::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; }
.price-card .btn-primary, .price-card .btn { width: 100%; margin-top: auto; }

/* ─── GALLERY ────────────────────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.gallery-masonry .gimg {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  position: relative; cursor: pointer;
}
.gallery-masonry .gimg:nth-child(2) { grid-row: span 2; }
.gallery-masonry .gimg img {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover; display: block;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-masonry .gimg:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gallery-masonry .gimg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,12,16,.7) 100%);
  pointer-events: none;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.testi-card {
  padding: 22px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
}
.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: .92rem; color: var(--muted); font-weight: 500; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid; place-items: center; font-size: .85rem; font-weight: 900; color: #0e0900; flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 700; }
.testi-loc  { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,200,66,.12) 0%, rgba(232,150,26,.06) 60%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(245,200,66,.2);
  padding: 48px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '✂';
  position: absolute; right: 32px; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem; opacity: .04; pointer-events: none;
  font-family: sans-serif;
}

/* ─── CONTACT FORM ───────────────────────────────── */
.form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
label { font-size: .88rem; font-weight: 700; color: var(--text); }
input, textarea, select {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--border2);
  background: rgba(255,255,255,.03);
  color: var(--text); font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
select option { background: #111820; }
textarea { min-height: 130px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(245,200,66,.45);
  box-shadow: 0 0 0 4px rgba(245,200,66,.1);
}

/* ─── CONTACT INFO ───────────────────────────────── */
.contact-list { display: grid; gap: 10px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.contact-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid var(--gold-glow);
  display: grid; place-items: center; font-size: .95rem;
}
.contact-label { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-value { font-size: .95rem; font-weight: 700; }

/* ─── PAGE HEAD ──────────────────────────────────── */
.pagehead {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.pagehead h1 { margin-top: 12px; }
.pagehead p  { color: var(--muted); max-width: 56ch; margin-top: 10px; font-weight: 500; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
  color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px;
  align-items: start;
}
.footer-brand { font-size: 1.05rem; font-weight: 900; color: var(--text); }
.footer-tagline { font-size: .85rem; margin-top: 4px; font-weight: 500; }
.footer-copy { font-size: .82rem; margin-top: 16px; }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.footer-links a {
  padding: 6px 10px; border-radius: 8px;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.footer-links a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.footer-phone { margin-top: 10px; font-size: .85rem; font-weight: 700; color: var(--text); }

/* ─── TOAST ──────────────────────────────────────── */
.toast {
  display: none; margin-top: 12px; padding: 13px 16px;
  border-radius: 12px; border: 1px solid rgba(245,200,66,.25);
  background: rgba(245,200,66,.08); color: var(--text); font-weight: 700;
}

/* ─── ABOUT PAGE ─────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  margin: 40px 0;
}
.stat-card {
  padding: 22px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp .55s ease forwards; }
.animate-d1 { animation-delay: .08s; }
.animate-d2 { animation-delay: .16s; }
.animate-d3 { animation-delay: .24s; }
.animate-d4 { animation-delay: .32s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 0 40px; }
  .hero-stripe { display: none; }
  .hero-visual { height: 380px; clip-path: none; }
  .hero-img-wrap { clip-path: none !important; border-radius: var(--r); overflow: hidden; }
  .hero-img-wrap::after { background: linear-gradient(180deg, transparent 50%, rgba(8,12,16,.8) 100%); }
  .split { grid-template-columns: 1fr; }
  .photo-frame img { height: 320px; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry .gimg:nth-child(2) { grid-row: auto; }
  .testimonials { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { text-align: center; justify-content: center; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-panel { display: none; }
  .mobile-panel.open { display: block; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}