/* TOKUHUB — collar-tag ring · forest clinic · to- */
:root {
  --to-forest: #4A6B58;
  --to-forest-deep: #3A5646;
  --to-ivory: #F5F1EA;
  --to-clay: #C48B6A;
  --to-clay-deep: #A87355;
  --to-charcoal: #2A2F2C;
  --to-mist: #E8E4DC;
  --to-wash: #EDF2EE;
  --to-line: rgba(42, 47, 44, 0.12);
  --to-soft: rgba(74, 107, 88, 0.14);
  --to-font: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --to-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --to-shell: min(1120px, calc(100% - 2.5rem));
  --to-ring-h: 5.75rem;
  --to-ease: cubic-bezier(.22, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--to-font);
  color: var(--to-charcoal);
  background: var(--to-ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.to-sheet-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--to-serif);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
}
p { margin: 0; }

.to-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--to-forest);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.to-skip:focus { left: .75rem; top: .75rem; }

.to-shell {
  width: var(--to-shell);
  margin-inline: auto;
}

/* —— Collar-tag ring nav —— */
.to-ring {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: .75rem 1.25rem;
  min-height: var(--to-ring-h);
  padding: .55rem 1.25rem .7rem;
  background: color-mix(in srgb, var(--to-ivory) 92%, #fff);
  border-bottom: 1px solid var(--to-line);
  backdrop-filter: blur(10px);
  transition: box-shadow .35s var(--to-ease), background .35s var(--to-ease);
}
.to-ring.is-scrolled {
  box-shadow: 0 8px 28px rgba(42, 47, 44, 0.08);
  background: color-mix(in srgb, var(--to-ivory) 96%, #fff);
}

.to-ring__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .35rem;
}
.to-ring__mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--to-forest);
  color: var(--to-ivory);
  font-family: var(--to-serif);
  font-size: .95rem;
  font-weight: 700;
}
.to-ring__text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.to-ring__text b {
  font-family: var(--to-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.to-ring__text small {
  font-size: .68rem;
  color: color-mix(in srgb, var(--to-charcoal) 65%, transparent);
  letter-spacing: 0.06em;
}

.to-ring__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding-top: .35rem;
}
.to-ring__rail {
  position: absolute;
  left: .4rem;
  right: .4rem;
  top: .55rem;
  height: 2px;
  pointer-events: none;
}
.to-ring__wire {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--to-charcoal) 35%, transparent) 8%,
    color-mix(in srgb, var(--to-charcoal) 45%, transparent) 50%,
    color-mix(in srgb, var(--to-charcoal) 35%, transparent) 92%,
    transparent
  );
  box-shadow: 0 1px 0 rgba(255,255,255,.4);
}

.to-ring__tags {
  list-style: none;
  margin: 0;
  padding: .85rem .2rem 0;
  display: flex;
  justify-content: center;
  gap: clamp(.35rem, 1.6vw, 1.1rem);
}
.to-ring__item {
  margin: 0;
  transform: translateY(0);
}
.to-ring__item--d1 { transform: translateY(.35rem); }

.to-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 3.6rem;
}
.to-tag__hook {
  width: 9px;
  height: 9px;
  border: 1.6px solid var(--to-clay);
  border-radius: 50%;
  background: var(--to-ivory);
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--to-clay) 25%, transparent);
}
.to-tag__hook::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1.5px;
  height: 7px;
  background: color-mix(in srgb, var(--to-charcoal) 40%, transparent);
  transform: translateX(-50%);
}
.to-tag__oval {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  width: 3.55rem;
  height: 4.15rem;
  margin-top: 6px;
  border-radius: 50% / 46%;
  border: 1.5px solid color-mix(in srgb, var(--to-charcoal) 28%, transparent);
  background:
    linear-gradient(165deg, #fffef9 0%, var(--to-ivory) 55%, #ebe6dc 100%);
  box-shadow:
    0 6px 14px rgba(42, 47, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .35s var(--to-ease), border-color .25s, background .25s;
}
.to-tag__oval em {
  font-style: normal;
  font-size: .58rem;
  letter-spacing: 0.08em;
  color: var(--to-clay-deep);
  font-family: var(--to-font);
  font-weight: 700;
}
.to-tag__oval span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--to-charcoal);
}
.to-tag:hover .to-tag__oval,
.to-tag[aria-current="page"] .to-tag__oval {
  transform: translateY(-3px);
  border-color: var(--to-forest);
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, var(--to-wash) 80%, #fff) 100%);
}
.to-tag[aria-current="page"] .to-tag__oval {
  background: var(--to-forest);
  border-color: var(--to-forest-deep);
  color: var(--to-ivory);
}
.to-tag[aria-current="page"] .to-tag__oval em,
.to-tag[aria-current="page"] .to-tag__oval span {
  color: var(--to-ivory);
}
.to-tag[aria-current="page"] .to-tag__hook {
  border-color: var(--to-forest);
  background: var(--to-forest);
}

