@charset "UTF-8";

:root {
  --paper: #f4efe6;
  --paper-deep: #e9dfd1;
  --white: #fffdf9;
  --ink: #30382f;
  --muted: #626b60;
  --sage: #788b76;
  --sage-deep: #4d6453;
  --sage-dark: #35473b;
  --sage-pale: #dde6da;
  --pink: #e8c2bc;
  --orange: #b4563b;
  --orange-deep: #91402d;
  --border: rgba(77, 100, 83, 0.23);
  --shadow-soft: 0 28px 78px rgba(68, 62, 50, 0.13);
  --shadow-small: 0 12px 36px rgba(68, 62, 50, 0.1);
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 44px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}

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

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

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

:focus-visible {
  outline: 3px solid #9a432e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(68, 62, 50, 0.06);
}

.header-inner,
.section-shell,
.footer-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1.5px solid var(--sage-deep);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: var(--sage-deep);
  border-radius: 999px;
}

.brand-mark::before {
  top: 9px;
  left: 6px;
  width: 17px;
  height: 1.5px;
  transform: rotate(22deg);
}

.brand-mark::after {
  top: 18px;
  left: 8px;
  width: 15px;
  height: 1.5px;
  transform: rotate(-25deg);
}

.brand-mark span {
  top: 13px;
  left: 13px;
  width: 5px;
  height: 5px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.global-nav a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 21px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.hero {
  --hero-rise: 14px;
  --hero-visual-rise: 22px;
  --hero-photo-start-scale: 1.028;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(52px, 7vw, 98px) 0 36px;
  overflow: hidden;
}

.hero-inner {
  width: min(calc(100% - 48px), 1260px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  align-items: center;
  gap: clamp(46px, 6.5vw, 92px);
}

.eyebrow,
.section-kicker,
.feature-meta,
.step-label,
.ticket-label,
.hero-manifesto {
  margin: 0;
  color: var(--sage-deep);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.17em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--sage);
}

.hero-manifesto {
  margin-top: 34px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.hero h1 {
  max-width: 750px;
  margin: 16px 0 27px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  color: var(--sage-deep);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -3px;
  bottom: 7px;
  left: -4px;
  z-index: -1;
  height: 14px;
  content: "";
  background: var(--pink);
  border-radius: 65% 35% 58% 42%;
  opacity: 0.5;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #525c51;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 2.05;
}

.mobile-only {
  display: none;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 37px;
}

.hero-action p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 13px 12px 23px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(180, 86, 59, 0.2);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 18px 34px rgba(180, 86, 59, 0.25);
  transform: translateY(-2px);
}

.button-primary:active {
  transform: translateY(0);
}

.button-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: var(--orange-deep);
  background: var(--white);
  border-radius: 50%;
  font-size: 17px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0 0 28px 24px;
}

.hero-visual::before {
  position: absolute;
  inset: 42px 28px 0 0;
  content: "";
  background: var(--sage-pale);
  border-radius: 220px 220px 26px 26px;
  transform: rotate(-3deg);
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5.25;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 220px 220px 22px 22px;
  box-shadow: var(--shadow-soft);
}

.hero-visual figcaption {
  position: absolute;
  right: -18px;
  bottom: 12px;
  z-index: 3;
  min-width: 230px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-small);
  transform: rotate(2deg);
}

.hero-visual figcaption span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.hero-visual figcaption .hero-name {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.07em;
}

.hero-route-card {
  position: absolute;
  top: 42px;
  left: -18px;
  z-index: 3;
  width: 138px;
  display: grid;
  gap: 8px;
  padding: 18px 17px;
  color: var(--sage-dark);
  background: rgba(255, 253, 249, 0.93);
  border: 1px solid var(--border);
  border-radius: 16px 16px 4px 16px;
  box-shadow: var(--shadow-small);
  transform: rotate(-3deg);
}

.hero-route-card span {
  font-size: 10px;
  font-weight: 800;
}

.hero-route-card i {
  width: 1px;
  height: 17px;
  margin-left: 7px;
  background: var(--orange);
}

.hero-photo-corner {
  position: absolute;
  top: 12px;
  right: 8px;
  z-index: 2;
  width: 86px;
  height: 26px;
  background: rgba(232, 194, 188, 0.74);
  transform: rotate(17deg);
}

