/*
 * TakeIt211 — main design system stylesheet
 * Classes are BEM-ish and prefixed t211- throughout.
 * Sections: fonts, tokens, reset, base type, layout, header/nav, mobile drawer,
 * hero, sections, cards, buttons, forms, footer, pagination, comments, 404, a11y.
 */

/* =========================================================
   1. FONT FACES (self-hosted, local files, no external CDN)
   ========================================================= */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/archivo-700.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/archivo-800.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

/* =========================================================
   2. DESIGN TOKENS
   ========================================================= */
:root {
  /* Color */
  --t211-ink: #0B0B0C;
  --t211-ink-60: #5A5A60;
  --t211-ink-20: #D8D8DC;
  --t211-paper: #FFFFFF;
  --t211-bone: #F6F5F2;
  --t211-eleven: #FF3D00;
  --t211-eleven-dark: #D42F00;
  --t211-volt: #0F62FE;
  --t211-success: #0E8A55;

  /* Type */
  --t211-font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --t211-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --t211-fs-sm: 0.875rem;
  --t211-fs-md: 1rem;
  --t211-fs-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --t211-fs-xl: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --t211-fs-2xl: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  --t211-fs-huge: clamp(2.5rem, 1.8rem + 3.2vw, 4.5rem);
  --t211-fs-display: clamp(2.75rem, 1.7rem + 4.8vw, 6.5rem);

  /* Spacing scale */
  --t211-space-1: 0.25rem;
  --t211-space-2: 0.5rem;
  --t211-space-3: 0.75rem;
  --t211-space-4: 1rem;
  --t211-space-5: 1.5rem;
  --t211-space-6: 2rem;
  --t211-space-7: 3rem;
  --t211-space-8: 4rem;
  --t211-space-9: 6rem;
  --t211-space-10: 8rem;

  /* Layout */
  --t211-container: 1200px;
  --t211-wide: 1400px;
  --t211-section-pad: 112px;
  --t211-section-pad-mobile: 56px;
  --t211-gutter: 24px;

  /* Radius / borders */
  --t211-radius-sm: 2px;
  --t211-radius-md: 8px;
  --t211-border: 1px solid var(--t211-ink-20);

  /* Motion */
  --t211-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --t211-duration: 160ms;

  /* Header */
  --t211-header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--t211-paper);
  color: var(--t211-ink);
  font-family: var(--t211-font-body);
  font-size: var(--t211-fs-md);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--t211-volt);
  text-decoration: none;
  transition: color var(--t211-duration) var(--t211-ease);
}

a:hover {
  color: var(--t211-eleven-dark);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--t211-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t211-ink);
}

p {
  margin: 0;
}

/* Prevent overflow / mid-word breaks anywhere in the theme */
body, h1, h2, h3, h4, h5, h6, p, a, span, li, label {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

/* =========================================================
   4. TYPE SCALE UTILITIES
   ========================================================= */
.t211-eyebrow {
  display: inline-block;
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t211-ink-60);
}

.t211-eyebrow--accent {
  color: var(--t211-eleven);
}

