:root {
  --bg: #f8f6f2;
  --surface: #fffdf9;
  --surface-soft: #f3efe9;
  --surface-strong: #efe8de;
  --text: #2f2a27;
  --muted: #6b625d;
  --line: #5ea96a;
  --line-dark: #3a7f4a;
  --accent: #b79b72;
  --accent-deep: #8d6a3d;
  --border: #ddd4ca;
  --max: 1120px;
  --radius: 16px;
  --shadow-soft: 0 10px 24px rgba(63, 49, 33, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

main {
  padding-top: 0;
}

body:not(.home) main {
  padding-top: 64px;
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section:not(.section--fv) .container {
  padding-inline: 40px;
}

.section {
  padding: 80px 0;
  position: relative;
  background: #fff;
}

.section--alt {
  background: #fff;
}

.section--soft {
  background: #fff;
}

#worries,
#flow {
  background: rgb(249, 246, 244);
}

#blog {
  background: #fff;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.section-desc,
.meta,
.lead {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

body.home .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

body.home.is-scrolled .site-header {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.home .site-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

body.home .site-header__line {
  display: none;
}

.site-header .site-nav,
.site-header .site-header__line {
  display: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding-inline: 32px;
}

.site-brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.site-brand img {
  max-height: 36px;
  width: auto;
  border-radius: 0;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header__contact {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 0.86rem;
  color: #4a4038;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  align-items: center;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.is-scrolled .site-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body:not(.home) .site-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav a {
  position: relative;
  color: #433a34;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: var(--accent-deep);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--line {
  background: var(--line);
  color: #fff;
}

.btn--line:hover {
  background: var(--line-dark);
}

.btn--ghost {
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.btn--dark {
  background: #2f2a27;
  color: #fff;
}

.btn--dark:hover {
  background: #1f1b18;
}

.btn--instagram {
  background: #fff;
  color: #4f463f;
  border-color: #cfc2b2;
  gap: 8px;
}

.btn--instagram svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.btn--instagram:hover {
  background: #f8f4ee;
}

.btn--outline-dark {
  background: #fff;
  color: #2f2a27;
  border-color: #2f2a27;
}

.btn--outline-dark::after {
  content: "→";
  margin-left: 0.48em;
  font-size: 0.95em;
  line-height: 1;
}

.btn--outline-dark:hover {
  background: #f6f3ef;
  color: #2f2a27;
}

.text-link {
  color: #4e6f96;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-cta {
  margin-top: 24px;
}

.page-intro {
  margin-bottom: 28px;
}

.page-intro__kicker {
  margin: 0 0 10px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  color: #8e7b68;
  text-transform: uppercase;
}

.page-intro__title {
  margin-bottom: 10px;
}

.page-intro__lead {
  margin: 0;
  color: #6f6660;
  line-height: 1.95;
}

.section--fv {
  width: 100%;
  padding: 12.8px;
}

.fv-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  padding: 0;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.fv-layout::before,
.fv-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
}

.fv-layout::before {
  background-image: var(--fv-bg-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(1);
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), filter 2.2s ease;
}

.fv-layout::after {
  background: rgba(32, 24, 16, 0.38);
  opacity: 0;
  transition: opacity 2.2s ease;
}

body.home.hero-bg-ready .fv-layout::before {
  transform: scale(1);
  filter: brightness(0.82);
}

body.home.hero-bg-ready .fv-layout::after {
  opacity: 1;
}

.fv-ripple {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fv-ripple::before,
.fv-ripple::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  animation: fvRipple 7.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fv-ripple::after {
  animation-delay: 3.6s;
}

.fv-copy {
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.fv-content .lead {
  max-width: 36ch;
  margin-inline: auto;
}

.fv-content .cluster {
  justify-content: center;
}

.section--fv .fv-copy {
  color: #fff;
}

.fv-copy-svg {
  width: 64px;
  height: 520px;
  display: block;
}

.fv-copy-svg text {
  fill: #fff;
  font-size: 32px;
  font-weight: 320;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
}

.fv-content {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.section--fv-support {
  padding-top: 54px;
  padding-bottom: 84px;
}

.section--fv-support .container {
  text-align: left;
  max-width: 860px;
}

/* Top page: align section content width to the post-hero section.
   Keep header / hero / footer as-is, and allow menu slider breakout. */
body.home .section:not(.section--fv) .container {
  max-width: 860px;
}

body.home #menus .menu-slider {
  position: relative;
  left: 50%;
  width: min(100vw - 32px, var(--max));
  transform: translateX(-50%);
}

.section--fv-support .eyebrow {
  margin-bottom: 28px;
}

.fv-support-copy {
  display: grid;
  gap: 34px;
  justify-items: start;
}

.fv-support-copy .fv-support-lead {
  font-size: 19px;
  line-height: 1.9;
}

.fv-support-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 2.35;
  letter-spacing: 0.06em;
  color: #3e3530;
  text-wrap: pretty;
}

.card-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 2px 0 rgba(50, 35, 18, 0.03);
}

.card:hover {
  box-shadow: var(--shadow-soft);
}

.card--reason p {
  margin: 0;
}

.card--staff img,
.card--post img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 10px;
}

.card--staff h3,
.card--post h3,
.card--post h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.worries-copy {
  margin: 18px 0 0;
  color: #504741;
  line-height: 1.95;
}

.worries-copy--sub {
  margin-top: 10px;
  color: #6b625d;
}

.worries-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.worries-list__item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  line-height: 1.9;
  color: #3d3530;
}

.worries-list__item::before {
  content: "!";
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 1.35em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78em;
  line-height: 1;
  background: #f0e5d5;
  color: #9b7651;
  font-weight: 700;
  margin-top: 0.28em;
}

.menu-slider {
  position: relative;
  overflow: hidden;
  padding: 0 46px;
}

.menu-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.menu-slider__track::-webkit-scrollbar {
  display: none;
}

.menu-card {
  scroll-snap-align: start;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  padding: 0;
}

.menu-card__media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.menu-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.menu-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.menu-card__title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  z-index: 1;
}

.menu-card__body {
  padding: 11px 4px 4px;
}

.menu-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-list-grid {
  display: grid;
  gap: 20px;
}

.menu-detail-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.menu-detail-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-detail-card__body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.menu-detail-card__body p {
  margin: 0;
  color: #5f5752;
}

.menu-detail-card__short {
  font-weight: 500;
}

.menu-detail-card__detail {
  margin-top: 10px;
  color: #6f6660;
}

.menu-detail-card__meta {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.menu-detail-card__meta div {
  display: flex;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px dashed #ddd3c8;
}

.menu-detail-card__meta dt {
  min-width: 62px;
  color: #867766;
}

.menu-detail-card__meta dd {
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-btn:hover {
  border-color: #bda98e;
  transform: translateY(-1px);
}

.slider-btn--edge {
  position: absolute;
  top: calc(50% - 36px);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  box-shadow: none;
}

.slider-btn--prev {
  left: 0;
}

.slider-btn--next {
  right: 0;
}

.slider-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

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

.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.step-num {
  display: inline-block;
  font-size: 0.8rem;
  color: #7f6e60;
  margin-bottom: 4px;
}

.process-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed #d6cdc4;
}

.process-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 14px 0 26px;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-item__marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #bdb2a8;
  background: #f3efe9;
  margin-top: 5px;
  margin-left: 6px;
  z-index: 1;
}

.process-item__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #2f2a27;
}

.process-item__body p {
  margin: 0;
  color: #6f6660;
  line-height: 2.05;
}

.process-item__step {
  margin: 0 0 6px;
  color: #8a7b6f;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
}

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

.faq-group + .faq-group {
  margin-top: 28px;
}

.faq-group__title {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.6;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: clip;
}

.faq-list details[open] {
  border-color: #cab79f;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  padding-right: 26px;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #7b7066;
  transform: translateY(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.28s ease;
}

.faq-list details[open] .faq-answer {
  opacity: 1;
}

.faq-list p {
  margin: 8px 0 0;
  padding-bottom: 2px;
  color: var(--muted);
}

.feature-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-points li {
  position: relative;
  padding-left: 18px;
  color: #5f5752;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 8px;
  height: 1px;
  background: #9f8d79;
}

.access-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.info-table {
  margin: 0;
  display: grid;
  gap: 12px;
}

.info-table div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d7ccc0;
}

.info-table dt {
  color: #817160;
}

.info-table dd {
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, #f7f0e5 0%, #f2eadf 100%);
  border: 1px solid #dccbb6;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-top: 28px;
}

.cta-box .section-title {
  margin-bottom: 12px;
}

.content-narrow {
  width: min(100% - 32px, 820px);
}

.entry-article {
  padding-bottom: 18px;
}

.entry-content img {
  width: 100%;
  margin: 8px 0 14px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.5;
}

.entry-content p,
.entry-content li {
  color: #534d48;
  line-height: 2.05;
}

.single-thumb {
  margin-bottom: 20px;
}

.post-nav {
  margin-top: 22px;
  border-top: 1px solid #dfd5ca;
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.post-nav div:last-child {
  text-align: right;
}

.post-nav div:nth-child(2) {
  text-align: center;
}

.legal-block {
  border-top: 1px dashed #d8cfc4;
  padding-top: 16px;
  margin-top: 18px;
}

.legal-block h2 {
  margin: 0 0 8px;
}

.legal-block p {
  margin: 0;
  color: #5f5752;
}

.site-footer {
  padding: 12.8px;
  background: #fff;
}

.site-footer .container {
  width: 100%;
  margin-inline: 0;
}

.site-footer__inner {
  display: grid;
  gap: 24px;
  border-radius: 14px;
  border: 0;
  background: rgb(249, 246, 244);
  padding: 66px 40px 10px;
  box-shadow: none;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__nav {
  display: grid;
  gap: 6px;
  align-content: start;
}

.site-footer__nav-title {
  margin: 0 0 2px;
  color: #6d6054;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
}

.site-footer__nav a {
  color: #5a4f45;
  font-size: 0.92rem;
}

.site-footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 12px;
  border: 1px solid #cfc2b2;
  border-radius: 999px;
  background: #fff;
  color: #4f463f;
  font-size: 0.86rem;
  line-height: 1;
}

.site-footer__instagram svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.site-footer__brand {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer__bottom {
  border-top: 1px solid #d8d0c7;
  padding-top: 16px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #7a7068;
  text-align: center;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 18px rgba(38, 28, 16, 0.12);
}

.fixed-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.fixed-cta__line { background: var(--line); }
.fixed-cta__tel { background: #7d6a5a; }
.fixed-cta__access { background: #4b5e73; }

.pagination-wrap {
  margin-top: 24px;
}

.access-layout img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.access-layout iframe {
  aspect-ratio: 4 / 3;
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.section-cta .btn {
  min-width: 300px;
}

.menu-trigger {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-trigger--hero {
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 100;
  opacity: 1;
  pointer-events: auto;
}

.menu-trigger--header {
  position: relative;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.menu-trigger__bar {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(62, 51, 41, 0.92);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.menu-trigger--hero .menu-trigger__bar {
  background: rgba(255, 255, 255, 0.96);
}

.menu-trigger--header .menu-trigger__bar {
  background: rgba(62, 51, 41, 0.92);
}

.menu-trigger__bar--1 {
  transform: translateY(-5px);
}

.menu-trigger__bar--2 {
  transform: translateY(5px);
}

.menu-trigger[aria-expanded="true"] .menu-trigger__bar--1 {
  transform: rotate(45deg);
  background: rgba(62, 51, 41, 0.92);
}

.menu-trigger[aria-expanded="true"] .menu-trigger__bar--2 {
  transform: rotate(-45deg);
  background: rgba(62, 51, 41, 0.92);
}

body.home.is-scrolled .menu-trigger--hero {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

body.home.is-scrolled .menu-trigger--header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body:not(.home) .menu-trigger--header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.home.is-scrolled .menu-trigger--header[aria-expanded="false"] .menu-trigger__bar {
  background: rgba(62, 51, 41, 0.92);
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transform: translateY(-112%);
  opacity: 0;
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.95s ease;
  overflow: hidden;
}

.menu-panel.is-open {
  transform: translateY(0);
  opacity: 1;
}

.menu-panel.is-from-header {
  top: 64px;
}

.menu-panel__top {
  display: none;
}

.menu-panel.is-from-hero .menu-panel__top {
  display: flex;
}

.menu-panel__inner {
  width: min(100% - 64px, var(--max));
  margin-inline: auto;
  padding: 18px 0 20px;
  display: grid;
  gap: 12px;
}

.menu-panel__top {
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.menu-panel__logo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.menu-panel__logo img {
  max-height: 38px;
  width: auto;
}

.menu-panel__line {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.menu-panel__nav {
  display: grid;
  gap: 8px;
}

.menu-panel__nav a {
  display: block;
  font-size: 16.8px;
  padding: 8px 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #d7ccbf;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-panel__nav a:hover {
  background: #f4eee8;
  color: #3f3127;
  border-radius: 16px;
  border-bottom-color: transparent;
}

body.is-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  backdrop-filter: blur(6px);
  background: rgba(242, 236, 228, 0.22);
  pointer-events: none;
}

body.is-contact-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 29, 22, 0.42);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.contact-modal.is-open .contact-modal__backdrop {
  opacity: 1;
}

.contact-modal__dialog {
  position: relative;
  width: min(100% - 32px, 560px);
  background: #fff;
  border: 1px solid #ddd4ca;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 24px 48px rgba(29, 21, 15, 0.22);
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__dialog h2 {
  margin: 0 0 6px;
  font-size: 1.34rem;
}

.contact-modal__dialog p {
  margin: 0 0 14px;
  color: #6b625d;
}

.contact-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #4a4038;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal form {
  display: grid;
  gap: 10px;
}

.contact-modal label {
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
  color: #4e443c;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  border: 1px solid #d9d0c6;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #2f2a27;
  background: #fff;
}

.contact-modal__status {
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.contact-modal__status.is-success {
  color: #2f6e3f;
}

.contact-modal__status.is-error {
  color: #8d3d3d;
}

body.is-menu-open .site-header {
  background: #fff;
  backdrop-filter: none;
}

.write-char {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: writeChar 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fv-copy-svg .fv-glyph {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv-copy-svg .fv-glyph.is-visible {
  opacity: 1;
}

@keyframes writeChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fvRipple {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
  }
  18% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(9.2);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section {
    animation: sectionFade 0.5s ease both;
  }
}

@keyframes sectionFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-detail-card {
    grid-template-columns: minmax(170px, 220px) 1fr;
  }

  .menu-slider__track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .access-layout {
    grid-template-columns: 1fr;
  }

  .fv-layout {
    height: calc(100svh - 25.6px);
    min-height: 620px;
  }

  .site-nav {
    display: none;
  }

  body.home.is-scrolled .site-header {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
  body {
    padding-inline: 0;
  }

  .site-header .container {
    width: 100%;
    max-width: none;
    padding-inline: 32px;
  }

  body:not(.home) main {
    padding-top: 64px;
  }

  .site-header__line {
    display: inline-flex;
  }

  .section {
    padding: 64px 0;
  }

  .section--fv {
    padding: 11px;
  }

  .fv-layout {
    height: calc(100svh - 25.6px);
    min-height: 540px;
  }

  .section:not(.section--fv) .container {
    padding-inline: 2.5%;
  }

  .content-narrow {
    width: 100%;
  }

  .post-nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .post-nav div,
  .post-nav div:nth-child(2),
  .post-nav div:last-child {
    text-align: left;
  }

  .section--fv-support {
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .fv-support-copy {
    gap: 26px;
  }

  .fv-support-copy p {
    font-size: 1rem;
    line-height: 2.1;
  }

  .section-cta .btn {
    min-width: 0;
    width: 100%;
  }

  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

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

  .menu-detail-card img {
    max-width: 320px;
  }

  .process-item {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

  .process-list::before {
    left: 10px;
  }

  .process-item__marker {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    margin-left: 4px;
  }

  .process-item__body p {
    line-height: 1.95;
  }

  .menu-slider {
    padding: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .menu-slider__track {
    grid-auto-columns: 84%;
    gap: 12px;
    padding-inline: 8%;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8%;
  }

  .menu-card {
    scroll-snap-align: center;
  }

  .slider-btn--edge {
    display: none;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fixed-cta {
    display: grid;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .menu-trigger {
    top: 20px;
    right: 32px;
    width: 26px;
    height: 26px;
  }

  .menu-trigger--header {
    top: auto;
    right: auto;
  }

  .menu-panel__inner {
    width: min(100% - 32px, var(--max));
    max-width: none;
    margin-inline: auto;
    padding: 16px 0 20px;
  }

  .menu-panel__line {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .site-footer {
    padding: 11px;
  }

  .site-footer__inner {
    padding: 25px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (min-width: 901px) {
  .menu-panel__nav {
    padding: 16px 20%;
  }
}
