/* =========================================================
   Design tokens
   ========================================================= */
:root {
  --color-navy: #002357;
  --color-navy-deep: #123967;
  --color-gold: #b88a24;
  --color-gold-button: #b98b2a;
  --color-gold-text: #8c6818;
  --color-cream: #fbf7ed;
  --color-cream-light: #fffdf7;
  --color-cream-yellow: #fff8eb;
  --color-text: #1c2530;
  --color-text-body: #46505c;
  --color-text-muted: #5e6470;
  --color-text-secondary: #3b4653;
  --color-text-strong: #293444;
  --color-border-navy: rgba(0, 35, 87, 0.14);
  --color-border-light: rgba(0, 35, 87, 0.1);
  --color-border-gold: rgba(184, 138, 36, 0.55);
  --color-white-overlay: rgba(255, 255, 255, 0.74);
  --shadow-card: 0 10px 28px rgba(0, 35, 87, 0.06);
  --shadow-button: 0 10px 13px rgba(0, 35, 87, 0.18);
  --shadow-header: 0 8px 24px rgba(0, 35, 87, 0.08);

  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;

  --container: 1120px;
  --container-wide: 1296px;
  --radius: 8px;
  --radius-pill: 999px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.9);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--color-border-navy);
  box-shadow: var(--shadow-header);
  transition: transform 0.3s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.site-header__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: block;
  flex-shrink: 0;
  width: 126px;
  height: 47.842px;
  position: relative;
}

.logo__mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 66.24%;
  height: 40.64%;
}

.logo__text {
  position: absolute;
  top: 47.12%;
  left: 17.59%;
  width: 82.41%;
  height: 52.88%;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__list a {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-navy-deep);
  font-size: 14.7px;
  line-height: 26.5px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-nav__list a:hover {
  opacity: 0.7;
}

.site-header__cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 19px 14px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--color-border-navy);
  border-radius: var(--radius-pill);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.header-cta-link:hover {
  background: rgba(255, 255, 255, 0.9);
}

.header-cta-link img {
  width: 20px;
  height: 20px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  padding: 18px 24px;
  min-height: 64px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: center;
  color: #fff;
  filter: drop-shadow(var(--shadow-button));
  transition: filter 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  filter: drop-shadow(0 6px 20px rgba(0, 35, 87, 0.28));
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-navy);
}

.btn--gold {
  background: var(--color-gold-button);
}

.btn--large {
  font-size: 24px;
  line-height: 20px;
  padding: 18px 24px;
  width: 100%;
}

.btn--large img {
  width: 28px;
  height: 28px;
}

.btn--xl {
  font-size: 30px;
  line-height: 20px;
  padding: 18px 42px;
  min-width: 460px;
}

.btn--xl img {
  width: 42px;
  height: 42px;
}

/* =========================================================
   Section heading
   ========================================================= */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-head__sub {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-gold-text);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.section-head__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: linear-gradient(90deg, var(--color-cream) 0%, var(--color-cream) 100%);
  padding: 76px 0;
  overflow: hidden;
}