.t211-display {
  font-size: var(--t211-fs-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.t211-h1 { font-size: var(--t211-fs-2xl); line-height: 1.08; }
.t211-h2 { font-size: var(--t211-fs-xl); line-height: 1.12; }
.t211-h3 { font-size: var(--t211-fs-lg); line-height: 1.2; }

.t211-lede {
  font-size: var(--t211-fs-lg);
  color: var(--t211-ink-60);
  line-height: 1.5;
  max-width: 46ch;
}

.t211-body-sm {
  font-size: var(--t211-fs-sm);
  color: var(--t211-ink-60);
}

.t211-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* =========================================================
   5. LAYOUT CONTAINERS
   ========================================================= */
.t211-container {
  width: 100%;
  max-width: var(--t211-container);
  margin-inline: auto;
  padding-inline: var(--t211-gutter);
}

.t211-container--wide {
  max-width: var(--t211-wide);
}

.t211-section {
  padding-block: var(--t211-section-pad-mobile);
}

@media (min-width: 1024px) {
  .t211-section {
    padding-block: var(--t211-section-pad);
  }
}

.t211-section--bone {
  background: var(--t211-bone);
}

.t211-section--ink {
  background: var(--t211-ink);
  color: var(--t211-paper);
}

.t211-section--ink h1,
.t211-section--ink h2,
.t211-section--ink h3 {
  color: var(--t211-paper);
}

.t211-section-head {
  margin-bottom: var(--t211-space-7);
}

.t211-section-head__scale {
  display: block;
  width: 220px;
  height: 20px;
  color: var(--t211-ink-20);
  margin-top: var(--t211-space-4);
}

.t211-grid {
  display: grid;
  gap: var(--t211-gutter);
}

.t211-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.t211-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 1023px) {
  .t211-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .t211-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

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

/* =========================================================
   6. ANNOUNCEMENT BAR
   ========================================================= */
.t211-announcement {
  background: var(--t211-ink);
  color: var(--t211-paper);
  text-align: center;
  font-size: var(--t211-fs-sm);
  padding: var(--t211-space-2) var(--t211-gutter);
}

.t211-announcement__word {
  color: var(--t211-eleven);
  font-weight: 600;
}

/* =========================================================
   7. HEADER / STICKY NAV
   ========================================================= */
.t211-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--t211-paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t211-duration) var(--t211-ease);
}

.t211-header.is-scrolled {
  border-bottom-color: var(--t211-ink-20);
}

.t211-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--t211-space-5);
  height: var(--t211-header-h);
  max-width: var(--t211-container);
  margin-inline: auto;
  padding-inline: var(--t211-gutter);
}

.t211-header__logo {
  display: flex;
  align-items: center;
  color: var(--t211-ink);
  flex-shrink: 0;
}

.t211-header__logo svg,
.t211-header__logo img {
  height: 26px;
  width: auto;
}

.t211-nav {
  display: none;
}

@media (min-width: 900px) {
  .t211-nav {
    display: flex;
    align-items: center;
    gap: var(--t211-space-6);
    flex: 1;
    justify-content: center;
  }
}

.t211-nav__link {
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t211-ink);
  padding-block: var(--t211-space-2);
  position: relative;
}

.t211-nav__link:hover {
  color: var(--t211-eleven);
}

.t211-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--t211-eleven);
}

.t211-header__actions {
  display: flex;
  align-items: center;
  gap: var(--t211-space-4);
  flex-shrink: 0;
}

.t211-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--t211-radius-sm);
  color: var(--t211-ink);
  position: relative;
}

.t211-icon-btn:hover {
  background: var(--t211-bone);
  color: var(--t211-ink);
}

.t211-icon-btn svg {
  width: 20px;
  height: 20px;
}

.t211-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding-inline: 3px;
  border-radius: 999px;
  background: var(--t211-eleven);
  color: var(--t211-paper);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.t211-header__actions .t211-header__cta {
  display: none;
}

@media (min-width: 900px) {
  .t211-header__actions .t211-header__cta {
    display: inline-flex;
  }
}

.t211-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (min-width: 900px) {
  .t211-nav-toggle {
    display: none;
  }
}

.t211-nav-toggle__bar,
.t211-nav-toggle__bar::before,
.t211-nav-toggle__bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--t211-ink);
  position: relative;
  transition: transform var(--t211-duration) var(--t211-ease), opacity var(--t211-duration) var(--t211-ease);
}

.t211-nav-toggle__bar::before {
  position: absolute;
  top: -6px;
}

.t211-nav-toggle__bar::after {
  position: absolute;
  top: 6px;
}

.t211-nav-toggle[aria-expanded="true"] .t211-nav-toggle__bar {
  background: transparent;
}

.t211-nav-toggle[aria-expanded="true"] .t211-nav-toggle__bar::before {
  transform: translateY(6px) rotate(45deg);
}

.t211-nav-toggle[aria-expanded="true"] .t211-nav-toggle__bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   8. MOBILE DRAWER
   ========================================================= */
.t211-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
}

.t211-drawer.is-open {
  visibility: visible;
}

.t211-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 12, 0.4);
  opacity: 0;
  transition: opacity var(--t211-duration) var(--t211-ease);
}

.t211-drawer.is-open .t211-drawer__backdrop {
  opacity: 1;
}

