/* =========================================================
   ONE ADC Industrial Park Developers - Design System
   Modern corporate. Deep navy + warm gold accents.
   ========================================================= */

:root {
  --navy-900: #061735;
  --navy-800: #0B2545;
  --navy-700: #133564;
  --navy-100: #E8EDF6;
  --gold-500: #a78135;
  --gold-600: #8a6929;
  --ink-900: #0F1626;
  --ink-700: #2A3346;
  --ink-500: #5A6479;
  --ink-300: #9AA3B5;
  --line: #E4E7EE;
  --line-soft: #EFF1F6;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FC;
  --bg-dark: #0B2545;
  --success: #1F8A5A;
  --shadow-sm: 0 1px 2px rgba(15, 22, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 22, 38, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 22, 38, 0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .75rem;
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--ink-700); line-height: 1.65; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--navy-800); color: #fff; }
.btn-primary:hover { background: var(--navy-900); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-600); color: #fff; transform: translateY(-1px); }
.btn-outline { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-size: .68rem; font-weight: 500; color: var(--ink-500); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .94rem;
  padding: 10px 14px;
  border-radius: 6px;
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--navy-900);
  background: var(--bg-alt);
}
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after {
  content: "▾";
  margin-left: 4px;
  font-size: .65em;
  opacity: .6;
}
.subnav {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  list-style: none;
}
.nav-links .has-sub:hover .subnav,
.nav-links .has-sub:focus-within .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: .92rem;
}
.subnav li a:hover { background: var(--bg-alt); }

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: .25s ease;
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    gap: 2px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .nav.is-open .nav-links {
    transform: translateY(0); opacity: 1; visibility: visible;
  }
  .subnav {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1; visibility: visible; transform: none;
    padding: 0 0 0 12px;
    border-left: 2px solid var(--line);
    margin: 4px 0 8px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 48px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(200,167,91,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(19,53,100,.12), transparent 60%),
    linear-gradient(180deg, #0B2545 0%, #061735 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero h1 span { color: var(--gold-500); }
.hero p.lead { color: rgba(255,255,255,.85); max-width: 60ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.75rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero { padding: 80px 0 72px; }
  .hero-grid { gap: 56px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; opacity: .9; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kpi { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.kpi-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold-500); line-height: 1; letter-spacing: -.02em; }
.kpi-label { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 6px; }

/* ---------- SECTIONS ---------- */
section { padding: 56px 0; }
@media (min-width: 760px) { section { padding: 72px 0; } }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-900); color: rgba(255,255,255,.85); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-500); }

.section-head { max-width: 760px; margin-bottom: 36px; }
@media (min-width: 760px) { .section-head { margin-bottom: 44px; } }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lead { margin-top: .25em; }

/* ---------- GRIDS / CARDS ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .25s ease;
}
@media (min-width: 760px) { .card { padding: 26px; } }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(11,37,69,.18); }
.card h3 { margin-bottom: .5rem; }
.card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy-100);
  color: var(--navy-800);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.feature-card {
  border-left: 3px solid var(--gold-500);
  padding-left: 20px;
}

/* Project cards */
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card-img {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(11,37,69,.85), rgba(6,23,53,.65)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px);
  background-color: var(--navy-800);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
}
.project-card-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
}
.project-card-img .place {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-card-body .meta { color: var(--ink-500); font-size: .85rem; margin-bottom: 8px; }
.project-card-body h3 { margin-bottom: 12px; }
.project-card-body p { font-size: .95rem; flex: 1; }
.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.project-stats > div {
  font-size: .78rem;
  color: var(--ink-500);
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
}
.project-stats strong {
  display: block;
  color: var(--ink-900);
  font-size: .98rem;
  font-family: var(--font-display);
  white-space: nowrap;        /* keeps "₹200 Cr" together */
  margin-bottom: 2px;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.spec-table th {
  background: var(--bg-alt);
  color: var(--ink-900);
  font-weight: 600;
  width: 40%;
}
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: none; }

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.stat-band > div {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-band > div:last-child { border-right: none; }
.stat-band .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-band .lbl { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 8px; }
@media (max-width: 900px) { .stat-band { grid-template-columns: repeat(2, 1fr); } .stat-band > div:nth-child(2) { border-right: none; } }
@media (max-width: 560px) { .stat-band { grid-template-columns: 1fr; } .stat-band > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); } }

/* Bullet list with gold check */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .98rem;
  color: var(--ink-700);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: .25em; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; }
@media (max-width: 760px) { .cta-banner { grid-template-columns: 1fr; padding: 28px; text-align: left; gap: 20px; } }

/* Two-column inner sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }

/* Distance / sector pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.pill-list li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink-700);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 500;
}

/* Breadcrumbs */
.crumbs {
  background: var(--bg-alt);
  padding: 14px 0;
  font-size: .85rem;
  color: var(--ink-500);
  border-bottom: 1px solid var(--line-soft);
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--navy-800); }
.crumbs .sep { margin: 0 8px; opacity: .6; }

/* Page header for inner pages */
.page-header {
  background: linear-gradient(180deg, #0B2545 0%, #061735 100%);
  color: #fff;
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
.page-header .container { position: relative; }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,.85); max-width: 60ch; font-size: 1.1rem; }
.page-header .eyebrow { color: var(--gold-500); }

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink-900);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(19,53,100,.12);
}
.field textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  background: #061735;
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--gold-500); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: rgba(255,255,255,.55); }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }

/* Accessibility */
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: #fff;
  padding: 10px 14px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Case-study teaser action buttons */
.case-study-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 760px) {
  .case-study-cta-actions { justify-content: flex-end; }
}
@media (max-width: 760px) {
  .case-study-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Brand / logo */
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
}
.site-footer .brand-logo {
  height: 64px;
}

/* Founder photo */
.founder-portrait {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: block;
  margin-bottom: 20px;
}

/* Download button row */
.download-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-900);
  transition: all .15s ease;
}
.btn-download:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
  transform: translateY(-1px);
}
.btn-download .meta { color: var(--ink-500); font-weight: 400; font-size: .82rem; margin-left: 4px; }
.btn-download:hover .meta { color: rgba(255,255,255,.7); }

/* Embedded map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.map-wrap iframe { display: block; width: 100%; }

/* Dark-section overrides for shared components that default to light */
.section-dark .checklist li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.section-dark .spec-table {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.section-dark .spec-table th {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.section-dark .spec-table td {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  max-width: 760px;
  margin: 0 auto;
  font-size: .92rem;
  color: var(--ink-700);
  animation: cb-in .3s ease;
}
@keyframes cb-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
#cookie-banner .cb-inner { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
#cookie-banner .cb-text { flex: 1; min-width: 220px; line-height: 1.5; }
#cookie-banner .cb-text strong { color: var(--ink-900); }
#cookie-banner .cb-text a { text-decoration: underline; }
#cookie-banner .cb-actions { display: flex; gap: 8px; flex-shrink: 0; }
#cookie-banner .cb-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  transition: all .15s ease;
}
#cookie-banner .cb-primary { background: var(--navy-800); color: #fff; }
#cookie-banner .cb-primary:hover { background: var(--navy-900); }
#cookie-banner .cb-secondary { background: transparent; color: var(--ink-700); border-color: var(--line); }
#cookie-banner .cb-secondary:hover { background: var(--bg-alt); color: var(--ink-900); }
@media (max-width: 560px) {
  #cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 16px; }
  #cookie-banner .cb-actions { width: 100%; }
  #cookie-banner .cb-actions .cb-btn { flex: 1; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-banner, #cookie-banner { display: none; }
  body { color: #000; }
}
