/* ============================================================
   Lumino Capital Ltd — Design System v2
   European Luxury Boutique VC — Mayfair Aesthetic
   Charcoal #0d0f14 + Gold #c9a366 + Ivory #f5f0e8
   ============================================================ */

:root {
  --charcoal:       #0d0f14;
  --charcoal-deep:  #08090d;
  --charcoal-mid:   #131620;
  --charcoal-light: #1a1e2c;
  --gold:           #c9a366;
  --gold-light:     #dbbf89;
  --gold-pale:      rgba(201, 163, 102, 0.10);
  --gold-border:    rgba(201, 163, 102, 0.18);
  --ivory:          #f5f0e8;
  --ivory-dim:      rgba(245, 240, 232, 0.65);
  --ivory-faint:    rgba(245, 240, 232, 0.35);
  --white:          #ffffff;
}

/* === RESET / GLOBAL === */
*, *::before, *::after { box-sizing: border-box; }

body {
  background-color: var(--charcoal);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0; padding: 0;
}

/* === CONTAINER === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5em;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ivory);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ivory-dim);
  line-height: 1.85;
  margin: 0 0 1em;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* === NAV (fixed, logo first) === */
nav#nav,
#nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 2.5em !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  width: 100% !important;
  height: 4em !important;
  z-index: 99999 !important;
  background-color: var(--charcoal) !important;
  border-bottom: 1px solid rgba(201, 163, 102, 0.2) !important;
  box-sizing: border-box !important;
}
#nav #logo,
nav#nav div#logo,
nav#nav #logo {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  order: 1 !important;
  margin: 0 !important; padding: 0 !important;
  width: auto !important;
  position: static !important;
  text-align: left !important;
}
#nav #logo img,
nav#nav div#logo img,
nav#nav #logo img {
  height: 34px !important;
  width: auto !important;
  display: block !important;
}
#nav #logo h1 { display: none !important; }

nav#nav > ul,
#nav > ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  order: 2 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
nav#nav > ul > li,
#nav > ul > li {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  float: none !important;
}
nav#nav > ul > li > a,
nav#nav > ul > li > span,
#nav > ul > li > a,
#nav > ul > li > span {
  display: flex !important;
  align-items: center !important;
  height: 4em !important;
  padding: 0 0.95em !important;
  color: var(--ivory-dim) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 0.7em !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  transition: color 0.2s !important;
  background: transparent !important;
}
nav#nav > ul > li > a:hover,
nav#nav > ul > li.current > a,
#nav > ul > li > a:hover,
#nav > ul > li.current > a {
  color: var(--gold) !important;
  background: transparent !important;
}
/* Contact CTA button in nav */
nav#nav > ul > li:last-child > a,
#nav > ul > li:last-child > a {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  padding: 0.5em 1.2em !important;
  height: auto !important;
  margin-left: 0.8em !important;
  letter-spacing: 0.12em !important;
  font-size: 0.68em !important;
}
nav#nav > ul > li:last-child > a:hover,
#nav > ul > li:last-child > a:hover {
  background: var(--gold-light) !important;
  color: var(--charcoal) !important;
}
@media screen and (max-width: 980px) {
  nav#nav > ul,
  #nav > ul { display: none !important; }
}

/* === PAGE WRAPPER === */
#page-wrapper {
  padding-top: 4em !important;
  background: var(--charcoal);
}

/* === OVERLINE / LABEL === */
.overline {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

/* === GOLD RULES (dividers) === */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 1.4em 0;
}
.gold-rule-center { margin: 1.4em auto; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76em;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1em 2.8em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal) !important;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76em;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.92em 2.6em;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: rgba(201, 163, 102, 0.1);
  color: var(--gold-light) !important;
}
.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76em;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1em 2.8em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover {
  background: var(--charcoal-light);
  color: var(--gold) !important;
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* === HERO (full-height, charcoal) === */
.hero-section {
  background: var(--charcoal);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8em 2em 5em;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 38%, rgba(201, 163, 102, 0.07) 0%, transparent 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 102, 0.32);
  padding: 0.5em 1.6em;
  margin-bottom: 2.4em;
}
.hero-section h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.8em;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 0.4em;
  letter-spacing: 0.5px;
}
.hero-gold-line {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8em;
  display: block;
}
.hero-section p.lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05em;
  color: var(--ivory-dim);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 2.8em;
  font-weight: 300;
  letter-spacing: 0.2px;
}
.hero-cta {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  flex-wrap: wrap;
}