.t211-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: var(--t211-paper);
  padding: var(--t211-space-6) var(--t211-space-5);
  transform: translateX(100%);
  transition: transform var(--t211-duration) var(--t211-ease);
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-6);
  overflow-y: auto;
}

.t211-drawer.is-open .t211-drawer__panel {
  transform: translateX(0);
}

.t211-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t211-drawer__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.t211-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-4);
}

.t211-drawer__link {
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-lg);
  color: var(--t211-ink);
}

.t211-drawer__link:hover {
  color: var(--t211-eleven);
}

/* =========================================================
   9. HERO
   ========================================================= */
.t211-hero {
  background: var(--t211-bone);
  overflow: hidden;
}

.t211-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--t211-space-8);
  align-items: center;
  max-width: var(--t211-container);
  margin-inline: auto;
  padding-inline: var(--t211-gutter);
  padding-block: var(--t211-section-pad-mobile);
}

@media (min-width: 900px) {
  .t211-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding-block: var(--t211-section-pad);
  }
}

.t211-hero__eyebrow {
  margin-bottom: var(--t211-space-4);
}

.t211-hero__title {
  font-size: var(--t211-fs-display);
  line-height: 1.02;
  margin-bottom: var(--t211-space-5);
}

.t211-hero__sub {
  font-size: var(--t211-fs-lg);
  color: var(--t211-ink-60);
  max-width: 42ch;
  margin-bottom: var(--t211-space-6);
}

.t211-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--t211-space-5);
  flex-wrap: wrap;
}

.t211-hero__link {
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t211-ink);
  border-bottom: 2px solid var(--t211-ink-20);
  padding-bottom: 2px;
}

.t211-hero__link:hover {
  color: var(--t211-eleven);
  border-color: var(--t211-eleven);
}

.t211-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.t211-hero__knob {
  width: min(100%, 420px);
  height: auto;
  color: var(--t211-ink);
}

.t211-hero__scale {
  margin-top: var(--t211-space-6);
  width: 100%;
  max-width: 380px;
  color: var(--t211-ink-20);
}

/* =========================================================
   10. VALUE PROPS
   ========================================================= */
.t211-value-prop {
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-4);
}

.t211-value-prop__icon {
  width: 32px;
  height: 32px;
  color: var(--t211-ink);
}

.t211-value-prop__title {
  font-size: var(--t211-fs-md);
  font-weight: 700;
  font-family: var(--t211-font-display);
}

.t211-value-prop__copy {
  color: var(--t211-ink-60);
  font-size: var(--t211-fs-md);
  max-width: 34ch;
}

/* =========================================================
   11. STEPS STRIP (digital delivery explainer)
   ========================================================= */
.t211-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--t211-space-6);
}

@media (max-width: 767px) {
  .t211-steps {
    grid-template-columns: 1fr;
  }
}

.t211-step__number {
  font-family: var(--t211-font-display);
  font-weight: 800;
  font-size: var(--t211-fs-xl);
  color: var(--t211-eleven);
  margin-bottom: var(--t211-space-3);
}

.t211-step__title {
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-md);
  margin-bottom: var(--t211-space-2);
}

.t211-step__copy {
  color: var(--t211-ink-60);
  font-size: var(--t211-fs-sm);
}

/* =========================================================
   12. CARDS (generic + editorial/post cards)
   ========================================================= */
.t211-card {
  background: var(--t211-paper);
  border: var(--t211-border);
  border-radius: var(--t211-radius-md);
  transition: border-color var(--t211-duration) var(--t211-ease), transform var(--t211-duration) var(--t211-ease);
}

.t211-card:hover {
  border-color: var(--t211-ink);
  transform: translateY(-2px);
}

.t211-post-card {
  display: flex;
  flex-direction: column;
}

.t211-post-card__media {
  aspect-ratio: 4 / 3;
  background: var(--t211-bone);
  border-radius: var(--t211-radius-md) var(--t211-radius-md) 0 0;
  overflow: hidden;
}

.t211-post-card__body {
  padding: var(--t211-space-5);
}

.t211-post-card__eyebrow {
  margin-bottom: var(--t211-space-2);
}

