
:root {
  --tm-bg: #fff7ec;
  --tm-card: #ffffff;
  --tm-ink: #111111;
  --tm-muted: #555555;
  --tm-orange: #ff8a00;
  --tm-green: #00a63c;
  --tm-border: #eadcc9;
  --tm-shadow: 0 20px 55px rgba(0,0,0,.10);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Lexend Deca", Arial, sans-serif;
  background: var(--tm-bg);
  color: var(--tm-ink);
  line-height: 1.55;
  font-size: 17px;
}
a { color: inherit; }
.tm-site-header {
  background: #fffaf2;
  border-bottom: 1px solid var(--tm-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.tm-header-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.tm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.tm-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.tm-nav ul, .tm-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.tm-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.tm-main { padding: 34px 0 54px; }
.tm-container {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
}
.tm-page {
  overflow: hidden;
}
.tm-hero, .tm-section {
  background: var(--tm-card);
  border: 1px solid var(--tm-border);
  border-radius: 24px;
  box-shadow: var(--tm-shadow);
  padding: clamp(24px, 4vw, 54px);
  margin: 0 0 34px;
}
.tm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.tm-hero h1 {
  font-size: clamp(36px, 6vw, 70px);
  line-height: .98;
  margin: 10px 0 18px;
}
.tm-kicker {
  color: var(--tm-orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
  margin: 0 0 8px;
}
.tm-btn, .tm-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--tm-orange);
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 15px 24px;
  text-decoration: none;
  box-shadow: 0 14px 22px rgba(255,138,0,.25);
  cursor: pointer;
}
.tm-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 20px 0 8px;
}
.tm-form input {
  min-width: 0;
  border: 1px solid var(--tm-border);
  border-radius: 999px;
  padding: 15px 18px;
  font: inherit;
  background: #fff;
}
.tm-small { color: var(--tm-muted); font-size: 14px; }
.tm-two-col, .tm-alt-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}
.tm-alt-row {
  border-top: 1px solid var(--tm-border);
  padding: 32px 0;
}
.tm-row-reverse .tm-alt-media { order: 2; }
.tm-row-reverse .tm-alt-copy { order: 1; }
.tm-step {
  display: inline-block;
  background: #eafff1;
  color: var(--tm-green);
  font-weight: 900;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  margin-bottom: 8px;
}
.tm-card {
  background: #fffaf2;
  border: 1px solid var(--tm-border);
  border-radius: 18px;
  padding: 24px;
}
.tm-long-copy {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.tm-long-copy h1, .tm-section h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.tm-long-copy h2, .tm-section h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  margin-top: 32px;
}
.tm-long-copy h3, .tm-section h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}
.tm-image-wrap {
  margin: 28px auto;
  text-align: center;
}
img, .tm-page-img {
  max-width: 100%;
  height: auto;
  display: block;
  position: static !important;
  float: none !important;
  clear: both;
  z-index: auto !important;
}
.tm-hero-image img, .tm-image-wrap img, .tm-alt-media img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}
.tm-msb h2 {
  margin-top: 0;
}
.tm-site-footer {
  text-align: center;
  padding: 28px;
  color: var(--tm-muted);
}
@media (max-width: 820px) {
  .tm-header-inner { flex-direction: column; align-items: flex-start; }
  .tm-nav ul, .tm-menu { flex-wrap: wrap; }
  .tm-hero, .tm-two-col, .tm-alt-row {
    grid-template-columns: 1fr;
  }
  .tm-row-reverse .tm-alt-media,
  .tm-row-reverse .tm-alt-copy {
    order: initial;
  }
  .tm-form { grid-template-columns: 1fr; }
}