.to-ring__place {
  margin: 0;
  font-size: .68rem;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--to-charcoal) 55%, transparent);
  writing-mode: horizontal-tb;
  align-self: center;
  white-space: nowrap;
}

.to-ring__toggle {
  display: none;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--to-line);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .7rem;
  cursor: pointer;
  color: var(--to-charcoal);
}
.to-ring__toggle span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--to-charcoal);
  position: relative;
}
.to-ring__toggle span + span { margin-top: 4px; }
.to-ring__toggle em {
  font-style: normal;
  font-size: .7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Mobile sheet */
.to-sheet-shade {
  position: fixed;
  inset: 0;
  background: rgba(42, 47, 44, 0.42);
  z-index: 60;
}
.to-sheet {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  background: var(--to-ivory);
  z-index: 70;
  padding: 1.25rem 1.35rem 2rem;
  transform: translateX(105%);
  transition: transform .4s var(--to-ease);
  border-left: 1px solid var(--to-line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.to-sheet.is-open { transform: translateX(0); }
.to-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.to-sheet__head strong {
  font-family: var(--to-serif);
  font-size: 1.15rem;
}
.to-sheet__head button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .85rem;
  letter-spacing: 0.08em;
  color: var(--to-forest);
}
.to-sheet__tags {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.to-sheet__tags a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .55rem .4rem;
  border-bottom: 1px solid var(--to-line);
}
.to-sheet__oval {
  width: 2.6rem;
  height: 3rem;
  border-radius: 50% / 46%;
  border: 1.4px solid color-mix(in srgb, var(--to-charcoal) 25%, transparent);
  display: grid;
  place-items: center;
  background: #fff;
}
.to-sheet__oval em {
  font-style: normal;
  font-size: .62rem;
  font-weight: 700;
  color: var(--to-clay-deep);
  letter-spacing: 0.06em;
}
.to-sheet__tags a[aria-current="page"] .to-sheet__oval {
  background: var(--to-forest);
  border-color: var(--to-forest);
}
.to-sheet__tags a[aria-current="page"] .to-sheet__oval em { color: var(--to-ivory); }
.to-sheet__meta {
  margin-top: auto;
  font-size: .78rem;
  color: color-mix(in srgb, var(--to-charcoal) 65%, transparent);
  line-height: 1.6;
}

/* UI atoms */
.to-kicker {
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--to-forest);
  font-weight: 700;
  margin: 0 0 .55rem;
}
.to-brand-hero {
  font-family: var(--to-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 .35rem;
  color: #fff;
}
.to-lead {
  max-width: 34rem;
  color: color-mix(in srgb, #fff 88%, transparent);
  font-size: .98rem;
}
.to-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--to-forest);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid color-mix(in srgb, var(--to-forest) 35%, transparent);
  padding-bottom: .1rem;
  width: fit-content;
}
.to-link:hover { color: var(--to-forest-deep); }

.to-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}
.to-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.25rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .25s var(--to-ease), background .25s, color .25s;
}
.to-btn:hover { transform: translateY(-1px); }
.to-btn--clay {
  background: var(--to-clay);
  color: #fff;
}
.to-btn--clay:hover { background: var(--to-clay-deep); }
.to-btn--ghost {
  background: transparent;
  border-color: color-mix(in srgb, #fff 55%, transparent);
  color: #fff;
}
.to-btn--ghost:hover { background: rgba(255,255,255,.1); }
.to-btn--light {
  background: #fff;
  color: var(--to-forest-deep);
}

/* Hero */
.to-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.to-hero__media {
  position: absolute;
  inset: 0;
}
.to-hero__track,
.to-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
}
.to-hero__slide {
  opacity: 0;
  transition: opacity 1.1s var(--to-ease);
}
.to-hero__slide.is-active { opacity: 1; }
.to-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.to-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 47, 44, 0.78) 0%, rgba(74, 107, 88, 0.45) 48%, rgba(42, 47, 44, 0.25) 100%),
    linear-gradient(0deg, rgba(42, 47, 44, 0.55) 0%, transparent 45%);
  pointer-events: none;
}
.to-hero__copy {
  position: relative;
  z-index: 2;
  width: var(--to-shell);
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}
.to-hero__copy h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin: 0 0 .85rem;
  color: #fff;
}
.to-hero__dots {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--to-shell)) / 2));
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  gap: .45rem;
}
.to-hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.to-hero__dots button.is-active { background: #fff; width: 22px; border-radius: 999px; }

/* Tag-shaped meters */
.to-meters {
  padding: 3.5rem 0 2.5rem;
  background: var(--to-wash);
}
.to-meters__intro {
  max-width: 28rem;
  margin-bottom: 2rem;
}
.to-meters__intro h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: .6rem;
}
.to-meters__intro p {
  color: color-mix(in srgb, var(--to-charcoal) 72%, transparent);
  font-size: .95rem;
}
.to-tag-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
}
.to-tag-stats__rail {
  position: absolute;
  left: 6%;
  right: 6%;
  top: .35rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--to-charcoal) 30%, transparent), transparent);
}
.to-tag-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.to-tag-stat--2,
.to-tag-stat--4 { margin-top: .7rem; }
.to-tag-stat__hook {
  width: 10px;
  height: 10px;
  border: 1.6px solid var(--to-clay);
  border-radius: 50%;
  background: var(--to-ivory);
  position: relative;
  z-index: 1;
}
.to-tag-stat__hook::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1.5px;
  height: 10px;
  background: color-mix(in srgb, var(--to-charcoal) 35%, transparent);
  transform: translateX(-50%);
}
.to-tag-stat__oval {
  margin-top: 8px;
  width: min(100%, 8.5rem);
  aspect-ratio: 3 / 3.55;
  border-radius: 50% / 46%;
  border: 1.5px solid color-mix(in srgb, var(--to-charcoal) 22%, transparent);
  background: linear-gradient(165deg, #fff 0%, var(--to-ivory) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  box-shadow: 0 10px 24px rgba(42, 47, 44, 0.07);
}
.to-tag-stat__oval strong {
  font-family: var(--to-serif);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  color: var(--to-forest);
  font-weight: 700;
}
.to-tag-stat__oval > span {
  font-size: .78rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
}

/* Trust ticker */
.to-trust {
  overflow: hidden;
  border-block: 1px solid var(--to-line);
  background: #fff;
  padding: .85rem 0;
}
.to-trust__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: to-marquee 32s linear infinite;
  font-size: .82rem;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--to-charcoal) 65%, transparent);
}
.to-trust__track i { font-style: normal; color: var(--to-clay); }
@keyframes to-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.to-section { padding: 4.25rem 0; }
.to-section--ivory { background: var(--to-ivory); }
.to-section--wash { background: var(--to-wash); }
.to-section--mist { background: var(--to-mist); }
.to-section--forest {
  background: linear-gradient(160deg, var(--to-forest-deep), var(--to-forest));
  color: #fff;
}
.to-section--checklist { background: #fff; }
.to-section--grain {
  position: relative;
}
.to-section--grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.to-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.to-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.to-head p {
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
  font-size: .95rem;
}
.to-head--on-dark p { color: color-mix(in srgb, #fff 75%, transparent); }
.to-head--on-dark .to-kicker { color: color-mix(in srgb, var(--to-clay) 80%, #fff); }

.to-media {
  overflow: hidden;
  border-radius: 2px;
}
.to-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.to-media--frame {
  border: 1px solid var(--to-line);
  box-shadow: 0 12px 32px rgba(42, 47, 44, 0.08);
}
.to-media--soft { border-radius: 3px; }

/* Philosophy */
.to-philosophy__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.to-philosophy__copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .85rem;
}
.to-philosophy__copy > p {
  color: color-mix(in srgb, var(--to-charcoal) 75%, transparent);
  margin-bottom: .5rem;
}
.to-philosophy__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.to-philosophy__list li {
  display: grid;
  gap: .2rem;
  padding: .85rem 0;
  border-top: 1px solid var(--to-line);
}
.to-philosophy__list strong {
  font-family: var(--to-serif);
  font-size: 1.05rem;
  color: var(--to-forest);
}
.to-philosophy__list span {
  font-size: .9rem;
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
}
.to-philosophy__media { min-height: 420px; }

/* Menu bands — price ON image */
.to-menu-bands {
  display: grid;
  gap: 1rem;
}
.to-menu-band a { display: block; }
.to-menu-band__media {
  position: relative;
  min-height: clamp(200px, 28vw, 280px);
  overflow: hidden;
  border-radius: 2px;
}
.to-menu-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--to-ease);
}
.to-menu-band:hover img { transform: scale(1.04); }
.to-menu-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 47, 44, 0.72) 0%, rgba(42, 47, 44, 0.35) 55%, rgba(42, 47, 44, 0.55) 100%);
}
.to-menu-band__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  color: #fff;
}
.to-menu-band__label span {
  font-size: .72rem;
  letter-spacing: 0.14em;
  opacity: .85;
}
.to-menu-band__label h3 {
  margin: .35rem 0 .45rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}
