/* ────────────────────────────────────────────────────────────
   base.css — Terra Mia Hugo Theme — neutral foundation
   Aggiornato 2026-05-15 (post-blueprint refactor)

   Cosa contiene:
   - Reset minimo (box-sizing, margin/padding root)
   - Body defaults (font-family fallback, smoothing, color scheme dark)
   - Scroll behavior + skip-link a11y
   - Container utility (.tm-shell)
   - Scroll-reveal IntersectionObserver styles ([data-reveal])
   - Touch target minimum a11y

   Cosa NON contiene:
   - Palette colori (sta in dna-*.css, custom properties)
   - Tipografia specifica DNA (font-family, sizes — sta in dna-*.css)
   - Sezioni specifiche (hero/cards/etc — sta in dna-*.css)

   Caricato SEMPRE in baseof.html, prima di qualsiasi DNA css.
   ──────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* ── Design tokens (§C.1) — spacing 8pt grid ───────────────── */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Type scale modulare ~1.25 con clamp (fluid) */
  --fs-body: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);   /* 16–18px */
  --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --fs-h2: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  --fs-h1: clamp(2.2rem, 1.6rem + 3vw, 3.5rem);
  --lh-body: 1.6;
  --lh-tight: 1.15;
  --measure: 64ch;
  --measure-tight: 46ch; /* standard §4: corpo >=46ch (era 42 = al limite "spezzato") */

  /* Fluid modular scale — 320px → 1240px (Utopia-style, legacy compat) */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.95rem + 0.25vw, 1.20rem);
  --step-1:  clamp(1.20rem, 1.10rem + 0.50vw, 1.60rem);
  --step-2:  clamp(1.44rem, 1.25rem + 0.95vw, 2.13rem);
  --step-3:  clamp(1.73rem, 1.40rem + 1.65vw, 2.84rem);
  --step-4:  clamp(2.07rem, 1.55rem + 2.60vw, 3.79rem);
  --step-5:  clamp(1.85rem, 1.55rem + 1.1vw, 2.6rem); /* hero display cap — aligned to every DNA's --step-5 override (premium-ceiling §3 / K-D23 restraint, heading/body <=2.6x). Was 5.06rem: an over-scale central fallback no production DNA used, which made DNA-less/orphan builds fail K-D23. */
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Default font fallback — DNA css overrides with brand-specific stack */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* Bicolor heading utility (§C.2) — DNA sets --c-accent */
.h-accent { color: var(--c-accent, var(--tm-terra, currentColor)); }

/* Prose measure (§C.2) */
.prose { max-width: var(--measure); }

/* ── Shared typography geometry (DNA owns family/color) ───── */
.tm-hero__title {
  font-size: var(--step-5);
  line-height: 1.05;
  text-wrap: balance;
  max-width: 12ch;
}
.tm-section__title {
  font-size: var(--step-3);
  line-height: 1.08;
}
.tm-section__lede,
.tm-hero__lede {
  font-size: var(--step-1);
  max-width: var(--measure-tight);
}
.tm-section__kicker,
.tm-hero__eyebrow {
  font-size: var(--step--1);
}

/* ── Skip link (WCAG 2.4.1) ──────────────────────────────── */
.tm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
  border-radius: 0 0 6px 0;
}
.tm-skip:focus { left: 0; outline: none; }

/* ── Focus-visible (WCAG 2.4.7) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--tm-gold, #d89a5a);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ── Container utility ───────────────────────────────────── */
.tm-shell {
  max-width: var(--tm-shell-max, 1240px);
  margin: 0 auto;
  padding-left: var(--tm-shell-pad, clamp(1.2rem, 3vw, 2rem));
  padding-right: var(--tm-shell-pad, clamp(1.2rem, 3vw, 2rem));
}

/* ── Scroll-reveal animation (IntersectionObserver-driven) ──
   CPPS-4 universal baseline (all DNA, Studio+):
   - no-JS: everything visible (never hide content without JS)
   - .js (set inline in baseof.html <head>): hidden until reveal.js adds .is-visible
   - prefers-reduced-motion: always static
   DNA files MUST NOT redefine [data-reveal] visibility (lint: CPPS-3/CPPS-4). */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ── Touch targets (WCAG 2.5.5) ────────────────────────── */
