@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow:wght@200;300;400;500;600&family=Barlow+Condensed:wght@300;400;600;700&display=swap');

:root {
  --gold: #f5c518;
  --gold-dark: #c9a010;
  --gold-pale: #fde98a;
  --black: #080808;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --white: #f8f6f0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; cursor: none; }

/* Cursor — desktop only */
.cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(245,197,24,.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all .15s ease; }
@media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; transition: all .4s;
}
nav.scrolled { background: rgba(8,8,8,.96); backdrop-filter: blur(20px); padding: 10px 48px; border-bottom: 1px solid rgba(245,197,24,.12); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: .04em; line-height: 1.1; }
.nav-logo-sub { font-family: 'Barlow Condensed', sans-serif; font-size: .58rem; font-weight: 300; letter-spacing: .3em; text-transform: uppercase; color: var(--gray-light); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-family: 'Barlow Condensed', sans-serif !important; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important; color: var(--black) !important; background: var(--gold) !important; padding: 10px 22px !important; border-radius: 2px; transition: background .3s !important; }
.nav-cta:hover { background: var(--gold-pale) !important; }
.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 201; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); text-decoration: none; transition: color .3s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── SECTION LABELS / UTILS ── */
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: .66rem; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.gold-line { width: 46px; height: 2px; background: var(--gold); margin: 18px 0; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; padding: 15px 32px; border-radius: 2px; text-decoration: none; border: none; cursor: pointer; transition: all .3s; box-shadow: 0 4px 22px rgba(245,197,24,.25); white-space: nowrap; }
.btn-primary:hover { background: var(--gold-pale); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; padding: 14px 30px; border-radius: 2px; text-decoration: none; border: 1px solid rgba(245,197,24,.45); cursor: pointer; transition: all .3s; white-space: nowrap; }
.btn-outline:hover { border-color: var(--gold); background: rgba(245,197,24,.06); transform: translateY(-2px); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .7s, transform .7s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .7s, transform .7s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(245,197,24,.1); padding: 56px 80px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: .86rem; color: var(--gray); line-height: 1.75; max-width: 240px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: .66rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .86rem; color: var(--gray); text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: .86rem; color: var(--gray); margin-bottom: 7px; line-height: 1.6; }
.footer-contact a { color: var(--gray); text-decoration: none; transition: color .3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid rgba(245,197,24,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; font-size: 13px; transition: all .3s; flex-shrink: 0; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,197,24,.06); }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .76rem; color: var(--gray); }
.footer-bottom span { color: var(--gold); }

/* ── PAGE HERO (shared) ── */
.page-hero { min-height: 45vh; display: flex; align-items: flex-end; padding: 110px 80px 56px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,.45) 0%, rgba(8,8,8,.92) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem,5.5vw,4.5rem); font-weight: 900; color: var(--white); line-height: 1.05; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: .96rem; color: var(--gray-light); margin-top: 14px; max-width: 480px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 14px 28px; }
  nav.scrolled { padding: 10px 28px; }
  .nav-links { gap: 24px; }
  footer { padding: 48px 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 100px 24px 44px; min-height: 38vh; }
  .page-hero h1 { font-size: clamp(1.9rem,7vw,3rem); }
  footer { padding: 44px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .btn-primary, .btn-outline { font-size: .72rem; padding: 13px 24px; }
  .section-label { font-size: .6rem; }
}
@media (max-width: 480px) {
  .nav-logo img { height: 38px; }
  .nav-logo-main { font-size: .9rem; }
}
