/* ═══════════════════════════════════════════════════
   BookedSeason.co — Design System
   Clean, neutral, typography-driven. No stock images.
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Tokens ───────────────────────────────────────── */
:root {
  --bg:            #111111;
  --bg-alt:        #161616;
  --surface:       #1c1c1c;
  --surface-hover: #242424;
  --border:        #2a2a2a;
  --gold:          #c9a84c;
  --gold-light:    #dfc070;
  --white:         #f5f5f5;
  --muted:         #888888;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:         1100px;
  --nav-h:         64px;
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  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 36px;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  background: var(--bg);
  position: relative;
}
.hero-short { min-height: 50vh; }

.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}
.hero .label { margin-bottom: 20px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 32px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  letter-spacing: 0.6px; text-transform: uppercase;
  border-radius: 3px; cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-light); color: var(--bg); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ── Sections ─────────────────────────────────────── */
.section { padding: 100px 36px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.label {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 700;
  color: var(--white); line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-text {
  font-size: 16px; color: var(--muted); max-width: 580px;
  line-height: 1.75; font-weight: 300;
}
.section-text.centered { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ── Parallax Divider ─────────────────────────────── */
.divider {
  position: relative;
  padding: 80px 36px;
  text-align: center;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.divider-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.divider-line {
  width: 40px; height: 1px;
  background: var(--gold); margin: 0 auto 28px;
}
.divider p {
  font-size: 20px; color: var(--white);
  font-weight: 300; line-height: 1.6;
  font-style: italic;
}

/* ── Service Cards ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 1px; margin-bottom: 16px;
  text-transform: uppercase;
}
.service-card h3 {
  font-size: 17px; font-weight: 600; color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ── Stats ────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}

/* ── Blog Cards ───────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.blog-tag {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 17px; font-weight: 600; color: var(--white);
  margin-bottom: 10px; line-height: 1.4;
}
.blog-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-bottom: 18px;
}
.blog-read-more {
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 16px; font-weight: 600; color: var(--white);
  margin-bottom: 10px; line-height: 1.4;
}
.faq-item p {
  font-size: 14px; color: var(--muted); line-height: 1.75;
}

/* ── Blog Card as Link ────────────────────────────── */
a.blog-card { text-decoration: none; display: block; }
a.blog-card:hover { color: inherit; }

/* ── Article Prose ────────────────────────────────── */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 {
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-top: 48px; margin-bottom: 16px; line-height: 1.3;
}
.article-body h3 {
  font-size: 17px; font-weight: 600; color: var(--white);
  margin-top: 32px; margin-bottom: 10px; line-height: 1.4;
}
.article-body p {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  padding-left: 20px; margin-bottom: 18px;
}
.article-body li {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 8px;
}
.article-body strong { color: var(--white); }
.article-meta {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 32px;
}

/* ── Contact ──────────────────────────────────────── */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 48px;
}
.contact-info h2 {
  font-size: 20px; font-weight: 600; color: var(--white);
  margin-bottom: 24px;
}
.contact-detail { margin-bottom: 24px; }
.contact-detail span {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500;
}
.contact-detail p { color: var(--white); font-size: 15px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; color: var(--white);
  font-family: var(--font); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 40px 36px 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-text { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

/* ── Scroll Reveal ────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.97); backdrop-filter: blur(14px);
    flex-direction: column; justify-content: center; gap: 28px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