a, button, input, select, textarea {
  min-height: 1px; /* permette override per inline links */
}
@media (pointer: coarse) {
  a:not(.tm-inline), button, .tm-cta, .tm-chip {
    min-height: 44px;
  }
}

/* ── Sr-only utility ─────────────────────────────────────── */
.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;
}

/* ── Nowrap utility (F4.1b: keep short JP labels/links on one line) ──
   Generic counterpart to the footer-scoped .tm-footer__nowrap. Apply to
   short labels/links (e.g. ブログ, ご予約) where a mid-word break reads as
   machine-generated. A10 micro-craft: pair with DNA `word-break: keep-all`
   on headings; this handles inline labels that are not headings. */
.tm-nowrap { white-space: nowrap; }

/* ── Image responsive default ────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }
img[loading] { background: var(--tm-bg-soft, #1d1814); }

/* ── Form baseline (input/textarea coherent across DNAs) ── */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* ── Print baseline (sobrio editoriale) ──────────────────── */
@media print {
  [data-reveal] { opacity: 1; transform: none; }
  .tm-skip, nav, footer { display: none; }
  body { color: #000; background: #fff; font-size: 11pt; }
}

/* ──────────────────────────────────────────────────────────
   Hero variant pool geometry (V1+ G12 — 2026-05-17)

   Modifier classes per hero variant DNA-agnostic. Geometria base qui;
   colori, font, accent vengono ereditati da .tm-hero del DNA caricato.
   Pattern BEM: .tm-hero--{variant}.

   Variant disponibili:
   - .tm-hero--compact  → hero typography-driven medio (size XS-S vs atmospheric XL)
   - .tm-hero--split    → 2-column layout (text 5fr / visual 3fr)
   ────────────────────────────────────────────────────────── */

/* ── .tm-hero--compact ──────────────────────────────────── */
.tm-hero--compact {
  padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 3vw, 2.5rem) clamp(2.5rem, 6vh, 5rem);
}
.tm-hero--compact .tm-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.tm-hero--compact .tm-hero__title {
  font-size: var(--step-4);
  max-width: 22ch;
}
.tm-hero--compact .tm-hero__lede {
  margin-top: 1rem;
  max-width: 50ch;
}

