@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&family=Noto+Serif+JP:wght@500;600;700&display=swap");

:root {
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ink: #101917;
  --muted: #687570;
  --paper: #f5f3ee;
  --surface: #ffffff;
  --line: rgba(25, 42, 38, .12);
  --green: #17604f;
  --green-dark: #0d312b;
  --gold: #c99a45;
  --blue: #4a8aa0;
  --red: #d56f5f;
  --coral: #e9a08f;
  --mint: #b9d9c9;
  --sky: #b9dce8;
  --cream: #fff7ec;
  --shadow: 0 28px 90px rgba(16, 25, 23, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8ee 0, var(--paper) 420px, #f4f7f4 100%);
  font-family: var(--font-sans);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(13,49,43,.08);
  background: rgba(245, 243, 238, .86);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: #f6d078;
  font-weight: 900;
}
.brand strong,
.brand small { display: block; line-height: 1.18; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 22px; color: #34413d; font-size: 14px; font-weight: 900; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 9px 16px;
  background: var(--green);
  color: white;
  box-shadow: 0 14px 34px rgba(23, 96, 79, .18);
}
.quick-contact {
  position: fixed;
  right: 18px;
  top: 88px;
  z-index: 38;
}
.quick-contact a {
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 250, 241, .94);
  border: 1px solid rgba(201,154,69,.34);
  box-shadow: 0 18px 42px rgba(16,25,23,.12);
  backdrop-filter: blur(14px);
}
.quick-contact span { color: var(--red); font-size: 12px; font-weight: 900; }
.quick-contact strong { color: var(--green-dark); font-size: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero-premium {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(120px, 14vw, 190px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 80px);
  color: white;
}
.hero-bg,
.hero-overlay,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  filter: saturate(.96) brightness(.98);
  transition:
    opacity 2.8s cubic-bezier(.45, 0, .18, 1),
    transform 12s cubic-bezier(.22, .61, .36, 1),
    filter 2.8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.015);
  filter: saturate(1.04) brightness(1);
}
.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 28%, rgba(233,160,143,.32), transparent 24%),
    linear-gradient(90deg, rgba(22, 28, 24, .76), rgba(22, 28, 24, .42) 46%, rgba(22, 28, 24, .08)),
    linear-gradient(180deg, rgba(22, 28, 24, .06), rgba(22, 28, 24, .54));
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 940px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.light { color: #f4ca73; }
.hero-premium h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 5.8vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
  text-shadow: 0 18px 54px rgba(0,0,0,.42);
}
.hero-title {
  display: grid;
  gap: .16em;
}
.title-line {
  display: block;
}
.title-word {
  position: relative;
  display: inline-block;
  color: #fff;
  -webkit-text-stroke: 1px rgba(255,255,255,.18);
}
.title-word::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: -.82em;
  color: rgba(255,255,255,.66);
  font-size: .16em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.title-word::after {
  content: "";
  position: absolute;
  left: -.02em;
  right: -.02em;
  bottom: .04em;
  height: .2em;
  z-index: -1;
  border-radius: 999px;
  opacity: .88;
}
.accent-coral {
  color: #fff8f1;
  text-shadow: 0 16px 42px rgba(213,111,95,.42);
}
.accent-coral::before { color: #ffd8c8; }
.accent-coral::after { background: linear-gradient(90deg, rgba(233,160,143,.98), rgba(201,154,69,.56)); }
.accent-mint {
  color: #f4fff8;
  text-shadow: 0 16px 42px rgba(56,148,120,.38);
}
.accent-mint::before { color: #d9ffe9; }
.accent-mint::after { background: linear-gradient(90deg, rgba(185,217,201,.98), rgba(74,138,160,.52)); }
.title-small {
  color: rgba(255,255,255,.93);
  font-family: var(--font-sans);
  font-weight: 800;
}
.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 20px);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255,255,255,.13);
  color: #fff6df;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}
