/* Global tokens */
:root {
  --color-bg: #fff8ee;
  --color-surface: #fffdf9;
  --color-surface-strong: #f1e6d7;
  --color-text: #3b2d26;
  --color-header-text: #492f1d;
  --color-accent: #b55d3d;
  --color-accent-strong: #e9775d;
  --color-border: #dbc9b6;
  --color-muted: #6f625b;
  --shadow-card: 0 18px 40px rgba(69, 42, 28, 0.08);
  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.04);
  --container: min(1080px, calc(100% - 32px));
  --font-main: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
  --font-form: 'Hiragino Maru Gothic Pro', 'Zen Maru Gothic', 'Yu Gothic', sans-serif;
  --tracking-heading: 0.26em;
  --tracking-body-wide: 0.2em;
  --dot-line-accent: radial-gradient(circle, #e7a876 1.6px, transparent 1.8px);
  --dot-line-dark: radial-gradient(circle, #492f1d 1.6px, transparent 1.8px);
  --text-body-relaxed-size: 16px;
  --text-body-relaxed-line-height: 1.8;
  --panel-padding-mobile-standard: 60px 20px;
  --anchor-scroll-offset: 132px;
}

/* Base elements */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-main);
  line-height: 1.7;
  overflow-x: clip;
}

a {
  color: inherit;
  transition: opacity 0.4s ease;
}

a:hover {
  opacity: 0.5;
  text-decoration: none;
}

.phone-link {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.site-header__shell {
  width: min(1360px, calc(100% - 12px));
  margin-inline: auto;
  padding: 16px 40px;
  border-radius: 100px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  pointer-events: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.site-header__brand {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-header__brand-image {
  display: block;
  width: 191px;
  height: 48px;
  object-fit: contain;
}

.site-header__desktop-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  flex: 1 1 auto;
}

.site-header__desktop-nav {
  flex: 0 1 auto;
}

.site-header__desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__desktop-menu li {
  position: relative;
}

.site-header__desktop-menu a {
  display: block;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-header-text);
}

.site-header__desktop-menu li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 18px;
  height: 18px;
  background-image: var(--site-header-mark-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateX(-50%);
}

.site-header__desktop-menu .is-current::after {
  opacity: 1;
}

.site-header__cta,
.site-header__toggle,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 20px 32px;
  border: 0;
  border-radius: 50px;
  background: var(--color-accent-strong);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-header__toggle {
  display: none;
}

.site-header__toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-header__toggle-icon::before,
.site-header__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
}

.site-header__toggle-icon::before {
  top: -5px;
}

.site-header__toggle-icon::after {
  top: 5px;
}

.site-navigation {
  display: none;
  padding-top: 20px;
}

.site-navigation__panel {
  display: grid;
}

.site-navigation__menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation__menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 253, 249, 0.82);
}

.site-navigation__cta {
  display: none;
}

.site-main {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared content blocks */
.page-intro {
  padding: 72px 0 32px;
}

.page-intro__inner {
  display: grid;
  gap: 12px;
}

.page-intro__eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-intro__title,
.content-card__title {
  margin: 0;
  line-height: 1.2;
}

.page-intro__title {
  font-size: clamp(36px, 6vw, 64px);
}

.page-intro__lead,
.content-card__text {
  margin: 0;
  color: var(--color-muted);
}

.content-section {
  padding: 0 0 32px;
}

.content-grid {
  display: grid;
  gap: 20px;
}

.content-card {
  padding: 28px;
  border: 1px solid rgba(115, 88, 67, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-card);
}

.content-card--aside {
  align-self: start;
}

/* Lower pages: shared layout */
.lower-page {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--color-bg);
  overflow: hidden;
}

.lower-page-hero {
  position: relative;
  padding: 168px 0 0;
}

.lower-page-hero__inner {
  position: relative;
  min-height: 604px;
}

.lower-page-hero__copy {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 240px));
  margin: 0 auto;
  padding-top: 240px;
}

.lower-page-hero__eyebrow {
  margin: 0;
  font-size: clamp(52px, 5.56vw, 80px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-strong);
}

.lower-page-hero__title {
  margin: 40px 0 0;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.3;
  letter-spacing: 0.26em;
  color: var(--color-header-text);
}