.hero-foot {
  width: min(calc(100% - 48px), 1260px);
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-foot i {
  width: 90px;
  height: 1px;
  background: var(--sage);
}

/*
 * FV motion direction: the copy settles first, then the route connects.
 * All content remains readable without JavaScript; reduced-motion removes
 * the entrance sequence and shows the designed static state immediately.
 */
@keyframes hero-copy-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hero-rise), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-visual-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hero-visual-rise), 0) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-photo-settle {
  from {
    transform: scale(var(--hero-photo-start-scale));
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-highlight-draw {
  from {
    opacity: 0;
    transform: rotate(-1deg) scaleX(0);
  }

  to {
    opacity: 0.5;
    transform: rotate(-1deg) scaleX(1);
  }
}

@keyframes hero-card-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) rotate(-3deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
}

@keyframes hero-route-label-arrive {
  from {
    opacity: 0;
    transform: translate3d(-7px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-route-line-draw {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes hero-tape-arrive {
  from {
    opacity: 0;
    transform: translate3d(10px, -8px, 0) rotate(22deg) scaleX(0.7);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(17deg) scaleX(1);
  }
}

@keyframes hero-foot-line-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero .eyebrow,
.hero-manifesto,
.hero h1,
.hero-lead,
.hero-action,
.hero-foot {
  animation: hero-copy-arrive 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .eyebrow {
  animation-delay: 80ms;
}

.hero-manifesto {
  animation-delay: 190ms;
}

.hero h1 {
  animation-delay: 320ms;
}

.hero h1 em::after {
  transform-origin: left center;
  animation: hero-highlight-draw 720ms cubic-bezier(0.22, 1, 0.36, 1) 820ms both;
}

.hero-lead {
  animation-delay: 590ms;
}

.hero-action {
  animation-delay: 760ms;
}

.hero-visual {
  animation: hero-visual-arrive 980ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
}

.hero-visual > img {
  animation: hero-photo-settle 1800ms cubic-bezier(0.22, 1, 0.36, 1) 210ms both;
}

.hero-route-card {
  animation: hero-card-arrive 760ms cubic-bezier(0.22, 1, 0.36, 1) 880ms both;
}

.hero-route-card span {
  animation: hero-route-label-arrive 440ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-route-card span:nth-child(1) {
  animation-delay: 1080ms;
}

.hero-route-card span:nth-child(3) {
  animation-delay: 1370ms;
}

.hero-route-card span:nth-child(5) {
  animation-delay: 1660ms;
}

.hero-route-card i {
  transform-origin: top center;
  animation: hero-route-line-draw 330ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-route-card i:nth-child(2) {
  animation-delay: 1240ms;
}

.hero-route-card i:nth-child(4) {
  animation-delay: 1530ms;
}

.hero-photo-corner {
  transform-origin: center;
  animation: hero-tape-arrive 700ms cubic-bezier(0.22, 1, 0.36, 1) 670ms both;
}

.hero-foot {
  animation-delay: 1040ms;
}

.hero-foot i {
  transform-origin: left center;
  animation: hero-foot-line-draw 760ms cubic-bezier(0.22, 1, 0.36, 1) 1230ms both;
}

.section-shell {
  padding-block: clamp(88px, 10vw, 146px);
}

.section-number {
  margin: 0 0 13px;
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.section-number::before {
  width: 30px;
  height: 1px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

.section-heading h2,
.flow-intro h2,
.support-header h2,
.proof-title-wrap h2,
.about-copy h2,
.consultation-heading h2,
.faq-grid h2 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(31px, 3.65vw, 50px);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.empathy {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.empathy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: start;
}

.local-scene {
  position: relative;
  margin: 56px 0 0;
}

.local-scene img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 9px 72px 9px 9px;
}

.local-scene figcaption {
  position: absolute;
  right: -24px;
  bottom: -22px;
  padding: 12px 18px;
  color: var(--sage-dark);
  background: var(--sage-pale);
  font-family: var(--font-serif);
  font-size: 12px;
  transform: rotate(-2deg);
}

.concern-list {
  border-top: 1px solid var(--border);
}

.concern-list p {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin: 0;
  padding: 25px 4px;
  color: #4e5950;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.85;
}

.concern-list span {
  color: var(--sage);
  font-family: var(--font-serif);
  font-size: 13px;
}

.empathy-message {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 72px);
  background: var(--sage-pale);
  border-radius: 30px 30px 0 0;
  text-align: center;
}

.empathy-message p,
.empathy-message strong {
  margin: 0;
}

.empathy-message p {
  color: var(--muted);
  font-size: 12px;
}

.empathy-message strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 600;
  line-height: 1.75;
}

.flow-section {
  background: var(--sage-pale);
}

.flow-intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: end;
}

.flow-intro > p {
  max-width: 500px;
  margin: 0 0 7px;
  color: #526054;
}

.route-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 6vw, 80px);
  margin-top: 88px;
}

.route-line {
  position: absolute;
  top: 57px;
  right: 10%;
  left: 10%;
  height: 2px;
  overflow: hidden;
  background: rgba(77, 100, 83, 0.22);
}

.route-line span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--orange);
  transform: scaleX(var(--flow-progress, 0));
  transform-origin: left center;
  transition: transform 140ms linear;
}

.route-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-label {
  color: var(--muted);
  font-size: 9px;
}

.step-dot {
  width: 54px;
  height: 54px;
  margin: 21px auto 28px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--sage-pale);
}

.step-dot span {
  font-family: var(--font-serif);
  font-size: 17px;
}

.route-step h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}