.hero-tags span:nth-child(2) { color: #e6ffef; }
.hero-tags span:nth-child(3) { color: #ffe7de; }
.hero-tags span:nth-child(4) { color: #e4f7ff; }
.hero-actions,
.media-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.social-button { gap: 8px; }
.social-button img { width: 16px; height: 16px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.button.primary { background: var(--gold); color: #18130b; box-shadow: 0 20px 48px rgba(201,154,69,.25); }
.button.secondary { border: 1px solid var(--line); background: var(--cream); color: var(--green-dark); }
.button.glass { border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.12); color: white; backdrop-filter: blur(14px); }

.punimaru-guide {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 4vw, 50px);
  z-index: 3;
  width: min(260px, 42vw);
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}
.punimaru-guide img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
.punimaru-guide p { margin: 0; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 900; }

.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, var(--green-dark), #7a4d43, var(--blue));
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.ticker div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 15px 0;
  animation: ticker 26s linear infinite;
}
.ticker span { font-size: 13px; font-weight: 900; white-space: nowrap; }

.section { padding: clamp(66px, 8vw, 118px) clamp(18px, 5vw, 72px); }
.section-label { max-width: 900px; margin-bottom: 34px; }
.section-label.compact { display: flex; align-items: end; justify-content: space-between; gap: 24px; max-width: none; }
.section-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.section-label,
.approach-photo,
.approach-copy,
.founder-photo,
.founder-copy,
.journal-copy,
.journal-visual,
.proof-strip article {
  transition: transform .9s cubic-bezier(.22,.61,.36,1), opacity .9s ease, filter .9s ease;
}
.motion-ready {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}
.motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.visual-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.visual-section > * { position: relative; z-index: 1; }
.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  opacity: var(--section-bg-opacity, .13);
  transform: scale(1.04);
  z-index: -2;
}
.visual-section::after {
  content: attr(data-section-label);
  position: absolute;
  right: clamp(30px, 6vw, 92px);
  top: clamp(22px, 4vw, 54px);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 108px);
  line-height: .86;
  letter-spacing: 0;
  color: rgba(15,54,46,.055);
  font-family: var(--font-sans);
  border-right: 0;
  padding-right: 0;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.visual-section .section-label,
.visual-section .approach-copy,
.visual-section .founder-copy,
.visual-section .message-summary,
.visual-section .journal-copy { position: relative; }
.visual-section .section-label::after,
.visual-section .approach-copy::after,
.visual-section .founder-copy::after,
.visual-section .message-summary::after,
.visual-section .journal-copy::after {
  content: attr(data-section-label);
  position: absolute;
  right: 0;
  top: -12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(15,54,46,.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  border-right: 4px solid rgba(244,202,115,.82);
  padding-right: 10px;
  pointer-events: none;
}
.section-band {
  position: absolute;
  left: 0;
  top: clamp(34px, 7vw, 92px);
  width: min(22vw, 280px);
  height: 9px;
  background: linear-gradient(90deg, #ef8a72, #f4ca73, #79b98d);
  z-index: 0;
}
.section-label h2,
.editorial-panel h2,
.cta-premium h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(27px, 3.3vw, 42px);
  line-height: 1.2;
}
.triage {
  --section-bg: url("./assets/section-bg-plan.webp");
  --section-bg-opacity: .18;
  position: relative;
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(255,250,241,.92), rgba(242,248,245,.88)),
    #fffaf1;
}
.triage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.triage-list a {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(16,25,23,.06);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.triage-list a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.triage-list a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--coral);
}
.triage-list a:nth-child(2)::before { background: #f1c400; }
.triage-list a:nth-child(3)::before { background: #86c83d; }
.triage-list a:nth-child(4)::before { background: var(--blue); }
.triage-list span { color: rgba(16,25,23,.18); font-size: 42px; font-weight: 900; line-height: 1; }
.triage-list strong { font-size: 22px; line-height: 1.2; }
.triage-list small { color: var(--muted); font-weight: 800; }
.punimaru-comment {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(201,154,69,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(16,25,23,.08);
}
.punimaru-comment img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; }
.punimaru-comment p { margin: 0; color: var(--muted); }
.punimaru-comment strong { color: var(--red); }
.gateway-grid.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  background:
    radial-gradient(circle at 12px 12px, rgba(201,154,69,.14) 1px, transparent 1.5px);
  background-size: 12px 12px;
}
.gateway {
  --section-bg: url("./assets/section-bg-flow.webp");
  --section-bg-opacity: .12;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,247,236,.86)),
    #fffefa;
}
.gateway-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #fffefa;
  box-shadow: 0 20px 52px rgba(16,25,23,.1);
  transform: translateY(0);
  opacity: 1;
  transition: transform .7s ease, opacity .7s ease, box-shadow .24s ease;
}
.gateway-card.is-visible { transform: translateY(0); opacity: 1; }
.gateway-card:hover { box-shadow: 0 34px 100px rgba(16,25,23,.18); transform: translateY(-4px); }
.gateway-card::before {
  content: "01";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: start;
  padding: 18px 0 0 16px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--coral);
  color: white;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}
