:root {
  --cream: #f5f0e7;
  --cream-deep: #ebe2d4;
  --paper: #fffdf8;
  --olive: #4f5a43;
  --olive-dark: #394235;
  --olive-soft: #7b846f;
  --terracotta: #b8795b;
  --terracotta-dark: #986047;
  --charcoal: #28312b;
  --muted: #667066;
  --line: rgba(79, 90, 67, 0.2);
  --white-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 60px rgba(40, 49, 43, 0.12);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color-scheme: light;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.06em;
}

h2 {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.42;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid #1b6b7b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--charcoal);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line);
  color: var(--charcoal);
  background: rgba(245, 240, 231, 0.96);
  box-shadow: 0 8px 30px rgba(40, 49, 43, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(1280px, 100%);
  min-height: 86px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(20px, 4vw, 56px);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.59rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-width: 132px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  text-align: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover {
  color: var(--charcoal);
  background: #fff;
}

.is-scrolled .nav-cta,
.menu-active .nav-cta {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
}

.is-scrolled .nav-cta:hover,
.menu-active .nav-cta:hover {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--olive-dark);
}

.hero-image,
.hero-image img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: center 44%;
  animation: hero-breathe 16s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(29, 37, 31, 0.76) 0%, rgba(29, 37, 31, 0.44) 48%, rgba(29, 37, 31, 0.08) 82%),
    linear-gradient(0deg, rgba(29, 37, 31, 0.42) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1280px, 100%);
  min-height: min(900px, 100svh);
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(150px, 17vh, 220px) clamp(22px, 7vw, 96px) clamp(110px, 14vh, 160px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.6;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  line-height: 1.3;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.91);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  letter-spacing: 0.06em;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 12px 30px rgba(74, 39, 24, 0.22);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.66);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  color: var(--charcoal);
  background: #fff;
}