.route-step p:last-child {
  max-width: 275px;
  margin: 14px auto 0;
  color: #576359;
  font-size: 13px;
  line-height: 1.9;
}

.flow-note {
  max-width: 750px;
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(77, 100, 83, 0.28);
}

.flow-note > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 50%;
}

.flow-note p {
  margin: 0;
}

.flow-note strong {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}

.connection-story {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
  overflow: hidden;
  color: var(--white);
  background: #856b57;
}

.connection-story::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(55, 49, 41, 0.7), rgba(75, 61, 51, 0.27) 58%, rgba(55, 49, 41, 0.13));
}

.connection-story img {
  width: 100%;
  aspect-ratio: 16 / 7.3;
  object-fit: cover;
}

.connection-copy {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - var(--container)) / 2));
  z-index: 2;
  transform: translateY(-50%);
}

.connection-copy p {
  margin: 0 0 18px;
  color: #f0d5cb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.connection-copy strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(27px, 3.7vw, 48px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.connection-copy span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.support-section {
  background: var(--paper);
}

.support-header {
  display: grid;
  grid-template-columns: 0.43fr 1fr 0.82fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 64px;
}

.support-header h2 {
  margin: 0;
}

.support-header > p:last-child {
  margin: 0 0 7px;
  color: var(--muted);
}

.support-feature {
  position: relative;
  min-height: 385px;
  display: grid;
  grid-template-columns: 74px minmax(280px, 0.75fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
}

.support-feature-sns {
  color: var(--white);
  background: var(--sage-deep);
  border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg);
}

.support-feature-line {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px var(--radius-lg) var(--radius-lg) var(--radius-lg);
}

.support-feature + .support-feature {
  margin-top: 24px;
}

.feature-index {
  align-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
  opacity: 0.46;
}

.feature-meta {
  color: inherit;
  opacity: 0.66;
}

.feature-copy h3 {
  margin: 11px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(33px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.35;
}

.feature-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  opacity: 0.87;
}

.feature-visual {
  position: relative;
  min-height: 250px;
}

.mini-window {
  position: absolute;
  width: 180px;
  height: 225px;
  display: block;
  padding: 25px 22px;
  background: var(--paper);
  border-radius: 17px;
  box-shadow: 0 24px 50px rgba(30, 45, 34, 0.2);
}

.mini-window::before {
  width: 9px;
  height: 9px;
  display: block;
  margin-bottom: 34px;
  content: "";
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 15px 0 0 var(--orange), 30px 0 0 var(--sage);
}

.mini-window i {
  height: 7px;
  display: block;
  margin-top: 13px;
  background: #cdd7c8;
  border-radius: 99px;
}

.mini-window i:nth-child(2) {
  width: 76%;
}

.mini-window i:nth-child(3) {
  width: 56%;
}

.window-a {
  top: 18px;
  left: 8%;
  opacity: 0.62;
  transform: rotate(-5deg);
}

.window-b {
  right: 8%;
  bottom: 4px;
  transform: rotate(4deg);
}