/* ── .tm-hero--split ────────────────────────────────────── */
.tm-hero--split {
  padding: clamp(4rem, 10vh, 8rem) clamp(1.2rem, 3vw, 2.5rem) clamp(3rem, 8vh, 6rem);
}
.tm-hero--split .tm-hero__inner--split {
  max-width: var(--tm-shell-max, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .tm-hero--split .tm-hero__inner--split {
    grid-template-columns: 5fr 3fr;
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}
.tm-hero--split .tm-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tm-hero--split .tm-hero__title {
  max-width: 18ch;
}
.tm-hero--split .tm-hero__visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-hero--split .tm-hero__visual img,
.tm-hero--split .tm-hero__visual svg {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
}
@media (max-width: 899px) {
  .tm-hero--split .tm-hero__visual {
    max-height: 40vh;
    overflow: hidden;
  }
  .tm-hero--split .tm-hero__visual img,
  .tm-hero--split .tm-hero__visual svg {
    max-height: 40vh;
  }
}

/* ── .tm-hero--cinema (photo-led LCP, DNA-agnostic geometry) ── */
.tm-hero--cinema {
  min-height: min(92vh, 920px);
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
  padding: clamp(5rem, 14vh, 8rem) var(--tm-shell-pad, 1.2rem) clamp(2.5rem, 6vh, 4rem);
}
.tm-hero--cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tm-hero--cinema .tm-hero__inner {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.tm-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.tm-hero__media .tm-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tm-hero--cinema .tm-hero__title {
  font-size: var(--step-5, clamp(2.8rem, 8vw, 5.5rem));
  line-height: 0.92;
  max-width: 12ch;
}
.tm-hero--cinema .tm-hero__lede {
  font-size: var(--step-1, 1.1rem);
  max-width: 38ch;
}

/* ──────────────────────────────────────────────────────────
   Section variant pool geometry (V1+ G12 — 2026-05-17)

   8 partials compositive in layouts/partials/sections/:
   - gallery.html     → .tm-section--gallery + .tm-gallery
   - editorial_list   → .tm-section--list + .tm-editorial-list
   - quote_break      → .tm-section--quote-break + .tm-quote-break__*
   - timeline         → .tm-section--timeline + .tm-timeline
   - proof_numbers    → .tm-section--proof-numbers + .tm-proof-numbers
   - cta_band         → .tm-section--cta-band + .tm-cta-band__*
   - feature_list     → .tm-section--features + .tm-feature-list
   - cards            → .tm-section--cards + reuses .tm-cards-grid/.tm-card (from DNA css)

   Geometry only here — colori, font, accent ereditati dal DNA caricato.
   ────────────────────────────────────────────────────────── */

/* ── Gallery grid ───────────────────────────────────────── */
.tm-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 600px) {
  .tm-gallery--grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .tm-gallery--grid { grid-template-columns: repeat(3, 1fr); }
}
.tm-gallery--strip {
  display: grid;
  /* Reset .tm-gallery's explicit 1fr template: with grid-auto-flow column the
     first figure would land in that explicit column, which resolves to 0px
     (first image collapsed). All strip columns must be implicit (auto-columns). */
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: min(80%, 32rem);
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--tm-shell-pad, 1.2rem);
  -webkit-overflow-scrolling: touch;
}
.tm-gallery--strip {
  grid-auto-columns: minmax(280px, 78vw);
  padding-bottom: 0.5rem;
}
@media (min-width: 900px) {
  .tm-gallery--strip { grid-auto-columns: minmax(340px, 32vw); }
}
.tm-gallery--strip .tm-gallery__figure { scroll-snap-align: start; }
.tm-gallery--strip:focus-visible {
  outline: 2px solid var(--tm-gold, currentColor);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .tm-gallery--strip { scroll-behavior: auto; }
}
.tm-gallery__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.tm-gallery__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--tm-bg-deep, #ddd8cc);
}
.tm-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* F2.3 derivative <picture> wrappers (AVIF source) must be layout-transparent:
   display:contents removes the picture box so img keeps matching the
   frame/figure geometry above exactly as before the wrapper existed. */
.tm-gallery__figure picture,
.tm-hero__media picture {
  display: contents;
}
.tm-gallery__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  pointer-events: none;
}
.tm-gallery__role {
  margin: 0 0 0.25rem;
  font-size: var(--step--1, 0.84rem);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.tm-gallery--grid .tm-gallery__figure img {
  width: 100%;
  height: clamp(220px, 40vh, 380px);
  object-fit: cover;
  display: block;
  transition: filter 0.5s;
}
.tm-gallery__caption {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  font-style: italic;
}
.tm-gallery--strip .tm-gallery__caption {
  font-style: normal;
  font-size: var(--step--1, 0.84rem);
  max-width: 28ch;
}

/* Gallery strip section shell (palette in DNA css) */
.tm-section--gallery-strip {
  max-width: none;
  padding-inline: 0;
}
.tm-section--gallery-strip > .tm-section__head {
  max-width: var(--tm-shell-max, 1240px);
  margin-inline: auto;
  padding-inline: var(--tm-shell-pad, 1.2rem);
}
.tm-section--gallery-strip .tm-gallery--strip {
  padding-inline: var(--tm-shell-pad, 1.2rem);
  margin-top: 0;
}

/* Trust rail geometry (palette in DNA css) */
.tm-trust-rail__inner {
  max-width: var(--tm-shell-max, 1240px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
  padding: 1.35rem var(--tm-shell-pad, 1.2rem);
  font-size: var(--step--1, 0.84rem);
}
.tm-trust-rail__facts {
  margin: 0;
  flex: 1 1 12rem;
}
.tm-trust-rail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* Stay list geometry (palette in DNA css) */
.tm-stay-list__rows {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--tm-line, rgba(0, 0, 0, 0.12));
}
.tm-stay-list__row {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--tm-line, rgba(0, 0, 0, 0.12));
}
@media (min-width: 768px) {
  .tm-stay-list__row {
    grid-template-columns: 3rem 12rem 1fr auto;
    align-items: baseline;
    gap: 1.5rem;
  }
}
.tm-stay-list__idx {
  font-size: var(--step--1, 0.84rem);
  font-variant-numeric: tabular-nums;
}
.tm-stay-list__title {
  margin: 0;
  font-weight: 600;
}
.tm-stay-list__desc {
  margin: 0;
  font-size: var(--step--1, 0.84rem);
}
.tm-stay-list__link {
  font-size: var(--step--1, 0.84rem);
  text-decoration: none;
  white-space: nowrap;
}

