:root {
      --main: #8FA28F;
      --main-dark: #738673;
      --main-soft: #DCE5D8;
      --accent: #E38F74;
      --accent-dark: #C96E55;
      --cream: #F7F1EA;
      --paper: #FCF9F5;
      --sage-pale: #F2F4F0;
      --white: #FFFFFF;
      --heading: #584028;
      --text: #584840;
      --muted: #7B7069;
      --line: #DED7CE;
      --shadow: 0 18px 50px rgba(88, 64, 40, 0.11);
      --shadow-soft: 0 10px 30px rgba(88, 64, 40, 0.08);
      --radius-lg: 32px;
      --radius-md: 24px;
      --radius-sm: 16px;
      --content: 1120px;
      --hero-content: 1340px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--text);
      background: var(--paper);
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
      font-size: 17px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    body.nav-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(227, 143, 116, 0.55);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 100;
      padding: 10px 18px;
      border-radius: 999px;
      color: var(--white);
      background: var(--heading);
      transform: translateY(-160%);
      transition: transform 0.2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .container {
      width: min(calc(100% - 48px), var(--content));
      margin-inline: auto;
    }

    .site-section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding-block: clamp(80px, 6.5vw, 96px);
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      color: var(--main-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .section-kicker::before {
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      content: "";
    }

    h1,
    h2,
    h3 {
      margin-top: 0;
      color: var(--heading);
      font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
      font-weight: 600;
      letter-spacing: 0.02em;
      line-height: 1.35;
    }

    h1 {
      margin-bottom: 24px;
      font-size: clamp(48px, 3.8vw, 56px);
      letter-spacing: 0.02em;
      line-height: 1.35;
    }

    h2 {
      margin-bottom: 24px;
      font-size: clamp(32px, 2.8vw, 38px);
    }

    h3 {
      margin-bottom: 12px;
      font-size: clamp(20px, 1.8vw, 23px);
    }

    p {
      margin-top: 0;
    }

    .lead {
      max-width: 720px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.9;
    }

    .button {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 27px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: var(--white);
      background: var(--main);
      box-shadow: 0 8px 18px rgba(111, 131, 111, 0.18);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.4;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .button::after {
      content: "→";
      font-size: 20px;
      line-height: 1;
    }

    .button:hover {
      background: var(--main-dark);
      box-shadow: 0 10px 22px rgba(111, 131, 111, 0.22);
      transform: scale(1.02);
    }

    .button--small {
      min-height: 46px;
      padding: 10px 22px;
      font-size: 14px;
    }

    .site-header .button--small {
      color: var(--main-dark);
      border-color: var(--main);
      background: rgba(255, 255, 255, 0.66);
      box-shadow: none;
    }

    .site-header .button--small:hover {
      color: var(--white);
      background: var(--main-dark);
      box-shadow: none;
    }

    .button--outline {
      color: var(--main-dark);
      border-color: var(--main);
      background: rgba(255, 255, 255, 0.68);
      box-shadow: none;
    }

    .button--outline:hover {
      color: var(--white);
      background: var(--main-dark);
      box-shadow: none;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 12px;
      border-radius: 999px;
      color: var(--main-dark);
      background: var(--sage-pale);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      line-height: 1.4;
    }

    .tag--coral {
      color: #8B4938;
      background: #FBE8E0;
    }

    .reveal-ready .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.58s ease, transform 0.58s ease;
    }

    .reveal-ready .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 01 Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      isolation: isolate;
      height: 84px;
      border-bottom: 1px solid rgba(143, 162, 143, 0.18);
      background: rgba(252, 250, 247, 0.92);
      backdrop-filter: blur(14px);
    }

    .site-header::before {
      position: absolute;
      right: 0;
      bottom: -130px;
      z-index: -1;
      width: 320px;
      aspect-ratio: 1;
      background: url("../images/thread-curve.png") center / contain no-repeat;
      content: "";
      opacity: 0.1;
      pointer-events: none;
    }

    .header-inner {
      display: flex;
      width: min(calc(100% - 48px), var(--hero-content));
      height: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      margin-inline: auto;
    }

    .site-logo {
      flex: 0 0 auto;
      width: 228px;
    }

    .site-logo img {
      width: 100%;
      max-height: 56px;
      object-fit: contain;
      object-position: left center;
    }

    .global-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .global-nav ul {
      display: flex;
      align-items: center;
      gap: 28px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .global-nav li a:not(.button) {
      position: relative;
      padding-block: 12px;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }

    .global-nav li a:not(.button)::after {
      position: absolute;
      right: 0;
      bottom: 5px;
      left: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.25s ease;
    }

    .global-nav li a:not(.button):hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid rgba(143, 162, 143, 0.4);
      border-radius: 50%;
      background: var(--white);
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 19px;
      height: 2px;
      margin: 5px auto;
      border-radius: 999px;
      background: var(--heading);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* 02 Hero */
    .hero {
      width: 100%;
      min-height: max(760px, 80vh);
      padding: 54px 24px 74px;
      background: linear-gradient(120deg, #FCFAF7 0%, #F8F4EF 48%, #EEF2EB 100%);
    }

    .hero::before {
      position: absolute;
      top: -270px;
      left: -270px;
      z-index: -1;
      width: 620px;
      aspect-ratio: 1;
      background: url("../images/thread-curve.png") center / contain no-repeat;
      content: "";
      opacity: 0.34;
      transform: rotate(-18deg);
      pointer-events: none;
    }

    .hero::after {
      position: absolute;
      right: -180px;
      bottom: -240px;
      z-index: -1;
      width: 520px;
      aspect-ratio: 1;
      background: url("../images/craft-dots.png") center / contain no-repeat;
      content: "";
      opacity: 0.2;
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      width: 100%;
      max-width: var(--hero-content);
      min-height: 632px;
      align-items: center;
      gap: clamp(36px, 5vw, 72px);
      margin-inline: auto;
      grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    }

    .hero-copy {
      padding-left: clamp(0px, 1.4vw, 20px);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--main-dark);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .hero-eyebrow::before {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 14px 0 0 rgba(227, 143, 116, 0.3);
      content: "";
    }

    .hero h1 .accent-line {
      position: relative;
      display: inline-block;
      z-index: 0;
    }

    .hero h1 .accent-line::after {
      position: absolute;
      right: -3px;
      bottom: 4px;
      left: -3px;
      z-index: -1;
      height: 12px;
      border-radius: 999px;
      background: rgba(227, 143, 116, 0.28);
      content: "";
      transform: rotate(-1.5deg);
    }

    .hero-description {
      max-width: 520px;
      margin-bottom: 32px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      color: var(--main-dark);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-note::before {
      width: 30px;
      height: 1px;
      background: var(--main);
      content: "";
    }

    .hero-visual {
      position: relative;
      min-width: 0;
    }

    .hero-visual::before {
      position: absolute;
      top: -18%;
      right: -20%;
      z-index: -1;
      width: min(760px, 76vw);
      aspect-ratio: 1;
      background: url("../images/blob-sage.png") center / contain no-repeat;
      content: "";
      opacity: 0.6;
      animation: float 12s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-visual::after {
      position: absolute;
      right: -11%;
      bottom: -19%;
      z-index: -1;
      width: 350px;
      aspect-ratio: 1;
      background: url("../images/leaf-sprig.png") center / contain no-repeat;
      content: "";
      opacity: 0.34;
      transform: rotate(12deg);
      pointer-events: none;
    }

    .hero-photo-wrap {
      position: relative;
      overflow: hidden;
      border: 10px solid rgba(255, 255, 255, 0.72);
      border-radius: 32px;
      box-shadow: var(--shadow);
    }

    .hero-photo {
      width: 100%;
      min-height: 560px;
      aspect-ratio: 8 / 6.2;
      object-fit: cover;
      object-position: 63% center;
    }

    .hero-badge {
      position: absolute;
      bottom: -32px;
      left: -38px;
      width: clamp(180px, 16vw, 232px);
      aspect-ratio: 1;
      overflow: hidden;
      border: 6px solid rgba(255, 255, 255, 0.78);
      border-radius: 50%;
      box-shadow: var(--shadow-soft);
      object-fit: cover;
      transform: rotate(-2deg);
    }

    @keyframes float {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
      50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
    }

    /* 03 Concerns */
    .concerns {
      background: #F1F3EE;
    }

    .concerns::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: url("../images/paper-fiber.png") 0 0 / 420px 420px repeat;
      content: "";
      opacity: 0.22;
      pointer-events: none;
    }

    .concerns::after {
      position: absolute;
      top: -180px;
      left: -210px;
      z-index: -1;
      width: 520px;
      aspect-ratio: 1;
      background: url("../images/craft-dots.png") center / contain no-repeat;
      content: "";
      opacity: 0.28;
      pointer-events: none;
    }

    .concerns-heading {
      display: grid;
      align-items: end;
      gap: 38px;
      margin-bottom: 48px;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    }

    .concerns-heading h2 {
      margin-bottom: 0;
    }

    .concern-grid {
      display: grid;
      gap: 22px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .concern-card {
      position: relative;
      min-height: 280px;
      padding: 36px 30px 32px;
      overflow: hidden;
      border: 1px solid rgba(143, 162, 143, 0.22);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-soft);
    }

    .concern-number {
      display: block;
      margin-bottom: 26px;
      color: var(--accent);
      font-family: Georgia, serif;
      font-size: 46px;
      font-style: italic;
      line-height: 1;
      opacity: 0.78;
    }

    .concern-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    /* 04 Promise */
    .promise {
      background: var(--paper);
    }

    .promise::before {
      position: absolute;
      right: -280px;
      bottom: -390px;
      z-index: -1;
      width: 760px;
      aspect-ratio: 1;
      background: url("../images/yarn-line.png") center / contain no-repeat;
      content: "";
      opacity: 0.22;
      pointer-events: none;
    }

    .promise-grid {
      display: grid;
      align-items: center;
      gap: clamp(48px, 7vw, 88px);
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }

    .before-after {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .change-card {
      position: relative;
    }

    .change-card img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: var(--shadow-soft);
    }

    .change-card:nth-child(2) img {
      border-radius: 0;
      clip-path: polygon(7% 0, 100% 6%, 93% 100%, 0 93%);
    }

    .change-label {
      position: absolute;
      right: 16px;
      bottom: 16px;
      padding: 7px 14px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(88, 64, 40, 0.82);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.4;
    }

    .change-card:nth-child(2) .change-label {
      background: rgba(111, 131, 111, 0.9);
    }

    .promise-copy .lead {
      margin-bottom: 30px;
    }

    .guide-steps {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .guide-steps li {
      display: grid;
      align-items: center;
      gap: 16px;
      padding: 14px 18px;
      border-left: 3px solid var(--accent);
      border-radius: 0 12px 12px 0;
      background: var(--cream);
      grid-template-columns: 36px 1fr;
    }

    .guide-steps span {
      color: var(--main-dark);
      font-family: Georgia, serif;
      font-size: 24px;
      font-style: italic;
      line-height: 1;
    }

    .guide-steps strong {
      color: var(--heading);
      font-size: 15px;
    }

    /* 05 Expertise */
    .expertise {
      color: #F6F1EA;
      background: #788B79;
    }

    .expertise::before {
      position: absolute;
      top: -240px;
      right: -180px;
      z-index: -1;
      width: 650px;
      aspect-ratio: 1;
      background: url("../images/stitch-circle.png") center / contain no-repeat;
      content: "";
      opacity: 0.16;
      pointer-events: none;
    }

    .expertise::after {
      position: absolute;
      bottom: -330px;
      left: -250px;
      z-index: -1;
      width: 650px;
      aspect-ratio: 1;
      background: url("../images/leaf-sprig.png") center / contain no-repeat;
      content: "";
      opacity: 0.12;
      transform: rotate(-28deg);
      pointer-events: none;
    }

    .expertise .section-kicker,
    .expertise h2,
    .expertise h3 {
      color: var(--white);
    }

    .expertise .section-kicker::before {
      background: #F0AE97;
    }

    .profile-grid {
      display: grid;
      align-items: center;
      gap: clamp(48px, 7vw, 84px);
      grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    }

    .profile-photo-wrap {
      position: relative;
      width: min(100%, 430px);
      margin-inline: auto;
    }

    .profile-photo {
      width: 100%;
      aspect-ratio: 1;
      border: 12px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 22px 55px rgba(53, 66, 53, 0.28);
    }

    .photo-note {
      position: absolute;
      right: 12px;
      bottom: 12px;
      padding: 6px 12px;
      border-radius: 999px;
      color: var(--heading);
      background: rgba(255, 255, 255, 0.9);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
    }

    .profile-copy > p:not(.section-kicker) {
      color: rgba(255, 255, 255, 0.78);
    }

    .profile-points {
      display: grid;
      gap: 12px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .profile-points li {
      position: relative;
      padding-left: 28px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
    }

    .profile-points li::before {
      position: absolute;
      top: 0.68em;
      left: 0;
      width: 14px;
      height: 8px;
      border-bottom: 2px solid #F0AE97;
      border-left: 2px solid #F0AE97;
      content: "";
      transform: rotate(-45deg);
    }

    .badge-grid {
      display: grid;
      gap: 18px;
      margin-top: 54px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .badge-card {
      margin: 0;
      padding: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 16px 38px rgba(53, 66, 53, 0.16);
    }

    .badge-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 17px;
      object-fit: cover;
    }

    .badge-note {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.64);
      font-size: 12px;
      text-align: right;
    }

    /* 06 Voices */
    .voices {
      background: var(--cream);
    }

    .voices::before {
      position: absolute;
      top: -260px;
      left: -250px;
      z-index: -1;
      width: 620px;
      aspect-ratio: 1;
      background: url("../images/craft-dots.png") center / contain no-repeat;
      content: "";
      opacity: 0.2;
      pointer-events: none;
    }

    .voices::after {
      position: absolute;
      right: -230px;
      bottom: -310px;
      z-index: -1;
      width: 620px;
      aspect-ratio: 1;
      background: url("../images/leaf-sprig.png") center / contain no-repeat;
      content: "";
      opacity: 0.15;
      transform: rotate(24deg);
      pointer-events: none;
    }

    .voices-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 46px;
    }

    .voices-heading h2 {
      margin-bottom: 0;
    }

    .voices-heading .lead {
      max-width: 460px;
      font-size: 15px;
    }

    .voice-grid {
      display: grid;
      gap: 22px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .voice-card {
      padding: 30px 26px 28px;
      border: 1px solid rgba(143, 162, 143, 0.19);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow-soft);
    }

    .voice-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 22px;
    }

    .voice-photo {
      width: 82px;
      height: 82px;
      flex: 0 0 82px;
      border: 5px solid var(--sage-pale);
      border-radius: 50%;
      object-fit: cover;
    }

    .voice-meta {
      min-width: 0;
    }

    .voice-meta .tag {
      margin-bottom: 7px;
    }

    .voice-meta strong {
      display: block;
      color: var(--heading);
      font-size: 15px;
      line-height: 1.5;
    }

    .voice-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    /* 07 Content introduction */
    .content-intro {
      padding-bottom: 70px;
      background: var(--paper);
    }

    .content-intro::before {
      position: absolute;
      top: -320px;
      right: -130px;
      z-index: -1;
      width: 760px;
      aspect-ratio: 1;
      background: url("../images/thread-curve.png") center / contain no-repeat;
      content: "";
      opacity: 0.2;
      transform: rotate(14deg);
      pointer-events: none;
    }

    .intro-grid {
      display: grid;
      align-items: end;
      gap: 72px;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .intro-grid h2 {
      max-width: 650px;
      margin-bottom: 0;
    }

    .intro-aside {
      padding: 26px 28px;
      border-left: 4px solid var(--accent);
      border-radius: 0 18px 18px 0;
      background: var(--cream);
    }

    .intro-aside p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    /* 08 Content tiles */
    .article-section {
      padding-top: 30px;
      background: var(--paper);
    }

    .article-section::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: url("../images/paper-fiber.png") center / 520px 520px repeat;
      content: "";
      opacity: 0.08;
      pointer-events: none;
    }

    .article-section::after {
      position: absolute;
      bottom: -390px;
      left: -280px;
      z-index: -1;
      width: 760px;
      aspect-ratio: 1;
      background: url("../images/yarn-line.png") center / contain no-repeat;
      content: "";
      opacity: 0.16;
      pointer-events: none;
    }

    .article-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .article-card {
      display: grid;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(143, 162, 143, 0.2);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-soft);
      grid-column: span 5;
      grid-template-rows: auto 1fr;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .article-card:nth-child(2),
    .article-card:nth-child(3) {
      grid-column: span 7;
    }

    .article-card:hover {
      box-shadow: 0 14px 36px rgba(88, 64, 40, 0.1);
      transform: translateY(-2px);
    }

    .article-image {
      width: 100%;
      aspect-ratio: 1.45 / 1;
      object-fit: cover;
    }

    .article-card:nth-child(2) .article-image,
    .article-card:nth-child(3) .article-image {
      aspect-ratio: 2.1 / 1;
    }

    .article-body {
      display: flex;
      min-height: 220px;
      flex-direction: column;
      align-items: flex-start;
      padding: 28px 28px 26px;
    }

    .article-tags {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .article-body h3 {
      margin-bottom: 10px;
    }

    .article-body p {
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 15px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      color: var(--main-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .text-link::after {
      content: "→";
      font-size: 18px;
      transition: transform 0.2s ease;
    }

    .article-card:hover .text-link::after {
      transform: translateX(4px);
    }

    /* 09 FAQ */
    .faq {
      background: var(--sage-pale);
    }

    .faq::before {
      position: absolute;
      top: -300px;
      left: -330px;
      z-index: -1;
      width: 750px;
      aspect-ratio: 1;
      background: url("../images/blob-sage.png") center / contain no-repeat;
      content: "";
      opacity: 0.25;
      pointer-events: none;
    }

    .faq::after {
      position: absolute;
      right: -250px;
      bottom: -300px;
      z-index: -1;
      width: 660px;
      aspect-ratio: 1;
      background: url("../images/stitch-circle.png") center / contain no-repeat;
      content: "";
      opacity: 0.15;
      pointer-events: none;
    }

    .faq-grid {
      display: grid;
      align-items: start;
      gap: clamp(48px, 7vw, 90px);
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    }

    .faq-heading {
      position: sticky;
      top: 122px;
    }

    .faq-heading .lead {
      font-size: 16px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid rgba(143, 162, 143, 0.26);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: var(--shadow-soft);
    }

    .faq-item summary {
      position: relative;
      padding: 24px 64px 24px 28px;
      color: var(--heading);
      cursor: pointer;
      font-weight: 700;
      line-height: 1.6;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      position: absolute;
      top: 50%;
      right: 24px;
      display: grid;
      width: 30px;
      height: 30px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--main);
      content: "+";
      font-size: 21px;
      font-weight: 400;
      line-height: 1;
      transform: translateY(-50%);
      transition: transform 0.25s ease, background-color 0.25s ease;
    }

    .faq-item[open] summary::after {
      background: var(--accent);
      transform: translateY(-50%) rotate(45deg);
    }

    .faq-answer {
      padding: 0 28px 25px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-answer p {
      margin-bottom: 0;
    }

    /* Decorative divider between content and FAQ */
    .thread-divider {
      position: absolute;
      top: -74px;
      right: 0;
      left: 0;
      z-index: -1;
      height: 150px;
      background: url("../images/thread-curve.png") center 47% / 1180px auto no-repeat;
      opacity: 0.28;
      pointer-events: none;
    }

    /* 10 Footer information */
    .site-footer {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 86px 0 72px;
      color: rgba(255, 255, 255, 0.78);
      background: #617661;
    }

    .site-footer::before {
      position: absolute;
      top: -410px;
      right: -260px;
      z-index: -1;
      width: 820px;
      aspect-ratio: 1;
      background: url("../images/thread-curve.png") center / contain no-repeat;
      content: "";
      opacity: 0.12;
      pointer-events: none;
    }

    .footer-grid {
      display: grid;
      align-items: start;
      gap: 48px;
      grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.7fr) minmax(300px, 1.05fr);
    }

    .footer-brand {
      max-width: 370px;
    }

    .footer-logo {
      width: 245px;
      margin-bottom: 24px;
      padding: 8px 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
    }

    .footer-brand p {
      margin-bottom: 0;
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-links h2,
    .contact-card h2 {
      margin-bottom: 18px;
      color: var(--white);
      font-size: 18px;
    }

    .footer-links ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .contact-card {
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.1);
    }

    .contact-card p {
      margin-bottom: 12px;
      font-size: 14px;
    }

    .contact-card .contact-status {
      display: inline-block;
      margin: 6px 0 16px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #4C5D4C;
      background: #E7EDE3;
      font-size: 12px;
      font-weight: 700;
    }

    .contact-card small {
      display: block;
      color: rgba(255, 255, 255, 0.58);
      font-size: 12px;
      line-height: 1.7;
    }

    /* 11 Legal bar */
    .legal-bar {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 20px 0;
      color: rgba(255, 255, 255, 0.58);
      background: #4F624F;
    }

    .legal-bar::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: url("../images/paper-fiber.png") center / 360px 360px repeat;
      content: "";
      opacity: 0.06;
      pointer-events: none;
    }

    .legal-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-size: 11px;
      letter-spacing: 0.04em;
    }

    .legal-inner p {
      margin: 0;
    }

    .legal-inner nav {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .legal-inner a:hover {
      color: var(--white);
    }

    @media (max-width: 1080px) {
      .global-nav ul {
        gap: 18px;
      }

      .global-nav {
        gap: 20px;
      }

      .hero {
        min-height: 740px;
      }

      .hero-inner {
        gap: 36px;
      }

      .hero h1 {
        font-size: clamp(44px, 5vw, 54px);
      }

      .hero-photo {
        min-height: 500px;
      }

      .badge-grid {
        gap: 12px;
      }
    }

    @media (max-width: 900px) {
      .site-header {
        height: 76px;
      }

      .site-header::before {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .global-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - 76px);
        align-content: start;
        gap: 24px;
        padding: 28px 24px 36px;
        overflow-y: auto;
        border-top: 1px solid var(--line);
        background: rgba(252, 250, 247, 0.98);
        box-shadow: 0 18px 40px rgba(88, 64, 40, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .global-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .global-nav ul {
        display: grid;
        gap: 0;
      }

      .global-nav li a:not(.button) {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(143, 162, 143, 0.16);
        font-size: 15px;
      }

      .global-nav .button {
        width: 100%;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner,
      .promise-grid,
      .profile-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        max-width: 680px;
        padding: 42px 0 0;
      }

      .hero-visual {
        width: min(100%, 760px);
        margin-inline: auto;
      }

      .hero-badge {
        left: 18px;
      }

      .concerns-heading,
      .intro-grid {
        align-items: start;
        gap: 24px;
        grid-template-columns: 1fr;
      }

      .concern-grid,
      .voice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .concern-card:last-child,
      .voice-card:last-child {
        grid-column: 1 / -1;
      }

      .badge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .badge-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 6px);
        justify-self: center;
      }

      .article-card,
      .article-card:nth-child(2),
      .article-card:nth-child(3) {
        grid-column: span 6;
      }

      .article-card:nth-child(2) .article-image,
      .article-card:nth-child(3) .article-image {
        aspect-ratio: 1.45 / 1;
      }

      .faq-heading {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-card {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      html {
        scroll-padding-top: 76px;
      }

      body {
        font-size: 16px;
      }

      .container,
      .header-inner {
        width: min(calc(100% - 40px), var(--content));
      }

      .site-section {
        padding-block: clamp(56px, 14vw, 72px);
      }

      h1 {
        font-size: clamp(34px, 9vw, 38px);
      }

      h2 {
        font-size: clamp(26px, 7.4vw, 30px);
      }

      h3 {
        font-size: 20px;
      }

      .lead,
      .hero-description {
        font-size: 16px;
        line-height: 1.85;
      }

      .site-logo {
        width: 190px;
      }

      .hero {
        padding: 26px 20px 70px;
      }

      .hero-inner {
        min-height: auto;
        gap: 44px;
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding-top: 22px;
      }

      .hero-eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
      }

      .hero-description {
        margin-bottom: 26px;
      }

      .hero-actions {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero-photo-wrap {
        border-width: 7px;
        border-radius: 24px;
      }

      .hero-photo {
        min-height: 390px;
        aspect-ratio: 4 / 4.3;
        object-position: 68% center;
      }

      .hero-badge {
        bottom: -26px;
        left: 12px;
        width: 162px;
        border-radius: 50%;
      }

      .hero-visual::before {
        top: -20%;
        right: -42%;
        width: 760px;
      }

      .concerns-heading,
      .concern-grid,
      .promise-grid,
      .before-after,
      .profile-grid,
      .badge-grid,
      .voice-grid,
      .intro-grid,
      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .concerns-heading {
        margin-bottom: 34px;
      }

      .concern-grid {
        gap: 16px;
      }

      .concern-card,
      .concern-card:last-child {
        min-height: 0;
        padding: 28px 24px;
        grid-column: auto;
      }

      .concern-number {
        margin-bottom: 18px;
        font-size: 38px;
      }

      .promise-grid {
        gap: 42px;
      }

      .before-after {
        gap: 16px;
      }

      .change-card img {
        aspect-ratio: 1.25 / 1;
      }

      .profile-grid {
        gap: 40px;
      }

      .profile-photo-wrap {
        width: min(86vw, 390px);
      }

      .badge-grid {
        gap: 16px;
        margin-top: 40px;
      }

      .badge-card:last-child {
        width: 100%;
        grid-column: auto;
      }

      .voices-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 34px;
      }

      .voice-card,
      .voice-card:last-child {
        grid-column: auto;
      }

      .content-intro {
        padding-bottom: 44px;
      }

      .article-section {
        padding-top: 20px;
      }

      .article-grid {
        gap: 18px;
        grid-template-columns: 1fr;
      }

      .article-card,
      .article-card:nth-child(2),
      .article-card:nth-child(3) {
        grid-column: auto;
      }

      .article-image,
      .article-card:nth-child(2) .article-image,
      .article-card:nth-child(3) .article-image {
        aspect-ratio: 1.35 / 1;
      }

      .article-body {
        min-height: 0;
        padding: 24px 22px;
      }

      .faq-item summary {
        padding: 20px 56px 20px 20px;
        font-size: 15px;
      }

      .faq-item summary::after {
        right: 18px;
      }

      .faq-answer {
        padding: 0 20px 22px;
      }

      .thread-divider {
        top: -55px;
        height: 110px;
        background-size: 760px auto;
      }

      .site-footer {
        padding: 66px 0 54px;
      }

      .footer-grid {
        gap: 38px;
      }

      .contact-card {
        grid-column: auto;
      }

      .legal-inner {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 12px;
      }
    }

    @media (max-width: 420px) {
      .container,
      .header-inner {
        width: min(calc(100% - 32px), var(--content));
      }

      .site-logo {
        width: 172px;
      }

      .button {
        width: 100%;
        padding-inline: 20px;
      }

      .hero {
        padding-inline: 16px;
      }

      .hero-photo {
        min-height: 350px;
      }

      .hero-badge {
        width: 146px;
      }

      .voice-header {
        align-items: flex-start;
      }

      .voice-photo {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .reveal-ready .reveal {
        opacity: 1;
        transform: none;
      }
    }