.window-b strong {
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  background: var(--sage-pale);
  border-radius: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.draw-arrow {
  position: absolute;
  top: 45%;
  left: 49%;
  z-index: 4;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 42px;
  transform: rotate(-10deg);
}

.visual-line {
  min-height: 270px;
  padding-top: 16px;
}

.chat {
  position: absolute;
  z-index: 2;
  min-width: 128px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--sage-pale);
  border-radius: 22px 22px 22px 4px;
  box-shadow: var(--shadow-small);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.chat-one {
  top: 8%;
  left: 3%;
  transform: rotate(-3deg);
}

.chat-two {
  top: 39%;
  left: 38%;
  background: var(--paper-deep);
  transform: rotate(2deg);
}

.chat-three {
  right: 2%;
  bottom: 5%;
  color: var(--white);
  background: var(--orange);
  transform: rotate(-2deg);
}

.draw-path {
  position: absolute;
  inset: 10% 8%;
  border: 2px dashed rgba(77, 100, 83, 0.32);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(10deg);
}

.support-extra {
  display: grid;
  grid-template-columns: 74px minmax(230px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-top: 24px;
  padding: clamp(38px, 5vw, 58px) clamp(34px, 6vw, 72px);
  background: var(--sage-pale);
  border: 1px solid rgba(77, 100, 83, 0.18);
  border-radius: var(--radius-lg) 8px var(--radius-lg) var(--radius-lg);
}

.extra-support-intro h3 {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.5;
}

.extra-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(77, 100, 83, 0.24);
}

.extra-support-list article {
  min-width: 0;
  padding: 22px 24px 2px 0;
}

.extra-support-list article + article {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(77, 100, 83, 0.24);
}

.extra-support-list span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.extra-support-list h4 {
  margin: 10px 0 12px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.extra-support-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.support-note {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.proof-section {
  padding: 48px;
  background: var(--sage-deep);
}

.proof-shell {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(64px, 8vw, 110px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg) 8px var(--radius-lg) 8px;
}

.proof-title-wrap h2 {
  font-size: clamp(30px, 3.7vw, 47px);
}

.proof-placeholder {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 32px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-stamp {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--orange-deep);
  border: 1px solid var(--orange);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-align: center;
  transform: rotate(-8deg);
}

.proof-placeholder strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
}

.proof-placeholder p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.proof-policy {
  grid-column: 2;
  margin: -70px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) 1fr;
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.about-portrait {
  position: relative;
  margin: 0;
  padding: 0 22px 30px 0;
}

.about-portrait::before {
  position: absolute;
  inset: 32px 0 0 28px;
  content: "";
  background: var(--sage-pale);
  border-radius: 28px 120px 28px 28px;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1000 / 971;
  object-fit: cover;
  object-position: center;
  border-radius: 28px 120px 28px 28px;
  box-shadow: var(--shadow-soft);
}

.about-portrait figcaption {
  position: absolute;
  right: -8px;
  bottom: 8px;
  z-index: 2;
  padding: 15px 19px;
  color: var(--sage-dark);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-small);
}

.about-portrait figcaption span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.portrait-tape {
  position: absolute;
  top: 17px;
  right: 34px;
  z-index: 2;
  width: 82px;
  height: 24px;
  background: rgba(232, 194, 188, 0.72);
  transform: rotate(18deg);
}

.about-role {
  margin: 20px 0 0;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
}

.about-copy h2 {
  margin-top: 13px;
}

.about-lead {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.85;
}

.about-story {
  max-width: 590px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 14px;
}

.about-story p {
  margin: 0;
}

.about-story p + p {
  margin-top: 18px;
}

.about-facts {
  margin: 38px 0 0;
  border-top: 1px solid var(--border);
}

.about-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.about-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.about-facts dd {
  margin: 0;
  font-size: 13px;
}

.consultation-section {
  position: relative;
  padding: clamp(88px, 10vw, 142px) 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-deep);
}

.consultation-section::before {
  position: absolute;
  top: -250px;
  left: -110px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.consultation-section::after {
  position: absolute;
  right: -390px;
  bottom: -390px;
  width: 640px;
  height: 640px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.consultation-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(350px, 0.82fr);
  gap: clamp(60px, 9vw, 118px);
  align-items: center;
}

.consultation-heading .section-kicker {
  color: #dbe8d7;
}

.consultation-heading h2 {
  margin-top: 20px;
}

.consultation-heading > p:nth-of-type(2) {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.77);
}