/* === APPROACH SECTION (2-col: stats left, text right) === */
.approach-section {
  background: var(--charcoal-mid);
  padding: 6em 0;
  border-top: 1px solid rgba(201, 163, 102, 0.1);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5em;
  align-items: center;
}
.approach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5em 2em;
}
.big-stat .big-number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.4em;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.12em;
  letter-spacing: -1px;
}
.big-stat .stat-label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.approach-text h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.9em;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin: 0 0 0.3em;
}
.approach-text p {
  font-size: 0.91em;
  color: var(--ivory-dim);
  line-height: 1.9;
  margin-bottom: 1.1em;
}

/* === INSIGHTS SECTION (editorial cards) === */
.insights-section {
  background: var(--charcoal);
  padding: 6em 0;
  border-top: 1px solid rgba(201, 163, 102, 0.1);
}
.section-head {
  margin-bottom: 3em;
}
.section-head h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2em;
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 0.2em;
}
.section-head.centered { text-align: center; }
.section-head.centered .gold-rule { margin: 1em auto 0; }
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-top: 0;
}
.editorial-card {
  background: var(--charcoal-light);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.2s;
}
.editorial-card:hover {
  border-color: rgba(201, 163, 102, 0.4);
  transform: translateY(-3px);
}
.editorial-card .card-image { overflow: hidden; }
.editorial-card .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.editorial-card:hover .card-image img { transform: scale(1.03); }
.editorial-card .card-body {
  padding: 1.75em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gold-tag {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 102, 0.28);
  padding: 0.25em 0.7em;
  margin-bottom: 0.85em;
}
.editorial-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.03em;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.4;
  margin: 0 0 0.6em;
  flex: 1;
}
.editorial-card h3 a { color: var(--ivory); text-decoration: none; transition: color 0.2s; }
.editorial-card h3 a:hover { color: var(--gold); }
.editorial-card .meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  color: var(--ivory-faint);
  margin-bottom: 0.7em;
}
.editorial-card p.excerpt {
  font-size: 0.85em;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.read-more-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 163, 102, 0.28);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.read-more-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* === PORTFOLIO SECTION (minimal list) === */
.portfolio-section {
  background: var(--charcoal-mid);
  padding: 6em 0;
  border-top: 1px solid rgba(201, 163, 102, 0.1);
}
.portfolio-list { margin-top: 2.5em; }
.portfolio-row {
  display: grid;
  grid-template-columns: 120px 1fr 280px;
  gap: 2em;
  align-items: baseline;
  padding: 1.6em 0;
  border-bottom: 1px solid rgba(201, 163, 102, 0.1);
  transition: border-bottom-color 0.2s;
}
.portfolio-row:first-child {
  border-top: 1px solid rgba(201, 163, 102, 0.1);
}
.portfolio-row:hover {
  border-bottom-color: rgba(201, 163, 102, 0.3);
}
.portfolio-row .sector {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-row .co-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15em;
  font-weight: 700;
  color: var(--ivory);
}
.portfolio-row .co-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84em;
  color: var(--ivory-dim);
  line-height: 1.6;
  text-align: right;
}

/* === CTA SECTION (gold gradient strip) === */
.cta-section {
  background: linear-gradient(135deg, #b8933c 0%, var(--gold) 45%, #c9a050 100%);
  padding: 5em 2em;
  text-align: center;
}
.cta-section .overline { color: rgba(13, 15, 20, 0.65); }
.cta-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2em;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.55em;
}
.cta-section p {
  color: rgba(13, 15, 20, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5em;
  font-size: 0.97em;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(201, 163, 102, 0.15);
  padding: 4.5em 0 2em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3em;
  margin-bottom: 3em;
}
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1.2em;
  display: block;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.83em;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.4);
  max-width: 270px;
  margin: 0;
}
.footer-col h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6em; }
.footer-col ul li a,
.footer-col ul li span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84em;
  color: rgba(245, 240, 232, 0.42);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201, 163, 102, 0.1);
  padding-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.footer-bottom p,