.gateway-card:nth-child(2)::before { content: "02"; background: #f1c400; }
.gateway-card:nth-child(3)::before { content: "03"; background: #86c83d; }
.gateway-card:nth-child(4)::before { content: "04"; background: var(--blue); }
.gateway-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: #1f2523;
}
.gateway-card img {
  width: calc(100% - 48px);
  height: 210px;
  margin: 86px 24px 0;
  object-fit: cover;
  transition: transform .7s ease;
}
.gateway-card:hover img { transform: scale(1.035); }
.gateway-card div {
  padding: 24px 34px 34px;
  color: var(--ink);
}
.gateway-card p {
  margin: 0 0 2px;
  color: var(--coral);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gateway-card:nth-child(2) p { color: #c49a00; }
.gateway-card:nth-child(3) p { color: #6cad2d; }
.gateway-card:nth-child(4) p { color: var(--blue); }
.gateway-card h3 {
  display: inline;
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.28;
  font-family: var(--font-serif);
  font-weight: 600;
  background: linear-gradient(transparent 64%, rgba(233,160,143,.42) 0);
}
.gateway-card:nth-child(2) h3 { background: linear-gradient(transparent 64%, rgba(241,196,0,.42) 0); }
.gateway-card:nth-child(3) h3 { background: linear-gradient(transparent 64%, rgba(134,200,61,.42) 0); }
.gateway-card:nth-child(4) h3 { background: linear-gradient(transparent 64%, rgba(74,138,160,.32) 0); }
.gateway-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #444f4b;
}
.gateway-card li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
}
.gateway-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 10px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.ad-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(66px, 8vw, 118px);
}
.ad-rail { display: grid; align-content: start; }
.ad-slot {
  min-height: 430px;
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px dashed rgba(201,154,69,.66);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(255,242,232,.9)),
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(201,154,69,.12) 10px 12px);
}
.ad-slot.dark { background: var(--green-dark); color: white; border-color: rgba(255,255,255,.22); }
.ad-slot small { color: var(--red); font-weight: 900; }
.ad-slot strong { font-size: 20px; line-height: 1.34; }
.ad-slot span { color: var(--green); font-weight: 900; }
.ad-slot.dark span { color: #f4ca73; }
.editorial-panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(13,49,43,.9), rgba(213,111,95,.42), rgba(74,138,160,.78)),
    url("./assets/care-office-hero.webp") center / cover;
  color: white;
  box-shadow: var(--shadow);
}
.editorial-panel p { max-width: 720px; color: rgba(255,255,255,.76); }

.journal-link {
  --section-bg: url("./assets/journal-table.webp");
  --section-bg-opacity: .10;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background: linear-gradient(180deg, #fffaf1, #f2f8f5);
}
.journal-copy { max-width: 680px; }
.journal-copy h2 {
  margin: 0;
  font-size: clamp(27px, 3.3vw, 42px);
  line-height: 1.22;
}
.journal-copy p { color: var(--muted); }
.journal-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.journal-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.journal-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 48px rgba(16,25,23,.14);
  backdrop-filter: blur(16px);
}
.journal-note span { color: var(--red); font-weight: 900; font-size: 12px; }
.journal-note strong { display: block; margin-top: 4px; font-size: 22px; line-height: 1.35; }