.to-menu-band__label p {
  max-width: 28rem;
  font-size: .88rem;
  opacity: .88;
}
.to-menu-band__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .25rem;
  flex-shrink: 0;
}
.to-menu-band__time {
  font-size: .72rem;
  letter-spacing: 0.08em;
  opacity: .8;
}
.to-menu-band__meta b {
  font-family: var(--to-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #fff;
  background: color-mix(in srgb, var(--to-clay) 88%, transparent);
  padding: .35rem .7rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.to-menu-band__meta em {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: 0.06em;
  opacity: .9;
}

/* Day timeline */
.to-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1rem;
}
.to-timeline__line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: calc(1rem + 72px);
  height: 2px;
  background: color-mix(in srgb, var(--to-forest) 35%, transparent);
}
.to-timeline__node {
  position: relative;
  display: grid;
  gap: .55rem;
}
.to-timeline__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--to-line);
}
.to-timeline__node time {
  font-family: var(--to-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--to-forest);
}
.to-timeline__node h3 { font-size: 1rem; }
.to-timeline__node p {
  font-size: .86rem;
  color: color-mix(in srgb, var(--to-charcoal) 68%, transparent);
}

/* Voices asymmetric — no stars */
.to-voices-asym {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items: stretch;
}
.to-voices-asym blockquote {
  margin: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 1.35rem 1.4rem;
  border-radius: 2px;
}
.to-voices-asym__lead {
  padding: 1.8rem 1.7rem !important;
  background: rgba(255,255,255,.12) !important;
}
.to-quote-note {
  font-size: .7rem;
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--to-clay) 75%, #fff);
  margin-bottom: .85rem !important;
}
.to-voices-asym p { font-size: .98rem; line-height: 1.8; }
.to-voices-asym cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: 0.06em;
  opacity: .75;
}
.to-voices-asym__side {
  display: grid;
  gap: 1rem;
}