.t211-post-card__title {
  font-size: var(--t211-fs-md);
  margin-bottom: var(--t211-space-2);
}

.t211-post-card__title a {
  color: var(--t211-ink);
}

.t211-post-card__title a:hover {
  color: var(--t211-eleven);
}

.t211-post-card__excerpt {
  color: var(--t211-ink-60);
  font-size: var(--t211-fs-sm);
}

/* =========================================================
   13. BUTTONS
   ========================================================= */
.t211-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--t211-space-2);
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--t211-space-3) var(--t211-space-6);
  border-radius: var(--t211-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t211-duration) var(--t211-ease), color var(--t211-duration) var(--t211-ease), border-color var(--t211-duration) var(--t211-ease);
  white-space: nowrap;
}

.t211-btn--primary {
  background: var(--t211-ink);
  color: var(--t211-paper);
}

.t211-btn--primary:hover {
  background: var(--t211-eleven);
  color: var(--t211-paper);
}

.t211-btn--secondary {
  background: transparent;
  color: var(--t211-ink);
  border-color: var(--t211-ink);
}

.t211-btn--secondary:hover {
  background: var(--t211-ink);
  color: var(--t211-paper);
}

.t211-btn--accent {
  background: var(--t211-eleven);
  color: var(--t211-paper);
}

.t211-btn--accent:hover {
  background: var(--t211-eleven-dark);
}

.t211-btn--ghost {
  background: transparent;
  color: var(--t211-paper);
  border-color: rgba(255, 255, 255, 0.4);
}

.t211-btn--ghost:hover {
  background: var(--t211-paper);
  color: var(--t211-ink);
}

.t211-btn--sm {
  padding: var(--t211-space-2) var(--t211-space-4);
  font-size: 0.75rem;
}

.t211-btn--block {
  display: flex;
  width: 100%;
}

.t211-btn:disabled,
.t211-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================================================
   14. FORMS
   ========================================================= */
.t211-field {
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-2);
  margin-bottom: var(--t211-space-5);
}

.t211-field__label {
  font-size: var(--t211-fs-sm);
  font-weight: 600;
  color: var(--t211-ink);
}

.t211-field__label .required {
  color: var(--t211-eleven);
}

.t211-input,
.t211-select,
.t211-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: var(--t211-space-3) var(--t211-space-4);
  border: 1px solid var(--t211-ink-20);
  border-radius: var(--t211-radius-sm);
  background: var(--t211-paper);
  color: var(--t211-ink);
  font-size: var(--t211-fs-md);
  transition: border-color var(--t211-duration) var(--t211-ease);
}

.t211-input:focus,
.t211-select:focus,
.t211-textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--t211-ink);
}

.t211-textarea {
  min-height: 120px;
  resize: vertical;
}

.t211-search-form {
  display: flex;
  gap: var(--t211-space-2);
}

/* Newsletter band */
.t211-newsletter {
  text-align: center;
}

.t211-newsletter__title {
  color: var(--t211-paper);
  font-size: var(--t211-fs-2xl);
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: var(--t211-space-6);
}

.t211-newsletter__form {
  display: flex;
  gap: var(--t211-space-3);
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.t211-newsletter__form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--t211-paper);
}

.t211-newsletter__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.t211-newsletter__form input[type="email"]:focus {
  border-color: var(--t211-paper);
}

/* =========================================================
   15. FOOTER
   ========================================================= */
.t211-footer {
  background: var(--t211-ink);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--t211-space-8) var(--t211-space-6);
}

.t211-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--t211-space-6);
  padding-bottom: var(--t211-space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
  .t211-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .t211-footer__top {
    grid-template-columns: 1fr;
  }
}

.t211-footer__brand svg,
.t211-footer__brand img {
  height: 28px;
  width: auto;
  color: var(--t211-paper);
  margin-bottom: var(--t211-space-4);
}

.t211-footer__tagline {
  max-width: 32ch;
  font-size: var(--t211-fs-sm);
}

.t211-footer__heading {
  color: var(--t211-paper);
  font-family: var(--t211-font-display);
  font-weight: 700;
  font-size: var(--t211-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--t211-space-4);
}