.hero__inner {
  width: min(var(--container-wide), 100% - 40px);
  margin-inline: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero__content {
  flex: 500 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 50px;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__lead {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text-strong);
  font-size: 20px;
  line-height: 1.75;
}

.hero__cta {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.hero-cta__lead {
  margin: 0;
  color: var(--color-text-strong);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.125em;
  text-align: center;
  white-space: nowrap;
}

.final-cta-card.hero-cta-card--phone {
  background: #ac2d2d;
  border: 1px solid var(--color-gold);
  padding: 21px 23px;
  gap: 10px;
  min-height: 0;
}

.final-cta-card.hero-cta-card--phone .final-cta-card__title {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.final-cta-card.hero-cta-card--phone .final-cta-card__phone {
  gap: 8px;
}

.final-cta-card.hero-cta-card--phone .final-cta-card__freedial {
  width: 52.44px;
  height: 30px;
}

.final-cta-card.hero-cta-card--phone .final-cta-card__number {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.04em;
}

.final-cta-card.hero-cta-card--mail {
  background: #fff;
  border: 1px solid var(--color-gold);
  padding: 21px 23px;
  gap: 10px;
  min-height: 0;
  box-shadow: none;
}

.final-cta-card.hero-cta-card--mail:hover {
  box-shadow: none;
}

.final-cta-card.hero-cta-card--mail .final-cta-card__sub {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.final-cta-card.hero-cta-card--mail .final-cta-card__mail {
  font-size: 23px;
}

.final-cta-card.hero-cta-card--mail .final-cta-card__mail img {
  width: 28px;
  height: 28px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.hero__chips li {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(184, 138, 36, 0.34);
  border-radius: var(--radius-pill);
  padding: 8px 13px;
  font-weight: 700;
  color: var(--color-navy-deep);
  font-size: 14.4px;
  line-height: 1.8;
  white-space: nowrap;
}

.hero__image {
  margin: 0;
  flex: 756 1 0;
  min-width: 0;
  align-self: center;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 756 / 567;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-slider__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    transition: none;
  }
}

/* =========================================================
   Empathy section
   ========================================================= */
.empathy {
  background: var(--color-cream-light);
  padding: 96px 0;
}

.empathy__container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.empathy__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.empathy__head .section-head {
  flex: 0 0 502px;
  padding-bottom: 18px;
}

.empathy__lead {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15.3px;
  max-width: 680px;
}

.empathy__lead p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

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

.scene-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.scene-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.scene-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card__body {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scene-card__body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.scene-card__body p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-body);
  letter-spacing: 0.04em;
}

.vision-card {
  background: #fff;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius);
  padding: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.vision-card__label {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-text-body);
  line-height: 1.5;
  white-space: nowrap;
}

.vision-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vision-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.vision-card__text {
  font-size: 18px;
  color: var(--color-text-body);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* =========================================================
   Mid CTA (dark band)
   ========================================================= */
.mid-cta {
  position: relative;
  padding: 60px 20px;
  background: var(--color-navy);
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mid-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mid-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.mid-cta__inner {
  position: relative;
  width: 100%;
  max-width: 1024px;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: center;
}

.mid-cta__col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}

.mid-cta__lead {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.125em;
  text-align: center;
  white-space: nowrap;
}

/* =========================================================
   Point section
   ========================================================= */
.point {
  background: var(--color-cream-light);
  padding: 95px 0 96px;
}

.point .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.point-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 41px 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.point-card__head {
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.point-card__num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}

.point-card__image {
  padding: 20px;
}

.point-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.point-card__text {
  padding-inline: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-body);
  letter-spacing: 0.04em;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  padding: 96px 0;
}

.gallery .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-item figcaption {
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 24px;
  line-height: 1.5;
}

/* =========================================================
   Artist
   ========================================================= */
.artist {
  background: var(--color-cream-light);
  padding: 96px 0;
}

.artist__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
}

.artist__images {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.artist__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist__profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artist__name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 36px;
  line-height: 51px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist__name-kana {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 23.2px;
  font-weight: 700;
}

.artist__note {
  margin: 0;
  border-left: 3px solid var(--color-gold);
  padding: 0 15px 0 18px;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 26.5px;
}

.artist__text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
}

/* =========================================================
   Flow
   ========================================================= */
.flow {
  padding: 96px 0;
}

.flow .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.flow-item {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 21px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flow-item__num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-item__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 26.78px;
  text-align: center;
  width: 100%;
}

.flow-item__icon {
  position: relative;
  width: 100%;
  aspect-ratio: 220 / 170;
  overflow: hidden;
}

.flow-item__icon img {
  position: absolute;
  width: 350.45%;
  height: 302.35%;
  max-width: none;
  pointer-events: none;
}

.flow-item__icon[data-pos="1"] img { left: -40.68%; top: -37.06%; }
.flow-item__icon[data-pos="2"] img { left: -137.56%; top: -44.32%; }
.flow-item__icon[data-pos="3"] img { left: -250.68%; top: -42.7%; }
.flow-item__icon[data-pos="4"] img { left: -36.93%; top: -171.74%; }
.flow-item__icon[data-pos="5"] img { left: -131.93%; top: -169.32%; }
.flow-item__icon[data-pos="6"] img { left: -236.31%; top: -174.96%; }

.flow-item__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-body);
}

