:root {
  --paper: #fbf8f1;
  --paper-deep: #f3ecdf;
  --white: #fffefa;
  --ink: #292621;
  --muted: #716a61;
  --gold: #bd8c2d;
  --gold-deep: #956610;
  --gold-pale: #ead8b2;
  --accent: #e5c5c0;
  --theme-primary: #bd8c2d;
  --theme-deep: #956610;
  --theme-soft: #ead8b2;
  --theme-pale: #fbf4e7;
  --theme-highlight: #bd8c2d;
  --line: rgba(74, 60, 37, 0.16);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --hand: "Klee One", "Yu Kyokasho", "Hiragino Maru Gothic ProN", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-break: strict;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.profile-specialty,
.jp-hand-note,
.final-hand {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

.profile-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(18px);
  transition:
    min-height 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.profile-header.is-scrolled {
  min-height: 66px;
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(63, 46, 18, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.profile-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  margin: 0 clamp(26px, 4vw, 58px);
}

.profile-nav a,
.back-link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.back-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.profile-header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-deep));
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--theme-deep) 24%, transparent);
}

.profile-menu-toggle,
.profile-mobile-menu {
  display: none;
}

.profile-section {
  position: relative;
  padding: clamp(88px, 10vw, 142px) 24px;
}

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

.profile-hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(30px, 6vw, 95px);
  padding: 122px clamp(26px, 7vw, 110px) 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.92), transparent 25%),
    radial-gradient(circle at 86% 33%, color-mix(in srgb, var(--theme-soft) 46%, transparent), transparent 32%),
    linear-gradient(120deg, #fcf9f2, var(--theme-pale));
}

.profile-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.profile-hero::after {
  position: absolute;
  top: 18%;
  right: 2%;
  width: 430px;
  height: 430px;
  border: 1px solid color-mix(in srgb, var(--theme-primary) 72%, var(--gold));
  border-radius: 50%;
  content: "";
  opacity: 0.42;
}

.profile-hero-copy,
.profile-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.profile-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 19px;
  color: var(--theme-deep);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--theme-primary);
  content: "";
}

.persona-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--theme-primary) 36%, transparent);
  border-radius: 100px;
  color: var(--theme-deep);
  background: color-mix(in srgb, var(--theme-pale) 82%, white);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.persona-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-highlight);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme-soft) 42%, transparent);
}

.profile-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.04em;
}

.profile-hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--theme-primary);
  font-family: Georgia, var(--serif);
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-specialty {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.55em;
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--theme-primary);
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.8;
}

.profile-specialty-part {
  white-space: nowrap;
}

.profile-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.jp-hand-note {
  margin: 24px 0 0;
  color: var(--theme-primary);
  font-family: var(--hand);
  font-size: clamp(21px, 2.35vw, 32px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  transform: rotate(-1deg);
}

.profile-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.profile-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-deep));
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--theme-deep) 28%, transparent);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.profile-button:hover {
  box-shadow: 0 19px 42px color-mix(in srgb, var(--theme-deep) 36%, transparent);
  transform: translateY(-3px);
}

.profile-button--ghost {
  border: 1px solid var(--theme-soft);
  color: var(--theme-deep);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}

.profile-hero-visual {
  align-self: stretch;
  min-height: 660px;
}

.profile-photo {
  position: absolute;
  inset: 0 4% 0 8%;
  overflow: hidden;
  border-radius: var(--portrait-radius, 48% 48% 6% 6% / 29% 29% 5% 5%);
  background: var(--theme-pale);
  box-shadow: 0 28px 80px rgba(86, 61, 22, 0.16);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center 22%);
}

.profile-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(63, 43, 12, 0.16));
  content: "";
}

.hand-card {
  position: absolute;
  right: -2%;
  bottom: 8%;
  z-index: 2;
  max-width: 320px;
  padding: 20px 26px;
  border: 1px solid color-mix(in srgb, var(--theme-primary) 34%, transparent);
  background: color-mix(in srgb, var(--theme-pale) 82%, rgba(255, 254, 250, 0.92));
  box-shadow: 0 16px 38px rgba(82, 59, 20, 0.12);
  backdrop-filter: blur(10px);
  transform: rotate(-3deg);
}

.hand-card p {
  margin: 0;
  color: var(--theme-deep);
  font-family: var(--hand);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.profile-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--theme-pale) 62%, transparent), transparent 45%),
    var(--white);
}

.profile-types article {
  padding: 36px 24px;
  text-align: center;
}

.profile-types article + article {
  border-left: 1px solid var(--line);
}

.profile-types small {
  display: block;
  color: var(--theme-primary);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-types strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 500;
}

.profile-heading {
  margin-bottom: 52px;
}

.profile-heading--center {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--theme-deep);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-kicker::before {
  width: 30px;
  height: 1px;
  background: var(--theme-primary);
  content: "";
}

.profile-heading--center .profile-kicker {
  flex-direction: column;
}