/* ── Editorial list (no cards, divider sottili) ─────────── */
.tm-editorial-list {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border-top: 1px solid var(--tm-line, rgba(0,0,0,0.12));
}
.tm-editorial-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--tm-line, rgba(0,0,0,0.12));
}
@media (min-width: 720px) {
  .tm-editorial-list__item {
    grid-template-columns: 200px 1fr 200px;
    gap: 2rem;
    align-items: baseline;
  }
}
.tm-editorial-list__meta { font-size: 0.9rem; white-space: nowrap; }
.tm-editorial-list__title { margin: 0; font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.25; }
.tm-editorial-list__title a { text-decoration: none; border-bottom: none; }
.tm-editorial-list__desc { margin: 0.35rem 0 0; font-size: 0.95rem; line-height: 1.5; opacity: 0.88; max-width: 42rem; }
.tm-editorial-list__location { font-size: 0.88rem; font-style: italic; }
@media (min-width: 720px) { .tm-editorial-list__location { text-align: right; } }

/* ── Quote break (manifesto-style cream/dark inversion) ── */
.tm-section--quote-break {
  padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 3vw, 2.5rem);
  text-align: center;
}
.tm-quote-break__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.tm-quote-break__kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
}
.tm-quote-break__quote {
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  font-style: italic;
}
.tm-quote-break__cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.tm-quote-break__divider {
  width: 60px;
  height: 1px;
  border: 0;
  opacity: 0.6;
}
.tm-quote-break__body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  margin: 0;
  max-width: 60ch;
}

/* ── Timeline (process steps, mobile stacked / desktop horizontal) ── */
.tm-timeline {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .tm-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
  }
}
.tm-timeline__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 900px) {
  .tm-timeline__step { grid-template-columns: 1fr; gap: 0.75rem; }
}
.tm-timeline__num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1;
  font-weight: 400;
  font-family: var(--tm-font-serif, Georgia, serif);
}
.tm-timeline__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
}
.tm-timeline__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── Proof numbers (3-4 big stats) ──────────────────────── */
.tm-proof-numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
@media (min-width: 600px) {
  .tm-proof-numbers--2 { grid-template-columns: repeat(2, 1fr); }
  .tm-proof-numbers--3, .tm-proof-numbers--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .tm-proof-numbers--3 { grid-template-columns: repeat(3, 1fr); }
  .tm-proof-numbers--4 { grid-template-columns: repeat(4, 1fr); }
}
.tm-proof-numbers__item { display: flex; flex-direction: column; gap: 0.5rem; }
.tm-proof-numbers__value {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  margin: 0;
  font-family: var(--tm-font-serif, Georgia, serif);
  font-weight: 400;
}
.tm-proof-numbers__label {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.tm-proof-numbers__sublabel {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ── CTA band (full-width) ──────────────────────────────── */
.tm-section--cta-band {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.2rem, 3vw, 2.5rem);
  text-align: center;
}
.tm-cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.tm-cta-band__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}
.tm-cta-band__body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
.tm-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

/* ── Feature list (con icone check, 1 o 2 col) ──────────── */
.tm-feature-list {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
@media (min-width: 720px) {
  .tm-feature-list--two-col { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 4rem); }
}
.tm-feature-list__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
}
.tm-feature-list__icon {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 700;
}
.tm-feature-list__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;
}
.tm-feature-list__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}
