/* ═══════════════════════════════════════════════════════════════════
   BREAD & BUTTER DIGITAL — CORE THEME
   Dark editorial aesthetic · Bebas Neue / DM Serif / DM Sans stack
   ═══════════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS IMPORT ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');


/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand Gold */
  --gold:         #C9A84C;
  --gold-lt:      #E8C96A;
  --gold-dim:     rgba(201, 168, 76, 0.12);
  --gold-line:    rgba(201, 168, 76, 0.22);
  --gold-glow:    rgba(201, 168, 76, 0.06);

  /* Neutrals — dark spectrum */
  --black:        #080808;
  --dark:         #0F0F0F;
  --dark-2:       #141414;
  --dark-3:       #1C1C1C;
  --mid:          #2C2C2C;
  --border:       rgba(255, 255, 255, 0.06);
  --border-lt:    rgba(255, 255, 255, 0.10);

  /* Text */
  --text:         #DDD8CF;
  --text-mid:     #b0aaa2;
  --text-dim:     #7A746A;
  --white:        #F4F0E6;

  /* Accent colors */
  --teal:         #236E8A;
  --teal-lt:      #2D8AAD;
  --green:        #2A7A5A;
  --red:          #B43C3C;
  --red-dim:      rgba(180, 60, 60, 0.18);
  --red-text:     #C87070;
  --amber:        #C98C28;

  /* Social */
  --fb:           #1877F2;
  --ig:           #C13584;
  --li:           #0A66C2;
  --tt:           #000000;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --space-xs:     8px;
  --space-sm:     16px;
  --space-md:     24px;
  --space-lg:     48px;
  --space-xl:     80px;
  --space-2xl:    120px;

  /* Layout */
  --max-width:    1100px;
  --nav-height:   58px;
  --radius:       3px;
  --radius-lg:    6px;

  /* Grid texture opacity */
  --grid-opacity: 0.025;
}


/* ─── RESET / BASE ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ─── GRID TEXTURE OVERLAY ───────────────────────────────────────── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(201, 168, 76, var(--grid-opacity)) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(201, 168, 76, var(--grid-opacity)) 60px
    );
  pointer-events: none;
  z-index: 0;
}


/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */

/* Display — Bebas Neue (hero headlines, section titles) */
.display,
.section-title {
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.display-xl   { font-size: clamp(72px, 11vw, 140px); line-height: 0.85; }
.display-lg   { font-size: clamp(48px, 6vw, 80px); }
.display-md   { font-size: clamp(36px, 4.5vw, 56px); }
.display-sm   { font-size: clamp(28px, 3.5vw, 40px); }

/* Heading — DM Serif Display (subheadings, card titles) */
.heading,
h2, h3 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

h2 { font-size: 24px; }
h3 { font-size: 19px; }

/* Body — DM Sans */
.body-lg  { font-size: 16px; line-height: 1.85; }
.body     { font-size: 15px; line-height: 1.75; }
.body-sm  { font-size: 13.5px; line-height: 1.7; }
.body-xs  { font-size: 12px; line-height: 1.6; }

/* Kicker / Label — uppercase micro-text */
.kicker {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

.label {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Gold highlight text */
.text-gold     { color: var(--gold); }
.text-gold-lt  { color: var(--gold-lt); }
.text-muted    { color: var(--text-dim); }
.text-mid      { color: var(--text-mid); }
.text-white    { color: var(--white); }
.text-teal     { color: var(--teal-lt); }

/* Bold emphasis */
strong, b { color: var(--text); font-weight: 500; }


/* ─── LINKS ──────────────────────────────────────────────────────── */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--gold-lt); }


/* ─── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .container { padding: 0 32px; }
}


/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }


/* ─── SECTIONS ───────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.section-intro {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}


/* ─── COVER / HERO ───────────────────────────────────────────────── */
.cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl) 80px var(--space-2xl);
  overflow: hidden;
}

.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--black) 65%);
  pointer-events: none;
}

.cover > * { position: relative; z-index: 1; }

.cover-kicker {
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cover h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--white);
}

