/* ── Reset & tokens ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate-950: #020617; --slate-900: #0f172a; --slate-800: #1e293b;
  --slate-700: #334155; --slate-600: #475569; --slate-500: #64748b;
  --slate-400: #94a3b8; --slate-300: #cbd5e1; --slate-200: #e2e8f0;
  --slate-100: #f1f5f9; --slate-50: #f8fafc;
  --coral: #f97316; --coral-dark: #c2410c; --coral-mid: #ea580c;
  --coral-pale: #fff7ed; --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1180px; --radius: 6px; --transition: 0.22s ease;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--slate-800); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── Shared components ───────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--coral); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--slate-900); line-height: 1.2; margin-top: 0.75rem;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1.5rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,0.35); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-slate { border: 1.5px solid var(--slate-300); color: var(--slate-700); }
.btn-slate:hover { border-color: var(--coral); color: var(--coral); }

/* ── Nav ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 50%; background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: white; flex-shrink: 0;
}
.nav-logo-text { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.nav-logo-sub { font-size: 0.65rem; color: var(--slate-400); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { padding: 0.4rem 0.85rem; border-radius: 4px; font-size: 0.82rem; font-weight: 500; color: var(--slate-300); transition: color var(--transition); }
.nav-links a:hover, .nav-links .active > a { color: var(--white); }
.nav-links .active > a { color: var(--coral); }
.nav-cta { background: var(--coral) !important; color: white !important; padding: 0.4rem 1rem !important; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--coral-mid) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--slate-300); border-radius: 2px; }
.nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--slate-950); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1rem 2rem 1.5rem; z-index: 99; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile a { display: block; padding: 0.6rem 0; font-size: 0.9rem; color: var(--slate-300); border-bottom: 1px solid rgba(255,255,255,0.04); transition: color var(--transition); }
.nav-mobile a:hover { color: var(--coral); }

/* ── Page hero ───────────────────────────────────────── */
.page-hero { background: var(--slate-900); padding: 7rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, transparent, var(--coral) 40%, transparent); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.page-hero-grad { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,23,42,0.97) 50%, rgba(15,23,42,0.7)); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px; padding: 0.35rem 0.9rem;
  font-size: 0.75rem; font-weight: 600; color: #fb923c;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; display: inline-flex;
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; max-width: 700px; }
.page-hero h1 em { color: var(--coral); font-style: normal; }
.page-hero p { font-size: 1rem; color: var(--slate-300); max-width: 560px; margin-top: 1rem; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────── */
footer { background: var(--slate-950); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-desc { font-size: 0.85rem; color: var(--slate-500); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate-400); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.55rem; }
.footer-links a { font-size: 0.85rem; color: var(--slate-500); transition: color var(--transition); }
.footer-links a:hover { color: var(--slate-200); }
.footer-bottom { padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--slate-600); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--slate-400); transition: all var(--transition); }
.footer-social a:hover { background: var(--coral); border-color: var(--coral); color: white; }

/* ── Reveal animation ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

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