/* Checklist FAQ */
.to-check-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.to-check-layout header h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: .7rem;
}
.to-check-layout header p {
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
  font-size: .95rem;
}
.to-checklist {
  position: relative;
  background: var(--to-ivory);
  border: 1px solid var(--to-line);
  padding: 1.4rem 1.25rem 1rem;
  border-radius: 2px;
}
.to-checklist__clip {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 42px;
  height: 16px;
  transform: translateX(-50%);
  background: var(--to-clay);
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(42, 47, 44, 0.15);
}
.to-checklist__row {
  border-bottom: 1px solid var(--to-line);
  padding: .15rem 0;
}
.to-checklist__row summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  padding: .85rem 0;
  font-weight: 700;
  font-size: .95rem;
}
.to-checklist__row summary::-webkit-details-marker { display: none; }
.to-checklist__box {
  width: 1rem;
  height: 1rem;
  margin-top: .2rem;
  flex-shrink: 0;
  border: 1.5px solid var(--to-forest);
  border-radius: 2px;
  background: #fff;
  position: relative;
}
.to-checklist__row[open] .to-checklist__box::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--to-forest);
  border-radius: 1px;
}
.to-checklist__row p {
  padding: 0 0 1rem 1.75rem;
  font-size: .9rem;
  color: color-mix(in srgb, var(--to-charcoal) 72%, transparent);
}

