/* ===========================================================
   DISCINTEL — Executive Public Surface
   Shared stylesheet for landing + 7 artifacts
   Aesthetic: dark, board-room, Cormorant Garamond + gold rule
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #000000;
  --ink-2: #11162a;
  --ink-3: #1a2138;
  --paper: #FAF6EE;
  --paper-warm: #F2EBDB;
  --gold: #C8A84B;
  --gold-bright: #E0BD55;
  --gold-soft: rgba(200, 168, 75, 0.18);
  --gold-line: rgba(200, 168, 75, 0.45);
  --slate: #3A4452;
  --slate-2: #5b6678;
  --muted: #8a8a8a;
  --rule: rgba(200, 168, 75, 0.35);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html, body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body { background: var(--ink); }
/* ── LAYOUT ── */
.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 64px 120px;
  position: relative;
}

.page-narrow {
  max-width: 720px;
}

@media (max-width: 680px) {
  .page { padding: 48px 28px 80px; }
  html, body { font-size: 17px; }
}

/* ── TOP BAR ── */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.topbar a:hover { border-bottom-color: var(--gold); }

.topbar .crest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar .crest .mark {
  width: 24px; height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.topbar .crest .mark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.topbar .wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--paper);
  text-transform: uppercase;
}

/* ── COVER / TITLE BLOCK ── */
.cover {
  text-align: center;
  padding: 60px 0 80px;
  position: relative;
}

.cover .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cover h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 18px;
}

.cover h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.cover .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--slate-2);
  margin-bottom: 36px;
  font-weight: 400;
}

.cover .gold-rule {
  width: 80px;
  height: 1.5px;
  background: var(--gold);
  margin: 28px auto;
}

.cover .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 32px;
}

/* ── HEADINGS ── */
h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--paper);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

h2.eyebrow-h2::before {
  content: attr(data-eyebrow);
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  margin: 36px 0 12px;
}

h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 28px 0 10px;
}

/* ── BODY ── */
p {
  margin-bottom: 18px;
  color: var(--paper);
}

p.lead {
  font-size: 22px;
  font-style: italic;
  color: var(--slate-2);
  margin-bottom: 32px;
  line-height: 1.5;
}

strong, b {
  color: var(--gold-bright);
  font-weight: 600;
}

em, i { color: var(--paper); font-style: italic; }

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  transition: border-color 0.2s;
}
a:hover { border-bottom-color: var(--gold); }

ul, ol {
  margin: 18px 0 24px 24px;
  padding-left: 8px;
}

li {
  margin-bottom: 10px;
  color: var(--paper);
  padding-left: 8px;
}

ul li::marker { color: var(--gold); content: '— '; }
ol li::marker { color: var(--gold); font-weight: 600; }

/* ── CALLOUT / PULLQUOTE ── */
.callout {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  margin: 28px 0;
  background: var(--gold-soft);
  font-style: italic;
  font-size: 21px;
  color: var(--paper);
  line-height: 1.5;
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--paper);
  text-align: center;
  margin: 48px 0;
  padding: 0 40px;
  position: relative;
}

.pullquote::before, .pullquote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* ── DIVIDERS ── */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
  gap: 16px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.gold-divider .ornament {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ── CARDS / TILES (for landing + demos) ── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

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

.tile {
  display: block;
  padding: 32px 28px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: all 0.25s ease;
  color: var(--paper);
}

.tile:hover {
  background: var(--ink-3);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.tile .tile-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.tile .tile-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tile .tile-desc {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--slate-2);
  line-height: 1.5;
  font-style: italic;
}

.tile .tile-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold);
  font-size: 18px;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.tile:hover .tile-arrow { opacity: 1; transform: translateX(4px); }

.tile.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border-color: var(--gold-line);
  padding: 40px 36px;
}

.tile.featured .tile-title { font-size: 30px; }
.tile.featured .tile-desc { font-size: 18px; }

/* ── METRIC ROWS (for demos) ── */
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 680px) {
  .metric-row { grid-template-columns: 1fr; }
  .metric-row .metric { border-right: none; border-bottom: 1px solid var(--rule); }
  .metric-row .metric:last-child { border-bottom: none; }
}

.metric {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.metric:last-child { border-right: none; }

.metric .value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.metric .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── DIALOGUE / SCRIPT BLOCKS (for demo scripts) ── */
.scene {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--ink-2);
  border-left: 2px solid var(--gold);
}

.scene .scene-heading {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.scene p { margin-bottom: 12px; }
.scene p:last-child { margin-bottom: 0; }

.dialogue {
  margin: 14px 0;
}

.dialogue .speaker {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.dialogue .line {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--paper);
  line-height: 1.5;
  padding-left: 0;
}

/* ── TWO-COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0;
}

@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; gap: 16px; }
}

.col-card {
  padding: 24px 22px;
  border: 1px solid var(--rule);
  background: var(--ink-2);
}

.col-card h4 { margin-top: 0; }

/* ── FOOTER ── */
.foot {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot .foot-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  text-decoration: none !important;
  border-bottom: none !important;
  margin: 8px 8px 8px 0;
  transition: background 0.2s;
}
.cta:hover { background: var(--gold-bright); }

.cta.ghost {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}
.cta.ghost:hover { background: var(--gold-soft); }

/* ── PRINT ── */
@media print {
  body { background: white; color: var(--ink); }
  .page { max-width: 100%; padding: 0.5in; }
  h1, h2, h3, h4, p, li { color: var(--ink) !important; }
  strong, b { color: var(--gold) !important; }
  .tile { background: white; border: 1px solid #ccc; color: var(--ink); }
  .tile .tile-title, .tile .tile-desc { color: var(--ink); }
  .scene { background: #f9f5e8; color: var(--ink); }
  .scene .dialogue .line { color: var(--ink); }
  .topbar, .foot { display: none; }
  a { color: var(--ink); border-bottom: none; }
}



/* Hero verticals - Insurance, Banking, Reinsurance */
.hero-verticals,
.hero-verticals em,
p.hero-verticals,
p.hero-verticals em {
  font-family: inherit !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #C8A84B !important;
  font-size: clamp(2rem, 5.5vw, 3.25rem) !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
}