.social-archive {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(244,249,246,.88)),
    url("./assets/section-bg-flow.webp") center / cover;
}
.social-archive::after {
  content: "SOCIAL";
  position: absolute;
  top: 22px;
  right: 4%;
  color: rgba(14, 63, 52, .055);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.social-archive-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.social-archive-heading h2 { margin: 8px 0 0; }
.social-archive-heading > p {
  max-width: 620px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.9;
}
.social-feed-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.social-feed-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 63, 52, .12);
  border-radius: 6px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 50px rgba(17, 52, 44, .09);
}
.social-feed-panel header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(14, 63, 52, .1);
}
.social-feed-panel header h3 { margin: 2px 0 0; font-size: 19px; }
.social-feed-panel header small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.social-feed-panel header > a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(14, 63, 52, .14);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 900;
}
.social-platform-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  font-size: 19px;
  font-weight: 900;
}
.social-platform-mark img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}
.social-feed-note .social-platform-mark { background: #2cb696; }
.social-feed-instagram .social-platform-mark { background: #d76c7c; }
.social-feed-tiktok .social-platform-mark { background: #111; }
.social-feed-youtube .social-platform-mark { background: #f03; }
.social-planned-label {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(14, 63, 52, .08);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.social-post-list { min-height: 390px; }
.social-post-card {
  display: block;
  padding: 19px 20px;
  border-bottom: 1px solid rgba(14, 63, 52, .1);
  color: var(--text);
  background: rgba(255,255,255,.94);
  transition: transform .25s ease, background .25s ease;
}
.social-post-card:last-child { border-bottom: 0; }
.social-post-card:hover {
  transform: translateX(4px);
  background: #f7fbf8;
}
.social-post-card time {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.social-post-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.social-post-card img {
  width: 100%;
  height: 145px;
  margin-bottom: 12px;
  border-radius: 4px;
  object-fit: cover;
}
.social-post-card .social-post-action {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}
.social-empty-state {
  display: grid;
  min-height: 390px;
  padding: 36px 28px;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.96)),
    url("./assets/warm-care-lounge.webp") center / cover;
}
.social-empty-x {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.96)),
    url("./assets/strategy-meeting-hero.webp") center / cover;
}
.social-feed-instagram .social-empty-state {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.96)),
    url("./assets/journal-table.webp") center / cover;
}
.social-empty-tiktok {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.96)),
    url("./assets/warm-recruiting-room.webp") center / cover;
}
.social-empty-youtube {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.96)),
    url("./assets/consultation-scene.webp") center / cover;
}
.social-empty-state img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 18px;
}
.social-empty-state strong { font-size: 18px; }
.social-empty-state p {
  max-width: 230px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.approach {
  --section-bg: url("./assets/consultation-scene.webp");
  --section-bg-opacity: .10;
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255,255,255,.95), rgba(245,251,247,.9)),
    white;
}
.approach-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.approach-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.approach-copy h2 {
  margin: 0;
  font-size: clamp(27px, 3.3vw, 42px);
  line-height: 1.22;
}
.approach-copy p { color: var(--muted); }
.approach-copy dl {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}
.approach-copy dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.approach-copy dt { color: var(--gold); font-weight: 900; font-size: 22px; }
.approach-copy dd { margin: 0; font-size: 20px; font-weight: 900; }