/* CTA */
.to-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem auto 4rem;
  padding: 2rem 2.1rem;
  background: var(--to-forest);
  color: #fff;
  border-radius: 2px;
}
.to-cta--finale { margin-top: 0; }
.to-cta h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: .35rem 0 .55rem;
}
.to-cta p { opacity: .88; font-size: .92rem; max-width: 34rem; }
.to-cta .to-kicker { color: color-mix(in srgb, var(--to-clay) 70%, #fff); }

/* Inner pages */
.to-page-hero {
  padding: 3.25rem 0 1.5rem;
  background: linear-gradient(180deg, var(--to-wash), var(--to-ivory));
  border-bottom: 1px solid var(--to-line);
}
.to-page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: end;
}
.to-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.to-page-hero__grid > p {
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
}

.to-story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.25rem;
  align-items: center;
}
.to-story__media { min-height: 420px; }
.to-story__copy h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin: .4rem 0 .9rem;
}
.to-story__copy p {
  margin-bottom: .75rem;
  color: color-mix(in srgb, var(--to-charcoal) 75%, transparent);
}
.to-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.5rem;
}
.to-values div {
  padding: 1rem .9rem;
  background: var(--to-wash);
  border-top: 2px solid var(--to-forest);
}
.to-values b {
  font-size: .68rem;
  letter-spacing: 0.14em;
  color: var(--to-clay-deep);
}
.to-values h3 {
  font-size: 1rem;
  margin: .35rem 0 .3rem;
}
.to-values p { font-size: .82rem; margin: 0 !important; }

.to-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: #fff;
}
.to-team h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin: .35rem 0 .8rem;
}
.to-team p { opacity: .9; }
.to-team .to-kicker { color: color-mix(in srgb, var(--to-clay) 75%, #fff); }
.to-team dl {
  margin: 1.25rem 0 0;
  display: grid;
  gap: .75rem;
}
.to-team dt {
  font-size: .72rem;
  letter-spacing: 0.12em;
  opacity: .7;
}
.to-team dd { margin: .2rem 0 0; font-size: .92rem; }

.to-service-list { display: grid; gap: 2.5rem; }
.to-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.to-service-row--rev .to-media { order: 2; }
.to-num {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 0.14em;
  color: var(--to-forest);
  font-weight: 700;
  margin-bottom: .45rem;
}
.to-service-row h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: .7rem;
}
.to-service-row > div > p {
  color: color-mix(in srgb, var(--to-charcoal) 72%, transparent);
  margin-bottom: 1rem;
}
.to-checks {
  list-style: none;
  margin: 0 0 .75rem;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.to-checks li {
  padding-left: 1.15rem;
  position: relative;
  font-size: .92rem;
}
.to-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--to-clay);
}
.to-service-row small {
  color: color-mix(in srgb, var(--to-charcoal) 55%, transparent);
}

.to-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.to-split h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: .35rem 0 .7rem;
}
.to-split p {
  color: color-mix(in srgb, var(--to-charcoal) 72%, transparent);
}

.to-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.to-tag-label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: 0.14em;
  color: var(--to-forest);
  font-weight: 700;
  margin-bottom: .35rem;
}
.to-feature time,
.to-journal time {
  display: block;
  font-size: .78rem;
  color: color-mix(in srgb, var(--to-charcoal) 55%, transparent);
  margin-bottom: .55rem;
}
.to-feature h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  margin-bottom: .7rem;
}
.to-feature p {
  color: color-mix(in srgb, var(--to-charcoal) 72%, transparent);
}
.to-journal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.to-journal article h2 {
  font-size: 1.1rem;
  margin: .2rem 0 .45rem;
}
.to-journal article p {
  font-size: .88rem;
  color: color-mix(in srgb, var(--to-charcoal) 70%, transparent);
}