.t211-footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-3);
}

.t211-footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--t211-fs-sm);
}

.t211-footer__list a:hover {
  color: var(--t211-eleven);
}

.t211-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--t211-space-4);
  padding-top: var(--t211-space-6);
  font-size: var(--t211-fs-sm);
}

.t211-footer__scale {
  width: 100%;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: var(--t211-space-6);
}

.t211-footer__social {
  display: flex;
  gap: var(--t211-space-3);
}

.t211-footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--t211-radius-sm);
  color: var(--t211-paper);
}

.t211-footer__social a:hover {
  border-color: var(--t211-eleven);
  color: var(--t211-eleven);
}

.t211-footer__legal {
  display: flex;
  gap: var(--t211-space-5);
}

.t211-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.t211-footer__legal a:hover {
  color: var(--t211-paper);
}

/* =========================================================
   16. PAGINATION
   ========================================================= */
.t211-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--t211-space-2);
  margin-top: var(--t211-space-8);
}

.t211-pagination__link,
.t211-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: var(--t211-space-2);
  border: 1px solid var(--t211-ink-20);
  border-radius: var(--t211-radius-sm);
  color: var(--t211-ink);
  font-size: var(--t211-fs-sm);
  font-weight: 600;
}

.t211-pagination .page-numbers.current,
.t211-pagination__link.is-current {
  background: var(--t211-ink);
  border-color: var(--t211-ink);
  color: var(--t211-paper);
}

.t211-pagination .page-numbers:hover:not(.current) {
  border-color: var(--t211-ink);
}

.t211-pagination .page-numbers.dots {
  border-color: transparent;
}

/* =========================================================
   17. COMMENTS
   ========================================================= */
.t211-comments {
  margin-top: var(--t211-space-9);
  padding-top: var(--t211-space-8);
  border-top: 1px solid var(--t211-ink-20);
}

.t211-comments__title {
  margin-bottom: var(--t211-space-6);
}

.t211-comment-list {
  display: flex;
  flex-direction: column;
  gap: var(--t211-space-6);
}

.t211-comment {
  display: flex;
  gap: var(--t211-space-4);
}

.t211-comment__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.t211-comment__author {
  font-weight: 700;
  font-family: var(--t211-font-display);
  font-size: var(--t211-fs-sm);
}

.t211-comment__date {
  color: var(--t211-ink-60);
  font-size: 0.75rem;
  margin-bottom: var(--t211-space-2);
}

.t211-comment__body {
  font-size: var(--t211-fs-sm);
}

.t211-comment-form {
  margin-top: var(--t211-space-7);
}

.t211-comment-respond__title {
  margin-bottom: var(--t211-space-5);
}

/* =========================================================
   18. 404
   ========================================================= */
.t211-404 {
  text-align: center;
  padding-block: var(--t211-space-10);
}

.t211-404__code {
  font-family: var(--t211-font-display);
  font-weight: 800;
  font-size: var(--t211-fs-display);
  color: var(--t211-eleven);
  line-height: 1;
  margin-bottom: var(--t211-space-4);
}

.t211-404__title {
  margin-bottom: var(--t211-space-4);
}

.t211-404__copy {
  color: var(--t211-ink-60);
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: var(--t211-space-6);
}

/* =========================================================
   19. UTILITY
   ========================================================= */
.t211-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.t211-skip-link {
  position: absolute;
  top: -100%;
  left: var(--t211-space-4);
  z-index: 100;
  background: var(--t211-ink);
  color: var(--t211-paper);
  padding: var(--t211-space-3) var(--t211-space-5);
  border-radius: var(--t211-radius-sm);
  font-weight: 700;
  transition: top var(--t211-duration) var(--t211-ease);
}

.t211-skip-link:focus {
  top: var(--t211-space-4);
  color: var(--t211-paper);
}

.t211-text-center { text-align: center; }
.t211-mt-0 { margin-top: 0; }

/* =========================================================
   20. ACCESSIBILITY / FOCUS / MOTION
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--t211-eleven);
  outline-offset: 2px;
}

::selection {
  background: var(--t211-eleven);
  color: var(--t211-paper);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .t211-card:hover {
    transform: none;
  }
}