.trial-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.trial-note span {
  margin-right: 5px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.trial-note strong {
  color: #fff;
  font-size: 1.1rem;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 54px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.section {
  padding: clamp(82px, 11vw, 150px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(900px, 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(44px, 7vw, 78px);
  text-align: center;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
  line-height: 2;
}

.empathy {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 121, 91, 0.1) 0, transparent 28%),
    var(--cream);
  text-align: center;
}

.empathy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  text-align: left;
}

.empathy-list li {
  min-width: 0;
  padding: 30px clamp(18px, 3vw, 36px);
}

.empathy-list li + li {
  border-left: 1px solid var(--line);
}

.empathy-number {
  display: block;
  margin-bottom: 13px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.empathy-list p {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.8;
}

.treatment-story {
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(46px, 9vw, 120px);
}

.story-image {
  position: relative;
  padding: 0 0 36px 36px;
}

.story-image::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78%;
  height: 72%;
  background: var(--cream-deep);
  content: "";
}

.story-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: -10px;
  bottom: 7px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.story-copy {
  max-width: 510px;
}

.story-copy p:not(.section-kicker) {
  margin-bottom: 1.5em;
  line-height: 2.05;
}

.story-copy .quiet-note {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid var(--terracotta);
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.features {
  background: var(--olive);
}

.features h2,
.features h3 {
  color: #fff;
}

.features .section-kicker {
  color: #e6b297;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}

.feature-image {
  position: relative;
  padding: 14px;
  border: 1px solid var(--white-line);
}

.feature-image::after {
  position: absolute;
  inset: 30px -24px -24px 30px;
  z-index: 0;
  border: 1px solid var(--white-line);
  content: "";
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--white-line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--white-line);
}

.feature-list > li > span {
  color: #e6b297;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.menu-section {
  background:
    linear-gradient(rgba(79, 90, 67, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 90, 67, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 40px 40px;
}

.trial-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 4vw, 55px);
  margin-bottom: 32px;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 18px 48px rgba(119, 72, 51, 0.18);
}

.trial-card h3,
.trial-card p {
  color: #fff;
}

.trial-card h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.trial-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.trial-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.trial-price {
  min-width: 130px;
  text-align: right;
}

.trial-price span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.trial-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.trial-price small,
.menu-price small {
  margin-left: 3px;
  font-family: var(--sans);
  font-size: 0.75rem;
}

.button-light {
  color: var(--terracotta-dark);
  background: #fff;
}

.button-light:hover {
  color: var(--olive-dark);
  box-shadow: 0 10px 24px rgba(75, 40, 25, 0.17);
}

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

.menu-card {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 46px) clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
}

.menu-card.featured {
  border-color: var(--olive);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.recommend-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 13px;
  color: #fff;
  background: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.menu-time {
  margin-bottom: 24px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.menu-time strong {
  margin-right: 4px;
  font-size: 2.5rem;
  font-weight: 400;
}

.menu-card > p:not(.menu-time):not(.menu-price) {
  min-height: 5.4em;
}

.menu-price {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-width: 0;
  padding: 30px clamp(18px, 2.5vw, 32px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li + li {
  border-left: 1px solid var(--line);
}

.flow-number {
  display: block;
  margin-bottom: 24px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.flow-list p {
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.9;
}

.therapist {
  position: relative;
  padding: clamp(100px, 14vw, 190px) clamp(22px, 6vw, 80px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 30%, rgba(184, 121, 91, 0.22), transparent 28%),
    linear-gradient(135deg, var(--charcoal), var(--olive-dark));
}

.therapist::before,
.therapist::after {
  position: absolute;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  content: "";
}

.therapist::before {
  top: -180px;
  right: -100px;
  width: 430px;
  height: 430px;
}

.therapist::after {
  right: 8%;
  bottom: -90px;
  width: 210px;
  height: 210px;
}

.therapist-inner {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-kicker.light {
  color: #e6b297;
}

.therapist h2,
.contact-section h2 {
  color: #fff;
}

.therapist p:not(.section-kicker) {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}

.therapist-sign {
  margin-top: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.therapist-sign span {
  margin-left: 8px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 120px);
}

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

.faq-heading h2 {
  margin-bottom: 18px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 42px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before {
  position: absolute;
  top: 27px;
  left: 4px;
  color: var(--terracotta);
  content: "Q.";
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 42px 28px;
  line-height: 1.95;
}

.contact-section {
  padding: clamp(96px, 13vw, 170px) clamp(22px, 5vw, 64px);
  color: #fff;
  background: var(--terracotta);
}

.contact-inner {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner > p:not(.section-kicker):not(.medical-note) {
  max-width: 600px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-placeholder {
  display: grid;
  gap: 5px;
  max-width: 570px;
  margin: 0 auto 30px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.contact-placeholder strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.medical-note {
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 45px clamp(20px, 5vw, 64px) 100px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer-brand {
  color: #fff;
}

.footer-notes {
  text-align: center;
}

.footer-notes p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.footer-notes small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.page-top {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 76px;
  }

  .js .menu-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    gap: 0;
    padding: 16px clamp(20px, 5vw, 48px) 30px;
    border-bottom: 1px solid var(--line);
    color: var(--charcoal);
    background: rgba(245, 240, 231, 0.99);
    box-shadow: 0 18px 30px rgba(40, 49, 43, 0.1);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav > a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .js .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .js .nav-cta {
    margin-top: 18px;
    border-color: var(--olive);
    color: #fff;
    background: var(--olive);
  }

  .trial-card {
    grid-template-columns: 1fr auto;
  }

  .trial-card .button {
    grid-column: 1 / -1;
  }

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

  .flow-list li:nth-child(3) {
    border-left: 0;
  }

  .flow-list li:nth-child(n + 3) {
    border-top: 0;
  }
}

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

  .brand-name {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(29, 37, 31, 0.83) 0%, rgba(29, 37, 31, 0.3) 76%),
      linear-gradient(90deg, rgba(29, 37, 31, 0.52), transparent);
  }

  .hero-content {
    min-height: 760px;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 140px;
    padding-bottom: 104px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.8rem);
  }

  .desktop-break {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .empathy-list {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .empathy-list li {
    padding: 22px 18px;
  }

  .empathy-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-layout,
  .feature-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .story-image {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .story-copy {
    max-width: none;
  }

  .feature-layout {
    gap: 58px;
  }

  .feature-image {
    width: min(440px, calc(100% - 24px));
    margin: 0 auto;
  }

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

  .menu-card.featured {
    transform: none;
  }

  .menu-card > p:not(.menu-time):not(.menu-price) {
    min-height: 0;
  }

  .faq-heading {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 116px;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    color: #fff;
    background: rgba(79, 90, 67, 0.96);
    box-shadow: 0 12px 32px rgba(40, 49, 43, 0.28);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 560px) {
  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .header-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .trial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trial-price {
    text-align: center;
  }

  .trial-card .button {
    grid-column: auto;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li + li,
  .flow-list li:nth-child(3) {
    border-top: 0;
    border-left: 0;
  }

  .faq-list summary {
    padding-right: 42px;
    padding-left: 36px;
  }

  .faq-list details p {
    padding-right: 18px;
    padding-left: 36px;
  }

  .contact-placeholder {
    border-radius: 20px;
  }
}

@media (max-width: 360px) {
  .brand-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }

  .story-image {
    padding: 0 0 24px 24px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