/* Contact */
.to-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.25rem;
}
.to-contact__info h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: .35rem 0 .9rem;
}
.to-contact__info > p {
  margin-bottom: 1.1rem;
  color: color-mix(in srgb, var(--to-charcoal) 75%, transparent);
}
.to-contact dl {
  margin: 0;
  display: grid;
  gap: .85rem;
}
.to-contact dt {
  font-size: .7rem;
  letter-spacing: 0.12em;
  color: var(--to-forest);
  font-weight: 700;
}
.to-contact dd { margin: .2rem 0 0; }
.to-route {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .82rem;
  padding: .9rem 1rem;
  background: var(--to-wash);
  border-radius: 2px;
}
.to-route i { color: var(--to-clay); font-style: normal; }
.to-route b { color: var(--to-forest); }

.to-form {
  background: #fff;
  border: 1px solid var(--to-line);
  padding: 1.6rem 1.5rem;
  border-radius: 2px;
}
.to-form h2 {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.to-field { margin-bottom: 1rem; }
.to-field label {
  display: block;
  font-size: .8rem;
  margin-bottom: .35rem;
  font-weight: 700;
}
.to-field label em {
  font-style: normal;
  color: var(--to-clay-deep);
  font-size: .72rem;
  margin-left: .25rem;
}
.to-field input,
.to-field select,
.to-field textarea {
  width: 100%;
  border: 1px solid var(--to-line);
  background: var(--to-ivory);
  padding: .7rem .8rem;
  border-radius: 2px;
  color: var(--to-charcoal);
}
.to-field input:focus,
.to-field select:focus,
.to-field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--to-forest) 35%, transparent);
  border-color: var(--to-forest);
}
.to-field--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.to-consent {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .82rem;
  margin: .5rem 0 1.1rem;
}
.to-success {
  text-align: center;
  padding: 1.5rem .5rem;
}
.to-success span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--to-forest);
  color: #fff;
  margin-bottom: .85rem;
}
.to-success h2 { margin-bottom: .5rem; }

.to-404 {
  padding: 5rem 0 6rem;
  text-align: center;
}
.to-404 strong {
  display: block;
  font-family: var(--to-serif);
  font-size: 4rem;
  color: var(--to-forest);
  margin: .5rem 0;
}
.to-404 h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: .7rem;
}
.to-404 p {
  color: color-mix(in srgb, var(--to-charcoal) 68%, transparent);
  margin-bottom: 1.4rem;
}

/* Footer */
.to-footer {
  background: var(--to-charcoal);
  color: color-mix(in srgb, #fff 82%, transparent);
  padding: 3rem 0 1.5rem;
  margin-top: 1rem;
}
.to-footer__main {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.to-footer__brand {
  display: flex;
  gap: .7rem;
  align-items: center;
  margin-bottom: .85rem;
  color: #fff;
}
.to-footer__mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--to-forest);
  font-family: var(--to-serif);
  font-weight: 700;
}
.to-footer__brand b {
  display: block;
  font-family: var(--to-serif);
  letter-spacing: 0.08em;
}
.to-footer__brand small {
  font-size: .68rem;
  opacity: .7;
  letter-spacing: 0.06em;
}
.to-footer h2 {
  font-size: .78rem;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--to-clay) 70%, #fff);
  margin-bottom: .7rem;
  font-family: var(--to-font);
  font-weight: 700;
}
.to-footer a {
  display: block;
  font-size: .9rem;
  margin-bottom: .4rem;
  opacity: .85;
}
.to-footer a:hover { opacity: 1; color: #fff; }
.to-footer p { font-size: .88rem; line-height: 1.7; }
.to-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  font-size: .78rem;
  opacity: .7;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--to-ease), transform .7s var(--to-ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .to-ring {
    grid-template-columns: 1fr auto;
  }
  .to-ring__nav,
  .to-ring__place { display: none; }
  .to-ring__toggle { display: inline-flex; }

  .to-head,
  .to-philosophy__grid,
  .to-voices-asym,
  .to-check-layout,
  .to-page-hero__grid,
  .to-story,
  .to-team,
  .to-service-row,
  .to-split,
  .to-feature,
  .to-contact,
  .to-footer__main {
    grid-template-columns: 1fr;
  }
  .to-service-row--rev .to-media { order: 0; }
  .to-tag-stats,
  .to-timeline,
  .to-journal {
    grid-template-columns: repeat(2, 1fr);
  }
  .to-timeline__line { display: none; }
  .to-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .to-menu-band__body {
    flex-direction: column;
    align-items: flex-start;
  }
  .to-menu-band__meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  :root { --to-shell: min(1120px, calc(100% - 1.5rem)); }
  .to-tag-stats,
  .to-timeline,
  .to-journal,
  .to-values,
  .to-field--pair {
    grid-template-columns: 1fr;
  }
  .to-tag-stat--2,
  .to-tag-stat--4 { margin-top: 0; }
  .to-hero { min-height: 78vh; }
  .to-hero__copy { padding: 4.5rem 0 3.5rem; }
  .to-section { padding: 3.25rem 0; }
  .to-philosophy__media,
  .to-story__media { min-height: 280px; }
}

