/* cecchin.co · stylesheet — shared by the legal pages; matches the landing's
   abyss/travertine/gilt night theme so /privacy and /terms feel like one site. */

:root {
  --abyss: #050D18;
  --panel: #0A1826;
  --travertine: #E8E0D0;
  --mist: rgba(232, 224, 208, .72);
  --faint: rgba(232, 224, 208, .42);
  --gilt: #C8A24B;
  --gilt-soft: rgba(200, 162, 75, .45);
  --rule: rgba(232, 224, 208, .16);
  --display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --body-font: 'Schibsted Grotesk', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: var(--abyss);
  color: var(--travertine);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gilt); color: var(--abyss); }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  background: transparent;
}

.site-nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--travertine);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--gilt);
}

/* ── Hero (index page — legacy selectors kept for safety) ───────────────── */

.hero { padding: 72px 0 56px; }

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gilt);
  font-weight: 500;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: .06em;
}

.lead {
  font-size: 18px;
  color: var(--mist);
  margin-bottom: 30px;
  line-height: 1.65;
  max-width: 620px;
}

.cta { font-family: var(--mono); font-size: 13px; color: var(--faint); }

.cta a {
  color: var(--gilt);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gilt-soft);
}

.cta a:hover { color: var(--travertine); border-bottom-color: var(--travertine); }

/* ── What we do section ─────────────────────────────────────────────────── */

.what-we-do {
  background: var(--panel);
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.what-we-do h2 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gilt);
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--abyss);
  border: 1px solid var(--rule);
  padding: 26px 24px;
}

.card h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--travertine);
  margin-bottom: 10px;
}

.card p { font-size: 14.5px; color: var(--mist); line-height: 1.6; }

/* ── Legal pages (privacy + terms) ──────────────────────────────────────── */

.legal { padding: 56px 0 80px; }

.legal h1 {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 500;
  letter-spacing: .07em;
  margin-bottom: 8px;
}

.legal .effective {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 40px;
}

.legal section { margin-bottom: 32px; }

.legal h2 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--travertine);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.legal p { margin-bottom: 12px; color: var(--mist); }

.legal ul { margin-left: 24px; margin-bottom: 14px; color: var(--mist); }

.legal li { margin-bottom: 8px; line-height: 1.65; }

.legal a {
  color: var(--gilt);
  text-decoration: none;
  border-bottom: 1px solid var(--gilt-soft);
}

.legal a:hover { color: var(--travertine); border-bottom-color: var(--travertine); }

.contact-block {
  background: var(--panel);
  border-left: 2px solid var(--gilt);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 8px;
  color: var(--mist);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  background: transparent;
  color: var(--mist);
  padding: 36px 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}

.site-footer p {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--mist);
}

.site-footer p:last-child { margin-bottom: 0; color: var(--faint); }

.site-footer a { color: var(--travertine); text-decoration: none; margin: 0 4px; }

.site-footer a:hover { color: var(--gilt); }

/* ── Minimal homepage (legacy selectors kept) ───────────────────────────── */

body.minimal {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--abyss);
}

.minimal-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.minimal-inner { text-align: center; max-width: 480px; }

.minimal-inner h1 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--travertine);
  margin-bottom: 12px;
}

.minimal-inner .tagline {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 16px;
  color: var(--mist);
  margin-bottom: 48px;
}

.minimal-inner .contact {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mist);
  margin-bottom: 40px;
}

.minimal-inner .contact a {
  color: var(--gilt);
  text-decoration: none;
  border-bottom: 1px solid var(--gilt-soft);
}

.minimal-inner .contact a:hover { color: var(--travertine); border-bottom-color: var(--travertine); }

.minimal-nav {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--mist);
}

.minimal-nav a { color: var(--mist); text-decoration: none; margin: 0 2px; transition: color .2s; }

.minimal-nav a:hover { color: var(--gilt); }

.minimal-nav .sep { color: var(--rule); margin: 0 6px; }

.minimal-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.minimal-footer p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: .12em;
}