.lower-page-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: min(954px, 66.25vw);
  height: 620px;
  overflow: hidden;
  -webkit-mask-image: var(--lower-page-hero-mask);
  mask-image: var(--lower-page-hero-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@media (min-width: 1440px) {
  .lower-page-hero__media {
    right: min(0px, calc(720px - 50vw));
    width: min(1120px, calc(50vw + 234px));
  }
}

.lower-page-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lower-page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lower-page-hero__accent {
  position: absolute;
  left: 91px;
  bottom: -100px;
  width: 148px;
  height: 170px;
  z-index: 10;
}

.lower-page-hero__accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-page .lower-page-hero__accent img {
  transform: scaleX(-1);
}

.school-page .lower-page-hero,
.about-page .lower-page-hero,
.stores-page .lower-page-hero {
  padding: 0 0 100px;
}

.school-page {
  overflow: visible;
}

.about-page {
  overflow: visible;
}

.stores-page {
  overflow: visible;
}

.lower-page-panel {
  position: relative;
  width: min(1200px, calc(100% - 240px));
  margin-inline: auto;
  padding: 100px 110px;
  border-radius: 100px;
  background: #fff;
}

.lower-page-panel--wide {
  width: min(1200px, calc(100% - 120px));
}

.lower-page-section-heading {
  display: inline-grid;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.lower-page-section-heading--centered {
  justify-items: center;
  margin-inline: auto;
}

.lower-page-section-heading__title {
  margin: 0;
  max-width: 100%;
  font-size: 40px;
  line-height: 1;
  letter-spacing: var(--tracking-heading);
  color: var(--color-accent-strong);
  overflow-wrap: anywhere;
}

.lower-page-section-heading__line {
  display: block;
  width: 100%;
  height: 6px;
  background-image: var(--dot-line-accent);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 12px 6px;
}

.school-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 19px 24px 19px 60px;
  border: 1.5px solid var(--color-accent-strong);
  border-radius: 50px;
  background: #fff;
  color: var(--color-accent-strong);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.school-outline-button__arrow,
.school-contact__cta-arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.school-outline-button__arrow::before,
.school-contact__cta-arrow::before {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: var(--color-accent-strong);
  -webkit-mask-image: url('../images/icon-arrow.svg');
  mask-image: url('../images/icon-arrow.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(90deg);
}

/* School page */
.school-page__courses-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: 0;
  padding: 100px 0 120px;
  background: #ffd0af;
}

.school-page__courses-panel {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.school-page__courses-heading,
.school-contact__heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.school-course-list {
  position: relative;
  display: grid;
  gap: 60px;
  min-width: 0;
}

.school-course {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 28vw, 320px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  min-width: 0;
}

.school-course + .school-course {
  padding-top: 60px;
  border-top: 1px solid rgba(73, 47, 29, 0.14);
}

.school-page__courses-accent {
  position: absolute;
  width: 82px;
  height: 98px;
  z-index: 10;
}

.school-page__courses-accent--desktop {
  top: -32px;
  right: -100px;
}

.school-page__courses-accent--mobile {
  display: none;
}

.school-page__courses-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.school-course__content {
  display: grid;
  gap: 40px;
  min-width: 0;
}

.school-course__heading {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.school-course__mark {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-image: url('../images/brand-mark-2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.school-course__title {
  margin: 0;
  font-size: 32px;
  max-width: 100%;
  line-height: 1.3;
  letter-spacing: var(--tracking-heading);
  color: var(--color-header-text);
  overflow-wrap: anywhere;
}

.school-course__description,
.school-contact__lead,
.school-contact-card__text,
.school-contact__venue-text {
  display: grid;
  gap: 0;
  color: var(--color-header-text);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.school-course__description {
  width: 100%;
  min-width: 0;
}

.school-course__description p,
.school-contact__lead p,
.school-contact-card__text,
.school-contact__venue-text p,
.school-course__note {
  margin: 0;
  line-height: 1.7;
}

.school-course__description p + p {
  margin-top: 2px;
}

.school-course__facts {
  display: grid;
  gap: 24px;
  margin: 0;
  min-width: 0;
}

.school-course__fact-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  width: 100%;
  max-width: 525px;
  min-width: 0;
}

.school-course__fact-label,
.school-contact__venue-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-height: 27px;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--color-accent-strong);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.school-contact__venue-label {
  width: max-content;
  min-height: 33px;
  padding: 10px 14px;
  font-size: 18px;
}

.school-course__fact-value {
  display: grid;
  gap: 0;
  margin: 0;
  min-width: 0;
  color: var(--color-header-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.school-course__fact-value small {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.school-course__note {
  color: var(--color-header-text);
}

.school-course__media {
  width: 320px;
  height: 240px;
  justify-self: end;
  overflow: hidden;
  -webkit-mask-image: var(--school-course-mask);
  mask-image: var(--school-course-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.school-course__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school-course__media--contain {
  display: grid;
  place-items: center;
  background: #fff6ef;
}

.school-course__media--contain img {
  width: 146px;
  height: 206px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .school-course {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .school-course__media {
    width: min(100%, 640px);
    max-width: 640px;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    justify-self: center;
  }
}

.school-contact {
  padding: 120px 0 140px;
  overflow-x: clip;
}

.school-contact__panel {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.school-contact__accent {
  position: absolute;
  width: 85px;
  height: 83px;
  z-index: 10;
}

.school-contact__accent--desktop {
  top: -12px;
  left: -100px;
}

.school-contact__accent--mobile {
  display: none;
}

.school-contact__accent img,
.school-contact__cta-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.school-contact__body {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.school-contact__intro {
  display: grid;
  gap: 40px;
  min-width: 0;
}

.school-contact__lead .editor-note {
  margin-top: 16px;
}

.school-contact__venue {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.school-contact__entries {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.school-contact__entry {
  display: grid;
  gap: 40px;
  min-width: 0;
}

.school-contact__venues {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.school-contact__venue-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-header-text);
}

.school-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  min-width: 0;
}

.school-contact__cards {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.school-contact-card__image {
  width: 300px;
  min-height: 289px;
  border-radius: 56px;
  background: #d9d9d9;
  overflow: hidden;
}

.school-contact-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 289px;
  object-fit: cover;
}

.school-contact-card__body {
  display: grid;
  justify-items: end;
  gap: 32px;
  min-width: 0;
}

.school-contact-card__summary {
  display: grid;
  gap: 24px;
  width: 100%;
  justify-items: end;
  min-width: 0;
}

.school-contact-card__socials {
  display: flex;
  gap: 12px;
}

.school-contact-card__summary > * {
  min-width: 0;
  max-width: 100%;
}

.school-contact-card__copy {
  display: grid;
  gap: 32px;
  width: 100%;
  min-width: 0;
}

.school-contact-card__heading {
  width: fit-content;
  max-width: 100%;
}

.school-contact-card__title {
  max-width: 100%;
  letter-spacing: 0.16em;
  overflow-wrap: anywhere;
}

.school-contact-card__social {
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.school-contact-card__social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: center / contain no-repeat var(--school-social-image);
}

.school-contact-card__social--instagram {
  background: transparent;
}

.school-contact-card__social--line {
  background: transparent;
}

.school-contact-card__social--line::before {
  inset: 0;
  background: center / contain no-repeat var(--school-social-image);
}

.school-contact__cta-wrap {
  position: relative;
  width: min(980px, calc(100% - 120px));
  margin: 80px auto 0;
  min-width: 0;
}

.school-contact__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  min-height: 160px;
  padding: 24px 112px;
  border-radius: 32px;
  background: var(--color-accent-strong);
  box-shadow: 0 2px 8px rgba(73, 47, 29, 0.25);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-decoration: none;
  min-width: 0;
}

.school-contact__cta-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
}

.school-contact__cta-arrow::before {
  inset: 12px;
}

.school-contact__cta-accent {
  position: absolute;
  top: 0;
  left: -194px;
  width: 221px;
  height: 185px;
  transform: rotate(-10.39deg);
  z-index: 10;
}

.about-page__intro {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 100px;
  padding: 100px 0;
  background: #fff;
  overflow-x: clip;
}

.about-page__intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 51px;
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
}

.about-page__intro-content,
.about-page__intro-list,
.about-voice__lead {
  margin: 0;
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.2em;
}

.about-page__intro-content p,
.about-voice__lead p {
  margin: 0;
}

.about-page__intro-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.about-page__intro-list li,
.about-voice-group__heading {
  position: relative;
  padding-left: 27px;
}

.about-page__intro-list li {
  line-height: 2.2;
}

.about-page__intro-list li::before,
.about-voice-group__mark {
  content: '';
  position: absolute;
  top: 0.24em;
  left: 0;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url('../images/brand-mark-2.svg');
}

.about-page__intro-accent {
  position: absolute;
  z-index: 10;
}

.about-page__intro-accent--desktop {
  top: -48px;
  right: -200px;
  width: 197px;
  height: 152px;
  transform: rotate(6.63deg);
}

.about-page__intro-accent--mobile {
  display: none;
}

.about-page__intro-accent img,
.about-voice__accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-flow {
  padding: 100px 0;
  border-radius: 120px;
  background: #ffd0af;
}

.about-flow__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 66px;
}

.about-flow__heading .lower-page-section-heading__title {
  color: var(--color-header-text);
}

.about-flow__heading .lower-page-section-heading__line {
  background-image: var(--dot-line-dark);
}

.about-flow__list {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.about-flow-card {
  display: grid;
  grid-template-columns: 369px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 0 40px 0 0;
  border-radius: 58px;
  background: #fff;
}

.about-flow-card__media {
  width: 369px;
  height: 403px;
  overflow: hidden;
  transform: scaleX(-1);
  -webkit-mask-image: var(--about-flow-mask);
  mask-image: var(--about-flow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.about-flow-card__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-flow-card__media img,
.about-flow-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.about-flow-card__content {
  display: grid;
  gap: 40px;
}

.about-flow-card__number {
  margin: 0;
  font-family: 'Rounded Mplus 1c', var(--font-main);
  font-size: 54px;
  line-height: 0.7;
  color: var(--color-header-text);
}

.about-flow-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: var(--tracking-heading);
  color: var(--color-accent-strong);
}

.about-flow-card__description {
  display: grid;
  gap: 0;
  color: var(--color-header-text);
  font-size: var(--text-body-relaxed-size);
  line-height: var(--text-body-relaxed-line-height);
  letter-spacing: var(--tracking-body-wide);
}

.about-flow-card__description p {
  margin: 0;
  padding: 0;
}

.about-flow__connector {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

.about-flow__connector::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-header-text);
  box-shadow:
    0 11px 0 var(--color-header-text),
    0 22px 0 var(--color-header-text);
}

.about-voice {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 147px auto 0;
  padding-bottom: 170px;
  scroll-margin-top: var(--anchor-scroll-offset);
}

.about-voice__header {
  display: grid;
  gap: 40px;
  justify-items: center;
}

.about-voice__heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.about-voice__header .lower-page-section-heading__title {
  color: var(--color-accent-strong);
}

.about-voice__lead {
  width: min(869px, 100%);
  text-align: center;
}

.about-voice__content {
  display: grid;
  gap: 80px;
  margin-top: 64px;
}

.about-voice-panel {
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.about-voice-panel__trigger {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 15px 20px 15px 80px;
  border: 0;
  background: var(--color-accent-strong);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.about-voice-panel__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: var(--tracking-heading);
  color: #fff;
  text-align: center;
}

.about-voice-panel__icon,
.about-voice-panel__toggle,
.about-voice__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
}

.about-voice-panel__icon::before,
.about-voice-panel__toggle::before,
.about-voice__button-arrow::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: center / contain no-repeat var(--about-voice-icon-closed);
}

.about-voice-panel.is-open .about-voice-panel__icon::before,
.about-voice-panel.is-open .about-voice-panel__toggle::before,
.about-voice-panel.is-open .about-voice__button-arrow::before {
  background-image: var(--about-voice-icon-open);
}

.about-voice-panel__body {
  display: grid;
  gap: 40px;
  padding: 60px 80px;
}

.about-voice-panel__body[hidden] {
  display: none;
}

.about-voice-group {
  display: grid;
  gap: 24px;
}

.about-voice-group--nested {
  gap: 12px;
}

.about-voice-group__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: var(--tracking-heading);
  color: var(--color-header-text);
}

.about-voice-group__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: var(--color-header-text);
}

.about-voice-group__list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-header-text);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.about-voice-group__list li::before {
  content: '・';
}

.about-voice__button {
  border-radius: 0;
  text-decoration: none;
}

.about-voice__accent {
  position: absolute;
  z-index: 10;
}

.about-voice__accent--desktop {
  top: -16px;
  left: -112px;
  width: 85px;
  height: 83px;
}

.about-voice__accent--mobile {
  display: none;
}

/* News page */
.news-page {
  min-height: 100vh;
}

.news-page__hero {
  padding: clamp(121px, 13.75vw, 165px) 0 0;
}

.news-page__hero-inner {
  width: min(960px, calc(100% - clamp(40px, 13.333vw, 160px)));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.news-page__eyebrow {
  margin: 0;
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-strong);
}

.news-page__title {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.26em;
  color: var(--color-header-text);
}

.news-page__content {
  padding: clamp(35px, 4.333vw, 52px) 0 clamp(130px, 16.333vw, 196px);
}

.news-page__panel {
  width: min(1040px, calc(100% - clamp(40px, 16.167vw, 194px)));
  margin: 0 auto;
  padding: 80px 120px;
  box-sizing: border-box;
  min-width: 0;
  border-radius: clamp(20px, 5.333vw, 64px);
  background: #fff;
  display: grid;
  gap: clamp(56px, 6.667vw, 80px);
}

.news-page__list {
  display: grid;
  width: min(100%, 800px);
  margin: 0 auto;
}

.news-page__item {
  display: grid;
  grid-template-columns: minmax(110px, 118px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #efeceb;
}

.news-page__date {
  color: var(--color-accent-strong);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.news-page__link {
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.news-page__link:hover {
  text-decoration: none;
}

.news-page__link--static:hover {
  text-decoration: none;
}

.news-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.news-page__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #efeceb;
  border-radius: 999px;
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.news-page__pagination-link--current {
  border-color: var(--color-accent-strong);
  background: var(--color-accent-strong);
  color: #fff;
}

.news-page__pagination-ellipsis,
.news-page__pagination-next {
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.news-page .editor-note {
  margin: 20px 0 0;
}

/* Stores page */
.stores-page__hero {
  padding-top: 168px;
}

.stores-page__content {
  padding: 3px 0 160px;
}

.stores-page__panel {
  display: grid;
  gap: 60px;
  padding: 100px 80px;
  border-radius: 64px;
  min-width: 0;
}

.stores-page__intro {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.stores-page__intro-copy {
  display: grid;
  gap: 4px;
  text-align: center;
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.stores-page__intro-copy p {
  margin: 0;
}

.stores-page__section-heading .lower-page-section-heading__title {
  font-size: 32px;
  color: var(--color-header-text);
}

.stores-page__section-heading .lower-page-section-heading__line {
  background-image: var(--dot-line-dark);
}

.stores-list {
  display: grid;
  gap: 80px;
  min-width: 0;
}

.store-card {
  display: grid;
  gap: 60px;
  min-width: 0;
}

.store-card + .store-card {
  padding-top: 80px;
  border-top: 1px solid #efeceb;
}

.store-card__main {
  display: grid;
  grid-template-columns: minmax(320px, 479px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  min-width: 0;
}

.store-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: #d9d9d9;
  overflow: hidden;
}

.store-card__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card__body {
  display: grid;
  gap: 20px;
  align-content: start;
  min-width: 0;
}

.store-card__title {
  margin: 0;
  color: var(--color-header-text);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  overflow-wrap: anywhere;
}

.store-card__facts {
  display: grid;
  gap: 0;
  margin: 0;
  min-width: 0;
}

.store-card__fact-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  min-width: 0;
}

.store-card__fact-label,
.store-card__fact-value {
  margin: 0;
  color: var(--color-header-text);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.2em;
}

.store-card__fact-label {
  font-weight: 700;
}

.store-card__fact-value {
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
}

.store-card__fact-value p {
  margin: 0;
  overflow-wrap: anywhere;
}

.store-card__socials {
  display: flex;
  gap: 12px;
}

.store-card__social {
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.store-card__social::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-header-text);
  -webkit-mask-image: var(--store-social-icon);
  mask-image: var(--store-social-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.store-card__social--instagram::before {
  background: center / contain no-repeat var(--store-social-image);
  background-color: transparent;
  -webkit-mask-image: none;
  mask-image: none;
}

.store-card__social--line::before {
  background: center / contain no-repeat var(--store-social-image);
  background-color: transparent;
  -webkit-mask-image: none;
  mask-image: none;
}

.store-card__button {
  gap: 20px;
  width: max-content;
  padding: 8px 20px 8px 32px;
  border-width: 2px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.store-card__map {
  width: 100%;
  max-width: 980px;
  height: 303px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: var(--store-map-mask);
  mask-image: var(--store-map-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.store-card__map img,
.store-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.store-detail-page__panel {
  margin-top: clamp(88px, 8vw, 112px);
  gap: clamp(48px, 6vw, 72px);
}

.store-detail-page__article {
  gap: clamp(32px, 4vw, 48px);
}

.store-detail-page__header {
  gap: 0;
}

.store-detail-page__body {
  display: grid;
  gap: 32px;
}

.store-detail-page__section {
  display: grid;
  gap: 24px;
}

.store-detail-page__section-title {
  margin: 0;
  color: var(--color-header-text);
  font-size: clamp(24px, 2.25vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.store-detail-page__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.store-detail-page__detail-row {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 24px 28px;
  border: 1px solid #efeceb;
  border-radius: 24px;
  background: #fffaf6;
}

.store-detail-page__detail-label,
.store-detail-page__detail-value {
  margin: 0;
  color: var(--color-header-text);
  min-width: 0;
}

.store-detail-page__detail-label {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.store-detail-page__detail-value {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.store-detail-page__detail-value p {
  margin: 0;
}

.store-detail-page__socials {
  justify-content: flex-start;
}

.store-card__social:focus-visible {
  outline: 2px solid rgba(233, 119, 93, 0.65);
  outline-offset: 4px;
}

.store-detail-page__map {
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  overflow: hidden;
  border-radius: 24px;
  background: #d9d9d9;
}

.store-detail-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-detail-page__actions {
  justify-content: center;
}

.store-detail-page__actions .news-page__action--list {
  flex: 0 1 320px;
}

.store-entry__section {
  display: grid;
  gap: 20px;
}

.store-entry__section h2,
.store-entry__section h3 {
  margin: 0;
  color: var(--color-header-text);
}

.store-entry__section h2 {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.store-entry__section h3 {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.store-entry__section p {
  margin: 0;
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.store-entry__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.store-entry__figure,
.store-entry__menu-image {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
}

.store-entry__figure img,
.store-entry__menu-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-entry__menu-block {
  display: grid;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid #efeceb;
  border-radius: 24px;
  background: #fffaf6;
}

.store-entry__menu-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-entry__menu-list li {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.store-entry__menu-list strong {
  flex: none;
  white-space: nowrap;
}

.store-entry__menu-note {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .store-card__main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-detail-page__detail-grid {
    grid-template-columns: 1fr;
  }

  .store-detail-page__panel {
    margin-top: 88px;
  }

  .store-entry__gallery {
    grid-template-columns: 1fr;
  }
}

/* Home: shared layout */
.home-page {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--color-bg);
  overflow-x: visible;
  --home-shell-max-news: 1040px;
  --home-shell-max-feature: 1231px;
  --home-shell-max-stores: 1361px;
  --home-shell-max-contact: 1080px;
}

.home-section-shell {
  width: min(var(--home-shell-max, 1280px), 100%);
  margin-inline: auto;
}

.home-section-shell--news {
  --home-shell-max: var(--home-shell-max-news);
}

.home-section-shell--feature {
  --home-shell-max: var(--home-shell-max-feature);
}

.home-section-shell--stores {
  --home-shell-max: var(--home-shell-max-stores);
}

.home-section-shell--contact {
  --home-shell-max: var(--home-shell-max-contact);
}

/* Home: hero */
.home-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: 800px;
  overflow: hidden;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  -webkit-mask-image: var(--home-hero-mask);
  mask-image: var(--home-hero-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.home-hero__media {
  overflow: hidden;
}

.home-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
  min-height: 800px;
  padding: 104px 0 88px;
}

.home-hero__detail {
  display: grid;
  gap: 32px;
  width: min(560px, 100%);
  max-width: 100%;
  padding: 40px 36px 34px;
}

.home-hero__copy,
.home-hero__closing {
  display: grid;
  gap: 16px;
}

.home-hero__title {
  margin: 0;
  width: 100%;
  font-size: 42px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  color: var(--color-header-text);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 1),
    0 0 34px rgba(255, 255, 255, 0.94),
    0 0 56px rgba(255, 255, 255, 0.72);
}

.home-hero__title-accent {
  color: var(--color-accent-strong);
}

.home-hero__title-emphasis {
  text-decoration-line: underline;
  text-decoration-color: #ff9900;
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.14em;
  text-decoration-skip-ink: none;
}

.home-hero__title-break-sp {
  display: none;
}

.home-hero__description,
.home-hero__closing-text {
  margin: 0;
  color: var(--color-header-text);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 1),
    0 0 28px rgba(255, 255, 255, 0.92),
    0 0 42px rgba(255, 255, 255, 0.66);
}

.home-hero__description {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.home-hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, 116px);
  gap: 14px;
  justify-content: start;
}

.home-hero__benefit,
.home-contact__required,
.home-hero__closing-note {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__benefit {
  display: grid;
  grid-template-rows: 24px 1fr;
  justify-items: center;
  align-items: start;
  aspect-ratio: 1 / 1;
  max-height: 116px;
  padding: 14px 10px 12px;
  border: 2px solid var(--color-accent-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--color-accent-strong);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.02em;
  white-space: nowrap;
  word-break: keep-all;
  box-shadow: 0 10px 24px rgba(69, 42, 28, 0.1);
}

.home-hero__benefit-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-hero__benefit-label {
  display: block;
  align-self: end;
  width: 100%;
  text-align: center;
}

.home-hero__benefit--balance .home-hero__benefit-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9775d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E");
}

.home-hero__benefit--massage .home-hero__benefit-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9775d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12V8a1 1 0 0 1 2 0v3'/%3E%3Cpath d='M10 11V6.5a1 1 0 0 1 2 0V11'/%3E%3Cpath d='M13 11V8a1 1 0 0 1 2 0v3'/%3E%3Cpath d='M16 11V9.5a1 1 0 0 1 2 0v4c0 3-2 5.5-5 5.5h-1c-3.3 0-6-2.7-6-6v-1a1 1 0 0 1 1-1h0a1 1 0 0 1 1 1'/%3E%3C/svg%3E");
}

.home-hero__benefit--oil .home-hero__benefit-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9775d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4C9.3 7.2 7 9.7 7 13a5 5 0 0 0 10 0c0-3.3-2.3-5.8-5-9Z'/%3E%3Cpath d='M10.3 14.2c.3 1 1 1.8 1.9 2.2'/%3E%3C/svg%3E");
}

.home-hero__benefit--eye .home-hero__benefit-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9775d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-5 10-5 10 5 10 5-3.5 5-10 5-10-5-10-5Z'/%3E%3Ccircle cx='12' cy='12' r='2.2'/%3E%3C/svg%3E");
}

.home-news__text-link {
  text-decoration: none;
}

.home-news__text-link:hover {
  text-decoration: none;
}

.news-page__panel--single {
  width: min(980px, calc(100% - clamp(40px, 16.167vw, 194px)));
}

.news-article {
  display: grid;
  gap: 48px;
  min-width: 0;
}

.news-article__header {
  display: grid;
  gap: 20px;
}

.news-article__title {
  margin: 0;
  color: var(--color-header-text);
  font-size: clamp(24px, 2.25vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.12em;
  overflow-wrap: anywhere;
}

.news-article__body {
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-article__body > *:first-child {
  margin-top: 0;
}

.news-article__body > *:last-child {
  margin-bottom: 0;
}

.news-article__body > * {
  max-width: 100%;
}

.news-article__body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.news-article__body .photoarea,
.news-article__body a,
.news-article__body div,
.news-article__body p {
  max-width: 100%;
}

.news-page__actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.news-page__action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 0;
  max-width: 100%;
  text-align: center;
}

.news-page__action--prev,
.news-page__action--next {
  flex: 1 1 216px;
  padding: 19px 56px;
  gap: 0;
}

.news-page__action--list {
  flex: 1 1 216px;
  gap: 0;
  padding: 19px 40px;
}

.news-page__action-label {
  display: block;
  width: 100%;
  text-align: center;
}

.news-page__action--prev .news-page__action-arrow,
.news-page__action--next .news-page__action-arrow {
  position: absolute;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}

.news-page__action--prev .news-page__action-arrow {
  left: 24px;
}

.news-page__action--next .news-page__action-arrow {
  right: 24px;
}

.news-page__action--prev .news-page__action-arrow--left::before {
  transform: rotate(-90deg);
}

.home-hero__closing-text {
  font-size: 28px;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.home-hero__closing-note {
  width: fit-content;
  margin: 0;
  padding: 11px 18px;
  border: 2px solid var(--color-accent-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-header-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.92),
    0 0 20px rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(69, 42, 28, 0.08);
}

/* Home: shared headings */
.home-section-heading {
  display: grid;
  gap: 16px;
  width: max-content;
  max-width: 100%;
}

.home-section-heading--centered {
  justify-items: center;
}

.home-section-heading__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}

.home-section-heading__title-row--centered {
  justify-content: center;
}

.home-section-heading__title {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: var(--tracking-heading);
  color: var(--color-header-text);
}

.home-section-heading__line,
.home-news__title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 6px;
  background-image: var(--dot-line-dark);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 12px 6px;
}

.home-section-heading__mark,
.home-contact__mark {
  display: block;
}

.home-section-heading__mark {
  width: 24px;
  height: 24px;
}

.home-section-heading__mark--about {
  width: 67px;
  height: 88px;
  background: center / contain no-repeat url('../images/home-about-mark.png');
}

.home-section-heading__mark--school {
  width: 71px;
  height: 69px;
}

/* Home: shared buttons */
.home-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-height: 61px;
  padding: 20px 24px 20px 60px;
  border-radius: 50px;
  background: var(--color-accent-strong);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 0;
  white-space: nowrap;
}

.home-pill-button--small {
  min-height: 49px;
  gap: 20px;
  padding: 12px 16px 12px 40px;
  font-weight: 500;
}

.home-pill-button--stores {
  display: flex;
  width: max-content;
  margin: 64px auto 0;
}

.home-pill-button--submit {
  align-self: center;
  gap: 86px;
  padding-left: 110px;
  font-size: 18px;
  justify-self: center;
}

.home-pill-button__arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.home-pill-button__arrow::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: center / 14px 16px no-repeat url('../images/icon-arrow.svg');
  transform: rotate(90deg);
}

/* Home: news */
.home-news {
  position: relative;
  margin-top: 90px;
  padding-inline: 20px;
  overflow-x: clip;
}

.home-section-shell--news {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-areas:
    'intro list'
    'button list';
  align-items: flex-start;
  justify-content: space-between;
  column-gap: clamp(48px, 6vw, 102px);
  row-gap: 36px;
  padding: 64px 80px;
  border-radius: 48px;
  background: #fff;
}

.home-news__heading {
  position: relative;
  display: grid;
  gap: 12px;
  width: 111px;
  justify-items: center;
}

.home-news__title {
  width: 111px;
  font-size: 24px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.home-news__button {
  grid-area: button;
  justify-self: center;
}

.home-news__marker,
.home-news__accent {
  position: absolute;
}

.home-news__marker {
  left: -64px;
  top: -23px;
  width: 55px;
  height: 49px;
  z-index: 1;
}

.home-news__marker img,
.home-news__accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-news__accent {
  right: -40px;
  bottom: -80px;
  width: 126px;
  height: 145px;
}

.home-news__intro {
  display: grid;
  gap: 12px;
  grid-area: intro;
  justify-items: center;
  padding-top: 6px;
}

.home-news__list {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  grid-area: list;
}

.home-news__item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.home-news__date {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--color-accent-strong);
}

.home-news__text,
.home-feature__text,
.home-stores__lead,
.home-store-card__text,
.home-contact__lead p,
.home-contact__label {
  margin: 0;
  font-size: var(--text-body-relaxed-size);
  line-height: var(--text-body-relaxed-line-height);
  color: var(--color-header-text);
}

.home-contact__input,
.home-contact__textarea {
  font-family: var(--font-form);
  color: var(--color-header-text);
  font-size: 16px;
  line-height: 1.8;
}

.home-contact__label {
  font-family: var(--font-form);
}

.home-news__text,
.home-store-card__text {
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

/* Home: volca */
.home-volca {
  margin-top: 120px;
  padding-inline: 20px;
}

.home-section-shell--volca {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 0;
}

.home-volca__visual {
  width: min(840px, 100%);
  justify-self: center;
}

.home-volca__picture {
  display: block;
  width: 100%;
}

.home-volca__image {
  display: block;
  width: 100%;
  height: auto;
}

.home-volca__button {
  display: block;
  justify-self: center;
  width: min(433px, 100%);
}

.home-volca__button-picture {
  display: block;
  width: 100%;
}

.home-volca__button-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Home: feature */
.home-feature {
  margin-top: 180px;
  padding-inline: 20px;
  overflow-x: hidden;
  --home-feature-inner-max: 1260px;
  --home-feature-inner-min-height: 560px;
  --home-feature-inner-padding-start: 0;
  --home-feature-inner-padding-end: 0;
  --home-feature-content-max: 540px;
  --home-feature-block-self: start;
  --home-feature-button-self: start;
  --home-feature-visual-width: min(940px, 76vw);
  --home-feature-visual-height: clamp(520px, 44vw, 560px);
  --home-feature-visual-start: auto;
  --home-feature-visual-end: auto;
  --home-feature-visual-mask-position: center;
  --home-feature-visual-mask-size: 100% 100%;
}

.home-feature__visual {
  display: none;
}

.home-feature__inner {
  position: relative;
  display: grid;
  align-content: center;
  align-items: center;
  gap: 48px;
  max-width: var(--home-feature-inner-max);
  min-height: var(--home-feature-inner-min-height);
  padding-inline-start: var(--home-feature-inner-padding-start);
  padding-inline-end: var(--home-feature-inner-padding-end);
  justify-items: var(--home-feature-block-self);
  isolation: isolate;
}

.home-feature__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  width: 100%;
  max-width: var(--home-feature-content-max);
  justify-self: var(--home-feature-block-self);
}

.home-feature__button {
  position: relative;
  z-index: 1;
  justify-self: var(--home-feature-button-self);
}

.home-feature--about,
.home-feature--school {
  overflow: hidden;
}

.home-feature--about {
  --home-feature-inner-padding-end: clamp(360px, 48vw, 780px);
  --home-feature-visual-start: auto;
  --home-feature-visual-end: clamp(-260px, -16vw, -120px);
  --home-feature-visual-mask-position: 34px 0;
  --home-feature-visual-mask-size: calc(100% + 140px) calc(100% - 66px);
}

.home-feature--school {
  margin-top: 120px;
  --home-feature-inner-padding-start: clamp(360px, 48vw, 780px);
  --home-feature-visual-start: clamp(-260px, -17vw, -120px);
  --home-feature-visual-end: auto;
  --home-feature-visual-mask-position: -266px 0;
  --home-feature-visual-mask-size: calc(100% + 168px) 100%;
}

.home-feature--about .home-feature__inner,
.home-feature--school .home-feature__inner {
  justify-items: var(--home-feature-block-self);
}

.home-feature--about .home-feature__visual,
.home-feature--school .home-feature__visual {
  position: absolute;
  top: 50%;
  inset-inline-start: var(--home-feature-visual-start, auto);
  inset-inline-end: var(--home-feature-visual-end, auto);
  display: block;
  width: var(--home-feature-visual-width);
  height: var(--home-feature-visual-height);
  transform: translateY(-50%);
  overflow: hidden;
  -webkit-mask-image: var(--home-feature-visual-mask);
  mask-image: var(--home-feature-visual-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: var(--home-feature-visual-mask-position);
  mask-position: var(--home-feature-visual-mask-position);
  -webkit-mask-size: var(--home-feature-visual-mask-size);
  mask-size: var(--home-feature-visual-mask-size);
  z-index: 0;
}

.home-feature__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature--about .home-section-heading__title-row,
.home-feature--school .home-section-heading__title-row {
  gap: 0;
  justify-content: flex-start;
}

.home-feature--about .home-section-heading__title,
.home-feature--school .home-section-heading__title {
  position: relative;
}

.home-feature--about .home-section-heading__mark,
.home-feature--school .home-section-heading__mark {
  position: absolute;
  top: -20px;
  right: -72px;
}

.home-feature__text {
  letter-spacing: 0.2em;
}

@media (min-width: 1440px) {
  .home-feature,
  .home-feature--about,
  .home-feature--school {
    overflow: visible;
  }

  .home-feature--about {
    --home-feature-visual-width: min(1200px, calc(50vw + 220px));
    --home-feature-visual-end: min(-230px, calc(490px - 50vw));
  }

  .home-feature--school {
    --home-feature-visual-width: min(1200px, calc(50vw + 220px));
    --home-feature-visual-start: min(-245px, calc(475px - 50vw));
  }
}

/* Home: stores */
.home-stores {
  margin-top: 120px;
  padding: 120px 0;
  padding-inline: 20px;
  overflow-x: clip;
}

.home-stores__header {
  display: grid;
  gap: 60px;
  justify-items: center;
  width: min(440px, calc(100% - 40px));
  margin: 0 auto;
}

.home-stores__header .home-section-heading__title {
  position: relative;
}

.home-section-heading__mark--stores {
  position: absolute;
  left: -88px;
  top: 24px;
  width: 71px;
  height: 69px;
  transform: translateY(-50%);
}

.home-stores__lead {
  width: 100%;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
}

.home-stores__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 27px;
  width: calc(100% + 40px);
  margin: 64px -20px 0;
  padding-inline: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 20px;
  scrollbar-width: none;
}

.home-stores__grid::-webkit-scrollbar {
  display: none;
}

.home-store-card {
  display: grid;
  flex: 0 0 320px;
  gap: 19px;
  width: 320px;
  max-width: none;
  padding: 30px;
  border-radius: 44px;
  background: #fff;
  min-height: 335px;
  scroll-snap-align: start;
}

.home-store-card--link {
  color: inherit;
  text-decoration: none;
}

.home-store-card__image {
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  background: #d9d9d9;
  overflow: hidden;
}

.home-store-card__image-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-store-card__body {
  display: grid;
  gap: 24px;
}

.home-store-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2em;
  color: var(--color-header-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-store-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

/* Home: contact */
.home-contact {
  margin-top: 61px;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 120px 0 170px;
  padding-inline: 20px;
  background: #ffd0af;
  --home-contact-label-width: 215px;
}

.home-contact__panel {
  display: grid;
  gap: 64px;
  width: 100%;
  margin: 0 auto;
  padding: 80px clamp(32px, 8vw, 120px);
  border-radius: 100px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-contact__intro {
  display: grid;
  gap: 24px;
  justify-items: center;
  margin: 0 auto;
}

.home-contact__mark {
  width: 26px;
  height: 26px;
  margin: 0 auto;
  background-image: url('../images/brand-mark-2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-contact__lead {
  display: grid;
  gap: 0;
  width: 100%;
  text-align: center;
}

.home-contact__lead p {
  font-size: 18px;
  letter-spacing: 0.2em;
}

.home-contact__form {
  display: grid;
  gap: 36px;
  width: 100%;
  justify-items: stretch;
}

.home-contact .wpcf7,
.home-contact .wpcf7-form,
.home-contact .wpcf7 form {
  width: 100%;
}

.home-contact .wpcf7 form,
.home-contact .wpcf7-form {
  display: grid;
  gap: 36px;
  width: 100%;
  justify-items: stretch;
}

.home-contact .wpcf7-response-output {
  margin: 0;
}

.home-contact__form > p {
  margin: 0;
}

.home-contact__field-row > p {
  display: grid;
  grid-template-columns: var(--home-contact-label-width) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: 100%;
  margin: 0;
}

.home-contact__field--stacked .home-contact__field-row > p {
  align-items: flex-start;
}

.home-contact__field-row > p > .home-contact__label-group {
  width: var(--home-contact-label-width);
}

.home-contact__field-row > p > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.home-contact__field-row br,
.home-contact__form > p br,
.home-contact__label-group br,
.home-pill-button--submit br {
  display: none;
}

.home-contact__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.home-contact__field {
  display: grid;
  gap: 11px;
  width: 100%;
}

.home-contact__field-row {
  display: grid;
  grid-template-columns: var(--home-contact-label-width) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: 100%;
}

.home-contact__field--stacked .home-contact__field-row {
  align-items: flex-start;
}

.home-contact__label-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: var(--home-contact-label-width);
  justify-self: start;
  justify-content: flex-start;
  text-align: left;
}

.home-contact__label-group--optional {
  gap: 0;
}

.home-contact__required {
  min-width: 32px;
  min-height: 25px;
  padding: 6px 8px;
  background: var(--color-accent-strong);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.home-contact__label {
  display: block;
  text-align: left;
}

.home-contact__input,
.home-contact__textarea {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  justify-self: start;
}

.home-contact__input {
  height: 40px;
}

.home-contact__textarea {
  height: 159px;
  resize: vertical;
}

/* Editor content */
.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.single .entry-content img.is-modal-expandable {
  cursor: zoom-in;
}

.has-content-image-modal-open {
  overflow: hidden;
}

.content-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.content-image-modal[hidden] {
  display: none;
}

.content-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 26, 18, 0.82);
}

.content-image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  background: #fff;
}

.content-image-modal__close {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 16px);
  right: calc(env(safe-area-inset-right, 0px) + 16px);
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(59, 45, 38, 0.86);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.content-image-modal__close:hover {
  background: rgba(59, 45, 38, 0.96);
}

.editor-note {
  margin-top: 20px;
  padding: 12px 16px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-surface-strong);
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  background-color: #ffd0af;
  overflow-x: clip;
}

.site-main:has(.lower-page) + .site-footer {
  background-color: transparent;
}

.site-footer__shell {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding: 40px 80px 20px;
  border-radius: 40px 50px 0 0;
  background: #fff;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand-block {
  display: grid;
  gap: 35px;
  flex: 0 0 210px;
  width: 210px;
}

.site-footer__brand {
  display: block;
  text-decoration: none;
}

.site-footer__brand-image {
  display: block;
  width: 210px;
  height: 53px;
  object-fit: contain;
}

.site-footer__company {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-header-text);
}

.site-footer__nav {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 1px;
}

.site-footer__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  white-space: nowrap;
  color: var(--color-accent-strong);
}

.site-footer__copyright {
  margin: 52px 0 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-header-text);
}

/* Responsive: content */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  }
}

/* Responsive: footer tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__shell {
    padding: 40px 40px 20px;
  }

  .site-footer__inner {
    gap: 32px;
  }

  .site-footer__menu {
    gap: 20px;
  }

  .site-footer__menu a {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}

/* Responsive: header desktop */
@media (min-width: 900px) and (max-width: 1199px) {
  .site-header {
    inset: 12px 0 auto;
  }

  .site-header__shell {
    width: min(100% - 24px, 1180px);
    padding: 14px 24px;
  }

  .site-header__inner {
    gap: 20px;
  }

  .site-header__brand-image {
    width: 158px;
    height: 40px;
  }

  .site-header__desktop-nav-wrap {
    gap: 24px;
  }

  .site-header__desktop-menu {
    gap: 20px;
  }

  .site-header__desktop-menu a {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .site-header__desktop-menu li::after {
    bottom: -18px;
  }

  .site-header__cta {
    min-height: 44px;
    padding: 16px 22px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }
}

/* Responsive: mobile */
@media (max-width: 899px) {
  body.has-mobile-menu-open {
    overflow: hidden;
  }

  :root {
    --anchor-scroll-offset: 92px;
  }

  /* Mobile: header */
  .site-header {
    inset: 8px 0 auto;
  }

  .site-header__shell {
    width: 100%;
    padding: 0 10px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__inner {
    gap: 12px;
    align-items: center;
  }

  .site-header__brand {
    display: inline-flex;
    align-items: center;
    padding: 15px 26px;
    border-radius: 100px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 3;
  }

  .site-header__brand-image {
    width: 129px;
    height: 33px;
  }

  .site-header__desktop-nav-wrap {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    min-height: 45px;
    padding: 0;
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0;
    position: relative;
    z-index: 3;
  }

  .site-header__toggle-icon {
    width: 16px;
    height: 2px;
  }

  .site-header__toggle-icon::before,
  .site-header__toggle-icon::after {
    width: 16px;
  }

  .site-header.is-menu-open .site-header__toggle {
    background: #fff;
    color: var(--color-accent-strong);
  }

  .site-header.is-menu-open .site-header__toggle-icon {
    background: transparent;
  }

  .site-header.is-menu-open .site-header__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .site-header__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-navigation {
    display: block;
    position: fixed;
    inset: 0;
    margin-top: 0;
    padding: 0;
    background: var(--color-accent-strong);
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    transform-origin: top center;
    z-index: 2;
  }

  .site-navigation[hidden] {
    display: none;
  }

  .site-header.is-menu-open .site-navigation {
    animation: site-navigation-open 0.24s ease;
  }

  .site-header.is-menu-closing .site-navigation {
    animation: site-navigation-close 0.24s ease forwards;
  }

  .site-navigation__panel {
    width: min(250px, calc(100% - 40px));
    margin: 0 auto;
    padding: 138px 0 48px;
    justify-items: center;
    gap: 40px;
  }

  .site-navigation__menu {
    width: 100%;
    gap: 32px;
    justify-items: center;
  }

  .site-navigation__menu li + li {
    border-top: 0;
  }

  .site-navigation__menu a {
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
  }

  .site-navigation__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 20px 24px;
    border-radius: 50px;
    background: #fff;
    color: var(--color-accent-strong);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    box-sizing: border-box;
  }

  /* Mobile: hero */
  .home-hero {
    min-height: 900px;
  }

  .home-hero__media {
    -webkit-mask-image: var(--home-hero-mask-sp, var(--home-hero-mask));
    mask-image: var(--home-hero-mask-sp, var(--home-hero-mask));
    -webkit-mask-position: center top;
    mask-position: center top;
  }

  .home-hero__content {
    width: calc(100% - 32px);
    min-height: 900px;
    padding: 132px 0 40px;
  }

  .home-hero__title {
    font-size: 30px;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }

  .home-hero__title-break-sp {
    display: inline;
  }

  .home-hero__description {
    font-size: 15px;
    line-height: 1.9;
  }

  .home-hero__closing {
    gap: 14px;
  }

  .home-hero__closing-text {
    font-size: 20px;
    line-height: 1.8;
  }

  .home-hero__closing-note {
    padding: 10px 14px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  @media (max-width: 639px) {
    .home-hero__detail {
      padding: 0;
    }
  }

  @media (max-width: 559px) {
    .home-hero__benefits {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
    }

    .home-hero__benefit {
      font-size: 10px;
    }
  }

  @media (max-width: 479px) {
    .home-hero__benefit {
      padding: 0;
      font-size: 9px;
    }

    .home-hero__benefit {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .home-hero__benefit-icon {
      display: none;
    }

    .home-hero__benefit-label {
      align-self: auto;
    }
  }

  .home-section-heading {
    justify-items: center;
  }

  .home-section-heading__title {
    font-size: 20px;
    text-align: center;
  }

  .home-section-heading__title-row {
    justify-content: center;
  }

  /* Mobile: shared buttons */
  .home-pill-button {
    gap: 40px;
    min-height: 0;
    padding: 16px 24px 16px 60px;
  }

  .home-pill-button--small {
    gap: 20px;
    padding: 12px 16px 12px 40px;
  }

  .home-pill-button--stores {
    margin: 40px auto 0;
  }

  .home-pill-button--submit {
    gap: 53px;
    padding: 16px 24px 16px 80px;
  }

  /* Mobile: news */
  .home-section-shell--news {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'list'
      'button';
    gap: 40px;
    padding: 40px 20px;
  }

  .home-news__intro {
    width: auto;
    justify-self: stretch;
    justify-items: center;
    padding: 0;
  }

  .home-news__title {
    font-size: 20px;
    text-align: center;
  }

  .home-news__list {
    gap: 28px;
    width: auto;
    justify-self: stretch;
  }

  .home-news__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-news__date,
  .home-news__text,
  .home-feature__text,
  .home-stores__lead,
  .home-store-card__text,
  .home-contact__lead p,
  .home-contact__label,
  .home-contact__input,
  .home-contact__textarea {
    font-size: 14px;
  }

  .home-news__text,
  .home-feature__text,
  .home-stores__lead,
  .home-contact__lead p {
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .home-news__accent {
    right: 20px;
    bottom: -24px;
    width: 62px;
    height: 71px;
  }

  /* Mobile: feature */
  .home-feature {
    position: relative;
    margin-top: 142px;
    justify-items: center;
    --home-feature-inner-min-height: 0;
    --home-feature-inner-padding-start: 0;
    --home-feature-inner-padding-end: 0;
    --home-feature-block-self: center;
    --home-feature-visual-width: min(100%, 420px);
    --home-feature-visual-height: clamp(220px, 62vw, 250px);
  }

  .home-feature__inner {
    gap: 20px;
    min-height: 0;
    padding-inline: 0;
    justify-items: center;
  }

  .home-feature__content {
    order: 1;
    gap: 20px;
    width: min(340px, 100%);
    max-width: min(340px, 100%);
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .home-feature__visual {
    display: block;
    order: 2;
  }

  .home-feature__button {
    order: 3;
    justify-self: center;
  }

  .home-feature .home-section-heading,
  .home-feature .home-section-heading__title-row {
    justify-items: center;
    justify-content: center;
  }

  .home-feature--about .home-feature__inner,
  .home-feature--school .home-feature__inner {
    justify-items: center;
  }

  .home-feature--about .home-feature__visual,
  .home-feature--school .home-feature__visual {
    position: relative;
    top: auto;
    inset-inline-start: auto;
    inset-inline-end: auto;
    justify-self: center;
    height: var(--home-feature-visual-height);
    transform: none;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .home-feature--school {
    margin-top: 151px;
  }

  .home-feature--about .home-section-heading__mark--about,
  .home-feature--school .home-section-heading__mark--school {
    top: -4px;
    right: -40px;
    width: 35px;
    height: 42px;
  }

  .home-feature__text {
    width: min(340px, 100%);
    text-align: center;
  }

  .home-volca {
    margin-top: 100px;
    padding-inline: 20px;
  }

  .home-section-shell--volca {
    gap: 20px;
  }

  .home-volca__button {
    width: min(433px, 100%);
  }

  /* Mobile: stores */
  .home-stores {
    margin-top: 142px;
    padding: 0 0 80px;
  }

  .home-stores__header {
    gap: 20px;
  }

  .home-stores__header .home-section-heading__title-row {
    padding-top: 0;
  }

  .home-section-heading__mark--stores {
    width: 45px;
    height: 43px;
    left: -56px;
    top: 16px;
    transform: translateY(-50%);
  }

  .home-stores__grid {
    gap: 20px;
    width: calc(100% + 40px);
    margin: 77px 0 0;
  }

  .home-store-card {
    flex: 0 0 min(310px, calc(100% - 40px));
    min-height: 306px;
    padding: 20px;
    border-radius: 30px;
    scroll-snap-align: start;
  }

  .home-store-card__image {
    border-radius: 20px;
  }

  .home-store-card__title {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .home-store-card__text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 1.5;
  }

  @media (max-width: 400px) {
    .home-stores__grid {
      gap: 16px;
      width: 100vw;
      margin: 77px calc(50% - 50vw) 0;
      padding-inline: max(20px, calc((100vw - min(310px, calc(100vw - 40px))) / 2));
      scroll-padding-inline: max(20px, calc((100vw - min(310px, calc(100vw - 40px))) / 2));
    }

    .home-store-card {
      flex-basis: min(310px, calc(100vw - 40px));
      width: min(310px, calc(100vw - 40px));
      margin-inline: 0;
    }
  }

  /* Mobile: contact */
  .home-contact {
    padding: 80px 20px 120px;
  }

  .home-contact__panel {
    gap: 40px;
    padding: var(--panel-padding-mobile-standard);
    border-radius: 40px;
  }

  .home-contact__intro {
    gap: 20px;
    width: 100%;
  }

  .home-contact__mark {
    width: 17px;
    height: 17px;
  }

  .home-contact__form {
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    justify-items: stretch;
  }

  .home-contact .wpcf7 form,
  .home-contact .wpcf7-form {
    gap: 24px;
  }

  .home-contact__form > p {
    margin: 0;
  }

  .home-contact__field-row > p {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
  }

  .home-contact__field-row > p > .home-contact__label-group,
  .home-contact__field--stacked .home-contact__field-row > p > .home-contact__label-group {
    width: auto;
    align-self: flex-start;
  }

  .home-contact__field {
    gap: 8px;
    width: 100%;
  }

  .home-contact__field-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    display: flex;
  }

  .home-contact__field--stacked .home-contact__field-row {
    align-items: stretch;
  }

  .home-contact__field-row > .home-contact__label-group,
  .home-contact__field--stacked .home-contact__field-row > .home-contact__label-group {
    align-self: flex-start;
  }

  .home-contact__label-group,
  .home-contact__field--stacked .home-contact__label-group {
    width: auto;
  }

  .home-contact__input,
  .home-contact__textarea,
  .home-contact__field--stacked .home-contact__textarea {
    width: 100%;
    max-width: none;
  }

  .home-pill-button--submit {
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    align-self: center;
  }

  /* Mobile: lower pages */
  .lower-page-hero {
    padding-top: 96px;
  }

  .lower-page-hero__inner {
    min-height: 0;
    display: grid;
    gap: 24px;
  }

  .lower-page-hero__copy,
  .lower-page-panel,
  .lower-page-panel--wide,
  .school-contact__cta-wrap {
    width: calc(100% - 40px);
  }

  .lower-page-hero__copy {
    padding-top: 240px;
    padding-left: 24px;
  }

  .lower-page-hero__eyebrow {
    max-width: 228px;
    font-size: 50px;
    line-height: 1;
    white-space: normal;
  }

  .lower-page-hero__title {
    margin-top: 32px;
    font-size: 20px;
  }

  .lower-page-hero__media {
    top: 0;
    left: 40px;
    right: auto;
    width: calc(100% - 40px);
    height: clamp(220px, 69vw, 270px);
  }

  .lower-page-hero__accent {
    left: 8px;
    top: 157px;
    bottom: auto;
    width: 61px;
    height: 70px;
  }

  .lower-page-panel,
  .lower-page-panel--wide {
    padding: 64px 20px;
    border-radius: 40px;
  }

  .lower-page-section-heading {
    justify-items: center;
  }

  .lower-page-section-heading__title {
    font-size: 24px;
    text-align: center;
  }

  .school-page__courses-section {
    position: relative;
    margin-top: 0;
    padding: 80px 0;
  }

  .school-page__courses-panel,
  .school-contact__panel {
    gap: 56px;
  }

  .school-course-list {
    gap: 40px;
  }

  .school-course,
  .school-contact-card {
    grid-template-columns: 1fr;
  }

  .school-course {
    gap: 40px;
  }

  .school-contact-card {
    gap: 24px;
  }

  .school-course + .school-course {
    padding-top: 40px;
  }

  .school-page__courses-accent,
  .school-contact__accent,
  .school-contact__cta-accent {
    display: block;
  }

  .school-page__courses-accent--desktop,
  .school-contact__accent--desktop {
    display: none;
  }

  .school-page__courses-accent--mobile {
    top: 64px;
    right: 24px;
    width: 56px;
    height: 67px;
  }

  .school-course__content {
    gap: 40px;
  }

  .school-course__heading {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .school-course__title,
  .school-contact-card__title {
    font-size: 20px;
    letter-spacing: 0.16em;
  }

  .school-course__description,
  .school-contact__lead,
  .school-contact-card__text,
  .school-contact__venue-text,
  .school-course__fact-value {
    font-size: 16px;
  }

  .school-course__description p + p {
    margin-top: 0;
  }

  .school-course__facts {
    gap: 24px;
  }

  .school-course__fact-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .school-course__fact-label {
    width: 100px;
  }

  .school-course__media,
  .school-contact-card__image {
    justify-self: stretch;
  }

  .school-course__media {
    max-width: 100%;
    margin-inline: auto;
    justify-self: center;
  }

  .school-course__media--contain img {
    width: 141px;
    height: 200px;
  }

  .school-contact {
    position: relative;
    padding: 80px 0 120px;
  }

  .school-contact__body {
    gap: 80px;
  }

  .school-contact__intro {
    gap: 48px;
  }

  .school-contact__entries {
    gap: 64px;
  }

  .school-contact__entry {
    gap: 32px;
  }

  .school-contact__venues {
    gap: 32px;
  }

  .school-contact__venue-name {
    font-size: 18px;
  }

  .school-contact__accent--mobile {
    top: 40px;
    right: 24px;
    left: auto;
    width: 77px;
    height: 75px;
    transform: rotate(10.49deg);
  }

  .school-contact-card {
    gap: 40px;
  }

  .school-contact__cards {
    gap: 64px;
  }

  .school-contact-card__image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 373 / 359;
    border-radius: 36px;
  }

  .school-contact-card__body {
    gap: 32px;
    justify-items: stretch;
  }

  .school-contact-card__summary {
    gap: 16px;
    justify-items: stretch;
    min-width: 0;
  }

  .school-contact-card__copy {
    gap: 32px;
    min-width: 0;
  }

  .school-contact-card__heading {
    width: 100%;
  }

  .school-contact-card__title {
    max-width: 100%;
    letter-spacing: 0.16em;
  }

  .school-outline-button {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 20px 24px;
    white-space: normal;
  }

  .school-outline-button span:first-child {
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .school-contact__cta {
    gap: 16px;
    min-height: 80px;
    padding: 18px 20px;
    font-size: 20px;
    border-radius: 20px;
  }

  .school-contact__cta-arrow {
    width: 27px;
    height: 27px;
  }

  .school-contact__cta-arrow::before {
    inset: 6px;
  }

  .school-contact__cta-accent {
    top: 57px;
    left: 0;
    width: 88px;
    height: 73px;
  }

  .about-page__intro {
    padding: 60px 20px 100px;
  }

  .about-page__intro-inner {
    gap: 32px;
    width: 100%;
  }

  .about-page__intro-content,
  .about-page__intro-list,
  .about-voice__lead,
  .about-flow-card__description {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.2em;
  }

  .about-page__intro-list {
    gap: 0;
  }

  .about-page__intro-list li,
  .about-voice-group__heading {
    padding-left: 24px;
  }

  .about-page__intro-list li::before,
  .about-voice-group__mark {
    width: 16px;
    height: 16px;
  }

  .about-page__intro-accent,
  .about-voice__accent {
    display: block;
  }

  .about-page__intro-accent--desktop,
  .about-voice__accent--desktop {
    display: none;
  }

  .about-page__intro-accent--mobile {
    top: auto;
    right: 2px;
    bottom: 8px;
    width: 101px;
    height: 78px;
    transform: rotate(6.63deg);
  }

  .about-flow {
    padding: 80px 20px;
    border-radius: 40px;
  }

  .about-flow__inner {
    width: 100%;
    gap: 48px;
  }

  .about-flow__list {
    gap: 16px;
  }

  .about-flow-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-radius: 36px;
    background: transparent;
    overflow: hidden;
  }

  .about-flow-card__media {
    width: 100%;
    height: 298px;
    margin-inline: 0;
    border-radius: 36px 36px 0 0;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .about-flow-card__media img {
    transform: none;
  }

  .about-flow-card__content {
    gap: 32px;
    padding: 45px 20px 46px;
    background: #fff;
    justify-items: center;
    text-align: center;
    border-radius: 0 0 36px 36px;
  }

  .about-flow-card__number {
    font-size: 34px;
  }

  .about-flow-card__title {
    font-size: 20px;
  }

  .about-flow__connector {
    width: 26px;
    height: 26px;
  }

  .about-voice {
    width: calc(100% - 40px);
    max-width: 100%;
    margin-top: 94px;
    padding-bottom: 92px;
  }

  .about-voice__header {
    gap: 24px;
  }

  .about-voice__lead {
    width: 100%;
  }

  .about-voice__content {
    gap: 48px;
    margin-top: 64px;
  }

  .about-voice-panel {
    border-radius: 16px;
  }

  .about-voice-panel__trigger {
    grid-template-columns: 1fr auto;
    min-height: 52px;
    padding: 12px 20px 12px 60px;
  }

  .about-voice-panel__title {
    font-size: 20px;
    letter-spacing: var(--tracking-heading);
  }

  .about-voice-panel__icon,
  .about-voice-panel__toggle,
  .about-voice__button-arrow {
    width: 32px;
    height: 32px;
    border-radius: 16px;
  }

  .about-voice-panel__icon::before,
  .about-voice-panel__toggle::before,
  .about-voice__button-arrow::before {
    inset: 8px;
  }

  .about-voice-panel__body {
    gap: 40px;
    padding: 40px 20px 64px;
  }

  .about-voice-group {
    gap: 16px;
  }

  .about-voice-group__title {
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  .about-voice-group__subtitle {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .about-voice-group__list {
    font-size: 13px;
  }

  .about-voice__button {
    min-height: 52px;
  }

  .about-voice__accent--mobile {
    top: -4px;
    left: 37px;
    right: auto;
    width: 53px;
    height: 51px;
  }

  .news-page__hero {
    padding-top: 121px;
  }

  .news-page__hero-inner {
    width: calc(100% - 40px);
    gap: 20px;
  }

  .news-page__eyebrow {
    font-size: 40px;
  }

  .news-page__title {
    font-size: 16px;
  }

  .news-page__content {
    padding: 35px 0 130px;
  }

  .news-page__panel {
    width: calc(100% - 40px);
    padding: var(--panel-padding-mobile-standard);
    border-radius: 20px;
    gap: 56px;
  }

  .news-page__list {
    max-width: 100%;
  }

  .news-page__item {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: 0 0 32px;
    margin-bottom: 32px;
  }

  .news-page__item:last-child {
    margin-bottom: 0;
  }

  .news-page__date,
  .news-page__link,
  .news-page__pagination-link,
  .news-page__pagination-ellipsis,
  .news-page__pagination-next {
    font-size: 16px;
  }

  .news-page__pagination {
    gap: 24px;
  }

  .news-article {
    gap: 32px;
  }

  .news-article__header {
    gap: 16px;
  }

  .news-article__title {
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  .news-article__body {
    font-size: 16px;
    line-height: 1.9;
  }

  .news-page__actions {
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .news-page__action {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 0;
    font-size: 14px;
  }

  .news-page__action--list {
    flex: 1 1 auto;
    padding-inline: 20px;
    grid-template-columns: none;
  }

  .news-page__action--prev,
  .news-page__action--next {
    flex: 0 0 60px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    gap: 0;
    border-radius: 999px;
  }

  .news-page__action--prev .news-page__action-label,
  .news-page__action--next .news-page__action-label {
    display: none;
  }

  .news-page__action--prev .news-page__action-arrow,
  .news-page__action--next .news-page__action-arrow {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .school-page .lower-page-hero,
  .about-page .lower-page-hero,
  .stores-page .lower-page-hero {
    padding-top: 0;
  }

  .stores-page__content {
    padding: 41px 0 130px;
  }

  .stores-page__section-heading .lower-page-section-heading__title {
    font-size: 20px;
  }

  .stores-page__panel {
    width: 100%;
    max-width: 100%;
    padding: var(--panel-padding-mobile-standard);
    border-radius: 0;
    gap: 56px;
  }

  .stores-page__intro-copy {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.2em;
    text-align: left;
  }

  .stores-list {
    gap: 40px;
  }

  .store-card {
    gap: 40px;
  }

  .store-card + .store-card {
    padding-top: 40px;
  }

  .store-card__main {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .store-card__visual {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .store-card__body {
    gap: 20px;
  }

  .store-card__title {
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .store-card__facts {
    gap: 24px;
    width: 100%;
  }

  .store-card__fact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .store-card__fact-label,
  .store-card__fact-value {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.2em;
  }

  .store-card__fact-label {
    margin-bottom: 0;
  }

  .store-card__fact-value {
    margin-top: 0;
  }

  .store-card__button {
    width: max-content;
    justify-content: center;
    padding: 8px 20px 8px 32px;
  }

  .store-card__map {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .store-detail-page__detail-value,
  .store-entry__section p,
  .store-entry__menu-list li {
    font-size: 14px;
  }

  .store-detail-page__section-title {
    font-size: 24px;
  }

  .store-detail-page__detail-row {
    padding: 20px;
    border-radius: 20px;
  }

  .store-detail-page__map {
    height: 240px;
    border-radius: 20px;
  }

  .store-entry__section h2 {
    font-size: 24px;
  }

  .store-entry__section h3 {
    font-size: 18px;
  }

  .store-entry__menu-block {
    padding: 24px 20px;
  }

  .store-entry__menu-list li {
    flex-direction: column;
    gap: 4px;
  }

  /* Mobile: footer */
  .site-footer {
    padding-top: 24px;
  }

  .site-footer__shell {
    width: 100%;
    padding: 40px 24px 20px;
    border-radius: 40px 40px 0 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
  }

  .site-footer__brand-block {
    flex: 0 1 auto;
    justify-items: center;
    gap: 20px;
    width: auto;
  }

  .site-footer__brand-image {
    width: 180px;
    height: 45px;
  }

  .site-footer__company {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer__nav {
    width: 100%;
    padding-top: 0;
  }

  .site-footer__menu {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .site-footer__copyright {
    margin-top: 60px;
    font-size: 12px;
    letter-spacing: 0.04em;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Animations */
@keyframes site-navigation-open {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes site-navigation-close {
  from {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  to {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.96);
  }
}
