@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --black:        #070707;
  --black-2:      #0f0f0f;
  --black-3:      #181818;
  --black-4:      #222222;
  --yellow:       #F5C518;
  --yellow-light: #FFD740;
  --yellow-pale:  rgba(245,197,24,0.13);
  --yellow-ghost: rgba(245,197,24,0.05);
  --white:        #F4EFE6;
  --grey:         #7a7a72;
  --grey-light:   #aaa9a0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       0px;
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
select { font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(245,197,24,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 18px; height: 18px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 64px; height: 64px; border-color: var(--yellow); }

/* ─── Navbar ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,197,24,.07);
  transition: padding var(--transition);
}
nav.scrolled { padding: 14px 64px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 5px;
  color: var(--white); cursor: pointer;
}
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--grey); position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600;
  color: var(--black); background: var(--yellow);
  padding: 11px 26px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--yellow-light); transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--white); display: block; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(7,7,7,.97);
  z-index: 999;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 52px; letter-spacing: 5px;
  color: var(--white);
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mob-close {
  position: absolute; top: 28px; right: 32px;
  font-size: 30px; color: var(--grey);
  cursor: pointer; background: none; border: none;
  transition: color .3s;
}
.mob-close:hover { color: var(--yellow); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  padding: 17px 40px;
  background: var(--yellow); color: var(--black);
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-101%);
  transition: transform .4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,197,24,.28); }

.btn-outline {
  display: inline-block;
  font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  padding: 17px 40px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(244,239,230,.18);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); cursor: pointer;
  transition: gap var(--transition);
}
.btn-ghost:hover { gap: 18px; }
.btn-ghost::after { content: '→'; }

/* ─── Section Utilities ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--yellow); display: block; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: 3px; line-height: 0.94;
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 19px; font-style: italic;
  color: var(--grey); margin-top: 18px; line-height: 1.7;
}

/* Image placeholder */
.img-ph {
  background: var(--black-3);
  border: 1px dashed rgba(245,197,24,.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--grey);
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
}
.img-ph i { font-size: 32px; opacity: .3; font-style: normal; }

/* Divider */
.yd { width: 44px; height: 2px; background: var(--yellow); margin: 28px 0; }

/* ─── Scroll animations ─── */
.fade-up {
  opacity: 0; transform: translateY(44px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-in.visible { opacity: 1; }
.scale-in { opacity: 0; transform: scale(.96); transition: opacity .7s, transform .7s; }
.scale-in.visible { opacity: 1; transform: none; }

/* ─── Page Hero (shared) ─── */
.page-hero {
  padding: 160px 64px 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(245,197,24,.07);
}
.page-hero-glow {
  position: absolute; top: -140px; right: -140px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.ph-label { margin-bottom: 14px; }
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  letter-spacing: 5px; line-height: .9;
}
.ph-title span { color: var(--yellow); }
.ph-sub {
  font-family: var(--font-serif);
  font-size: 20px; font-style: italic;
  color: var(--grey); margin-top: 22px;
  max-width: 580px; line-height: 1.75;
}

/* ─── CTA Band ─── */
.cta-band {
  padding: 130px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 116px);
  letter-spacing: 4px; line-height: .97;
  position: relative;
}
.cta-band-title span { color: var(--yellow); }
font-size: 14px; {
  font-family: var(--font-serif);
  font-size: 24px; font-style: italic;
  color: var(--grey); max-width: 520px; margin: 24px auto 52px; line-height: 1.75;
}
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ─── Stats Strip ─── */
.stats-strip {
  background: var(--yellow);
  padding: 44px 64px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { text-align: center; border-right: 1px solid rgba(7,7,7,.14); padding: 8px 0; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 56px; letter-spacing: 2px; color: var(--black); line-height: 1; }
.stat-label { font-size: 18px; letter-spacing: 2px; text-transform: uppercase; color: rgba(7,7,7,.5); margin-top: 6px; }

/* ─── Yellow Feature Row ─── */
.feature-badge {
  background: var(--yellow-pale);
  border: 1px solid rgba(245,197,24,.22);
  padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 18px;
  margin-top: 36px;
}
.fb-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.fb-text { font-size: 13.5px; line-height: 1.65; color: var(--yellow); }
.fb-text strong { display: block; font-size: 14.5px; margin-bottom: 3px; letter-spacing: .5px; }

/* ─── Footer ─── */
footer.site-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(245,197,24,.09);
  padding: 80px 64px 40px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
}
.foot-brand-name { font-family: var(--font-display); font-size: 34px; letter-spacing: 5px; margin-bottom: 14px; }
.foot-brand-name span { color: var(--yellow); }
.foot-brand-desc { font-size: 13px; line-height: 1.85; color: var(--grey); max-width: 300px; }
.foot-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 22px; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 13px; }
.foot-links a { font-size: 16px; color: var(--grey); transition: color var(--transition); }
.foot-links a:hover { color: var(--white); }
.foot-bottom {
  padding: 24px 64px;
  border-top: 1px solid rgba(245,197,24,.06);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black-2);
}
.foot-copy { font-size: 12px; color: var(--grey); letter-spacing: .5px; }
.foot-socials { display: flex; gap: 12px; }
.soc-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,197,24,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--grey);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.soc-link:hover { border-color: var(--yellow); color: var(--yellow); background: var(--yellow-pale); }

/* ─── Responsive ─── */
@media(max-width:1100px) {
  nav { padding: 20px 36px; }
  nav.scrolled { padding: 13px 36px; }
  .page-hero { padding: 140px 36px 64px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat-item:nth-child(2) { border-right: none; }
  footer.site-footer { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 36px 32px; }
  .foot-bottom { padding: 20px 36px; }
  .cta-band { padding: 90px 36px; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .ph-title { font-size: clamp(52px, 14vw, 88px); }
  footer.site-footer { grid-template-columns: 1fr; gap: 32px; padding: 52px 24px 24px; }
  .foot-bottom { padding: 18px 24px; flex-direction: column; gap: 14px; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .cta-band { padding: 72px 24px; }
}