.cover h1 .accent { color: var(--gold); }

.cover-rule {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 44px 0 36px;
}

.cover-meta {
  display: flex;
  gap: 56px;
}

.cover-meta-item .label {
  display: block;
  margin-bottom: 5px;
}

.cover-meta-item span {
  font-size: 14px;
  color: var(--text-mid);
}


/* ─── HORIZONTAL RULE — GOLD ─────────────────────────────────────── */
.rule {
  border: none;
  height: 1px;
  background: var(--gold-line);
  margin: var(--space-lg) 0;
}

.rule-short {
  width: 72px;
  height: 2px;
  background: var(--gold);
  border: none;
}


/* ─── CARDS ──────────────────────────────────────────────────────── */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: var(--gold-line);
}

.card-header {
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-body {
  padding: 28px 32px;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}


/* ─── CARD GRIDS ─────────────────────────────────────────────────── */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

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

@media (max-width: 768px) {
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}


/* ─── CALLOUT / ALERT BLOCKS ─────────────────────────────────────── */
.callout {
  border-left: 2px solid var(--gold);
  background: var(--dark-2);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-md) 0;
}

.callout-label {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.callout p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

.callout p strong { color: var(--text); font-weight: 500; }

/* Callout variants */
.callout--red    { border-left-color: var(--red); }
.callout--red .callout-label { color: var(--red-text); }

.callout--green  { border-left-color: var(--green); }
.callout--green .callout-label { color: var(--green); }

.callout--amber  { border-left-color: var(--amber); }
.callout--amber .callout-label { color: var(--amber); }

.callout--teal   { border-left-color: var(--teal); }
.callout--teal .callout-label { color: var(--teal-lt); }


/* ─── LISTS — GOLD DASH STYLE ────────────────────────────────────── */
.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.65;
}

.dash-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.dash-list li strong { color: var(--text); font-weight: 500; }


/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-lt);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 0;
}

.btn-ghost:hover { color: var(--gold-lt); }

.btn-sm {
  padding: 10px 24px;
  font-size: 10px;
}


/* ─── TABLES ─────────────────────────────────────────────────────── */
.table-wrap {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--dark-3);
}

.table-wrap td {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.table-wrap tr:last-child td { border-bottom: none; }

.table-wrap td strong {
  color: var(--white);
  font-weight: 500;
}

/* Highlight row */
.table-wrap tr.row-gold td {
  background: var(--gold-dim);
  color: var(--gold-lt);
}


/* ─── PRICING BLOCKS ─────────────────────────────────────────────── */
.price-block {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s ease;
}

.price-block:hover { border-color: var(--gold-line); }

.price-block.featured {
  border-color: var(--gold-line);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    var(--dark-2);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.price-amount .unit {
  font-size: 16px;
  color: var(--text-dim);
  margin-left: 4px;
}


/* ─── BADGES / TAGS ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-gold {
  background: var(--gold-dim);
  color: var(--gold);
}

.badge-teal {
  background: rgba(35, 110, 138, 0.15);
  color: var(--teal-lt);
}

.badge-red {
  background: var(--red-dim);
  color: var(--red-text);
}


/* ─── STAT / METRIC BLOCKS ───────────────────────────────────────── */
.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 12px;
}


/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
}


/* ─── SIDE NAV (SCROLL DOTS) ─────────────────────────────────────── */
.side-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
  justify-content: flex-end;
}

.side-nav a:hover { color: var(--gold); }

.side-nav .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  transition: background 0.2s;
}

.side-nav a:hover .dot,
.side-nav a.active .dot {
  background: var(--gold);
}


/* ─── UTILITY CLASSES ────────────────────────────────────────────── */
.mt-xs  { margin-top: var(--space-xs); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }

