/* =============================================
   KONCEPCJA WNĘTRZ — medeis.dev theme port
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@300;400;500&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:          #f5f3ef;
  --bg-surface:  #eceae4;
  --bg-card:     #f0ede6;
  --border:      rgba(26,24,20,0.12);
  --border-glow: rgba(200,82,26,0.25);

  --steel:       #c8521a;
  --steel-light: #e8721a;
  --steel-dim:   rgba(200,82,26,0.45);
  --white:       #1a1814;
  --muted:       #7a7670;
  --warm:        #4a4640;

  --hero-bg:     #1a1814;
  --hero-fg:     #f5f3ef;

  --font-display: 'DM Serif Display', serif;
  --font-body:    'Instrument Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* aliases for shortcodes that reference --gold / --accent */
  --gold:        var(--steel);
  --gold-light:  var(--steel-light);
  --gold-dim:    var(--steel-dim);
  --accent:      var(--steel);

  --max-w: 1200px;
  --radius: 0px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #111009;
    --bg-surface:  #1c1a14;
    --bg-card:     #201e18;
    --border:      rgba(240,237,230,0.1);
    --border-glow: rgba(200,82,26,0.3);
    --steel:       #e8721a;
    --steel-light: #f09040;
    --steel-dim:   rgba(232,114,26,0.5);
    --white:       #f0ede6;
    --muted:       #7a7670;
    --warm:        #b8b4aa;
    --hero-bg:     #0a0908;
    --hero-fg:     #f0ede6;
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  min-height: 100vh;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--steel-dim); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }

p { margin-bottom: 1.5rem; color: var(--warm); }

a {
  color: var(--steel);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--steel-light); }

strong { color: var(--white); font-weight: 600; }

code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-surface);
  padding: 0.15em 0.4em;
  color: var(--steel);
}

blockquote {
  border-left: 3px solid var(--steel);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-card);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--steel-light);
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,243,239,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(17,16,9,0.94); }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* logo image */
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--transition);
}

.logo:hover img { opacity: 0.75; }

/* fallback text logo */
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white) !important;
}

.logo-text span { color: var(--steel); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--steel);
  border-bottom-color: var(--steel-dim);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-fg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(200,82,26,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 5% 85%, rgba(200,82,26,0.04) 0%, transparent 55%);
}

/* architectural construction grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,230,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,230,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at 25% 45%, black 15%, transparent 65%);
}

/* second grid layer — offset, finer */
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,82,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,82,26,0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--steel);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--hero-fg);
}

.hero h1 em {
  font-style: italic;
  color: var(--steel);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--steel);
  opacity: 0.4;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,237,230,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  border-radius: 3px;
}

.btn-primary {
  background: var(--steel);
  color: white;
}
.btn-primary:hover {
  background: var(--steel-light);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,82,26,0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(240,237,230,0.25);
  color: rgba(240,237,230,0.75);
}
.btn-ghost:hover {
  border-color: var(--steel);
  color: var(--steel);
}

.btn-cta {
  background: var(--steel);
  color: white;
  padding: 1rem 2rem;
  font-size: 0.78rem;
}
.btn-cta:hover {
  background: var(--steel-light);
  color: white;
  box-shadow: 0 10px 36px rgba(200,82,26,0.35);
  transform: translateY(-2px);
}

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  margin: 4rem 0;
  background: var(--bg-surface);
  position: relative;
}

.stats-bar::before, .stats-bar::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--steel-dim);
  border-style: solid;
}
.stats-bar::before { top: -1px; left: 0; border-width: 1px 0 0 1px; }
.stats-bar::after  { bottom: -1px; right: 0; border-width: 0 1px 1px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── SECTION HEADERS ─── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--steel-dim);
  padding: 0.18rem 0.55rem;
}