/* =========================================================
   Price
   ========================================================= */
.price {
  background: var(--color-cream-light);
  padding: 96px 0;
}

.price .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price__head {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.price__head .section-head {
  padding-bottom: 18px;
  flex: 1;
}

.price__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.price__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 20px;
  line-height: 28.8px;
}

.price__features img {
  width: 24px;
  height: 24px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 35, 87, 0.12);
  border-radius: var(--radius);
  padding: 19px 23px;
  display: grid;
  grid-template-columns: 220px 170px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.price-row--featured {
  border-color: rgba(184, 138, 36, 0.7);
  box-shadow: 0 12px 34px rgba(184, 138, 36, 0.12);
}

.price-row__name h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 17.3px;
  line-height: 26.78px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-row__name p {
  font-size: 15px;
  line-height: 27px;
  color: var(--color-text-muted);
}

.price-row__name-br {
  display: none;
}

.price-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 138, 36, 0.14);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 22.46px;
  color: var(--color-gold-text);
}

.price-row__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-navy);
}

.price-row__amount strong {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21.6px;
  line-height: 38.88px;
}

.price-row__amount span {
  font-weight: 700;
  font-size: 12.8px;
  line-height: 23px;
}

.price-row__desc {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--color-text-body);
}

.price__note {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 18px;
  line-height: 51px;
}

.price__details {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
}

.price-detail {
  border-top: 1px solid var(--color-border-navy);
  padding: 31px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-detail--full {
  grid-column: 1 / -1;
}

.price-detail h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 24px;
  line-height: 26.78px;
}

.price-detail p,
.price-detail ul {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--color-text-body);
}

.price-detail ul {
  list-style: disc;
  padding-left: 27px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--color-cream-yellow);
  padding: 96px 0;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 35, 87, 0.12);
  border-radius: var(--radius);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 25.6px;
  color: var(--color-navy);
  position: relative;
  min-height: 44px;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-item__body {
  border-top: 1px solid var(--color-border-navy);
  padding-top: 16px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.faq-item__image {
  width: 120px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}

.faq-item__text {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  line-height: 25.6px;
  color: var(--color-gold-text);
  white-space: pre-wrap;
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  position: relative;
  padding: 75px 20px 88px;
  background: var(--color-navy);
  border-top: 3px solid var(--color-gold);
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 35, 87, 0.97), rgba(0, 35, 87, 0.86));
}

.final-cta__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.final-cta__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 30px;
}

.final-cta__text h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 51px;
  color: #fff;
}

.final-cta__text p {
  margin-top: 5.4px;
  font-size: 18px;
  line-height: 28.8px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.final-cta__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}

.final-cta__lead {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.125em;
  text-align: center;
  white-space: nowrap;
}

.final-cta__col--mail {
  padding-top: 14px;
}

.final-cta-card__sub {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2em;
  color: #484145;
  text-align: center;
}

.final-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px rgba(0, 35, 87, 0.22);
}

.mid-cta .final-cta-card--phone,
.mid-cta .final-cta-card--mail {
  min-height: 192px;
}

.final-cta-card--phone {
  background: #fff;
  border: 2px solid var(--color-gold);
  padding: 22px 24px;
  gap: 14px;
}

.final-cta-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #484145;
  text-align: center;
}

.final-cta-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-cta-card__freedial {
  width: 52.44px;
  height: 30px;
  flex-shrink: 0;
}

.final-cta-card__number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #484145;
  white-space: nowrap;
}

.final-cta-card__address {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #484145;
  text-align: center;
}

.final-cta-card--mail {
  background: var(--color-cream);
  padding: 20px 22px;
  gap: 10px;
}

.final-cta-card__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.25;
  color: #484145;
}

.final-cta-card__mail img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* =========================================================
   Legal pages (privacy policy etc.)
   ========================================================= */
.legal {
  padding: 80px 20px 100px;
  background: var(--color-cream);
}

