/* ===== TOKENS ===== */
:root {
  --gold: #f5b301;
  --gold-soft: #ffc94d;
  --ink: #0a0a0a;
  --ink-2: #121212;
  --ink-3: #1b1b1b;
  --line: #2a2a2a;
  --white: #f4f4f4;
  --muted: #a3a3a3;
  --radius: 14px;
  --container: 1160px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand__text { font-family: 'Oswald', sans-serif; letter-spacing: .5px; }

.container { width: min(var(--container), 92%); margin: 0 auto; }

.gold { color: var(--gold); }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
/* moving shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .6s ease;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: 0 12px 30px rgba(245,179,1,.35); }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #111; }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 10, 10, .35);
  backdrop-filter: blur(8px);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(10, 10, 10, .95); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--gold); color: #111;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  border-radius: 10px; font-size: 1.1rem;
}
.brand__text { font-size: 1.2rem; font-weight: 700; }
.brand__text em { color: var(--gold); font-style: normal; font-weight: 500; font-size: .78rem; display: block; letter-spacing: 3px; margin-top: -4px; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--white); }
.nav__links .nav__cta { color: #111; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(120deg, rgba(0,0,0,.85), rgba(0,0,0,.55)),
              url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
}
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 82% 22%, rgba(245,179,1,.22), transparent 60%),
    radial-gradient(35% 45% at 12% 85%, rgba(245,179,1,.12), transparent 60%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate3d(0,0,0) scale(1); opacity: .9; }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.08); opacity: 1; }
}
.hero__inner { position: relative; padding: 120px 0 80px; }

/* staggered entrance */
.hero__inner > * { opacity: 0; animation: heroUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__kicker  { animation-delay: .1s; }
.hero__title   { animation-delay: .25s; }
.hero__sub     { animation-delay: .45s; }
.hero__actions { animation-delay: .6s; }
.hero__stats   { animation-delay: .8s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

/* gold underline sweep under the title's middle line */
.hero__title .gold { position: relative; display: inline-block; }
.hero__title .gold::after {
  content: ""; position: absolute; left: 0; bottom: 6px; height: 4px; width: 0;
  background: var(--gold); animation: underline 1s ease 1.1s forwards;
}
@keyframes underline { to { width: 100%; } }
.hero__kicker {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 2px; font-size: .75rem; font-weight: 700;
  margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.8rem, 8vw, 6rem); line-height: .98; font-weight: 700; }
.hero__sub { max-width: 560px; color: var(--muted); font-size: 1.1rem; margin: 22px 0 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--line);
}
.hero__stats strong { font-family: 'Oswald', sans-serif; font-size: 2.4rem; color: var(--gold); display: block; }
.hero__stats span { color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; color: var(--gold); animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,10px);} }

/* ===== MARQUEE ===== */
.marquee { background: var(--gold); color: #111; overflow: hidden; padding: 12px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 40px; animation: scroll 22s linear infinite; }
.marquee__track span { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 2px; font-size: 1rem; }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head h2, .about__text h2, .contact__info h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
.section__note { color: var(--muted); margin-top: 12px; font-size: .95rem; }

/* ===== ABOUT ===== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge {
  position: absolute; bottom: -24px; right: -14px;
  background: var(--gold); color: #111;
  padding: 18px 22px; border-radius: 12px; box-shadow: var(--shadow);
  max-width: 180px;
}
.about__badge strong { font-family: 'Oswald', sans-serif; font-size: 2.2rem; display: block; line-height: 1; }
.about__badge span { font-size: .82rem; font-weight: 600; }
.about__text h2 { margin-bottom: 18px; }
.about__text > p { color: var(--muted); }

.check-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--gold); color: #111;
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0));
  transform-style: preserve-3d;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.card:hover { --ty: -6px; border-color: var(--gold); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
/* radial glow that follows the cursor */
.card__glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(245,179,1,.16), transparent 65%);
}
.card:hover .card__glow { opacity: 1; }
.card__icon {
  width: 66px; height: 66px; display: grid; place-items: center;
  background: rgba(245,179,1,.1); border: 1px solid var(--gold);
  border-radius: 16px; margin-bottom: 22px; color: var(--gold);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
  transform: translateZ(30px);
}
.card__icon svg { width: 34px; height: 34px; }
.card:hover .card__icon { transform: translateZ(45px) rotate(-6deg) scale(1.08); background: rgba(245,179,1,.2); }
/* draw the icon strokes on reveal */
.card__icon svg path, .card__icon svg circle {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.2s ease .25s;
}
.card.in .card__icon svg path, .card.in .card__icon svg circle { stroke-dashoffset: 0; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; text-transform: uppercase; transform: translateZ(20px); }
.card p { color: var(--muted); font-size: .95rem; transform: translateZ(12px); }