.founder-message {
  --section-bg: url("./assets/warm-care-lounge.webp");
  --section-bg-opacity: .10;
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  overflow: hidden;
  padding-top: clamp(36px, 5vw, 62px);
  padding-bottom: clamp(36px, 5vw, 62px);
  background:
    radial-gradient(circle at 9% 12%, rgba(244, 202, 115, .22), transparent 30%),
    linear-gradient(135deg, #fffefa 0%, #f5fbf7 100%);
}
.founder-photo {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, 390px);
}
.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.founder-name {
  width: min(84%, 270px);
  margin: -48px auto 0;
  position: relative;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 48px rgba(15, 54, 46, .14);
}
.founder-name span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.founder-name strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  letter-spacing: 0;
}
.founder-name small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}
.founder-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "vertical body"
    "vertical signature";
  gap: 16px clamp(26px, 4vw, 48px);
  align-items: start;
}
.founder-copy .eyebrow { grid-area: eyebrow; margin: 0; }
.founder-copy h2 {
  grid-area: title;
  margin: 0;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.18;
}
.vertical-message {
  grid-area: vertical;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 250px;
  padding: 4px 0;
}
.vertical-message p {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.55;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 0;
}
.vertical-message p:nth-child(2) { color: #d77861; }
.message-body {
  grid-area: body;
  columns: 1;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.message-body p {
  break-inside: avoid;
  margin: 0;
  color: #24332f;
  line-height: 1.9;
}
.message-signature {
  grid-area: signature;
  display: inline-block;
  margin: 2px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
}

.closing-message-banner {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: clamp(34px, 5vw, 70px) auto 0;
  padding: 0 clamp(18px, 4vw, 34px) clamp(42px, 5vw, 70px);
}
.closing-message-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 54, 46, .14);
  background: #fff;
}

.proof-strip {
  --section-bg: url("./assets/warm-recruiting-room.webp");
  --section-bg-opacity: .11;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.93), rgba(255,247,236,.9)),
    #fff7ec;
}
.proof-strip article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #fff2e8);
}
.proof-strip span { color: var(--gold); font-weight: 900; }
.proof-strip h3 { margin: 8px 0; font-size: 26px; }
.proof-strip p { color: var(--muted); }

