/* =========================================================
   Vincent's — Custom Fonts & Base Styles
   ========================================================= */

@font-face {
  font-family: 'Vincent-Regular';
  src: url('../fonts/Vincent-Regular.woff2') format('woff2'),
    url('../fonts/Vincent-Regular.woff') format('woff'),
    url('../fonts/Vincent-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vincent-Extras';
  src: url('../fonts/Vincent-Extras.woff2') format('woff2'),
    url('../fonts/Vincent-Extras.woff') format('woff'),
    url('../fonts/Vincent-Extras.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   CSS Custom Properties
   ========================================================= */

:root {
  --color-room: #0f0d0b;
  /* near-black background */
  --color-surface: #1c1814;
  /* slightly lifted dark surface */
  --color-rail: #2a2420;
  /* table rail / card bg */
  --color-felt: #3d5c35;
  /* pool felt green */
  --color-chalk: #f5f0e8;
  /* warm off-white text */
  --color-cream: #e8dfc8;
  /* warm cream */
  --color-gold: #c9a84c;
  /* amber / gold accent */
  --color-muted: #8a7f6e;
  /* muted warm grey */

  --font-display: 'Vincent-Regular', Georgia, serif;
  --font-extras: 'Vincent-Extras', Georgia, serif;
  --font-body: 'Georgia', 'Times New Roman', serif;
}

/* =========================================================
   Reset & Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-room);
  color: var(--color-chalk);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   Typography
   ========================================================= */

.font-display {
  font-family: var(--font-display);
}

.font-extras {
  font-family: var(--font-extras);
}

.display-headline {
  font-family: var(--font-display);
  color: var(--color-chalk);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* =========================================================
   Navigation
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(15, 13, 11, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cream);
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-chalk);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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 */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: rgba(15, 13, 11, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

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

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cream);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--color-gold);
  background-color: rgba(201, 168, 76, 0.05);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-color: var(--color-room);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(61, 92, 53, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(15, 13, 11, 0.95) 0%, transparent 60%);
  z-index: 1;
}

/* Placeholder illustration area */
.hero-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.illustration-placeholder {
  width: 100%;
  max-width: 900px;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================================
   Divider
   ========================================================= */

.gold-rule {
  border: none;
  border-top: 1px solid var(--color-gold);
  opacity: 0.35;
  margin: 0;
}

.felt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.6;
}

/* =========================================================
   Sections
   ========================================================= */

.section-intro {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--color-cream);
  max-width: 68ch;
  line-height: 1.8;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--color-chalk);
  line-height: 1.4;
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 0;
  font-style: italic;
}

.card {
  background-color: var(--color-rail);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  padding: 2rem;
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transition: border-color 0.3s ease;
}

/* Stat callout */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

/* =========================================================
   CTA Button
   ========================================================= */

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-room);
  background-color: var(--color-gold);
  padding: 0.85rem 2.25rem;
  text-decoration: none;
  border: 1px solid var(--color-gold);
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-chalk);
  background-color: transparent;
  padding: 0.85rem 2.25rem;
  text-decoration: none;
  border: 1px solid rgba(245, 240, 232, 0.35);
  transition: border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background-color: var(--color-room);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* =========================================================
   Utilities
   ========================================================= */

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

.text-muted {
  color: var(--color-muted);
}

.text-cream {
  color: var(--color-cream);
}

.text-chalk {
  color: var(--color-chalk);
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-rail {
  background-color: var(--color-rail);
}

/* =========================================================
   Responsive Helpers
   ========================================================= */

@media (min-width: 768px) {
  .hero-content {
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-bottom: 8rem;
  }
}