.footer-bottom a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.77em;
  color: rgba(245, 240, 232, 0.28);
  text-decoration: none;
  margin: 0;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-legal-links { display: flex; gap: 1.5em; }

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-header {
  background: var(--charcoal-mid);
  padding: 5.5em 2em 3.5em;
  text-align: center;
  border-bottom: 1px solid rgba(201, 163, 102, 0.15);
}
.page-header .overline {
  font-size: 0.68em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9em;
}
.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.8em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.5em;
  line-height: 1.15;
}
.page-header p {
  color: var(--ivory-dim);
  font-size: 1em;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-section { padding: 5em 0; }
.page-section.dark { background: var(--charcoal); }
.page-section.mid  { background: var(--charcoal-mid); }
.page-section.light-section { background: var(--charcoal-light); }

/* Section title (general) */
.section-title { text-align: center; margin-bottom: 3em; }
.section-title .overline {
  display: block;
  font-size: 0.68em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}
.section-title h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.1em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.4em;
}
.section-title p {
  color: var(--ivory-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.2em 0;
  display: block;
}

/* Focus cards (inner pages) */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
}
.focus-card {
  background: var(--charcoal-light);
  border: 1px solid var(--gold-border);
  padding: 2.5em 2em;
  transition: border-color 0.3s, transform 0.2s;
}
.focus-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.focus-card .icon-wrap {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 163, 102, 0.24);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4em;
  font-size: 1.3em;
  color: var(--gold);
}
.focus-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.6em;
}
.focus-card p {
  font-size: 0.88em;
  color: var(--ivory-dim);
  line-height: 1.75;
  margin: 0;
}

/* Portfolio cards (portfolio page) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}
.portfolio-card {
  background: var(--charcoal-light);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.portfolio-card:hover {
  border-color: rgba(201, 163, 102, 0.45);
  transform: translateY(-2px);
}
.portfolio-card .card-body { padding: 2em; }
.portfolio-card .sector-tag {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 102, 0.28);
  padding: 0.3em 0.85em;
  margin-bottom: 1em;
}
.portfolio-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.5em;
}
.portfolio-card p {
  font-size: 0.87em;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin-bottom: 1em;
}
.portfolio-card .stage-badge {
  font-size: 0.73em;
  color: var(--ivory-faint);
  letter-spacing: 1px;
}

/* Stats row (general) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5em;
  text-align: center;
}
.stat-item .number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.8em;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2em;
}
.stat-item .label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5em;
}
.team-card { text-align: center; }
.team-card img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 163, 102, 0.35);
  margin-bottom: 1.2em;
}
.team-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.25em;
}
.team-card .title,
.team-card .title-role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8em;
  display: block;
}
.team-card p {
  font-size: 0.86em;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* Insights grid (inner pages) */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}
.insight-card {
  background: var(--charcoal-light);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.2s;
}
.insight-card:hover {
  border-color: rgba(201, 163, 102, 0.4);
  transform: translateY(-3px);
}
.insight-card img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
}
.insight-card .card-body {
  padding: 1.8em; flex: 1;
  display: flex; flex-direction: column;
}
.insight-card .category {
  font-size: 0.67em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7em;
  display: block;
}
.insight-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05em;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.4;
  margin: 0 0 0.6em;
  flex: 1;
}
.insight-card h3 a { color: var(--ivory); text-decoration: none; transition: color 0.2s; }
.insight-card h3 a:hover { color: var(--gold); }
.insight-card .meta {
  font-size: 0.75em;
  color: var(--ivory-faint);
  margin-bottom: 0.7em;
}
.insight-card p.excerpt {
  font-size: 0.85em;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.read-more {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 163, 102, 0.28);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s;
}
.read-more:hover { color: var(--gold-light); }

/* About page */
.about-hero {
  background: var(--charcoal-mid);
  padding: 6em 2em 4em;
  text-align: center;
}
.about-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.8em;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.6em;
}
.about-hero p {
  color: var(--ivory-dim);
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.value-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
}
.value-list li {
  padding: 2em;
  background: var(--charcoal-light);
  border-left: 2px solid var(--gold);
}
.value-list li h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05em;
  color: var(--ivory);
  margin-bottom: 0.5em;
}
.value-list li p {
  font-size: 0.87em;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin: 0;
}