.profile-heading h2,
.profile-about h2,
.profile-final h2 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.profile-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.discover {
  background:
    linear-gradient(color-mix(in srgb, var(--theme-primary) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--theme-primary) 8%, transparent) 1px, transparent 1px),
    var(--paper);
  background-size: 60px 60px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.discover-card {
  position: relative;
  min-height: 300px;
  padding: 50px 32px 32px;
  overflow: hidden;
  border: 1px solid var(--theme-soft);
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 18px 50px rgba(84, 62, 23, 0.07);
}

.discover-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-soft) 48%, transparent);
  content: "";
}

.discover-number {
  color: var(--theme-primary);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.discover-card h3 {
  margin: 48px 0 13px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.discover-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-service-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--theme-soft);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(84, 62, 23, 0.07);
}

.profile-service-visual > div {
  min-height: 360px;
  overflow: hidden;
}

.profile-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-service-visual figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 55px);
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--theme-soft) 38%, transparent), transparent 32%),
    var(--white);
}

.profile-service-visual figcaption > span {
  color: var(--theme-primary);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-service-visual figcaption strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: balance;
}

.profile-service-visual figcaption p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-portrait {
  position: relative;
  min-height: 650px;
}

.about-portrait img {
  position: absolute;
  inset: 0 5% 0 0;
  width: 95%;
  height: 100%;
  border-radius: var(--about-radius, 210px 210px 0 0);
  object-fit: cover;
  object-position: var(--about-position, center 22%);
  box-shadow: 0 24px 70px rgba(84, 62, 23, 0.13);
}

.about-hand {
  position: absolute;
  right: -2%;
  bottom: 8%;
  margin: 0;
  color: var(--theme-primary);
  font-family: var(--hand);
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 14px rgba(255, 255, 255, 0.72);
  transform: rotate(-2deg);
}

.profile-about h2 {
  font-size: clamp(29px, 3.6vw, 46px);
}

.about-name {
  margin: 25px 0 17px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 24px;
}

.about-name small {
  display: block;
  margin-bottom: 3px;
  color: var(--theme-primary);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy {
  color: var(--muted);
  font-size: 14px;
}

.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.specialty-list li {
  padding: 7px 13px;
  border: 1px solid var(--theme-soft);
  border-radius: 100px;
  color: var(--theme-deep);
  background: var(--theme-pale);
  font-size: 11px;
}

.profile-menu {
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--theme-soft) 36%, transparent), transparent 28%),
    var(--paper);
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-item:hover {
  border-color: var(--theme-soft);
  box-shadow: 0 15px 38px rgba(82, 58, 18, 0.07);
  transform: translateY(-3px);
}

.menu-item.is-recommend {
  border-color: var(--theme-primary);
  background: linear-gradient(90deg, rgba(255, 254, 250, 1), var(--theme-pale));
}

.menu-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 500;
}

.menu-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.menu-item-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  color: #fff;
  background: var(--theme-primary);
  font-size: 9px;
  font-weight: 700;
}

.menu-price {
  min-width: 140px;
  color: var(--theme-deep);
  font-family: Georgia, var(--serif);
  font-size: clamp(20px, 2.2vw, 29px);
  text-align: right;
  white-space: nowrap;
}

