/* ============================================================
   AI-INCLUDED.CO.UK — SHARED STYLESHEET
   All pages link to this file. Page-specific styles live
   in a <style> block within each HTML file.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --amber: #C8860A;
  --amber-light: #E8A020;
  --amber-pale: #F0C060;
  --cream: #EDE4D0;
  --smoke: #B0A090;
  --coal: #0D0B08;
  --charcoal: #161410;
  --panel: #1A1714;
  --panel-lighter: #221E1A;
  --border: rgba(200,134,10,0.25);
  --border-bright: rgba(200,134,10,0.5);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  background: var(--coal);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(200,134,10,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200,134,10,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,11,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-line { display: flex; gap: 0; align-items: stretch; }

.nav-logo .l {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.nav-logo .l.hi {
  background: #C00000;
  color: #ffffff;
  font-weight: 700;
}

.logo-julian { padding-left: 28px; }

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── DOMAIN BAR ── */
.domain-bar { width: 100%; background: var(--amber); position: sticky; top: 64px; z-index: 99; }

.domain-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.db-letter {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--coal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 22px;
}

.db-sep {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--coal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 22px;
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px 80px;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--amber);
}

.page-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: var(--smoke);
  max-width: 540px;
  line-height: 1.6;
}

/* ── SECTION UTILITIES ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ── CTA BUTTONS ── */
.cta-cluster { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--coal);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-primary:hover { background: var(--amber-light); }

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--border-bright);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--smoke);
}

.footer-name strong { color: var(--cream); font-weight: 500; }

.footer-links { display: flex; gap: 28px; }

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-inner, .page, footer { padding-left: 28px; padding-right: 28px; }
  .domain-inner { padding: 0 28px; }
  .nav-links { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}