@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

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

:root {
  --canvas: #f7f7f4;
  --canvas-soft: #fafaf7;
  --surface-card: #ffffff;
  --surface-strong: #e6e5e0;
  --ink: #26251e;
  --body: #5a5852;
  --muted: #807d72;
  --muted-soft: #a09c92;
  --primary: #f54e00;
  --primary-active: #d04200;
  --on-primary: #ffffff;
  --hairline: #e6e5e0;
  --hairline-soft: #efeee8;
  --hairline-strong: #cfcdc4;
  --success: #1f8a65;
  --error: #cf2d56;

  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-pill: 9999px;
}

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

body {
  background-color: 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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP NAV ===== */
.site-header {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  line-height: 1.4;
  transition: color 0.15s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--ink);
}

.nav-cta {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  height: 40px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--primary-active);
  color: var(--on-primary);
}

.btn-secondary {
  background: var(--surface-card);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  height: 40px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s;
  text-decoration: none;
  line-height: 1;
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 56px;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  max-height: 480px;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  max-width: 600px;
}

/* ===== ARTICLE GRID ===== */
.articles-section {
  padding: 80px 0;
}

.articles-header {
  margin-bottom: 48px;
}

.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(--rounded-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.article-card:hover {
  border-color: var(--hairline-strong);
}

.article-card-image {
  height: 200px;
  overflow: hidden;
}

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

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  display: inline-block;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--rounded-pill);
  margin-bottom: 14px;
}

.article-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-card-title a {
  color: inherit;
}

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

.article-card-excerpt {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
}

.article-card-meta span::after {
  content: '·';
  margin-left: 8px;
}

.article-card-meta span:last-child::after {
  content: '';
}

/* ===== FEATURED ARTICLE ===== */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}

.featured-article-image {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.featured-article-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.featured-article-tag {
  display: inline-block;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--rounded-pill);
  margin-bottom: 20px;
}

.featured-article-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-article-excerpt {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text-link:hover {
  color: var(--primary);
}

.btn-text-link::after {
  content: '→';
}

/* ===== TOPICS SECTION ===== */
.topics-section {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.topic-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  transition: border-color 0.15s;
}

.topic-card:hover {
  border-color: var(--hairline-strong);
}

.topic-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.topic-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}

.topic-title a {
  color: inherit;
}

.topic-title a:hover {
  color: var(--primary);
}

.topic-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  padding: 56px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb-sep {
  color: var(--hairline-strong);
}

.article-header {
  margin-bottom: 40px;
}

.article-tag {
  display: inline-block;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--rounded-pill);
  margin-bottom: 18px;
}

.article-title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-intro {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  max-width: 680px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 32px 0;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.article-meta-bar strong {
  color: var(--ink);
  font-weight: 500;
}

.article-hero-image {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-bottom: 48px;
}

.article-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-wrapper {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.toc-toggle-icon {
  font-size: 10px;
  transition: transform 0.2s;
}

.toc-wrapper.toc-collapsed .toc-toggle-icon {
  transform: rotate(-90deg);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-wrapper.toc-collapsed .toc-list {
  display: none;
}

.toc-list a {
  font-size: 14px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-list a:hover {
  color: var(--ink);
}

.toc-list a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-soft);
  flex-shrink: 0;
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.325px;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.article-content strong {
  color: var(--ink);
  font-weight: 600;
}

.article-content blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 32px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.1px;
}

.info-box {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 20px 24px;
  margin: 32px 0;
}

.info-box-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  margin-bottom: 0;
}

.warn-box {
  background: #fff8f5;
  border: 1px solid #f5c4b0;
  border-radius: var(--rounded-lg);
  padding: 20px 24px;
  margin: 32px 0;
}

.warn-box-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: #c04020;
  margin-bottom: 10px;
}

.warn-box p {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 0;
}

/* ===== FAQ / DETAILS ===== */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  border-top: 1px solid var(--hairline);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-item summary {
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--muted);
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-content {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}

/* ===== RELATED ARTICLES ===== */
.related-section {
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
}

.related-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.related-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 20px;
  transition: border-color 0.15s;
}

.related-card:hover {
  border-color: var(--hairline-strong);
}

.related-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.related-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 10px;
}

.related-card-title a {
  color: inherit;
}

.related-card-title a:hover {
  color: var(--primary);
}

.related-card-excerpt {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}

/* ===== STATIC PAGES ===== */
.static-page {
  padding: 56px 0 80px;
}

.static-title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 12px;
}

.static-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.static-content {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.static-content h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}

.static-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}

.static-content p {
  margin-bottom: 18px;
}

.static-content ul {
  margin-bottom: 18px;
  padding-left: 22px;
}

.static-content ul li {
  margin-bottom: 6px;
}

.disclaimer-box {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

.disclaimer-box strong {
  color: var(--ink);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-info address {
  font-style: normal;
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  padding: 20px;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
  background: var(--surface-card);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  padding: 12px 16px;
  height: 44px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--rounded-md);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group textarea {
  height: auto;
  min-height: 110px;
  resize: vertical;
}

.form-error {
  font-size: 12px;
  color: var(--error);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-submit-btn {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  height: 44px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
  font-family: inherit;
}

.form-submit-btn:hover {
  background: var(--primary-active);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: #f0faf5;
  border: 1px solid #a8d9bf;
  border-radius: var(--rounded-lg);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--success);
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

/* ===== MAGAZINE FOOTER ===== */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 48px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}

.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
}

.footer-col ul a:hover {
  color: var(--ink);
}

.footer-contact address {
  font-style: normal;
  font-size: 13px;
  color: var(--body);
  line-height: 1.7;
}

.footer-contact address a {
  color: var(--body);
}

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

.footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimers {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 900px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--muted);
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--ink);
  color: var(--canvas);
  border-radius: var(--rounded-lg);
  padding: 20px 28px;
  max-width: 580px;
  width: calc(100% - 48px);
  display: none;
  box-shadow: 0 8px 32px rgba(38,37,30,0.18);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #d4d2ca;
}

.cookie-banner-text a {
  color: var(--canvas);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.cookie-btn-accept:hover {
  background: var(--primary-active);
}

.cookie-btn-reject {
  background: transparent;
  color: #d4d2ca;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--rounded-md);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s;
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--hairline);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-hero-image {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.about-hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-content {
  padding: 56px 0;
}

/* ===== PROGRESS PILLS (Yoga-specific use) ===== */
.progression-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--rounded-pill);
  color: var(--ink);
}

.pill-beginner { background: #dfa88f; }
.pill-intermediate { background: #9fc9a2; }
.pill-advanced { background: #9fbbe0; }
.pill-all-levels { background: #c0a8dd; }
.pill-therapeutic { background: #c08532; color: #fff; }

/* ===== UTILITY ===== */
.divider {
  height: 1px;
  background: var(--hairline);
  margin: 48px 0;
}

.text-muted {
  color: var(--muted);
}

.text-ink {
  color: var(--ink);
}

.mt-section {
  margin-top: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .featured-article {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    padding: 20px 24px;
    gap: 20px;
  }

  .nav-mobile-open .nav-cta {
    display: block;
    padding: 0 24px 20px;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-image img {
    height: 280px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .featured-article {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured-article-image img {
    height: 240px;
  }

  .section-title {
    font-size: 28px;
  }

  .article-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .article-intro {
    font-size: 16px;
  }

  .article-hero-image img {
    height: 260px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .static-title {
    font-size: 30px;
  }
}

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

  .container-narrow {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .articles-section,
  .topics-section,
  .featured-article {
    padding: 48px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}
