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

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

:root {
  --black:       #0C0C0C;
  --charcoal:    #141414;
  --charcoal2:   #1C1C1C;
  --charcoal3:   #242424;
  --crimson:     #C41E1E;
  --crimson-d:   #9E1515;
  --gold:        #B8973A;
  --gold-light:  #D4AF5A;
  --cream:       #EDE8DF;
  --cream2:      #C8C0B0;
  --white:       #FFFFFF;
  --gray:        #6B6B6B;
  --gray2:       #444444;

  --font-display: 'Cormorant Garamond', serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 80px;
  --max-w: 1280px;
  --pad-x: clamp(24px, 6vw, 96px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(184,151,58,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cream);
  line-height: 1.2;
  white-space: nowrap;
}

.footer-brand-name {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream2);
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--crimson) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 3px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--crimson-d) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(12,12,12,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,151,58,0.15);
  padding: 24px var(--pad-x) 32px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream2);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold-light); }

/* ─── GOLD RULE ─── */
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 24px;
}
.gold-rule.left { margin: 0 0 24px; }

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--crimson-d); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 31px;
  border: 1px solid rgba(184,151,58,0.5);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-1px); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── FADE IN ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,151,58,0.15);
  padding: 80px var(--pad-x) 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img { height: 52px; margin-bottom: 12px; }

.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }

.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; list-style: none; }
.footer-social-icons li { margin: 0; }
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--cream2);
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,151,58,0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom a { color: var(--gray); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cream); }

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0C0C0C 0%, #1a1008 60%, #0C0C0C 100%);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.2), rgba(12,12,12,0.8));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--cream2);
  max-width: 520px;
}

/* ─── CARD ─── */
.card {
  background: var(--charcoal2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(184,151,58,0.3); transform: translateY(-3px); }

/* ─── FORM ELEMENTS ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: rgba(255,255,255,0.07); }

/* ─── UTIL ─── */
.text-gold { color: var(--gold-light); }
.text-crimson { color: var(--crimson); }
.text-cream { color: var(--cream); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: 100px var(--pad-x); }
.section-sm { padding: 60px var(--pad-x); }

h1,h2,h3 { font-family: var(--font-display); font-weight: 300; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.display-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 72px var(--pad-x); }
  .nav-logo-text { font-size: 12px; }
}