/* Article pages */
.article-header {
  background: var(--charcoal-mid);
  padding: 5em 2em 3em;
  text-align: center;
  border-bottom: 1px solid rgba(201, 163, 102, 0.15);
}
.article-header .category {
  font-size: 0.7em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
  display: block;
}
.article-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--ivory);
  max-width: 800px;
  margin: 0 auto 0.8em;
  line-height: 1.25;
}
.article-header .meta {
  font-size: 0.85em;
  color: var(--ivory-faint);
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5em 2em;
}
.article-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--ivory);
  margin: 2em 0 0.7em;
  border-left: 3px solid var(--gold);
  padding-left: 0.8em;
}
.article-content h3 {
  font-size: 1.2em;
  color: var(--ivory);
  margin: 1.5em 0 0.5em;
}
.article-content p {
  font-size: 1em;
  color: var(--ivory-dim);
  line-height: 1.9;
  margin-bottom: 1.4em;
}
.article-content ul,
.article-content ol {
  color: var(--ivory-dim);
  line-height: 1.9;
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.article-content img.featured {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 2.5em;
  border: 1px solid rgba(201, 163, 102, 0.14);
}
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 0;
  border-top: 1px solid rgba(201, 163, 102, 0.15);
  margin-top: 3em;
  font-size: 0.85em;
}
.article-nav a { color: var(--gold); text-decoration: none; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: start;
}
.contact-info h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25em;
  color: var(--ivory);
  margin-bottom: 0.6em;
}
.contact-info p { font-size: 0.9em; color: var(--ivory-dim); line-height: 1.8; }
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 1em; margin-bottom: 1.4em; font-size: 0.9em;
}
.contact-detail .icon { color: var(--gold); font-size: 1em; margin-top: 2px; }
.contact-detail span { color: var(--ivory-dim); line-height: 1.6; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--charcoal-light);
  border: 1px solid rgba(201, 163, 102, 0.18);
  color: var(--ivory);
  padding: 0.85em 1.1em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  margin-bottom: 1.2em;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245, 240, 232, 0.22); }

/* Legal pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4em 2em;
  color: var(--ivory-dim);
  font-size: 0.95em;
  line-height: 1.85;
}
.legal-content h1 {
  font-family: Georgia, serif;
  font-size: 2.2em;
  color: var(--ivory);
  margin-bottom: 0.4em;
}
.legal-content .last-updated {
  font-size: 0.82em;
  color: var(--ivory-faint);
  margin-bottom: 3em;
}
.legal-content h2 {
  font-family: Georgia, serif;
  font-size: 1.3em;
  color: var(--ivory);
  margin: 2.5em 0 0.7em;
  border-bottom: 1px solid rgba(201, 163, 102, 0.14);
  padding-bottom: 0.4em;
}
.legal-content h3 {
  font-family: Georgia, serif;
  font-size: 1.1em;
  color: var(--ivory);
  margin: 1.8em 0 0.5em;
}
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { color: var(--gold-light); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0 2em; font-size: 0.9em; }
.legal-content th {
  background: var(--charcoal-light);
  color: var(--gold);
  font-weight: 600;
  padding: 0.8em 1em;
  border: 1px solid rgba(201, 163, 102, 0.14);
}
.legal-content td {
  padding: 0.75em 1em;
  border: 1px solid rgba(201, 163, 102, 0.09);
  vertical-align: top;
  color: var(--ivory-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .approach-grid { grid-template-columns: 1fr; gap: 3em; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.5em; }
  .editorial-grid { grid-template-columns: 1fr; }
  .portfolio-row { grid-template-columns: 1fr; gap: 0.4em; }
  .portfolio-row .co-desc { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .focus-grid, .portfolio-grid, .insights-grid { grid-template-columns: 1fr; }
  .approach-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-section h1 { font-size: 2em; }
  .approach-stats { grid-template-columns: 1fr 1fr; }
  .big-stat .big-number { font-size: 2.6em; }
}