.menu-tax {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.preparing {
  padding: 58px 30px;
  border: 1px solid var(--theme-soft);
  background: var(--white);
  text-align: center;
}

.preparing p:first-child {
  margin: 0;
  color: var(--theme-primary);
  font-family: var(--hand);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
}

.preparing p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.details {
  background: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.detail-card {
  padding: 36px;
  border: 1px solid var(--line);
}

.detail-card h3 {
  margin: 0 0 21px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.detail-card p,
.detail-card li,
.detail-card td,
.detail-card th {
  color: var(--muted);
  font-size: 12px;
}

.detail-card ul {
  margin: 0;
  padding-left: 1.4em;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 9px 3px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.policy-table td {
  text-align: right;
}

.profile-final {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      color-mix(in srgb, var(--theme-deep) 74%, transparent),
      color-mix(in srgb, var(--theme-deep) 91%, #1f1d1a)
    ),
    var(--final-image) center var(--final-position, 25%) / cover;
  text-align: center;
}

.profile-final::before,
.profile-final::after {
  position: absolute;
  border: 1px solid rgba(234, 216, 178, 0.28);
  border-radius: 50%;
  content: "";
}

.profile-final::before {
  top: -170px;
  left: -100px;
  width: 430px;
  height: 430px;
}

.profile-final::after {
  right: -120px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.profile-final .profile-inner {
  position: relative;
  z-index: 1;
}

.profile-final .profile-kicker {
  flex-direction: column;
  color: color-mix(in srgb, var(--theme-soft) 82%, white);
}

.profile-final p {
  margin: 19px 0 28px;
  color: rgba(255, 255, 255, 0.76);
}

.profile-final small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.final-hand {
  margin: 30px 0 0 !important;
  color: color-mix(in srgb, var(--theme-soft) 76%, white) !important;
  font-family: var(--hand);
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  transform: rotate(-1deg);
}

.profile-footer {
  padding: 35px 24px 28px;
  color: rgba(255, 255, 255, 0.68);
  background: color-mix(in srgb, var(--theme-deep) 46%, #171615);
}

.footer-inner {
  display: flex;
  width: min(1120px, 100%);
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.profile-footer .brand {
  color: #fff;
}

.profile-footer .brand-mark {
  color: var(--gold-pale);
}

.profile-footer p {
  margin: 0 0 0 auto;
  font-family: Georgia, serif;
  font-size: 10px;
}

.mobile-booking {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 900px) {
  body {
    padding-bottom: 72px;
  }

  .profile-header {
    min-height: 66px;
    padding: 8px 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .profile-nav,
  .profile-header-cta,
  .back-link {
    display: none;
  }

  .profile-menu-toggle {
    position: absolute;
    top: 11px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .profile-menu-toggle span {
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

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

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

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

  .profile-mobile-menu {
    position: fixed;
    inset: 66px 0 0;
    z-index: 999;
    display: block;
    padding: 34px 24px;
    background: rgba(251, 248, 241, 0.98);
    backdrop-filter: blur(18px);
  }

  .profile-mobile-menu[hidden] {
    display: none;
  }

  .profile-mobile-menu nav {
    display: grid;
  }

  .profile-mobile-menu a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 16px;
    text-decoration: none;
  }

  .profile-section {
    padding: 80px 20px;
  }

  .profile-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 42px;
    padding: 100px 20px 62px;
  }

  .profile-hero-copy {
    width: 100%;
  }

  .profile-hero h1 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .profile-specialty {
    font-size: 16px;
  }

  .profile-lead {
    font-size: 13px;
  }

  .jp-hand-note {
    font-size: 23px;
  }

  .profile-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .profile-button {
    width: 100%;
  }

  .profile-hero-visual {
    width: 100%;
    min-height: 510px;
  }

  .profile-photo {
    inset: 0 0 0 7%;
  }

  .hand-card {
    right: -2%;
    bottom: 5%;
    max-width: 230px;
    padding: 16px 20px;
  }

  .hand-card p {
    font-size: 20px;
  }

  .profile-types article {
    padding: 25px 8px;
  }

  .profile-types strong {
    font-size: 12px;
    line-height: 1.65;
  }

  .profile-heading h2,
  .profile-about h2,
  .profile-final h2 {
    font-size: 30px;
  }

  .profile-heading p {
    font-size: 13px;
  }

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

  .discover-card {
    min-height: 240px;
  }

  .discover-card h3 {
    margin-top: 30px;
  }

  .profile-service-visual {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .profile-service-visual > div {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .profile-service-visual img {
    object-position: 58% center;
  }

  .profile-service-visual figcaption {
    padding: 28px 23px 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-portrait {
    min-height: 530px;
  }

  .about-copy {
    font-size: 13px;
  }

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

  .menu-price {
    text-align: left;
  }

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

  .detail-card {
    padding: 27px 23px;
  }

  .profile-final {
    padding-bottom: 92px;
  }

  .profile-final p {
    font-size: 13px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-footer p {
    margin-left: 0;
  }

  .mobile-booking {
    position: fixed;
    right: 10px;
    bottom: 9px;
    left: 10px;
    z-index: 990;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 100px;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-deep));
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(74, 48, 9, 0.34);
  }
}

body[data-theme="sachi"] {
  --portrait-radius: 48% 48% 7% 7% / 28% 28% 6% 6%;
  --about-radius: 210px 210px 18px 18px;
}

body[data-theme="akane"] {
  --portrait-radius: 42px 240px 42px 180px;
  --about-radius: 42px 210px 42px 150px;
}

body[data-theme="akane"] .profile-hero::after {
  border-style: dashed;
  border-width: 2px;
  transform: rotate(9deg);
}

body[data-theme="akane"] .hand-card {
  border-radius: 24px 4px 24px 4px;
  transform: rotate(2deg);
}

body[data-theme="yukako"] {
  --portrait-radius: 50% 50% 34px 34px / 32% 32% 5% 5%;
  --about-radius: 50% 50% 24px 24px / 26% 26% 4% 4%;
}

body[data-theme="yukako"] .profile-hero::after {
  border-width: 2px;
  box-shadow:
    28px 22px 0 -26px var(--theme-highlight),
    52px 56px 0 -48px var(--theme-primary);
}

body[data-theme="yukako"] .hand-card {
  border-radius: 50% 50% 12px 12px / 24% 24% 8px 8px;
}

body[data-theme="momoka"] {
  --portrait-radius: 210px 42px 210px 42px;
  --about-radius: 180px 34px 180px 34px;
}

body[data-theme="momoka"] .profile-hero::after {
  border-color: var(--theme-highlight);
  border-radius: 58% 42% 62% 38%;
  transform: rotate(-12deg);
}

body[data-theme="momoka"] .hand-card {
  border-radius: 28px;
  transform: rotate(-1deg);
}

@media (max-width: 430px) {
  .brand-copy strong {
    display: none;
  }

  .profile-hero h1 {
    font-size: 39px;
  }

  .profile-hero-visual {
    min-height: 455px;
  }

  .profile-types {
    grid-template-columns: 1fr;
  }

  .profile-types article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