.consultation-sign {
  margin: 34px 0 0;
  color: #f0cbc3;
  font-family: var(--font-serif);
  font-size: 16px;
}

.consultation-ticket {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 26px 26px 6px 26px;
  box-shadow: 0 28px 80px rgba(29, 42, 32, 0.28);
}

.consultation-ticket dl {
  margin: 26px 0;
}

.consultation-ticket dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.consultation-ticket dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.consultation-ticket dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.button-disabled {
  width: 100%;
  color: #59655a;
  background: var(--sage-pale);
  cursor: not-allowed;
}

.ticket-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(60px, 9vw, 124px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--sage-deep);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  margin: 8px 42px 25px 4px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 65px 0 36px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--sage-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.57);
}

.brand-footer .brand-mark {
  border-color: #d4dfd0;
}

.brand-footer .brand-mark::before,
.brand-footer .brand-mark::after,
.brand-footer .brand-mark span {
  background: #d4dfd0;
}

.footer-inner > div:first-child > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-serif);
  font-size: 12px;
}

.footer-inner nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
  align-self: start;
}

.footer-inner nav a {
  font-size: 11px;
}

.footer-inner nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.49);
  font-size: 10px;
}

.footer-meta p {
  margin: 0;
}

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

  .global-nav a {
    font-size: 10px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.76fr);
    gap: 48px;
  }

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

