:root{
  --ink:#1c1c1e; --indigo:#2b3a67; --indigo-2:#1f2b4d; --paper:#faf7f0; --white:#fff;
  --vermillion:#c0392b; --vermillion-d:#a02e21; --line:#e3dcd0; --muted:#756e60; --ok:#1f7a4d;
  --shadow:0 1px 2px rgba(28,28,30,.06),0 8px 24px rgba(28,28,30,.08);
  --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:"Mulish",system-ui,-apple-system,sans-serif;color:var(--ink);
  background:var(--paper);line-height:1.62;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:"Shippori Mincho",serif;font-weight:700;line-height:1.2;
  letter-spacing:.005em;margin:0 0 .5em}
h1{font-size:clamp(2rem,5vw,3.1rem)}
h2{font-size:clamp(1.5rem,3.2vw,2.15rem);margin-top:0}
h3{font-size:1.2rem}
p{margin:0 0 1rem}
a{color:var(--indigo);text-decoration-thickness:1px;text-underline-offset:2px}
strong{font-weight:700}
img{max-width:100%;height:auto}
.ttk-wrap{max-width:1080px;margin:0 auto;padding:0 22px}
.ttk-sec .ttk-wrap > img{display:block;width:100%;max-width:640px;height:auto;margin:24px 0;
  border-radius:var(--radius);box-shadow:var(--shadow);aspect-ratio:16/10;object-fit:cover}
@media(max-width:600px){.ttk-sec .ttk-wrap > img{max-width:100%;aspect-ratio:auto;height:210px}}

/* nav */
.ttk-nav{background:rgba(250,247,240,.92);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:30}
.ttk-nav__in{display:flex;align-items:center;justify-content:space-between;height:62px;gap:18px}
.ttk-brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);min-width:0}
.ttk-brand__mark{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;
  background:var(--indigo);color:#fff;flex:0 0 auto}
.ttk-brand__name{display:flex;flex-direction:column;font-family:"Shippori Mincho",serif;
  font-weight:600;font-size:1.02rem;line-height:1.05}
.ttk-brand__name small{font-family:"Mulish",sans-serif;font-weight:500;font-size:.68rem;
  color:var(--muted);letter-spacing:.02em;text-transform:uppercase}
.ttk-nav__links{display:flex;align-items:center;gap:22px}
.ttk-nav__links a{color:var(--ink);text-decoration:none;font-weight:600;font-size:.92rem}
.ttk-nav__links a:hover{color:var(--indigo)}

/* buttons */
.ttk-btn{display:inline-flex;align-items:center;gap:8px;background:var(--indigo);color:#fff;
  text-decoration:none;font-weight:700;padding:11px 20px;border-radius:12px;border:0;cursor:pointer;
  white-space:nowrap;transition:transform .12s,box-shadow .12s}
.ttk-btn:hover{transform:translateY(-1px)}
.ttk-cta{background:var(--vermillion);color:#fff;box-shadow:0 6px 18px rgba(192,57,43,.32)}
.ttk-cta:hover{background:var(--vermillion-d)}
.ttk-cta--lg{font-size:1.12rem;padding:16px 30px;border-radius:14px}

/* hero */
.ttk-hero{padding:56px 0 40px}
.ttk-hero__grid{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:center}
.ttk-eyebrow{display:inline-block;font-weight:700;font-size:.76rem;letter-spacing:.09em;
  text-transform:uppercase;color:var(--indigo);background:#e4e8f2;padding:6px 12px;border-radius:999px;
  margin-bottom:16px}
.ttk-hero__lead{font-size:1.14rem;color:#33302a;max-width:40ch}
.ttk-hero__cta{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:22px}
.ttk-hero__note{font-size:.85rem;color:var(--muted)}
.ttk-hero__media{position:relative}
.ttk-hero__media img{width:100%;height:100%;object-fit:cover;border-radius:20px;box-shadow:var(--shadow);
  aspect-ratio:4/3}
.ttk-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px}
.ttk-chip{background:var(--white);border:1px solid var(--line);border-radius:999px;padding:7px 14px;
  font-size:.85rem;font-weight:600;color:var(--ink)}

/* sections */
.ttk-sec{padding:46px 0;border-top:1px solid var(--line)}
.ttk-sec__lead{color:var(--muted);font-size:1.1rem;margin-bottom:26px}
.ttk-sec p{max-width:none}
.ttk-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.ttk-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:var(--shadow)}
.ttk-card h3{margin-top:6px}

/* table */
.ttk-tablewrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);background:var(--white)}
table.ttk-tbl{width:100%;border-collapse:collapse;min-width:460px}
.ttk-tbl th,.ttk-tbl td{text-align:left;padding:13px 16px;border-bottom:1px solid var(--line);font-size:.95rem}
.ttk-tbl th{background:#eceef5;font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.03em}
.ttk-tbl td:last-child{font-weight:700;color:var(--indigo);white-space:nowrap}
.ttk-tbl tr:last-child td{border-bottom:0}

/* inline article figure */
.ttk-figure{margin:26px 0 0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.ttk-figure img{display:block;width:100%;height:auto;aspect-ratio:16/7;object-fit:cover}
.ttk-figure figcaption{background:var(--white);border:1px solid var(--line);border-top:0;
  padding:11px 18px;font-size:.85rem;color:var(--muted)}
.ttk-split{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:center;margin-top:26px}
.ttk-split img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow);aspect-ratio:4/3}
.ttk-split--31{grid-template-columns:3fr 1fr}
@media(max-width:860px){.ttk-split,.ttk-split--31{grid-template-columns:1fr}}

