@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --canvas: #f7f7f4;
  --canvas-soft: #fafaf7;
  --surface-card: #ffffff;
  --surface-strong: #e6e5e0;
  --ink: #26251e;
  --body: #5a5852;
  --body-strong: #26251e;
  --muted: #807d72;
  --muted-soft: #a09c92;
  --on-primary: #ffffff;
  --primary: #f54e00;
  --primary-active: #d04200;
  --hairline: #e6e5e0;
  --hairline-soft: #efeee8;
  --hairline-strong: #cfcdc4;
  --semantic-success: #1f8a65;
  --semantic-error: #cf2d56;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--canvas);
  color: var(--body);
  font-family: 'Inter', system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}

.display-mega {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2.16px;
  color: var(--ink);
}

.display-lg {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.72px;
  color: var(--ink);
}

.display-md {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.325px;
  color: var(--ink);
}

.display-sm {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.11px;
  color: var(--ink);
}

.title-md {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.title-sm {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

.caption-upper {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================
   TOP NAVIGATION
   ===================== */

.site-nav {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--ink);
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-strong);
}

.nav-links a.active {
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
}

.nav-mobile a:hover {
  color: var(--ink);
  background: var(--canvas-soft);
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 10px 18px;
  height: 40px;
  border-radius: var(--radius-md);
}

.btn-primary:hover {
  background: var(--primary-active);
  color: var(--on-primary);
}

.btn-secondary {
  background: var(--surface-card);
  color: var(--ink);
  padding: 10px 18px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline-strong);
}

.btn-secondary:hover {
  background: var(--canvas-soft);
  color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--canvas);
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--radius-md);
}

.btn-ink:hover {
  background: #3a3930;
  color: var(--canvas);
}

/* =====================
   BADGE PILL
   ===================== */

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  background: var(--surface-strong);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--muted);
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
  padding: 80px 0;
  background: var(--canvas);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-label {
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 4/3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================
   SECTION HEADERS
   ===================== */

.section-header {
  margin-bottom: 48px;
}

.section-header .caption-upper {
  margin-bottom: 12px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

/* =====================
   ARTICLE CARDS
   ===================== */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s;
}

.article-card:hover {
  border-color: var(--hairline-strong);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-strong);
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 24px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.article-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}

.article-card-excerpt {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 1px;
  display: inline-block;
}

.article-card-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* =====================
   FEATURES / INFO BLOCKS
   ===================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--canvas-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.feature-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* =====================
   ARTICLE PAGE
   ===================== */

.article-hero {
  padding: 48px 0 0;
  background: var(--canvas);
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-hero-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 20px;
}

.article-hero-desc {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 32px;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-top: 40px;
  aspect-ratio: 16/7;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 64px 0;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--body-strong);
  font-weight: 600;
}

.article-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 0.15s, border-color 0.15s;
}

.article-content a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.article-info-box {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}

.article-info-box h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--muted);
  margin-bottom: 12px;
}

.article-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-info-box li {
  font-size: 15px;
  color: var(--body);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline-soft);
  line-height: 1.5;
}

.article-info-box li:last-child {
  border-bottom: none;
}

.article-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 40px 0;
}

.article-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

/* =====================
   BREADCRUMBS
   ===================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-item a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.breadcrumb-item a:hover {
  color: var(--ink);
  border-color: var(--hairline-strong);
}

.breadcrumb-sep {
  color: var(--muted-soft);
  font-size: 12px;
}

/* =====================
   CONTACT FORM
   ===================== */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline-soft);
}

.contact-detail:last-child {
  border-bottom: 1px solid var(--hairline-soft);
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--canvas-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--body);
}

.form-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-card);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  height: 44px;
  transition: border-color 0.15s;
  outline: none;
}

.form-group textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-soft);
}

.form-submit-btn {
  width: 100%;
  background: var(--ink);
  color: var(--canvas);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  height: 44px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit-btn:hover {
  background: #3a3930;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  background: #e8f5f1;
  color: var(--semantic-success);
  border: 1px solid #b8ddd4;
  display: block;
}

.form-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.form-spinner.visible {
  display: flex;
}

.spinner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: spin-dot 1.2s ease-in-out infinite;
}

.spinner-dot:nth-child(2) { animation-delay: 0.2s; }
.spinner-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes spin-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* =====================
   COOKIE BANNER
   ===================== */

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  max-width: 640px;
  width: calc(100% - 48px);
  z-index: 9999;
  display: none;
  box-shadow: none;
  border: none;
}

#cookie-banner.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  font-size: 14px;
  color: var(--canvas-soft);
  line-height: 1.5;
  flex: 1;
}

.cookie-text a {
  color: var(--canvas);
  border-bottom: 1px solid rgba(247,247,244,0.4);
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--canvas-soft);
  border: 1px solid rgba(247,247,244,0.3);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.1);
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}

.footer-brand-name span {
  color: var(--primary);
}

.footer-tagline {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--body);
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--ink);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--ink);
}

/* =====================
   PAGES (ABOUT, PRIVACY, TERMS)
   ===================== */

.page-hero {
  padding: 64px 0 0;
  background: var(--canvas);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}

.page-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-desc {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
}

.page-body {
  padding: 64px 0;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content ol { list-style: decimal; }

.page-content li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
}

.page-content a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.page-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline-soft);
}

/* =====================
   ABOUT PAGE SPECIFIC
   ===================== */

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin: 40px 0;
  aspect-ratio: 16/7;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.about-value-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.about-value-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.about-value-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* =====================
   RELATED ARTICLES
   ===================== */

.related-section {
  padding: 64px 0;
  border-top: 1px solid var(--hairline);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.related-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
}

.related-card-img {
  width: 120px;
  flex-shrink: 0;
  background: var(--surface-strong);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-body {
  padding: 16px;
}

.related-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 6px;
}

.related-card-body p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
  .display-mega { font-size: 56px; }
  .hero-title { font-size: 44px; }
  .article-hero-title { font-size: 36px; }
  .hero-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .display-mega { font-size: 36px; letter-spacing: -1px; }
  .hero-title { font-size: 32px; letter-spacing: -0.8px; }
  .article-hero-title { font-size: 30px; letter-spacing: -0.6px; }

  .hero { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { display: none; }

  .articles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 48px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .hero-title { font-size: 28px; }
  .page-title { font-size: 32px; }
  .article-hero-title { font-size: 26px; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { width: 100%; text-align: center; }
}