.mb-xs  { margin-bottom: var(--space-xs); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.gap-sm     { gap: var(--space-sm); }
.gap-md     { gap: var(--space-md); }
.gap-lg     { gap: var(--space-lg); }

.relative   { position: relative; }
.overflow-hidden { overflow: hidden; }


/* ─── TRANSITIONS & ANIMATIONS ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }


/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav      { padding: 0 40px; }
  .cover    { padding: var(--space-lg) 40px var(--space-xl); }
  .section  { padding: var(--space-lg) 0; }
}

@media (max-width: 768px) {
  .nav            { padding: 0 24px; }
  .cover          { padding: var(--space-lg) 24px; }
  .cover-meta     { flex-direction: column; gap: 20px; }
  .card-header    { padding: 18px 20px; }
  .card-body      { padding: 20px; }
  .price-block    { padding: 28px 24px; }
  .side-nav       { display: none; }
}

@media (max-width: 480px) {
  body            { font-size: 14px; }
  .cover h1       { font-size: 48px; }
  .section-title  { font-size: 40px; }
  .price-amount   { font-size: 40px; }
}


/* ═══════════════════════════════════════════════════════════════════
   SITE-SPECIFIC ADDITIONS
   Page templates · Homepage sections · Blog · Footer details
   ═══════════════════════════════════════════════════════════════════ */

/* ─── MOBILE NAV TOGGLE ──────────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dim);
  transition: background 0.2s;
}

.nav-toggle:hover span { background: var(--white); }


/* ─── COVER TAGLINE ──────────────────────────────────────────────── */
.cover-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(15px, 2vw, 20px);
  color: var(--text-mid);
  margin-top: 20px;
  max-width: 560px;
}


/* ─── SERVICES GRID (Homepage) ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.service-card:hover { border-color: var(--gold-line); }

.service-num {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}


/* ─── STATS BAR (Homepage) ───────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

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

.stats-grid .stat {
  padding: 24px;
}


/* ─── CTA BAND (Homepage) ────────────────────────────────────────── */
.cta-band {
  background:
    linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%),
    var(--dark-2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-kicker {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── PAGE CONTENT (About · Services · Contact · 404) ───────────── */
.page-content {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.page-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-content a { color: var(--gold); }
.page-content a:hover { color: var(--gold-lt); }

.page-content ul,
.page-content ol {
  margin: 0 0 20px 24px;
  color: var(--text-mid);
  font-size: 15px;
}

.page-content li { margin-bottom: 8px; line-height: 1.7; }


/* ─── BLOG LISTING ───────────────────────────────────────────────── */
.blog-list {
  margin-top: var(--space-lg);
}

.blog-card {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.blog-card:first-child { border-top: 1px solid var(--border); }

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.blog-card h2 a {
  color: var(--white);
  transition: color 0.2s;
}

.blog-card h2 a:hover { color: var(--gold); }

.post-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.read-more:hover { color: var(--gold-lt); }


/* ─── BLOG POST ──────────────────────────────────────────────────── */
.blog-post {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.post-header {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.post-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.post-body {
  max-width: 680px;
}

.post-body p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 24px;
}

.post-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
  margin: 48px 0 16px;
}

.post-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.2;
  color: var(--white);
  margin: 32px 0 12px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 24px 24px;
  color: var(--text-mid);
  font-size: 15px;
}

.post-body li { margin-bottom: 8px; line-height: 1.7; }

.post-body img {
  border-radius: var(--radius);
  margin: 32px 0;
  border: 1px solid var(--border);
}

.post-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
  color: var(--text-mid);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
}

.post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--gold-lt); }

.post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-footer a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.post-footer a:hover { color: var(--white); }


/* ─── FOOTER DETAILS ─────────────────────────────────────────────── */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-contact a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-social a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  opacity: 0.6;
}


/* ─── PAGE HERO (Interior pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-intro {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
  margin-top: 20px;
}


/* ─── CLIENTS GRID ───────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-lg);
}

.client-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.client-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.client-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-3);
  border-radius: 10px 10px 0 0;
}

.client-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}

.client-card-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
}

.client-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  margin: 0;
}

.client-services {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}


/* ─── RESPONSIVE ADDITIONS ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
  }

  .nav-links.active { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .services-grid    { grid-template-columns: 1fr; }
  .clients-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .cta-actions      { flex-direction: column; align-items: center; }
}

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