/* callout */
.ttk-note{background:#eceef5;border:1px solid #cfd6e8;border-left:4px solid var(--indigo);
  border-radius:12px;padding:18px 20px;margin:22px 0}
.ttk-note strong{color:var(--indigo)}

/* faq */
.ttk-faq details{background:var(--white);border:1px solid var(--line);border-radius:12px;padding:2px 20px;
  margin-bottom:12px}
.ttk-faq summary{cursor:pointer;font-weight:700;padding:16px 0;list-style:none;position:relative;
  padding-right:28px}
.ttk-faq summary::-webkit-details-marker{display:none}
.ttk-faq summary::after{content:"+";position:absolute;right:2px;top:14px;font-size:1.4rem;color:var(--indigo);
  font-weight:400}
.ttk-faq details[open] summary::after{content:"–"}
.ttk-faq details[open] summary{border-bottom:1px solid var(--line)}
.ttk-faq details p{padding:14px 0 6px;margin:0;color:#33302a}

/* footer */
.ttk-foot{background:var(--ink);color:#d9d5cc;padding:44px 0 28px;margin-top:10px}
.ttk-foot__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:32px}
.ttk-foot h4{font-family:"Shippori Mincho",serif;color:#fff;font-size:1.05rem;margin:0 0 12px}
.ttk-foot a{color:#d9d5cc;text-decoration:none}
.ttk-foot a:hover{color:#fff;text-decoration:underline}
.ttk-foot__legal{font-size:.82rem;color:#9a9384;line-height:1.7}
.ttk-foot__bottom{border-top:1px solid #3a3a3c;margin-top:28px;padding-top:18px;font-size:.82rem;
  color:#9a9384;display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px}

@media(max-width:860px){
  .ttk-hero__grid{grid-template-columns:1fr;gap:28px}
  .ttk-hero__media{order:-1}
  .ttk-grid{grid-template-columns:1fr}
  .ttk-foot__grid{grid-template-columns:1fr}
  .ttk-nav__in{gap:10px}
  .ttk-nav__links a:not(.ttk-cta){display:none}
  .ttk-brand__name{font-size:.92rem}
  .ttk-brand__name small{display:none}
  .ttk-nav__links .ttk-cta{padding:9px 14px;font-size:.85rem}
}
@media(max-width:600px){
  .ttk-hero__cta{flex-direction:column;align-items:stretch}
  .ttk-hero__cta .ttk-btn{width:100%;justify-content:center;text-align:center;white-space:normal}
  .ttk-hero__media img,.ttk-split img,.ttk-figure img{height:210px;aspect-ratio:auto;object-fit:cover}
}
@media(max-width:420px){
  .ttk-brand__mark{width:30px;height:30px}
  .ttk-brand__name{font-size:.84rem}
  .ttk-nav__links .ttk-cta{padding:8px 12px;font-size:.8rem}
  .ttk-hero{padding:34px 0 26px}
}

/* padding safety under every content block */
.ttk-tablewrap,.ttk-grid,.ttk-figure,.ttk-note,.ttk-split,.ttk-faq{margin-bottom:36px}
.ttk-tablewrap+p,.ttk-grid+p,.ttk-figure+p,.ttk-note+p,.ttk-split+p,.ttk-faq+p,
.ttk-tablewrap+div,.ttk-grid+div,.ttk-figure+div,.ttk-faq+div{margin-top:8px}