/* ===== PLANS ===== */
.plans { background: var(--ink-2); }
.cards--plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan {
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 30px; text-align: center; position: relative;
  display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--gold); transform: scale(1.04); box-shadow: var(--shadow); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #111; font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 100px;
}
.plan h3 { text-transform: uppercase; font-size: 1.4rem; margin-bottom: 8px; }
.plan__price { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.plan__price span { font-size: 1rem; vertical-align: super; margin-right: 4px; }
.plan__price em { font-size: 1rem; color: var(--muted); font-style: normal; }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; text-align: left; flex: 1; }
.plan ul li { padding-left: 26px; position: relative; color: var(--muted); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== GALLERY ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius);
  filter: grayscale(.3) contrast(1.05); transition: filter .3s, transform .3s;
}
.gallery__grid img:hover { filter: none; transform: scale(1.02); }
.gallery__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 20px; }

/* ===== TESTIMONIALS ===== */
.testi { background: var(--ink-2); }
.cards--testi { grid-template-columns: repeat(3, 1fr); }
.quote {
  background: var(--ink); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 30px;
}
.quote p { font-size: 1.05rem; margin-bottom: 16px; }
.quote footer { color: var(--gold); font-weight: 700; }

/* ===== CONTACT ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info > p { color: var(--muted); margin: 16px 0 28px; }
.contact__list { list-style: none; display: grid; gap: 22px; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 16px; }
.contact__ic {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(245,179,1,.12); border: 1px solid var(--gold); border-radius: 12px; color: var(--gold);
  transition: transform .3s ease, background .3s ease;
}
.contact__ic svg { width: 22px; height: 22px; }
.contact__list li:hover .contact__ic { transform: translateY(-3px); background: rgba(245,179,1,.22); }
.contact__list a:hover { color: var(--gold); }
.contact__socials { display: flex; gap: 14px; }
.contact__socials a {
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px;
  font-size: .85rem; font-weight: 600; transition: .2s;
}
.contact__socials a:hover { border-color: var(--gold); color: var(--gold); }

.contact__form {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line);
  color: var(--white); padding: 13px 16px; border-radius: 10px; font: inherit;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.form__status { margin-top: 14px; color: var(--gold); font-weight: 600; text-align: center; }

.map { width: min(var(--container), 92%); margin: 60px auto 0; }
.map iframe {
  width: 100%; height: 360px; border: 1px solid var(--line);
  border-radius: var(--radius); filter: grayscale(.4) invert(.9) hue-rotate(180deg);
}

/* ===== FOOTER ===== */
.footer { background: #050505; padding-top: 56px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__tag { color: var(--muted); font-family: 'Oswald', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-weight: 600; }
.footer__links a:hover { color: var(--gold); }
.footer__bar { margin-top: 40px; border-top: 1px solid var(--line); padding: 22px 0; text-align: center; }
.footer__bar p { color: #6a6a6a; font-size: .85rem; }

/* ===== FAB ===== */
.fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 40;
  background: var(--gold); color: #111; font-weight: 700;
  padding: 12px 20px; border-radius: 100px; box-shadow: var(--shadow);
  display: none; align-items: center; gap: 8px;
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab svg { width: 18px; height: 18px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,179,1,.5); }
  50% { box-shadow: 0 0 0 12px rgba(245,179,1,0); }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(38px) scale(.98);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* section headings wipe up from a clipped mask */
.section__head h2 { overflow: hidden; }
.section__head.reveal h2 span, .section__head.reveal h2 { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards, .cards--plans, .cards--testi, .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 14px; }
  .plan--featured { transform: none; }
  .hero { background-attachment: scroll; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 74px; right: 0; width: 260px; height: calc(100vh - 74px);
    background: var(--ink-2); flex-direction: column; align-items: flex-start;
    padding: 30px; gap: 22px; transform: translateX(100%); transition: transform .3s ease;
    border-left: 1px solid var(--line);
  }
  .nav__links.open { transform: translateX(0); }
  .fab { display: inline-flex; }
}

@media (max-width: 560px) {
  .cards, .cards--plans, .cards--testi, .gallery__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
