/* FALQORA GATE VENTURES — SHARED STYLESHEET */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --stone-bg:     #F0EDE8;
  --stone-light:  #E8E4DE;
  --stone-mid:    #D4CFC9;
  --stone-border: #C5BFB8;
  --sand:         #8C7B6B;
  --sand-light:   #B0A398;
  --charcoal:     #1C1A17;
  --oak:          #3D3630;
  --ink:          #4A4540;
  --gold:         #A8916A;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--stone-bg);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--stone-bg);
  border-bottom: 1px solid var(--stone-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--charcoal);
  color: #F0EDE8 !important;
  padding: 11px 22px !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--oak) !important; color: #F0EDE8 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--stone-bg);
  border-top: 1px solid var(--stone-border);
  flex-direction: column;
  padding: 36px 24px;
  gap: 0;
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone-border);
  display: block;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.mobile-cta {
  margin-top: 24px;
  background: var(--charcoal);
  color: #F0EDE8;
  padding: 16px 24px;
  border: none;
  text-align: center;
  letter-spacing: 0.12em;
}

/* ── SHARED LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; }
section { padding: 110px 60px; }

.label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.display-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--oak);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.display-title em { font-style: italic; font-weight: 300; }
.body-text { font-size: 16px; line-height: 1.85; color: var(--ink); }

.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: #F0EDE8;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--oak); }

.btn-outline {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-border);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--charcoal); border-color: var(--gold); }

/* ── CLOSING CTA ── */
.gate-close {
  background: var(--oak);
  padding: 110px 60px;
  text-align: center;
}
.gate-close-rule {
  width: 1px;
  height: 56px;
  background: #5F5550;
  margin: 0 auto 48px;
}
.gate-close-title {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: #F0EDE8;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.gate-close-body {
  font-size: 15px;
  line-height: 1.85;
  color: #B0A398;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-light {
  display: inline-block;
  background: #F0EDE8;
  color: var(--oak);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-light:hover { background: #D4CFC9; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 72px 60px 44px;
  color: #C5BFB8;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid #3D3630;
}
.footer-brand-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.footer-brand-svg { width: 32px; height: 32px; flex-shrink: 0; }
.footer-brand {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: #F0EDE8;
  line-height: 1.3;
}
.footer-tagline { font-size: 13px; line-height: 1.75; color: #8C7B6B; max-width: 280px; }
.footer-address { font-size: 13px; line-height: 1.75; color: #8C7B6B; margin-top: 10px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { font-size: 14px; color: #A09590; text-decoration: none; transition: color 0.2s; word-break: break-word; }
.footer-col-links a:hover { color: #F0EDE8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: #5F5550; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: #5F5550; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #A09590; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 90px 60px 80px;
  border-bottom: 1px solid var(--stone-border);
}
.page-hero-inner { max-width: 1120px; margin: 0 auto; }
.page-hero-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--oak);
  letter-spacing: -0.02em;
  max-width: 800px;
}
.page-hero-title em { font-style: italic; }
.page-hero-body {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 580px;
}

/* ── TABLET (≤960px) ── */
@media (max-width: 960px) {
  nav { padding: 0 28px; height: 64px; }
  section { padding: 72px 28px; }
  .page-hero { padding: 60px 28px 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 52px 28px 36px; }
  .gate-close { padding: 80px 28px; }
  .page-hero-body { font-size: 16px; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-text { font-size: 15px; }
  .mobile-menu { top: 60px; inset: 60px 0 0 0; }

  section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px 44px; }
  .page-hero-body { font-size: 15px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  footer { padding: 44px 20px 32px; }
  .gate-close { padding: 64px 20px; }

  .display-title { font-size: clamp(32px, 8vw, 52px); }
  .btn-dark, .btn-light { width: 100%; text-align: center; padding: 16px 24px; }
}