/* ─── ARTICLE CARDS ─── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.article-card {
  background: var(--bg-card);
  padding: 2.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.article-card:hover { background: #e8e2d8; }
.article-card:hover::before { transform: scaleX(1); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(200,82,26,0.08);
  padding: 0.15rem 0.5rem;
}

.card-date {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--white);
  transition: color var(--transition);
}

.article-card:hover .card-title { color: var(--steel); }

.card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.card-read-more {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.article-card:hover .card-read-more {
  color: var(--steel);
  gap: 0.8rem;
}

/* ─── FEATURED ARTICLE ─── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 1px;
  overflow: hidden;
  position: relative;
}

.featured-article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--steel), transparent);
  z-index: 1;
}

.featured-article .feat-visual {
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.featured-article .feat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,82,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,82,26,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.feat-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.featured-article .feat-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

/* override paragraph color inside feat-content */
.featured-article .feat-content p { color: var(--muted); }

/* ─── SINGLE ARTICLE ─── */
.single-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--steel-dim);
  padding: 0.2rem 0.6rem;
}

.post-date, .post-readtime {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
}

.post-readtime::before { content: '/ '; }

.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.post-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--steel);
}

.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--warm);
}

.post-content li { margin-bottom: 0.5rem; }

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.post-content th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 2px solid var(--steel-dim);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.post-content td {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem;
  color: var(--warm);
}

/* ─── INSIGHT BOX ─── */
.insight-box {
  background: var(--bg-surface);
  border: 1px solid var(--steel-dim);
  border-left: 3px solid var(--steel);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  position: relative;
}

.insight-label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-label::before {
  content: '◈';
  font-size: 0.75rem;
}

.insight-box p {
  color: var(--warm);
  margin: 0;
  font-size: 0.93rem;
}

/* ─── CASE STUDY BOX ─── */
.case-study-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.case-study-box::before {
  content: 'CASE STUDY';
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.case-study-box::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200,82,26,0.04), transparent 70%);
  pointer-events: none;
}

.case-study-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--steel);
  margin-bottom: 1rem;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--steel);
  padding: 3rem;
  text-align: center;
  margin: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,82,26,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  position: relative;
  font-size: 0.92rem;
}

/* ─── SURVEY CTA (full-width accent block) ─── */
.survey-block {
  background: var(--steel);
  padding: 5rem clamp(1rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.survey-block::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(-15deg);
  pointer-events: none;
}

.survey-block .survey-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  position: relative;
}

.survey-block .survey-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  position: relative;
}

.survey-block .survey-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.btn-survey {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: var(--steel);
  padding: 1rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
}

.btn-survey:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: var(--steel-light);
}

.survey-note {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  position: relative;
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 6rem;
  background: var(--hero-bg);
  color: rgba(240,237,230,0.4);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--hero-fg);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--steel); }

.footer-desc {
  font-size: 0.84rem;
  color: rgba(240,237,230,0.4);
  line-height: 1.65;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(240,237,230,0.4);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--steel); }

.footer-bottom {
  border-top: 1px solid rgba(240,237,230,0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: rgba(240,237,230,0.3);
  margin: 0;
}

/* ─── TAGS ─── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--steel-dim);
  color: var(--steel);
}

/* ─── NEWSLETTER ─── */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--steel-dim);
}

.newsletter-form button {
  background: var(--steel);
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--steel-light); }

/* ─── UTILITIES ─── */
.section { padding: 5rem 0; }
.mt-auto { margin-top: auto; }
.text-gold { color: var(--steel); }
.text-muted { color: var(--muted); }
.text-mono { font-family: var(--font-mono); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.65s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.36s; }
.fade-up-4 { animation-delay: 0.52s; }

/* ─── CONTACT PAGE ─── */
.contact-grid input,
.contact-grid select,
.contact-grid textarea {
  transition: border-color var(--transition);
}

.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: var(--steel-dim) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .featured-article { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .logo img { height: 32px; }
  .survey-block { padding: 4rem 1.5rem; }
}
