:root {
  --tlm-bg: #ffffff;
  --tlm-surface: #fff;
  --tlm-surface-soft: #f0e2de;
  --tlm-text: #0c1212;
  --tlm-muted: #6e5d60;
  --tlm-border: rgba(58, 31, 34, .12);
  --tlm-accent: #e180b1;
  --tlm-accent-strong: #e180b1;
  --tlm-accent-soft: #f0e2de;

  --tlm-powder: #e6a1c0;
  --tlm-salmon: #ebc1cf;
  --tlm-gold: #d3ac5f;
  --tlm-brownie: #3a1f22;
  --tlm-deep-black: #0c1212;
  --tlm-pure-white: #ffffff;

  --tlm-container: 1440px;
  --tlm-gutter: clamp(20px, 3.333vw, 64px);

  --tlm-radius-sm: 12px;
  --tlm-radius-md: 18px;
  --tlm-radius-lg: 28px;
  --tlm-radius-pill: 999px;

  --tlm-space-1: 4px;
  --tlm-space-2: 8px;
  --tlm-space-3: 12px;
  --tlm-space-4: 16px;
  --tlm-space-5: 24px;
  --tlm-space-6: 32px;
  --tlm-space-7: 48px;
  --tlm-space-8: 64px;
  --tlm-space-9: 96px;
  --tlm-section-space: clamp(58px, 4.8vw, 84px);
  --tlm-section-head-gap: clamp(22px, 2.2vw, 34px);

  --tlm-font: Arial, Helvetica, sans-serif;
  --tlm-font-xs: 10px;
  --tlm-font-sm: 12px;
  --tlm-font-md: 14px;
  --tlm-font-lg: 18px;
  --tlm-font-xl: 24px;

  --tlm-shadow-sm: 0 8px 24px rgba(62, 43, 50, .05);
  --tlm-shadow-md: 0 18px 50px rgba(72, 42, 53, .08);
  --tlm-shadow-lg: 0 28px 70px rgba(72, 42, 53, .12);

  --tlm-duration-fast: 180ms;
  --tlm-duration-normal: 280ms;
  --tlm-duration-slow: 600ms;
  --tlm-ease: cubic-bezier(.2, .65, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--tlm-text);
  background: var(--tlm-bg);
  font-family: var(--tlm-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.tlm-overlay-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--tlm-accent);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  border: 0;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  width: auto;
  height: auto;
  left: 10px;
  top: 10px;
  z-index: 100000;
  padding: 12px 16px;
  background: #fff;
  color: #000;
}
.tlm-skip-link { position: fixed; left: -9999px; top: 12px; z-index: 100000; }
.tlm-skip-link:focus { left: 12px; padding: 10px 14px; background: #fff; }

.tlm-container,
.tlm-container--wide {
  width: calc(100% - (var(--tlm-gutter) * 2));
  max-width: var(--tlm-container);
  margin-inline: auto;
}
.tlm-container--narrow { max-width: 1180px; }
.tlm-section { padding-block: var(--tlm-section-space); }
.tlm-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tlm-section h2,
.tlm-story h2,
.tlm-newsletter h2,
.tlm-campaign h2 {
  margin: 0;
  font-size: clamp(34px, 4.3vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.tlm-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--tlm-space-5);
  margin-bottom: var(--tlm-section-head-gap);
}
.tlm-section-head h2 { font-size: clamp(30px, 3.4vw, 56px); }
.tlm-section-head__actions { display: flex; align-items: center; gap: var(--tlm-space-6); }
.tlm-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.tlm-link-arrow svg { width: 16px; transition: transform var(--tlm-duration-fast) var(--tlm-ease); }
.tlm-link-arrow:hover svg { transform: translateX(4px); }

.tlm-btn,
.tlm-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--tlm-radius-pill);
  background: transparent;
  font-size: var(--tlm-font-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--tlm-duration-fast) ease,
    color var(--tlm-duration-fast) ease,
    border-color var(--tlm-duration-fast) ease,
    transform var(--tlm-duration-fast) ease,
    box-shadow var(--tlm-duration-fast) ease;
}
.tlm-btn svg,
.tlm-button svg { width: 16px; transition: transform var(--tlm-duration-fast) ease; }
.tlm-btn:hover,
.tlm-button:hover { transform: translateY(-1px); }
.tlm-btn:hover svg,
.tlm-button:hover svg { transform: translateX(2px); }
.tlm-btn--primary { background: var(--tlm-accent-strong); color: #fff; box-shadow: var(--tlm-shadow-sm); }
.tlm-btn--primary:hover { background: var(--tlm-accent); }
.tlm-btn--secondary,
.tlm-button--solid { background: #fff; color: var(--tlm-text); border-color: var(--tlm-border); }
.tlm-btn--secondary:hover,
.tlm-button--solid:hover { background: var(--tlm-text); color: #fff; border-color: var(--tlm-text); }
.tlm-btn--dark,
.tlm-button--dark { background: var(--tlm-text); color: #fff; border-color: var(--tlm-text); }
.tlm-btn--dark:hover,
.tlm-button--dark:hover { background: #fff; color: var(--tlm-text); }
.tlm-btn--ghost { border-color: var(--tlm-border); background: transparent; }
.tlm-btn--ghost:hover { background: var(--tlm-surface-soft); border-color: rgba(184, 111, 127, .3); }

.tlm-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--tlm-radius-pill);
  background: #fff;
  color: var(--tlm-text);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--tlm-shadow-sm);
}
.tlm-badge--accent { background: var(--tlm-accent-soft); color: #92566a; }
.tlm-badge--dark { background: var(--tlm-text); color: #fff; }

.tlm-editor-note { margin: 0; padding: 18px; border: 1px dashed var(--tlm-border); color: var(--tlm-muted); }
.tlm-default-page, .tlm-404 { min-height: 55vh; padding-block: clamp(80px, 10vw, 160px); }
.tlm-prose { max-width: 900px; }
.tlm-prose h1, .tlm-404 h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 500;
}

@media (max-width: 767px) {
  :root { --tlm-section-space: 52px; --tlm-section-head-gap: 22px; }
  .tlm-section-head { align-items: flex-start; }
  .tlm-section-head__actions { gap: var(--tlm-space-4); }
  .tlm-section-head .tlm-link-arrow { font-size: 11px; }
}

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