.legal__inner {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  background: var(--color-cream-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-card);
}

.legal__header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.legal__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.legal__lead {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal__body {
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1.9;
}

.legal__body > p {
  margin-bottom: 24px;
}

.legal__section {
  margin-top: 36px;
}

.legal__section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--color-gold);
}

.legal__section p {
  margin-bottom: 12px;
}

.legal__list {
  list-style: disc;
  padding-left: 1.4em;
  margin: 8px 0 12px;
}

.legal__list li {
  margin-bottom: 6px;
  line-height: 1.85;
}

.legal__list--plain {
  list-style: none;
  padding-left: 0;
}

.legal__list--plain li {
  margin-bottom: 4px;
}

.legal__updated {
  margin-top: 40px;
  text-align: right;
  font-size: 14px;
  color: var(--color-text-muted);
}

.legal__back {
  margin-top: 40px;
  text-align: center;
}

.legal__back a {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--color-border-navy);
  border-radius: var(--radius-pill);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.66);
  transition: background 0.2s ease;
}

.legal__back a:hover {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .legal {
    padding: 48px 16px 72px;
  }

  .legal__inner {
    padding: 32px 22px 28px;
  }

  .legal__title {
    font-size: 24px;
  }

  .legal__section-title {
    font-size: 17px;
  }

  .legal__body {
    font-size: 14px;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-navy);
  padding: 22px 20px;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 16px;
  line-height: 25.34px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__link img {
  width: 20px;
  height: 20px;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 16px;
  line-height: 25.34px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-footer__nav-link img {
  width: 20px;
  height: 20px;
}

.site-footer__nav-link:hover {
  opacity: 0.7;
}

.site-footer__copy {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 25.34px;
}

/* =========================================================
   Sticky CTA (fixed bottom)
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 248, 235, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 16px;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  gap: 20px;
}

.sticky-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 50px;
  padding-right: 50px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.28);
}

.sticky-cta__btn--phone {
  background: #ac2d2d;
}

.sticky-cta__btn--mail {
  background: #123967;
}

.sticky-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
}

.sticky-cta__btn--phone .sticky-cta__icon {
  background: #8a1d1d;
}

.sticky-cta__btn--mail .sticky-cta__icon {
  background: #122d4e;
}

.sticky-cta__icon img {
  width: 42px;
  height: 42px;
}

.sticky-cta__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  text-align: center;
}

.sticky-cta__body--narrow {
  display: none;
}

.sticky-cta__lead {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.sticky-cta__main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.sticky-cta__btn--mail .sticky-cta__main {
  font-size: 24px;
}

.sticky-cta__main--tablet {
  display: none;
}

.site-footer {
  padding-bottom: 134px;
}

.page-legal .site-footer {
  padding-bottom: 22px;
}

/* =========================================================
   Tablet (≤ 1280px) — slim down spacing
   ========================================================= */
@media (max-width: 1280px) {
  .container {
    width: min(var(--container), 100% - 160px);
  }

  .site-header__inner {
    padding: 12px 24px;
    gap: 16px;
  }

  .site-nav__list {
    gap: 18px;
  }

  .header-cta-link {
    font-size: 14px;
    padding: 10px 14px;
  }

  .hero__title {
    font-size: 42px;
  }
}

/* =========================================================
   Tablet (≤ 1100px) — stack mid-cta vertically so buttons fit
   ========================================================= */
@media (max-width: 1100px) {
  .mid-cta__inner {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 480px;
    align-items: stretch;
  }

  .mid-cta__col {
    width: 100%;
  }

  .mid-cta .final-cta-card--phone,
  .mid-cta .final-cta-card--mail {
    min-height: 0;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 610px;
  }

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

/* =========================================================
   Small tablet (≤ 1024px) — icon-only CTAs, tighter nav
   ========================================================= */
@media (max-width: 1024px) {
  .site-nav__list {
    gap: 12px;
  }

  .site-nav__list a {
    font-size: 13px;
  }

  .site-header__cta {
    gap: 10px;
  }

  .header-cta-link {
    padding: 10px;
    gap: 0;
  }

  .header-cta-link span {
    display: none;
  }

  .site-footer__link,
  .site-footer__nav-link {
    font-size: 14px;
  }

  .site-footer__link img,
  .site-footer__nav-link img {
    width: 18px;
    height: 18px;
  }

  /* Hero stacks on tablet — image on top, content below */
  .hero {
    padding: 40px 0;
  }

  .hero__inner {
    width: min(var(--container-wide), 100% - 80px);
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero__image {
    width: 100%;
    flex: none;
    aspect-ratio: 689 / 517;
  }

  .hero__content {
    flex: none;
    width: auto;
    margin-inline: 20px;
    align-items: stretch;
    gap: 16px;
  }

  .hero__title {
    font-size: 44px;
    white-space: normal;
  }

  .hero__title br {
    display: none;
  }

  .hero__cta {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }

  .hero-cta {
    flex: 1 1 0;
    min-width: 0;
  }

  .final-cta-card.hero-cta-card--phone {
    padding: 16px 18px;
    gap: 8px;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__title {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__freedial {
    width: 41.95px;
    height: 24px;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__number {
    font-size: 24px;
  }

  .final-cta-card.hero-cta-card--mail {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px 18px;
    gap: 8px;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__sub {
    font-size: 14px;
    line-height: 1;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__mail {
    font-size: 18px;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__mail img {
    width: 24px;
    height: 24px;
  }

  .hero__chips {
    justify-content: center;
    margin-top: 4px;
  }

  /* Empathy — head stacks vertically */
  .empathy__head {
    flex-direction: column;
    gap: 16px;
  }

  .empathy__head .section-head {
    flex: none;
    padding-bottom: 0;
  }

  .empathy__lead {
    max-width: 100%;
  }

  /* Scenes — horizontal cards (image left, body right) */
  .scenes {
    grid-template-columns: 1fr;
  }

  .scene-card {
    flex-direction: row;
  }

  .scene-card__image {
    flex: 0 0 33%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .scene-card__image img {
    height: 100%;
  }

  .scene-card__body {
    flex: 1;
    padding: 30px 24px;
    gap: 16px;
    justify-content: center;
  }

  /* Vision card — stacked label/body */
  .vision-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .vision-card__body {
    text-align: center;
  }

  /* Point cards — horizontal (image left, head + text on right) */
  .points {
    grid-template-columns: 1fr;
  }

  .point-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    padding: 21px;
    gap: 16px 20px;
  }

  .point-card__image {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 0;
  }

  .point-card__image img {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
  }

  .point-card__head {
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 12px;
    align-self: end;
  }

  .point-card__title {
    text-align: left;
  }

  .point-card__text {
    grid-column: 2;
    grid-row: 2;
    padding: 0;
    align-self: start;
  }

  /* Gallery — 2 column */
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Artist — images stack above profile, centered */
  .artist__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist__images {
    width: min(400px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  /* Flow — 3 columns × 2 rows */
  .flow__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Price — stack name+price (row) and description (row 2) */
  .price__head {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .price-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .price-row__desc {
    grid-column: 1 / -1;
  }

  .price__details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-detail {
    padding: 24px 0;
  }

  .sticky-cta__btn {
    height: 70px;
    gap: 30px;
    padding-right: 30px;
  }

  .sticky-cta__icon {
    width: 70px;
  }

  .sticky-cta__icon img {
    width: 36px;
    height: 36px;
  }

  .sticky-cta__lead {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .sticky-cta__main {
    font-size: 30px;
    height: 30px;
  }

  .sticky-cta__btn--mail .sticky-cta__main {
    font-size: 22px;
  }

  .sticky-cta__main--pc {
    display: none;
  }

  .sticky-cta__main--tablet {
    display: flex;
  }

  .site-footer {
    padding-bottom: 124px;
  }

  .page-legal .site-footer {
    padding-bottom: 22px;
  }
}

/* =========================================================
   Mobile (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

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

  /* Header — show logo only */
  .site-header__inner {
    padding: 14px 20px;
    justify-content: flex-start;
  }

  .logo {
    width: 112px;
    height: 42.526px;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  /* Section heading */
  .section-head__title {
    font-size: 24px;
  }

  /* Hero */
  .hero {
    padding: 0 0 60px;
  }

  .hero__inner {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .hero__image {
    width: 100%;
    border-radius: 0;
    flex: none;
    aspect-ratio: 375 / 281;
  }

  .hero__content {
    flex: 1;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 20px;
    gap: 20px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .hero__title br {
    display: inline;
  }

  .hero__lead {
    font-size: 18px;
  }

  /* Hero CTA — back to column for mobile */
  .hero__cta {
    flex-direction: column;
    gap: 20px;
  }

  .hero-cta {
    width: 100%;
  }

  .final-cta-card.hero-cta-card--mail {
    flex: none;
    width: 100%;
  }

  .final-cta-card.hero-cta-card--phone {
    padding: 21px 18px;
    gap: 10px;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__title {
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__phone {
    gap: 8px;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__freedial {
    width: 52.44px;
    height: 30px;
  }

  .final-cta-card.hero-cta-card--phone .final-cta-card__number {
    font-size: 30px;
  }

  .final-cta-card.hero-cta-card--mail {
    padding: 21px 18px;
    gap: 10px;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__sub {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__mail {
    font-size: 21px;
  }

  .final-cta-card.hero-cta-card--mail .final-cta-card__mail img {
    width: 26px;
    height: 26px;
  }

  .hero__chips {
    display: none;
  }

  /* Empathy */
  .empathy {
    padding: 40px 0;
  }

  /* Scenes — back to stacked for mobile */
  .scene-card {
    flex-direction: column;
  }

  .scene-card__image {
    flex: none;
    aspect-ratio: 4 / 3;
    align-self: auto;
  }

  .scene-card__image img {
    height: 100%;
  }

  .scene-card__body {
    padding: 40px 20px;
    gap: 24px;
  }

  .scene-card__body h3 {
    font-size: 24px;
  }

  .scene-card__body p {
    font-size: 16px;
  }

  .vision-card__body {
    gap: 16px;
    text-align: left;
  }

  .vision-card__title {
    font-size: 22px;
    line-height: 1.5;
  }

  .vision-card__text {
    font-size: 16px;
  }

  /* Mid CTA */
  .mid-cta {
    padding: 60px 20px;
  }

  .mid-cta__inner {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: stretch;
  }

  .mid-cta__col {
    width: 100%;
  }

  .mid-cta__lead {
    font-size: 16px;
    letter-spacing: 0.125em;
  }

  .mid-cta .final-cta-card--phone {
    padding: 26px 24px;
    gap: 20px;
  }

  .mid-cta .final-cta-card--phone .final-cta-card__title {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.16em;
  }

  .mid-cta .final-cta-card--phone .final-cta-card__phone {
    gap: 8px;
  }

  .mid-cta .final-cta-card--phone .final-cta-card__freedial {
    width: 41.95px;
    height: 24px;
  }

  .mid-cta .final-cta-card--phone .final-cta-card__number {
    font-size: 36px;
    letter-spacing: 0.04em;
  }

  .mid-cta .final-cta-card--phone .final-cta-card__address {
    font-size: 14px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }


  /* Point — back to stacked vertical for mobile */
  .point {
    padding: 60px 0;
  }

  .point-card {
    display: flex;
    flex-direction: column;
    padding: 41px 0;
    gap: 20px;
    align-items: stretch;
  }

  .point-card__image {
    grid-column: auto;
    grid-row: auto;
    padding: 20px;
  }

  .point-card__image img {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .point-card__head {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding-inline: 20px;
    gap: 20px;
  }

  .point-card__title {
    text-align: center;
    font-size: 22px;
  }

  .point-card__text {
    grid-column: auto;
    grid-row: auto;
    padding-inline: 20px;
  }

  /* Gallery — single column */
  .gallery {
    padding: 60px 0;
  }

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

  .gallery-item img {
    aspect-ratio: 1 / 1;
  }

  .gallery-item figcaption {
    font-size: 20px;
  }

  /* Artist — reorder: heading → quote → images → text */
  .artist {
    padding: 60px 0;
  }

  .artist__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .artist__profile {
    display: contents;
  }

  .artist__profile .section-head__sub { order: 1; }
  .artist__name { order: 2; }
  .artist__note { order: 3; }
  .artist__images { order: 4; }
  .artist__text { order: 5; }

  .artist__images {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
  }

  .artist__name {
    font-size: 32px;
    line-height: 1.3;
  }

  /* Flow — 1 column */
  .flow {
    padding: 60px 0;
  }

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

  .flow-item {
    padding: 24px 21px;
  }

  .flow-item__icon {
    max-width: 200px;
  }

  /* Price */
  .price {
    padding: 60px 0;
  }

  .price-row__desc {
    font-size: 16px;
  }

  .price-row__name h3 {
    display: block;
    font-size: 18px;
  }

  .price-row__name-br {
    display: inline;
  }

  .price-row__amount strong {
    font-size: 22px;
  }

  .price__note {
    font-size: 18px;
    line-height: 1.6;
  }

  /* Mobile price details: 納期 + 対応内容 in 2 cols, 画材 full width */
  .price__details {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .price-detail--full {
    grid-column: 1 / -1;
  }

  .price-detail h3 {
    font-size: 20px;
  }

  .price-detail p,
  .price-detail ul {
    font-size: 16px;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq-item summary {
    font-size: 18px;
    padding-right: 32px;
  }

  .faq-item__body {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .faq-item__text {
    font-size: 16px;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 20px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .final-cta__text {
    padding-top: 30px;
  }

  .final-cta__text h2 {
    font-size: 30px;
    line-height: 1.5;
  }

  .final-cta__text p {
    font-size: 16px;
  }

  .final-cta-card--phone {
    padding: 22px 20px;
    gap: 16px;
  }

  .final-cta-card__title {
    font-size: 20px;
    letter-spacing: 0.16em;
  }

  .final-cta-card__freedial {
    width: 41.95px;
    height: 24px;
  }

  .final-cta-card__number {
    font-size: 36px;
    letter-spacing: 0.04em;
  }

  .final-cta-card__address {
    font-size: 14px;
  }

  .final-cta-card__sub {
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .final-cta-card--mail {
    padding: 18px 20px;
  }

  .final-cta-card__mail {
    font-size: 20px;
  }

  .final-cta-card__mail img {
    width: 24px;
    height: 24px;
  }

  /* Footer */
  .site-footer__inner {
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }

  .site-footer__nav {
    flex-direction: row;
    gap: 16px;
  }

  .site-footer__nav-link {
    gap: 4px;
    font-size: 12px;
  }

  .site-footer__nav-link img {
    width: 14px;
    height: 14px;
  }

  .site-footer__link {
    align-self: center;
  }

  .site-footer__copy {
    margin-left: 0;
    font-size: 12px;
  }

  .sticky-cta {
    padding: 16px;
  }

  .sticky-cta__inner {
    width: 100%;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .sticky-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    height: 64px;
    gap: 10px;
    padding: 0 10px;
    border-radius: 0;
    justify-content: center;
    box-shadow: none;
  }

  .sticky-cta__btn:hover {
    transform: none;
    box-shadow: none;
  }

  .sticky-cta__btn--phone .sticky-cta__icon,
  .sticky-cta__btn--mail .sticky-cta__icon {
    background: transparent;
    width: auto;
    height: auto;
  }

  .sticky-cta__icon img {
    width: 30px;
    height: 30px;
  }

  .sticky-cta__body--wide {
    display: none;
  }

  .sticky-cta__body--narrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }

  .site-footer {
    padding-bottom: 118px;
  }

  .page-legal .site-footer {
    padding-bottom: 22px;
  }
}

/* =========================================================
   Small phones (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  .price-detail--full,
  .price-detail {
    grid-column: 1 / -1;
  }

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

  .final-cta-card__number {
    font-size: 30px;
  }

  .final-cta-card__freedial {
    width: 35px;
    height: 20px;
  }

  .final-cta-card__address {
    font-size: 12px;
  }

  .final-cta-card__mail {
    font-size: 17px;
  }
}