.cta-premium {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 15% 10%, rgba(233,160,143,.32), transparent 28%),
    linear-gradient(120deg, var(--green-dark), #315f73);
  color: white;
}
.cta-premium img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; background: white; }
.cta-premium h2 { max-width: 820px; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) .9fr .85fr .7fr;
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
  background: #0c1513;
  color: white;
}
.footer-brand .brand-mark { background: white; color: var(--green-dark); }
.site-footer p { margin: 12px 0 0; max-width: 460px; color: rgba(255,255,255,.62); }
.site-footer nav,
.sns-links { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.site-footer a { color: rgba(255,255,255,.78); font-weight: 900; }
.sns-links a,
.sns-links > span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 8px 12px;
}
.sns-links img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}
.sns-links > span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 800;
}
.sns-links > span small { padding-left: 2px; font-size: 9px; }
.footer-contact p { margin-top: 0; }
.footer-contact .button { margin-top: 10px; min-height: 44px; }
.floating-punimaru {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(13,49,43,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 50px rgba(16,25,23,.18);
  backdrop-filter: blur(16px);
  font-weight: 900;
}
.floating-punimaru img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.subpage { padding: 58px clamp(18px, 5vw, 72px) 92px; }
.page-title { max-width: 900px; margin-bottom: 34px; }
.page-title p { color: var(--muted); }
.detail-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(82px, 12vw, 140px) clamp(18px, 5vw, 72px) 48px;
  color: white;
  background: linear-gradient(90deg, rgba(5,16,14,.9), rgba(5,16,14,.18)), var(--hero-image) center / cover;
}
.detail-hero h1 { max-width: 840px; margin: 0; font-size: clamp(42px, 7vw, 86px); line-height: 1.05; }
.detail-hero p { max-width: 680px; color: rgba(255,255,255,.78); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  padding: clamp(46px, 6vw, 80px) clamp(18px, 5vw, 72px);
}
.detail-card,
.detail-side,
.news-card,
.contact-form,
.contact-side,
.policy-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(16,25,23,.08);
}
.detail-card { padding: clamp(26px, 4vw, 48px); }
.detail-hero h1 { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.16; }
.detail-card h2 { margin-top: 0; font-size: clamp(26px, 3.3vw, 40px); line-height: 1.24; }
.detail-card p,
.detail-side p,
.news-card p { color: var(--muted); }
.detail-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.detail-points div { padding: 18px; border-radius: 8px; background: #f2f5f1; }
.detail-points strong { display: block; color: var(--green-dark); }
.detail-side { align-self: start; padding: 24px; position: sticky; top: 92px; }
.detail-side img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.side-button { margin-top: 10px; width: 100%; }
.material-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fffaf1, #edf8f3);
}
.material-preview h2 { margin: 0; font-size: clamp(27px, 3.2vw, 40px); line-height: 1.24; }
.material-preview p { color: var(--muted); }
.material-card {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13,49,43,.88), rgba(74,138,160,.72)),
    url("./assets/recruiting-service.webp") center / cover;
  color: white;
  box-shadow: var(--shadow);
}
.material-card span { color: #f4ca73; font-size: 12px; font-weight: 900; }
.material-card strong { font-size: 24px; line-height: 1.32; }
.material-card small { color: rgba(255,255,255,.72); font-weight: 800; }
.material-doc {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 4vw, 42px) 90px;
}
.material-cover {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 240px;
  gap: 28px;
  align-items: end;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 18%, rgba(233,160,143,.36), transparent 24%),
    linear-gradient(135deg, #0d312b, #315f73);
  color: white;
  box-shadow: var(--shadow);
}
.material-cover h1 { margin: 0; font-size: clamp(32px, 5.2vw, 58px); line-height: 1.16; }
.material-cover p { color: rgba(255,255,255,.76); }
.material-cover img { width: 220px; border-radius: 50%; background: white; }
.material-section {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(16,25,23,.08);
}
.material-section.tinted { background: #fff7ec; }
.material-section h2 { margin: 0 0 22px; font-size: clamp(25px, 3.2vw, 38px); line-height: 1.24; }
.material-columns,
.media-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.media-table { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.material-columns article,
.media-table div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}
.material-columns span { color: var(--gold); font-weight: 900; }
.material-columns p,
.media-table p { color: var(--muted); }
.writing-flow {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.writing-flow li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.writing-flow b { color: var(--green-dark); }
.writing-flow span { color: var(--muted); }
.section-split-heading {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.section-split-heading h2 { margin-bottom: 0; }
.section-split-heading p:last-child { color: var(--muted); margin: 0; line-height: 1.9; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(15, 54, 46, .12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.74)),
    radial-gradient(circle at 86% 14%, rgba(244,202,115,.38), transparent 34%),
    #fffefa;
}
.case-card::before {
  content: "1 WEEK";
  position: absolute;
  right: -10px;
  top: 22px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(15, 54, 46, .08);
}
.case-card.dental { border-top: 8px solid #ef8a72; }
.case-card.care { border-top: 8px solid #79b98d; }
.case-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 54, 46, .08);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
}
.case-card h3 {
  position: relative;
  margin: 22px 0 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
}
.case-card p { position: relative; color: var(--muted); line-height: 1.9; }
.case-actions {
  position: absolute;
  left: 28px;
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.case-card a {
  position: relative;
  left: auto;
  bottom: auto;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.case-card a + a {
  color: var(--muted);
  border-bottom-color: rgba(104,117,112,.35);
}
.compact-proof .case-card {
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 86% 14%, rgba(121,185,141,.24), transparent 34%),
    #fffefa;
}
.compact-proof .case-card h3 { font-size: clamp(22px, 2.4vw, 30px); }
.price-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green-dark);
  color: white;
}
.price-band p { font-size: 34px; font-weight: 900; margin: 0; color: #f4ca73; }
.price-band small { color: rgba(255,255,255,.68); }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.news-card { overflow: hidden; }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-card div { padding: 22px; }
.news-card small { color: var(--green); font-weight: 900; }
.news-card h2 a { color: inherit; }
.news-read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.column-article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 5vw, 64px);
  background: white;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a { color: var(--green); font-weight: 800; }
.column-article h1 {
  max-width: 800px;
  margin: 12px 0 20px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.35;
}
.article-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}
.article-main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 30px 0 42px;
  border-radius: 6px;
  object-fit: cover;
}
.column-article > h2 {
  margin: 42px 0 12px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  font-size: clamp(22px, 3vw, 29px);
}
.column-article > p { line-height: 2; }
.article-cta {
  margin-top: 50px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 6px;
  background: var(--green-dark);
  color: white;
}
.article-cta h2 { margin: 0; font-size: 25px; }
.article-cta p { color: rgba(255,255,255,.76); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; }
.contact-form,
.contact-side,
.policy-body { padding: clamp(24px, 4vw, 42px); }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 900; color: var(--green-dark); }
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
}
.form-note { margin: 0; color: var(--muted); font-size: 12px; }
.privacy-consent {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  font-size: 13px;
}
.privacy-consent input { width: 18px; height: 18px; margin: 0; }
.privacy-consent a { color: var(--green); text-decoration: underline; }
.contact-form button:disabled { opacity: .6; cursor: wait; }
.contact-result {
  max-width: 720px;
  margin: 70px auto;
  padding: clamp(34px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-result img { width: 128px; height: 128px; object-fit: contain; }
.contact-result h1 { margin: 10px 0 16px; font-size: clamp(28px, 5vw, 46px); }
.contact-result > p:not(.eyebrow) { color: var(--muted); line-height: 1.9; }
.contact-result .button { margin-top: 20px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .gateway-grid.route-grid,
  .journal-link,
  .approach,
  .founder-message,
  .material-preview,
  .material-cover,
  .ad-layout,
  .detail-grid,
  .contact-layout,
  .site-footer { grid-template-columns: 1fr; }
  .gateway-grid.route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .triage-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gateway-card { min-height: 500px; }
  .ad-rail { display: none; }
  .news-grid,
  .material-columns,
  .media-table,
  .case-grid,
  .social-feed-grid,
  .proof-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .social-feed-x { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open,
  .site-nav.visible { display: flex; }
  .hero-premium { min-height: 82vh; padding-top: 112px; padding-bottom: 42px; }
  .hero-premium h1 { font-size: clamp(34px, 10vw, 50px); line-height: 1.12; max-width: 620px; }
  .hero-lead { font-size: 15px; }
  .punimaru-guide { display: none; }
  .gateway-grid.route-grid,
  .triage-list,
  .material-columns,
  .media-table,
  .case-grid,
  .section-split-heading,
  .news-grid,
  .social-feed-grid,
  .proof-strip,
  .detail-points,
  .cta-premium { grid-template-columns: 1fr; }
  .social-feed-x { grid-column: auto; }
  .social-archive-heading { grid-template-columns: 1fr; gap: 14px; }
  .social-empty-state { min-height: 320px; }
  .gateway-card { min-height: auto; }
  .gateway-card img { height: 190px; margin-top: 76px; }
  .cta-premium { text-align: left; }
  .floating-punimaru span { display: none; }
  .quick-contact { display: none; }
  .section-label.compact { display: block; }
  .approach-photo,
  .approach-photo img { min-height: 320px; }
  .founder-photo { position: relative; top: auto; }
  .founder-photo img {
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
    object-position: center 48%;
  }
  .founder-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "vertical"
      "body"
      "signature";
  }
  .message-summary {
    grid-template-columns: 1fr;
  }
  .message-summary h2 { margin-top: 6px; }
  .vertical-message {
    min-height: 210px;
    justify-self: center;
    gap: 12px;
  }
  .vertical-message p { font-size: clamp(22px, 7vw, 32px); }
  .message-body { columns: 1; }
  .material-cover img { width: 150px; }
  .writing-flow li { grid-template-columns: 1fr; gap: 4px; }
  .price-band { display: grid; }
}
