/* v21 styles, consolidated by selector and breakpoint. Tokens are owned here. */
*,  ::before,  ::after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --black: #0d0d0d;
  --off-white: #f7f5f2;
  --warm-white: #faf9f7;
  --mid-gray: #686868;
  --light-gray: #e8e6e3;
  --accent: #c8b89a;
  --text: #0f0f0f;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
}
nav::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-bottom: 1px solid rgba(200, 184, 154, 0.15);
}
.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--black);
}
.nav-logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--mid-gray);
  text-transform: uppercase;
}
.nav-location { font-size: 12px; line-height: 1.8; letter-spacing: 0; color: var(--text); }
.footer-location { margin-top: 20px; font-size: 16px; line-height: 1.8; color: var(--off-white); }
@media (max-width: 768px) { .site-nav .nav-logo-en { display: none; } }
@media (max-width: 380px) {
  nav.site-nav { padding-inline: 12px; gap: 6px; }
  .site-nav .nav-reserve-header { padding-inline: 8px; }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-reserve {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--off-white);
  background: var(--black);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-reserve:hover {
  background: rgb(51, 51, 51);
}
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 72px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "石";
  font-family: "Noto Serif JP", serif;
  font-size: 500px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.024);
  position: absolute;
  top: -60px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 200;
  line-height: 1.6;
  color: var(--off-white);
  margin-top: 24px;
  margin-bottom: 28px;
  letter-spacing: 4px;
  animation: 0.8s ease 0.4s 1 normal both running fadeUp;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--off-white);
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 184, 154, 0.35);
  transition: 0.3s;
  width: fit-content;
  animation: 0.8s ease 0.8s 1 normal both running fadeUp;
}
.hero-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 24px;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}
.hero-caption {
  position: absolute;
  bottom: 40px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hero-caption-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: calc(50% - 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: 2.4s ease 0s infinite normal none running scrollAnim;
}
.scroll-text {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 4px;
  color: rgb(85, 85, 85);
  writing-mode: vertical-rl;
  margin-top: 8px;
}
.philosophy {
  padding: 160px 0px;
  background: var(--warm-white);
}
.philosophy-inner {
  max-width: 920px;
  margin: 0px auto;
  padding: 0px 64px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
}
.section-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
}
.section-label-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: rgb(85, 85, 85);
  writing-mode: vertical-rl;
}
.section-label-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(154, 154, 154, 0.4);
  text-transform: uppercase;
  margin-top: 8px;
}
.philosophy-content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 200;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--black);
  letter-spacing: 3px;
}
.philosophy-content h2 em {
  font-style: normal;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.philosophy-content p {
  font-size: 14px;
  font-weight: 200;
  line-height: 2.6;
  color: rgb(56, 56, 56);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.specialty {
  background: var(--black);
  padding: 120px 64px;
}
.specialty-grid {
  max-width: 1100px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.specialty-item {
  padding: 44px 36px;
  background: var(--black);
  transition: background 0.4s;
  cursor: default;
}
.specialty-item:hover {
  background: rgb(20, 20, 20);
}
.specialty-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: block;
}
.specialty-name {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.specialty-name-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(247, 245, 242, 0.5);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.specialty-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  color: rgba(247, 245, 242, 0.68);
  line-height: 2.3;
  letter-spacing: 0.5px;
}
.gallery-section {
  padding: 120px 64px;
  background: var(--off-white);
}
.gallery-header {
  max-width: 1100px;
  margin: 0px auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-header-left h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 200;
  color: var(--black);
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.gallery-header-left p {
  font-size: 14px;
  font-weight: 300;
  color: rgb(102, 102, 102);
  letter-spacing: 2px;
}
.gallery-more {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: var(--mid-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 4px;
  transition: 0.3s;
}
.gallery-more:hover {
  color: var(--black);
  border-color: var(--black);
}
.gallery-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.45) 100%), linear-gradient(135deg, rgb(208, 204, 198) 0%, rgb(181, 176, 170) 100%);
}
.gallery-fill.photo-fill {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 24px;
  height: auto !important;
  padding: 0px !important;
  background: none !important;
}
.gallery-fill.photo-fill img {
  width: 100%;
  height: auto;
  display: block;
}
.salon-section {
  padding: 120px 64px;
  background: var(--warm-white);
}
.salon-inner {
  max-width: 1100px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.salon-image-wrap {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgb(216, 212, 206) 0%, rgb(191, 186, 180) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.salon-content {
  padding: 32px 0px;
}
.salon-image-wrap.profile-photo {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 28px;
  background: rgb(232, 227, 220);
}
.salon-image-wrap.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}
.salon-image-wrap.salon-photo {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 28px;
  background: rgb(232, 227, 220);
}
.salon-image-wrap.salon-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.section-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: var(--accent);
}
.salon-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}
.salon-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: var(--mid-gray);
  margin-bottom: 32px;
}
.salon-content p {
  font-size: 14px;
  font-weight: 200;
  line-height: 2.6;
  color: rgb(66, 66, 66);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.salon-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.detail-row {
  display: flex;
  gap: 28px;
  padding: 14px 0px;
  border-bottom: 1px solid var(--light-gray);
  align-items: baseline;
}
.detail-key {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 2px;
  color: var(--accent);
  min-width: 64px;
}
.detail-val {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 1px;
}
.blog-section {
  padding: 120px 64px;
  background: var(--black);
}
.blog-header {
  max-width: 1100px;
  margin: 0px auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.blog-header h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 200;
  color: var(--off-white);
  letter-spacing: 4px;
}
.blog-grid {
  max-width: 1100px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}
.blog-card {
  background: var(--black);
  padding: 40px 36px;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  background: rgb(20, 20, 20);
}
.blog-cat {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: rgb(212, 196, 168);
  margin-bottom: 16px;
  display: block;
}
.blog-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 300;
  color: rgb(242, 239, 234);
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
footer {
  background: rgb(8, 8, 8);
  padding: 80px 64px 48px;
}
.footer-top {
  max-width: 1100px;
  margin: 0px auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.footer-brand-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(247, 245, 242, 0.25);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.footer-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 2.4;
  color: rgba(247, 245, 242, 0.58);
  letter-spacing: 1px;
}
.footer-col-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 2px;
  color: rgba(247, 245, 242, 0.62);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--off-white);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0px auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 2px;
  color: rgba(247, 245, 242, 0.18);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0px;
  background: rgba(247, 245, 242, 0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu a {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 4px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
}
.footer-cta {
  background: var(--black);
  color: var(--off-white);
}
.hero-caption-panel {
  left: 36px;
  right: 36px;
  bottom: 36px;
  align-items: flex-start;
  background: rgba(13, 13, 13, 0.22);
  padding: 12px 14px;
  backdrop-filter: blur(4px);
  max-width: 82%;
}
.hero-caption-panel .hero-caption-ja {
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: rgba(0, 0, 0, 0.22) 0px 1px 10px;
}
.voice-grid {
  grid-template-columns: repeat(3, 1fr);
}
.hero-title-layout {
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-main-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.55;
}
.hero-main-copy > span,  .hero-main-copy > em {
  display: block;
}
.hero-age-group {
  display: block;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
  color: var(--off-white);
}
.nav-reserve-header {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 768px) {
nav {
  padding: 15px 20px;
  min-height: 72px;
  gap: 10px;
}
.nav-links {
  display: none;
}
.hamburger {
  display: flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 9px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-reserve {
  font-size: 14px;
  padding: 9px 16px;
}
.hero {
  grid-template-columns: 1fr;
  height: auto;
  grid-template-rows: auto 40vh;
  min-height: 0px;
}
.hero-left {
  padding: 104px 24px 42px;
  min-height: 470px;
  justify-content: center;
}
.hero-left::before {
  font-size: 280px;
}
.hero-title {
  font-size: clamp(23px, 7.2vw, 30px);
  letter-spacing: 1.5px;
  line-height: 1.65;
}
.scroll-hint {
  display: none;
}
.hero-caption {
  bottom: 20px;
  right: 20px;
}
.philosophy {
  padding: 80px 0px;
}
.philosophy-inner {
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0px 32px;
}
.section-label-wrap {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.section-label-ja {
  writing-mode: horizontal-tb;
  font-size: 14px;
}
.philosophy-content h2 {
  font-size: 26px;
}
.specialty {
  padding: 80px 24px;
}
.specialty-grid {
  grid-template-columns: 1fr;
}
.specialty-item {
  padding: 32px 24px;
}
.gallery-section {
  padding: 80px 24px;
}
.gallery-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.gallery-header-left h2 {
  font-size: 26px;
}
.salon-section {
  padding: 80px 24px;
}
.salon-inner {
  grid-template-columns: 1fr;
  gap: 40px;
}
.salon-image-wrap {
  aspect-ratio: 3 / 2;
}
.salon-content h2 {
  font-size: 44px;
}
.blog-section {
  padding: 80px 24px;
}
.blog-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.blog-header h2 {
  font-size: 26px;
}
.blog-grid {
  grid-template-columns: 1fr;
}
.blog-card {
  padding: 32px 24px;
}
footer {
  padding: 60px 24px 40px;
}
.footer-top {
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-bottom {
  flex-direction: column;
  gap: 8px;
}
.hero-caption-panel {
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
}
.hero-caption-panel .hero-caption-ja {
  font-size: 10px;
  line-height: 1.65;
}
.voice-grid {
  grid-template-columns: 1fr;
}
.nav-logo-ja {
  font-size: 13px;
  letter-spacing: 3px;
}
.nav-logo-en {
  font-size: 12px;
  letter-spacing: 2.5px;
}
.hero-title-layout {
  font-size: clamp(21px, 5.9vw, 25px);
  line-height: 1.45;
  letter-spacing: 0.35px;
  width: 100%;
}
.hero-main-copy {
  gap: 7px;
  line-height: 1.48;
  width: 100%;
}
.hero-main-copy > span:last-child {
  font-size: 0.94em;
  white-space: nowrap;
}
.hero-right {
  min-height: 40vh;
}
.hero-age-group {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.1px;
  margin-bottom: 30px;
}
.nav-logo-wrap {
  margin-right: auto;
}
.nav-reserve-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 10px 14px;
  min-height: 42px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
}
}
@media (max-width: 390px) {
.nav-logo-ja {
  font-size: 12px;
  letter-spacing: 2px;
}
.nav-logo-en {
  font-size: 10px;
  letter-spacing: 1.8px;
}
.nav-reserve-header {
  font-size: 11px;
  padding: 9px 11px;
}
.hamburger {
  width: 40px;
  height: 40px;
  padding: 8px;
}
.hamburger span {
  width: 21px;
}
}
@media (max-width: 380px) {
.hero-left {
  padding-left: 20px;
  padding-right: 20px;
  min-height: 450px;
}
.hero-title-layout {
  font-size: 20px;
}
.hero-main-copy > span:last-child {
  font-size: 0.9em;
}
}
@keyframes fadeUp {
0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0px); }
}
.concerns-intro { max-width:1100px;display:block; }
.concerns-label { margin-bottom:28px; }
.concerns-label-ja { writing-mode:horizontal-tb; }
.concerns-section { padding-top:40px; }
.case-photo-space { margin:22px 0; }
.case-link { color:var(--accent);display:inline-block;margin-top:18px; }
.light-grid { background:var(--light-gray); }
.light-card { background:var(--off-white); }
.specialty-name.light-title { color:var(--black); }
.specialty-desc.light-copy { color:#444; }
.salon-content .profile-title { font-family:'Noto Serif JP',serif;font-size:38px;letter-spacing:4px; }
.salon-link { color:var(--black);border-color:var(--light-gray);margin-top:22px; }
.reservation-section { background:var(--black);color:var(--off-white);padding:110px 24px;text-align:center; }
.reservation-label { font-family:'Cormorant Garamond',serif;letter-spacing:4px;color:var(--accent);margin-bottom:18px; }
.reservation-title { font-size:clamp(28px,4vw,44px);font-weight:200;letter-spacing:3px;margin-bottom:18px; }
.reservation-copy { color:rgba(247,245,242,.65);margin-bottom:32px; }
.reservation-button { display:inline-block;padding:16px 34px;background:var(--accent);color:var(--black); }

/* Readability and interaction contract: deliberate corrections to the v21 mockup. */
:root {
  --accent-readable: #796747;
  --muted-on-dark: #b7b5b2;
  --focus: #92784c;
  --scrollbar-thumb: #858078;
  --scrollbar-track: #f7f5f2;
  --scrollbar-hover: #686868;
  --scrollbar-active: #0d0d0d;
  --header-offset: 110px;
}
html { scrollbar-gutter: stable; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track); scrollbar-width: auto; scroll-padding-top: var(--header-offset); }
* { scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track); scrollbar-width: auto; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border: 3px solid var(--scrollbar-track); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-hover); }
::-webkit-scrollbar-thumb:active { background: var(--scrollbar-active); }
body { overflow-x: visible; line-break: strict; overflow-wrap: anywhere; }
button { font: inherit; color: inherit; border: 0; background: none; text-align: inherit; }
a, button:not(:disabled) { cursor: pointer; }
a:active, button:not(:disabled):active { filter: brightness(.85); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 5px; }
button:disabled { cursor: not-allowed; }
button:disabled:hover { color: inherit; }
button.gallery-more:disabled:hover { color: var(--accent-readable); border-color: var(--light-gray); }
button.case-link:disabled:hover { color: var(--accent); }
button.reservation-button:disabled:hover { background: var(--accent); color: var(--black); }
button.hero-cta:disabled:hover { gap: 16px; color: var(--black); border-color: var(--light-gray); }
.nav-logo-wrap, .nav-reserve-header, .hamburger { flex-shrink: 0; }
.nav-links a:hover, .mobile-menu a:hover { color: var(--accent-readable); }
.hero-left, .hero-right, .specialty-item, .salon-content, .salon-image-wrap { min-width: 0; }
.hero { min-height: 700px; }
.hero-main-copy { max-width: 100%; }
/* Retain the supplied desktop type scale; allow the final line to wrap naturally. */
.hero-title { animation: none; }
.scroll-line { animation: none; }
.scroll-text, .specialty-name-sub, .footer-brand-en, .footer-bottom { color: var(--muted-on-dark); }
.section-label-en, .eyebrow-text, .detail-key, .light-card .specialty-num { color: var(--accent-readable); }
.philosophy-content h2 em { color: var(--accent-readable); }
.philosophy-content p, .specialty-desc, .salon-content p { font-size: 16px; font-weight: 300; }
.hero-caption-panel { background: rgba(13,13,13,.68); }
.hero-caption-panel .hero-caption-ja { color: var(--off-white); font-weight: 300; }
.blog-card { cursor: default; }
.blog-card:hover { background: var(--black); }
.specialty-item:hover { background: var(--black); }
.light-card:hover { background: var(--off-white); }
.footer-col ul button { color: var(--muted-on-dark); font-size: 14px; letter-spacing: 2px; font-weight: 300; }
.gallery-more { display: inline-block; min-height: 44px; padding-block: 10px; }
.case-link { text-align: left; }
.hero-cta { min-height: 44px; }
.skip-link { position: fixed; top: 12px; left: 16px; padding: 12px 18px; z-index: 300; color: var(--off-white); background: var(--black); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.mobile-menu { border: 0; width: 100%; max-width: none; height: 100dvh; max-height: 100dvh; margin: 0; padding: 88px 24px 32px; overflow: auto; }
.mobile-menu[open] { display: flex; }
.mobile-menu::backdrop { background: rgba(13,13,13,.25); }
.menu-close { position: absolute; top: 16px; right: 24px; min-height: 44px; padding: 8px; font-size: 16px; }
.menu-close:hover { color: var(--accent-readable); }
.mobile-menu a { min-height: 44px; display: flex; align-items: center; }
.pending-note { font-size: 14px; line-height: 1.8; color: var(--muted-on-dark); margin-top: 18px; }
.voice-notice { color: var(--muted-on-dark); font-size: 14px; max-width: 420px; line-height: 1.9; }
.styles-main { min-height: 70vh; padding: 180px 24px 100px; }
.styles-content { max-width: 1100px; margin-inline: auto; }
.styles-content h1 { font-size: 38px; font-weight: 300; margin-bottom: 36px; }
.styles-content p { font-size: 16px; line-height: 2.2; }
.styles-content .gallery-more { margin-top: 32px; }
.styles-eyebrow { color: var(--accent-readable); font-family: 'Cormorant Garamond', serif; letter-spacing: 3px; }
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-left { padding-inline: 40px; }
  .hero-title { font-size: 36px; letter-spacing: 2px; }
}
@media (max-width: 1100px) {
  :root { --header-offset: 88px; }
  .site-nav { gap: 10px; padding: 15px 20px; min-height: 72px; }
  .nav-logo-wrap { margin-right: auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex: 0 0 44px; width: 44px; height: 44px; align-items: center; justify-content: center; }
  .nav-reserve-header { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; }
}
@media (max-width: 768px) {
  .hero { min-height: 0; }
  .hero-caption-panel .hero-caption-ja { font-size: 12px; line-height: 1.7; }
  .hero-main-copy > span:last-child { white-space: normal; }
  .nav-logo-en { font-size: 12px; letter-spacing: 1.8px; }
  .nav-reserve-header { font-size: 13px; padding-inline: 12px; }
  .nav-logo-ja { font-size: 13px; }
  .salon-content .profile-title { line-height: 1.4; }
  .reservation-title { letter-spacing: 1px; }
  .footer-bottom { letter-spacing: 1px; line-height: 2; }
}
@media (max-width: 380px) {
  .hero-title-layout { font-size: 21px; }
  .hero-main-copy > span:last-child { font-size: .94em; }
}
@media (max-height: 650px) {
  .mobile-menu[open] { justify-content: flex-start; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (forced-colors: active) {
  * { scrollbar-color: auto; }
  :focus-visible { outline-color: Highlight; }
  .nav-reserve, .hamburger { border: 1px solid ButtonText; }
  .hero-caption-panel { background: Canvas; }
  .hero-caption-panel .hero-caption-ja { color: CanvasText; }
}
/* Keep whole age labels together and let narrow review columns wrap safely. */
.hero-age-group { overflow-wrap: normal; }
.age-unit { white-space: nowrap; }
.blog-card { min-width: 0; }
.blog-title { overflow-wrap: anywhere; line-break: auto; }
@media (max-width: 768px) { html { scrollbar-gutter: auto; } }
/* Let large desktop copy grow beyond short viewports without hiding its first lines. */
@media (min-width: 769px) {
  .hero { height: auto; min-height: max(700px, 100vh); }
  .hero-right .hero-photo { position: absolute; inset: 0; }
}
/* The confirmed Ichinomiya menu shares the site's type, color and navigation. */
.menu-summary-price { font-size: 25px; line-height: 1.6; margin-top: 24px; font-variant-numeric: tabular-nums; }
.menu-summary-price span { font-size: 14px; white-space: nowrap; }
.menu-summary-time { font-size: 14px; line-height: 1.8; color: var(--mid-gray); margin-top: 4px; }
.price-main { padding: 160px 48px 100px; }
.price-container { max-width: 1100px; margin-inline: auto; }
.price-heading h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 300; letter-spacing: 2px; margin-block: 18px; }
.price-heading > p { font-size: 16px; line-height: 1.8; }
.price-heading .styles-eyebrow { font-size: 18px; }
.price-tax-note { margin-top: 28px; color: var(--mid-gray); }
.price-index { display: flex; flex-wrap: wrap; gap: 12px 32px; padding-block: 26px; margin-top: 26px; border-block: 1px solid var(--light-gray); }
.price-index a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; font-size: 16px; color: var(--text); }
.price-index a:hover { text-decoration: underline; text-underline-offset: 6px; color: var(--accent-readable); }
.price-section { margin-top: 64px; scroll-margin-top: var(--header-offset); }
.price-section h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.6; font-weight: 300; }
.price-group-note { margin-top: 12px; font-size: 16px; line-height: 1.8; color: var(--mid-gray); }
.price-list { list-style: none; margin-top: 24px; border-top: 1px solid var(--accent); }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 32px; align-items: center; padding-block: 30px; border-bottom: 1px solid var(--light-gray); }
.price-description h3 { font-size: 20px; font-weight: 300; line-height: 1.8; overflow-wrap: anywhere; }
.price-description > p { font-size: 16px; line-height: 1.9; margin-top: 10px; color: var(--mid-gray); }
.price-description .price-option-label { font-size: 14px; color: var(--accent-readable); margin: 0 0 8px; }
.price-option { padding-inline: 24px; background: var(--off-white); }
.price-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-facts dt { font-size: 14px; color: var(--mid-gray); line-height: 1.8; }
.price-facts dd { margin-top: 8px; font-size: 20px; line-height: 1.6; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-back { margin-top: 56px; }
@media (max-width: 900px) {
 .price-row { grid-template-columns: minmax(0, 1fr); gap: 20px; }
 .price-facts { max-width: 350px; }
}
@media (max-width: 600px) {
 .price-main { padding: 120px 24px 64px; }
 .price-index { gap: 8px 24px; }
 .price-section { margin-top: 44px; }
 .price-description h3 { font-size: 19px; }
 .price-option { padding-inline: 16px; }
 .price-facts { gap: 16px; }
 .price-facts dd { font-size: 20px; }
}

/* Styles use the existing palette, typography and 1100px document width. */
.style-disclosure { position: relative; }
.style-trigger { border: 0; background: transparent; color: var(--black); font: inherit; font-size: 14px; letter-spacing: 2px; min-height: 44px; padding: 0; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.style-trigger:hover, .style-trigger[aria-expanded="true"] { color: var(--accent-readable); }
.style-trigger[aria-expanded="true"] > span { transform: rotate(180deg); }
.nav-links { align-items: center; }
.style-submenu { list-style: none; position: absolute; inset-block-start: 100%; inset-inline-start: 0; width: 230px; max-width: calc(100vw - 48px); max-height: min(360px,60dvh); overflow: auto; padding: 12px; background: var(--warm-white); border: 1px solid var(--light-gray); box-shadow: 0 12px 24px rgb(13 13 13 / 8%); }
.style-submenu a { display: flex; align-items: center; min-height: 44px; padding: 8px 12px; }
.style-submenu a:hover { background: var(--off-white); }
.style-submenu[hidden], .case-angle-tabs[hidden], .case-angle-panel[hidden] { display: none; }
.mobile-menu .style-disclosure { width: min(100%,320px); text-align: center; }
.mobile-menu .style-trigger { font-size: 20px; font-weight: 200; letter-spacing: 4px; }
.mobile-menu .style-submenu { position: static; width: 100%; max-width: 100%; margin-top: 8px; box-shadow: none; max-height: none; }
.mobile-menu .style-submenu a { font-size: 16px; letter-spacing: 1px; justify-content: center; }
.case-age-nav { position: static; inset: auto; z-index: auto; display: flex; gap: 24px; justify-content: flex-start; padding: 18px 24px; background: var(--off-white); border-block: 1px solid var(--light-gray); margin-block: 24px 40px; }
.case-age-nav::before { content: none; }
.case-age-nav ul { list-style: none; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; flex: 1; max-width: 540px; }
.case-age-label { font-size: 16px; white-space: nowrap; }
.case-age-nav a { display: flex; min-height: 48px; justify-content: center; align-items: center; color: var(--text); text-decoration: none; border-bottom: 2px solid transparent; }
.case-age-nav a:hover { border-color: var(--accent-readable); }
.case-age-nav a[aria-current] { background: var(--black); color: var(--off-white); border-color: var(--black); }
.case-home-links { max-width: 1100px; margin: 48px auto; padding-inline: 24px; }
.case-home-links h2 { font-size: 26px; font-weight: 300; }
.case-heading { margin-bottom: 48px; }
.case-heading h1 { max-width: 950px; font-size: clamp(28px,4vw,44px); line-height: 1.65; overflow-wrap: anywhere; margin-bottom: 20px; }
.case-kicker, .case-card-age { color: var(--accent-readable); }
.case-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 48px 32px; }
.case-card { min-width: 0; border-bottom: 1px solid var(--light-gray); padding-bottom: 28px; }
.case-card > a { display: block; color: inherit; text-decoration: none; }
.case-card h2 { font-size: 24px; font-weight: 300; line-height: 1.7; overflow-wrap: anywhere; }
.case-card > a:hover h2 { text-decoration: underline; text-underline-offset: 6px; }
.case-card .gallery-more { margin-top: 16px; }
.case-card .case-card-age { margin-top: 20px; }
.case-comparison { border: 1px solid var(--light-gray); padding: 32px; background: var(--warm-white); }
.case-comparison-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.case-comparison h2, .case-texts h2, .case-cta h2, .case-empty h2 { font-size: clamp(22px,3vw,28px); font-weight: 300; }
.case-angle-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.case-angle-tabs button { background: transparent; color: var(--text); border: 1px solid var(--accent); font: inherit; font-size: 16px; min-height: 48px; padding: 8px 18px; cursor: pointer; }
.case-angle-tabs button:hover { border-color: var(--black); }
.case-angle-tabs button[aria-selected="true"] { color: var(--off-white); background: var(--black); border-color: var(--black); }
.case-angle-tabs button:active, .style-trigger:active { opacity: .75; }
.case-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.case-pair figure { min-width: 0; margin: 0; }
.case-photo { position: relative; aspect-ratio: 3/4; background: var(--light-gray); display: grid; place-items: center; overflow: hidden; }
.case-photo img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }
.case-photo-label { position: absolute; z-index: 1; top: 12px; left: 12px; padding: 5px 10px; background: var(--warm-white); color: var(--text); font-size: 14px; }
.case-photo-empty { padding: 18px; font-size: 14px; text-align: center; }
.case-pair figcaption { text-align: center; margin-top: 12px; color: var(--mid-gray); font-size: 14px; }
.case-tabs-ready .case-nojs-heading { display: none; }
.case-texts { padding-block: 16px; }
.case-texts section { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 24px; padding-block: 40px; border-bottom: 1px solid var(--light-gray); }
.case-texts p { overflow-wrap: anywhere; }
.case-cta { text-align: center; padding-block: 48px; }
.case-cta h2 { margin-bottom: 24px; }
.case-cta .reservation-button { max-width: 100%; font: inherit; line-height: 1.8; border: 0; text-decoration: none; }
.case-cta p { margin-top: 16px; color: var(--mid-gray); }
.case-empty { padding: 40px 0 64px; min-height: 260px; }
.case-pagination { display: flex; justify-content: center; gap: 12px; margin-block: 40px; flex-wrap: wrap; }
.case-pagination .page-numbers { min-width: 44px; min-height: 44px; padding: 10px; text-align: center; color: var(--text); }
.case-pagination .current { background: var(--black); color: var(--off-white); }
@media (max-width: 768px) {
  .case-main { padding: 130px 20px 64px; }
  .case-age-nav { flex-direction: column; align-items: stretch; gap: 8px; padding: 14px 8px; }
  .case-age-nav ul { width: 100%; max-width: none; gap: 2px; }
  .case-age-label { padding-inline: 8px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-pair { gap: 12px; }
  .case-comparison { padding: 16px 12px; }
  .case-comparison-heading { gap: 16px; }
  .case-angle-tabs { width: 100%; gap: 6px; }
  .case-angle-tabs button { flex: 1; padding-inline: 8px; }
  .case-photo-label { top: 6px; left: 6px; padding: 3px 6px; font-size: 12px; }
  .case-texts section { grid-template-columns: 1fr; gap: 16px; padding-block: 28px; }
  .case-heading { margin-bottom: 28px; }
}
/* Concern filters share the age navigation URL state and existing tokens. */
.case-age-nav ul.case-all-ages { grid-template-columns: repeat(6,minmax(0,1fr)); }
.case-concern-nav { position: static; inset: auto; z-index: auto; display: block; padding: 20px; margin-block: -16px 40px; background: var(--off-white); border-block: 1px solid var(--light-gray); }
.case-concern-nav::before { content: none; }
.case-concern-nav ul, .case-concern-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 12px; }
.case-concern-nav ul { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.case-concern-nav li:first-child { grid-column: 1 / -1; }
.case-concern-label { display: block; font-size: 16px; line-height: 1.8; }
.case-concern-nav li { min-width: 0; }
.case-concern-nav li a { display: flex; align-items: center; height: 100%; overflow-wrap: anywhere; }
.case-concern-nav a, .case-concern-tags a { display: block; padding: 12px 16px; min-height: 44px; border: 1px solid var(--light-gray); color: var(--text); font-size: 14px; line-height: 1.7; text-decoration: none; }
.case-concern-nav a:hover, .case-concern-tags a:hover { border-color: var(--accent-readable); }
.case-concern-nav a[aria-current] { background: var(--black); color: var(--off-white); border-color: var(--black); }
.case-concern-tags { margin-block: 0 32px; }
@media (max-width: 768px) { .case-concern-nav { padding: 14px 8px; } .case-concern-nav ul { grid-template-columns: repeat(2,minmax(0,1fr)); } .case-concern-nav li a { padding: 12px 10px; } }
@media (max-width: 480px) { .case-age-nav ul.case-all-ages { grid-template-columns: repeat(3,minmax(0,1fr)); } }

/* Show the complete hairstyle; supporting copy has its own space below the photo. */
.hero-left { justify-content: center; }
.hero-title-layout { font-size: clamp(36px, 3.8vw, 54px); letter-spacing: 1px; }
.hero-age-group { font-size: inherit; line-height: 1.55; margin-bottom: 32px; font-weight: 300; }
.hero-age-row, .hero-age-audience { display: block; }
.hero-age-divider { display: none; }
.hero-age-audience { font-size: inherit; margin-top: 12px; }
.hero-main-copy > span:last-child { font-size: inherit; text-wrap: balance; }
.hero-right { display: flex; flex-direction: column; justify-content: center; background: var(--off-white); }
.hero-right .hero-photo { position: static; inset: auto; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; flex: 0 0 auto; }
.hero-caption.hero-caption-panel { position: static; inset: auto; max-width: none; width: 100%; padding: 24px 32px; gap: 4px; background: var(--off-white); backdrop-filter: none; }
.hero-caption-panel .hero-caption-ja { color: var(--text); font-size: 15px; line-height: 1.9; letter-spacing: .4px; text-shadow: none; }
@media (max-width: 768px) {
  .hero { grid-template-rows: auto auto; }
  .hero-left { min-height: 0; padding: 116px 24px 40px; justify-content: flex-start; }
  .hero-title-layout { font-size: clamp(28px, 7.4vw, 36px); letter-spacing: .25px; }
  .hero-age-group { font-size: inherit; line-height: 1.6; margin-bottom: 28px; }
  .hero-age-audience { font-size: inherit; margin-top: 8px; }
  .hero-main-copy { line-height: 1.65; gap: 4px; }
  .hero-main-copy > span:last-child { font-size: inherit; text-wrap: balance; }
  .hero-right { min-height: 0; }
  .hero-caption.hero-caption-panel { padding: 22px 24px; gap: 3px; }
  .hero-caption-panel .hero-caption-ja { font-size: 15px; line-height: 1.9; letter-spacing: .2px; }
  .philosophy { padding-block: 56px; }
  .philosophy-inner { padding-inline: 24px; }
  .philosophy-content h2 { font-size: clamp(24px,6.6vw,30px); letter-spacing: .5px; line-height: 1.75; }
  .philosophy-content h2 em { display: block; width: fit-content; }
}
@media (forced-colors: active) {
  .hero-caption.hero-caption-panel { background: Canvas; }
  .hero-caption-panel .hero-caption-ja { color: CanvasText; }
}

/* One stable photo frame; captions and controls never cover the hairstyle. */
.hero-gallery { width: 100%; min-width: 0; }
.hero-slides { width: 100%; }
.hero-slide { min-width: 0; }
.hero-photo-frame { position: relative; aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; }
.hero-gallery.is-ready .hero-slides { display: grid; }
.hero-gallery.is-ready .hero-slide { grid-area: 1 / 1; }
/* Hidden slides still reserve their caption height, but are absent from focus and the accessibility tree. */
.hero-gallery.is-ready .hero-slide[hidden] { display: block; visibility: hidden; }
.hero-slider-controls[hidden] { display: none; }
.hero-slide .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.hero-slide-comment { padding: 22px 24px; font-size: 16px; line-height: 1.9; letter-spacing: .2px; color: var(--text); overflow-wrap: anywhere; }
.hero-gallery.is-ready .hero-slides { touch-action: pan-y pinch-zoom; }
.hero-slider-controls { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-bottom: 1px solid var(--light-gray); }
.hero-slider-controls button { flex-shrink: 0; min-height: 44px; min-width: 44px; padding: 8px 12px; border: 1px solid var(--light-gray); background: var(--warm-white); color: var(--text); font: inherit; font-size: 14px; cursor: pointer; }
.hero-slider-controls button:hover { border-color: var(--accent-readable); background: var(--light-gray); }
.hero-slider-controls button:active { background: var(--accent); }
.hero-slider-controls button:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.hero-slider-controls .hero-play-toggle { margin-left: auto; }
.hero-slide-count { min-width: 40px; text-align: center; font-size: 14px; font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.hero-photo-error { padding: 24px; text-align: center; line-height: 1.9; font-size: 16px; }
@media (max-width: 360px) { .hero-slider-controls { padding-inline: 16px; gap: 4px; } .hero-slider-controls button { padding-inline: 8px; } }
@media (forced-colors: active) { .hero-slider-controls button { border-color: ButtonText; background: ButtonFace; color: ButtonText; } }

/* Product explanations: same tokens and typography as the price page. */
.care-breadcrumb { position: static; inset: auto; z-index: auto; display: block; padding: 0; background: none; backdrop-filter: none; font-size: 14px; line-height: 1.9; color: var(--mid-gray); margin-bottom: 40px; overflow-wrap: anywhere; }
.care-breadcrumb a { color: inherit; text-underline-offset: 4px; }
.care-heading { max-width: 900px; }
.care-kicker { color: var(--accent-readable); font-size: 15px; letter-spacing: .12em; margin-bottom: 20px; }
.care-heading h1 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 300; line-height: 1.7; overflow-wrap: anywhere; }
.care-content { font-size: 16px; line-height: 2; }
.care-content p { font-size: 16px; line-height: 2; }
.care-lead { max-width: 740px; margin: 28px 0 40px; }
.care-index { display: flex; flex-wrap: wrap; gap: 4px 28px; padding-block: 20px; border-block: 1px solid var(--light-gray); }
.care-index a { display: inline-flex; align-items: center; min-height: 44px; }
.care-content a, .care-menu-detail a { color: var(--text); text-decoration: underline; text-underline-offset: 5px; }
.care-content a:hover, .care-menu-detail a:hover { color: var(--accent-readable); }
.care-content a:active { opacity: .7; }
.care-section { margin-top: 72px; }
.care-section h2, .care-closing h2, .care-menu-callout h2 { font-size: clamp(23px, 2.6vw, 30px); line-height: 1.7; font-weight: 300; }
.care-section h2, .care-section h3 { scroll-margin-top: var(--header-offset); }
.care-section-intro { max-width: 760px; margin-top: 16px; color: var(--mid-gray); }
.care-product { display: grid; grid-template-columns: 216px minmax(0,1fr); gap: 48px; padding-block: 36px; border-bottom: 1px solid var(--light-gray); align-items: center; }
.care-product:first-of-type { margin-top: 20px; border-top: 1px solid var(--light-gray); }
.care-product-text { grid-template-columns: minmax(0,1fr); }
.care-product figure { margin: 0; height: 248px; display: flex; align-items: center; justify-content: center; background: white; padding: 20px; }
.care-product img { display: block; width: 100%; height: 100%; object-fit: contain; }
.care-product h3 { font-size: 21px; font-weight: 400; line-height: 1.8; margin-bottom: 14px; overflow-wrap: anywhere; }
.care-product-copy { min-width: 0; max-width: 720px; }
.care-how { margin-top: 18px; }
.care-how strong { font-weight: 400; }
.care-content .care-source { font-size: 14px; margin-top: 18px; }
.care-source a { display: inline-flex; align-items: center; min-height: 44px; }
.care-destinations { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 48px; }
.care-destination { border-bottom: 1px solid var(--light-gray); padding-block: 24px; }
.care-destination a { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-size: 20px; }
.care-destination > span { font-size: 14px; color: var(--mid-gray); }
.care-closing { padding: 36px; margin-top: 72px; background: var(--off-white); }
.care-closing > p { margin-top: 18px; }
.care-content .care-caption { font-size: 14px; color: var(--mid-gray); }
.care-menu-callout { margin-top: 64px; padding: 32px; border-block: 1px solid var(--light-gray); }
.care-menu-callout p { font-size: 16px; line-height: 2; margin-top: 16px; }
.care-menu-callout .gallery-more { margin-top: 16px; }
.price-description .care-menu-detail { margin-top: 18px; }
.care-menu-detail a { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 768px) {
 .care-breadcrumb { margin-bottom: 28px; }
 .care-section { margin-top: 48px; }
 .care-product { grid-template-columns: 136px minmax(0,1fr); gap: 24px; align-items: start; }
 .care-product figure { height: 180px; padding: 12px; }
 .care-product-text { grid-template-columns: minmax(0,1fr); }
 .care-product h3 { font-size: 19px; }
 .care-destinations { grid-template-columns: minmax(0,1fr); }
 .care-closing { padding: 24px; }
}
@media (max-width: 540px) {
 .care-product { grid-template-columns: minmax(0,1fr); gap: 24px; }
 .care-product figure { width: 100%; height: 216px; padding: 16px; }
 .care-product img { max-width: 190px; }
 .care-closing, .care-menu-callout { padding: 24px 16px; }
}

.care-breadcrumb::before { content: none; }
/* WordPress may wrap legacy core/group children while rendering. */
.care-content .wp-block-group__inner-container { display: contents; }