@media (max-width: 980px) {
  .hero {
    --hero-rise: 9px;
    --hero-visual-rise: 14px;
    --hero-photo-start-scale: 1.016;
  }

  .global-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .hero-visual > img {
    aspect-ratio: 4 / 4.4;
  }

  .empathy-grid,
  .flow-intro,
  .about-grid,
  .consultation-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .local-scene {
    width: min(100%, 620px);
  }

  .support-header {
    grid-template-columns: 0.35fr 1fr;
  }

  .support-header > p:last-child {
    grid-column: 2;
  }

  .support-feature {
    grid-template-columns: 50px 1fr;
  }

  .support-extra {
    grid-template-columns: 50px 1fr;
  }

  .extra-support-list {
    grid-column: 2;
  }

  .feature-visual {
    grid-column: 2;
    width: min(100%, 540px);
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .proof-policy {
    grid-column: auto;
    margin: 0;
  }

  .about-portrait {
    width: min(100%, 540px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 67px;
  }

  body {
    font-size: 15px;
  }

  .header-inner,
  .section-shell,
  .footer-inner,
  .hero-inner,
  .hero-foot {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .brand-mark::before {
    top: 8px;
    left: 5px;
  }

  .brand-mark::after {
    top: 16px;
    left: 7px;
  }

  .brand-mark span {
    top: 11px;
    left: 11px;
  }

  .header-cta {
    min-height: 46px;
    padding-inline: 15px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 47px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.7;
  }

  .eyebrow span {
    margin-top: 8px;
  }

  .hero-manifesto {
    margin-top: 25px;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: clamp(32px, 9.3vw, 36px);
    line-height: 1.55;
  }

  .hero h1 {
    letter-spacing: 0.015em;
  }

  .hero h1 .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .hero-action {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-action .button {
    width: 100%;
  }

  .hero-action p {
    padding-left: 5px;
  }

  .hero-visual {
    width: 100%;
    padding: 0 0 24px 12px;
  }

  .hero-visual::before {
    inset: 34px 12px 0 0;
  }

  .hero-visual > img {
    aspect-ratio: 4 / 4.85;
    border-radius: 170px 170px 18px 18px;
  }

  .hero-route-card {
    top: 28px;
    left: -5px;
    width: 116px;
    padding: 13px 14px;
  }

  .hero-route-card span {
    font-size: 9px;
  }

  .hero-visual figcaption {
    right: -4px;
    bottom: 7px;
    min-width: 195px;
    padding: 13px 16px;
  }

  .hero-photo-corner {
    right: 0;
    width: 68px;
  }

  .hero-foot {
    margin-top: 35px;
  }

  .section-shell {
    padding-block: 88px;
  }

  .section-heading h2,
  .flow-intro h2,
  .support-header h2,
  .proof-title-wrap h2,
  .about-copy h2,
  .consultation-heading h2,
  .faq-grid h2 {
    font-size: 30px;
    line-height: 1.58;
  }

  .empathy-grid {
    gap: 72px;
  }

  .local-scene {
    margin-top: 42px;
  }

  .local-scene figcaption {
    right: -5px;
    bottom: -18px;
    font-size: 10px;
  }

  .concern-list p {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding-block: 21px;
  }

  .empathy-message {
    width: calc(100% - 24px);
    padding: 38px 20px;
  }

  .flow-intro {
    gap: 28px;
  }

  .route-board {
    grid-template-columns: 1fr;
    gap: 51px;
    margin-top: 64px;
  }

  .route-line {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 26px;
    width: 2px;
    height: auto;
  }

  .route-line span {
    width: 100%;
    height: 100%;
    transform: scaleY(var(--flow-progress, 0));
    transform-origin: center top;
    transition-property: transform;
  }

  .route-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 23px;
    text-align: left;
  }

  .step-label {
    grid-column: 2;
  }

  .step-dot {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 0;
  }

  .route-step h3 {
    grid-column: 2;
    margin-top: 8px;
  }

  .route-step p:last-child {
    grid-column: 2;
    max-width: none;
    margin: 8px 0 0;
  }

  .flow-note {
    margin-top: 60px;
  }

  .connection-story img {
    min-height: 470px;
    aspect-ratio: auto;
    object-position: 52% center;
  }

  .connection-story::after {
    background: linear-gradient(90deg, rgba(55, 49, 41, 0.67), rgba(55, 49, 41, 0.25));
  }

  .connection-copy {
    right: 24px;
    left: 24px;
  }

  .connection-copy strong {
    font-size: 27px;
  }

  .support-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .support-header > p:last-child {
    grid-column: auto;
  }

  .support-feature {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
  }

  .support-extra {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 24px;
  }

  .extra-support-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .extra-support-list article {
    padding: 20px 0;
  }

  .extra-support-list article + article {
    padding-left: 0;
    border-top: 1px solid rgba(77, 100, 83, 0.24);
    border-left: 0;
  }

  .feature-index {
    font-size: 37px;
  }

  .feature-visual {
    grid-column: auto;
    width: 100%;
    min-height: 230px;
  }

  .mini-window {
    width: 148px;
    height: 190px;
    padding: 19px 16px;
  }

  .window-a {
    left: 0;
  }

  .window-b {
    right: 0;
  }

  .chat {
    min-width: 112px;
    padding: 13px 14px;
    font-size: 10px;
  }

  .chat-one {
    left: 0;
  }

  .chat-two {
    left: 28%;
  }

  .chat-three {
    right: 0;
  }

  .proof-section {
    padding: 12px;
  }

  .proof-shell {
    padding: 66px 24px;
    border-radius: 30px 7px 30px 7px;
  }

  .proof-placeholder {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .proof-stamp {
    width: 88px;
    height: 88px;
    font-size: 8px;
  }

  .about-grid {
    gap: 58px;
  }

  .about-portrait {
    width: 100%;
    padding-right: 10px;
  }

  .about-portrait figcaption {
    right: -3px;
    font-size: 17px;
  }

  .about-facts div {
    grid-template-columns: 84px 1fr;
    gap: 15px;
  }

  .consultation-section {
    padding-inline: 16px;
  }

  .consultation-shell {
    gap: 52px;
  }

  .consultation-ticket {
    padding: 28px 22px;
  }

  .faq-list summary {
    line-height: 1.75;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .header-inner,
  .section-shell,
  .footer-inner,
  .hero-inner,
  .hero-foot {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .button {
    gap: 10px;
    padding-left: 18px;
    font-size: 12px;
  }

  .hero-route-card {
    width: 108px;
  }

  .connection-copy {
    right: 18px;
    left: 18px;
  }

  .connection-copy strong {
    font-size: 24px;
  }

  .mini-window {
    width: 134px;
  }

  .chat-two {
    left: 21%;
  }

  .about-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

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

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

  .route-line span {
    transform: scale(1);
  }

  .hero .eyebrow,
  .hero-manifesto,
  .hero h1,
  .hero h1 em::after,
  .hero-lead,
  .hero-action,
  .hero-visual,
  .hero-visual > img,
  .hero-route-card,
  .hero-route-card span,
  .hero-route-card i,
  .hero-photo-corner,
  .hero-foot,
  .hero-foot i {
    animation: none !important;
  }
}