/* —— Professional polish 20260911b —— */
:root {
  --to-clay: #8B7355;
  --to-clay-deep: #6F5A42;
}
.to-ring__tags { padding-top: .45rem; gap: clamp(.4rem, 1.4vw, .85rem); }
.to-ring__item, .to-ring__item--d1 { transform: none !important; }
.to-tag { min-width: 4.1rem; display: block; }
.to-tag__hook { display: none !important; }
.to-tag__oval,
.to-tag__plate {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  width: auto !important;
  height: auto !important;
  min-height: 2.75rem;
  margin-top: 0 !important;
  padding: .42rem .72rem;
  border-radius: 2px !important;
  border: 1px solid color-mix(in srgb, var(--to-charcoal) 16%, transparent) !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}
.to-tag__oval em,
.to-tag__plate em {
  font-size: .55rem !important;
  letter-spacing: .14em !important;
  color: var(--to-forest) !important;
}
.to-tag__oval span,
.to-tag__plate span {
  font-size: .7rem !important;
  font-weight: 600 !important;
  letter-spacing: .05em;
}
.to-tag:hover .to-tag__oval,
.to-tag:hover .to-tag__plate {
  border-color: var(--to-forest) !important;
  transform: none !important;
}
.to-tag[aria-current="page"] .to-tag__oval,
.to-tag[aria-current="page"] .to-tag__plate {
  background: var(--to-forest) !important;
  border-color: var(--to-forest-deep) !important;
  transform: none !important;
}
.to-tag[aria-current="page"] .to-tag__oval em,
.to-tag[aria-current="page"] .to-tag__oval span,
.to-tag[aria-current="page"] .to-tag__plate em,
.to-tag[aria-current="page"] .to-tag__plate span { color: var(--to-ivory) !important; }

.to-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--to-line);
  background: #fff;
}
.to-metric {
  position: relative;
  padding: 1.35rem 1.1rem 1.2rem;
  border-right: 1px solid var(--to-line);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.to-metric:last-child { border-right: 0; }
.to-metric strong {
  font-family: var(--to-serif);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  color: var(--to-forest);
  font-weight: 700;
  line-height: 1;
}
.to-metric > span {
  font-size: .78rem;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--to-charcoal) 62%, transparent);
}
.to-metric__bar {
  display: block;
  height: 2px;
  margin-top: .55rem;
  background: color-mix(in srgb, var(--to-forest) 14%, transparent);
  position: relative;
  font-style: normal;
}
.to-metric__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--to-p, 50%);
  background: var(--to-forest);
}
.to-btn--clay {
  background: var(--to-forest) !important;
}
.to-btn--clay:hover { background: var(--to-forest-deep) !important; }
.to-sheet__code {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border: 1px solid var(--to-line);
  font-size: .65rem;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--to-forest);
}
.to-sheet__tags a[aria-current="page"] .to-sheet__code {
  background: var(--to-forest);
  color: var(--to-ivory);
  border-color: var(--to-forest);
}
.to-trust__track i { color: var(--to-forest) !important; }
@media (max-width: 760px) {
  .to-metrics { grid-template-columns: 1fr 1fr; }
  .to-metric:nth-child(2n) { border-right: 0; }
  .to-metric:nth-child(-n+2) { border-bottom: 1px solid var(--to-line); }
}

.to-btn--primary{background:var(--to-forest)!important;color:var(--to-ivory)!important}.to-btn--primary:hover{background:var(--to-forest-deep)!important}

