/* =========================================================
   YIN’ YANG v2 Core Components
   Scope: :where(.yy-content) only
   ========================================================= */

:where(.yy-content){
  color:var(--yy-ink);
  font-family:var(--yy-font-sans);
  font-size:var(--yy-f-text);
  line-height:var(--yy-lh-text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

:where(.yy-content) .yy-container{
  max-width:var(--yy-content-w);
  margin-inline:auto;
  padding-inline:var(--yy-space-block);
}

:where(.yy-content) .yy-section{
  padding-block:var(--yy-space-section);
}

:where(.yy-content) .yy-section--ivory{ background:var(--yy-ivory); }
:where(.yy-content) .yy-section--warm{ background:var(--yy-warm); }

:where(.yy-content) .yy-section__content{
  width:100%;
  max-width:var(--yy-content-w);
  margin-inline:auto;
}

:where(.yy-content) .yy-section--wide > .yy-container{
  max-width:none;
  width:100%;
  padding-inline:clamp(16px, 4vw, 56px);
}

:where(.yy-content) .yy-section--wide .yy-section__content{
  max-width:none;
  width:100%;
  margin-inline:0;
}

:where(.yy-content) .yy-stack > * + *{
  margin-top:var(--yy-space-block);
}

/* ---------------------------------------------------------
   Home: Hero (video / image)
--------------------------------------------------------- */
:where(.yy-content--home){
  --yy-radius:0;
}

:where(.yy-content--home) .yy-hero{
  position:relative;
  border-radius:0;
  overflow:hidden;
}

:where(.yy-content--home) .yy-hero__media{
  position:relative;
  width:100%;
  aspect-ratio:1536 / 643;
  overflow:hidden;
}

:where(.yy-content--home) .yy-hero__video,
:where(.yy-content--home) .yy-hero__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

:where(.yy-content) .yy-hero__video{
  opacity:0;
  transition:opacity .6s ease;
}

:where(.yy-content) .yy-hero__video.is-ready{
  opacity:1;
}

:where(.yy-content--home) .yy-hero__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.2);
}

:where(.yy-content--home) .yy-hero__inner{
  max-width:var(--yy-content-w);
  margin-inline:auto;
  padding:var(--yy-space-block);
  display:grid;
  place-items:center;
  text-align:center;
  gap:18px;
}

:where(.yy-content--home) .yy-hero__lead{
  margin:0;
  display:grid;
  gap:18px;
}

:where(.yy-content--home) .yy-hero__eyebrow{
  margin:0;
  font-size:var(--yy-f-eyebrow);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-family:var(--yy-font-serif);
  opacity:0;
  animation:yy-home-hero-fade 2.6s ease forwards;
  animation-delay:.1s;
  animation-play-state:paused;
}

:where(.yy-content--home) .yy-hero__title{
  margin:0;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.5;
  letter-spacing:.08em;
  font-family:var(--yy-font-serif);
  opacity:0;
  animation:yy-home-hero-fade 2.6s ease forwards;
  animation-delay:.5s;
  animation-play-state:paused;
}

:where(.yy-content--home) .yy-hero__copy{
  margin:0;
  font-size:15px;
  line-height:var(--yy-lh-text);
  font-family:var(--yy-font-sans);
  opacity:0;
  animation:yy-home-hero-fade 2.6s ease forwards;
  animation-delay:1.2s;
  animation-play-state:paused;
}

:where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__eyebrow,
:where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__title,
:where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__copy{
  animation-play-state:running;
}

:where(.yy-content--home) .yy-hero__cta{
  margin-top:6px;
}

:where(.yy-content--home) .yy-hero__cta .yy-btn{
  border-radius:0;
  border-width:1px;
}

:where(.yy-content--home) .yy-hero__cta .yy-btn--ghost{
  color:var(--yy-ink);
  border-color:var(--yy-ink);
  background:transparent;
}

:where(.yy-content--home) .yy-hero--video .yy-hero__inner{
  position:absolute;
  inset:0;
}

:where(.yy-content--home) .yy-hero--video .yy-hero__eyebrow,
:where(.yy-content--home) .yy-hero--video .yy-hero__title,
:where(.yy-content--home) .yy-hero--video .yy-hero__copy{
  color:#fff;
  text-shadow:0 6px 18px rgba(0,0,0,.25);
}

:where(.yy-content--home) .yy-hero--video .yy-hero__cta .yy-btn--ghost{
  color:#fff;
  border-color:#fff;
}

:where(.yy-content--home) .yy-hero--image .yy-hero__overlay{
  display:none;
}

:where(.yy-content--home)[data-yy-hero-variant="video"] .yy-hero--image{
  display:none;
}

:where(.yy-content--home)[data-yy-hero-variant="image"] .yy-hero--video{
  display:none;
}

@keyframes yy-home-hero-fade{
  to{ opacity:1; }
}

@media (prefers-reduced-motion: reduce){
  :where(.yy-content--home) .yy-hero__eyebrow,
  :where(.yy-content--home) .yy-hero__title,
  :where(.yy-content--home) .yy-hero__copy{
    opacity:0;
    animation:none;
  }
  :where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__eyebrow,
  :where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__title,
  :where(.yy-content--home) .yy-hero--video.is-video-ready .yy-hero__copy{
    opacity:1;
  }
}

/* ---------------------------------------------------------
   Home: Reviews
--------------------------------------------------------- */
:where(.yy-content--home) .yy-reviewCards{
  margin-top:0;
}

:where(.yy-content--home) .yy-reviewCard{
  background:#fff;
  border:none;
  box-shadow:none;
  border-radius:0;
}

:where(.yy-content--home) .yy-reviewCard .yy-menuCard__body{
  align-items:flex-start;
  text-align:left;
  padding:var(--yy-space-block);
  gap:var(--yy-space-inline);
}

:where(.yy-content--home) .yy-reviewCard__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px 12px;
  font-size:12px;
  color:var(--yy-ink-muted);
}

:where(.yy-content--home) .yy-reviewCard__stars{
  color:#c9a869;
  letter-spacing:.08em;
  font-size:13px;
}

:where(.yy-content--home) .yy-reviewCard__menu{
  font-family:var(--yy-font-serif);
}

:where(.yy-content--home) .yy-reviewCard__title{
  margin:0;
  font-size:16px;
  line-height:1.7;
  font-family:var(--yy-font-serif);
  color:var(--yy-ink);
}

:where(.yy-content--home) .yy-reviewCard__title + .yy-reviewCard__text{
  margin-top:calc(var(--yy-space-inline) * 2);
}

:where(.yy-content--home) .yy-reviewCard__text{
  margin:0;
  font-size:13px;
  line-height:1.8;
  color:var(--yy-ink-soft);
}

:where(.yy-content--home) .yy-reviewCard .yy-menuCard__symptoms{
  justify-content:flex-start;
}

:where(.yy-content--home) .yy-reviewCard__tags{
  margin-top:var(--yy-space-inline);
}

:where(.yy-content--home) .yy-reviewCta{
  margin-top:var(--yy-space-block);
  text-align:center;
}

:where(.yy-content--home) .yy-reviewCards .yy-menuCards__track{
  display:flex;
  gap:var(--yy-space-block);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scroll-padding-inline:var(--yy-space-block);
  padding-inline:var(--yy-space-block);
  padding-bottom:var(--yy-space-inline);
  scrollbar-width:none;
}
:where(.yy-content--home) .yy-reviewCards .yy-menuCards__track::-webkit-scrollbar{
  display:none;
}
:where(.yy-content--home) .yy-reviewCards .yy-menuCard{
  flex:0 0 var(--yy-menu-card-w, 320px);
  scroll-snap-align:start;
}
@media (max-width:768px){
  :where(.yy-content--home) .yy-reviewCards .yy-menuCard{
    flex:0 0 85%;
  }
}

:where(.yy-content--home) .yy-reviewCta .yy-btn{
  border-radius:0;
}

/* ---------------------------------------------------------
   Home: Media Grid (2-column)
--------------------------------------------------------- */
:where(.yy-content--home) .yy-media__image{
  border-radius: 0;
}

:where(.yy-content--home) .yy-media__image img{
  border-radius: 0;
}

:where(.yy-content--home) .yy-media__body{
  align-content: start;
}

:where(.yy-content--home) .yy-media__eyebrow{
  margin: 0;
  font-size: var(--yy-f-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
  margin-bottom: calc(var(--yy-space-inline) * 2);
}

:where(.yy-content--home) .yy-mediaGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--yy-space-block);
}

:where(.yy-content--home) .yy-mediaGrid--equal .yy-mediaCard{
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

:where(.yy-content--home) .yy-mediaGrid--equal .yy-media__image{
  width: 75%;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
}

:where(.yy-content--home) .yy-mediaGrid--equal .yy-media__body{
  width: 75%;
  margin-inline: auto;
  gap: clamp(10px, 1.6vw, 20px);
}

:where(.yy-content--home) .yy-mediaCard{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  column-gap: var(--yy-space-block);
  row-gap: var(--yy-space-block);
  align-items: center;
}

:where(.yy-content--home) .yy-mediaCard .yy-media__image{
  order: 1;
}

:where(.yy-content--home) .yy-mediaCard .yy-media__body{
  order: 2;
}

:where(.yy-content--home) .yy-mediaCard:nth-child(even) .yy-media__image{
  order: 2;
}

:where(.yy-content--home) .yy-mediaCard:nth-child(even) .yy-media__body{
  order: 1;
}

:where(.yy-content--home) .yy-media__image--4x5{
  aspect-ratio: 4 / 5;
}

:where(.yy-content--home) .yy-media__image--1x1{
  aspect-ratio: 1 / 1;
}


@media (max-width: 900px){
  :where(.yy-content--home) .yy-mediaCard{
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Home: Commitments (sharp)
--------------------------------------------------------- */
:where(.yy-content--home) .yy-feature-trio__media,
:where(.yy-content--home) .yy-feature-trio__media img{
  border-radius:0;
}

:where(.yy-content--home) .yy-feature-trio__card{
  border-radius:0;
}

/* ---------------------------------------------------------
   Home: Flow (sharp)
--------------------------------------------------------- */
:where(.yy-content--home) .yy-flow__num{
  border-radius:0;
}

:where(.yy-content--home) .yy-flow__media{
  border-radius:0;
}

/* ---------------------------------------------------------
   Component A-2: Media + Text (yy-media)
--------------------------------------------------------- */
:where(.yy-content) .yy-media{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:var(--yy-space-block);
  align-items:center;
}

:where(.yy-content) .yy-media--reverse{
  grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);
}

:where(.yy-content) .yy-media__image{
  aspect-ratio:4 / 3;
  width:100%;
  overflow:hidden;
  background:rgba(0,0,0,.03);
  border-radius:var(--yy-radius);
}

:where(.yy-content) .yy-media__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

:where(.yy-content) .yy-media__image--empty{
  display:grid;
  place-items:center;
  color:var(--yy-ink-muted);
  font-size:var(--yy-f-text);
  font-family:var(--yy-font-sans);
}

:where(.yy-content) .yy-media__body{
  display:grid;
  gap:var(--yy-space-inline);
}

@media (max-width:768px){
  :where(.yy-content) .yy-media{
    grid-template-columns:1fr;
  }
}

/* ---------------------------------------------------------
   Component C-2: Card Grid (yy-cardGrid)
--------------------------------------------------------- */
:where(.yy-content) .yy-cardGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:var(--yy-space-block);
}

:where(.yy-content) .yy-cardGrid__item{
  border:1px solid rgba(0,0,0,.05);
  border-radius:var(--yy-radius);
  background:#fff;
  padding:var(--yy-space-block);
  display:grid;
  gap:var(--yy-space-inline);
}

:where(.yy-content) .yy-cardGrid__title{
  margin:0;
  font-size:var(--yy-f-menu-title);
  font-family:var(--yy-font-serif);
  letter-spacing:.08em;
}

:where(.yy-content) .yy-cardGrid__text{
  margin:0;
  font-size:var(--yy-f-text);
  line-height:var(--yy-lh-text);
  color:var(--yy-ink-muted);
  font-family:var(--yy-font-sans);
}

/* ---------------------------------------------------------
   Component D: Flow (yy-flow)
--------------------------------------------------------- */
:where(.yy-content) .yy-flow{
  display:grid;
  gap:var(--yy-space-block);
}

:where(.yy-content) .yy-flow__step{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:var(--yy-space-inline);
  align-items:start;
  padding-bottom:var(--yy-space-block);
  border-bottom:1px solid var(--yy-mist);
}

:where(.yy-content) .yy-flow__step:last-child{
  border-bottom:none;
  padding-bottom:0;
}

:where(.yy-content) .yy-flow__num{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid var(--yy-mist);
  display:grid;
  place-items:center;
  font-size:var(--yy-f-eyebrow);
  font-family:var(--yy-font-serif);
  letter-spacing:.12em;
  color:var(--yy-ink-muted);
}

:where(.yy-content) .yy-flow__body{
  display:grid;
  gap:var(--yy-space-inline);
}

:where(.yy-content) .yy-flow__title{
  margin:0;
  font-size:var(--yy-f-menu-title);
  font-family:var(--yy-font-serif);
  letter-spacing:.08em;
}

:where(.yy-content) .yy-flow__text{
  margin:0;
  font-size:var(--yy-f-text);
  line-height:var(--yy-lh-text);
  color:var(--yy-ink-muted);
  font-family:var(--yy-font-sans);
}

:where(.yy-content) .yy-flow__media{
  aspect-ratio:4 / 3;
  border-radius:var(--yy-radius);
  overflow:hidden;
  background:rgba(0,0,0,.03);
}

:where(.yy-content) .yy-flow__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width:768px){
  :where(.yy-content) .yy-flow__step{
    grid-template-columns:1fr;
  }
}

/* ---------------------------------------------------------
   Component E: CTA variants (yy-ctaGroup / yy-btn)
--------------------------------------------------------- */
:where(.yy-content) .yy-ctaGroup{
  display:flex;
  flex-wrap:wrap;
  gap:var(--yy-space-inline);
  justify-content:center;
  align-items:center;
}

:where(.yy-content) .yy-btn--primary{
  background:var(--yy-ink);
  color:#fff;
  border-color:var(--yy-ink);
}

:where(.yy-content) .yy-btn--ghost{
  background:transparent;
  color:var(--yy-ink);
}

/* ---------------------------------------------------------
   Component A: Block Heading (yy-bh)
--------------------------------------------------------- */
:where(.yy-content) .yy-bh{
  max-width:var(--yy-narrow-w);
  margin-inline:auto;
  text-align:center;
}

:where(.yy-content) .yy-bh > * + *{
  margin-top:10px;
}

:where(.yy-content) .yy-bh__eyebrow{
  margin:0;
  display:inline-block;
  padding:0 0 10px 0;
  font-size:var(--yy-f-eyebrow);
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--yy-ink-muted);
  border-bottom:1px solid var(--yy-mist);
  font-family:var(--yy-font-serif);
}

:where(.yy-content) .yy-bh__title{
  margin:10px 0 0 0;
  font-size:var(--yy-f-title);
  line-height:var(--yy-lh-title);
  font-family:var(--yy-font-serif);
  font-weight:500;
  letter-spacing:.08em;
}

:where(.yy-content) .yy-bh__lead{
  margin:10px 0 0 0;
  font-size:var(--yy-f-lead);
  line-height:var(--yy-lh-lead);
  color:var(--yy-ink-soft);
  font-family:var(--yy-font-serif);
}

@media (max-width:768px){
  :where(.yy-content) .yy-bh__title{ font-size:var(--yy-f-title-sp); }
}

/* ---------------------------------------------------------
   Component B: Menu Card (yy-menuCard)
--------------------------------------------------------- */
:where(.yy-content) .yy-menuCards{
  position:relative;
}

:where(.yy-content) .yy-menuCards__track{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:var(--yy-space-block);
  align-items:stretch;
}

:where(.yy-content) .yy-menuCards.is-slider .yy-menuCards__track{
  display:flex;
  gap:var(--yy-space-block);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scroll-padding-inline:var(--yy-space-block);
  padding-inline:var(--yy-space-block);
  padding-bottom:var(--yy-space-inline);
}

:where(.yy-content) .yy-menuCards.is-slider .yy-menuCard{
  flex:0 0 clamp(260px, 32vw, 360px);
  scroll-snap-align:start;
}

@media (max-width:899px){
  :where(.yy-content) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track{
    display:flex;
    gap:var(--yy-space-block);
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scroll-padding-inline:var(--yy-space-block);
    padding-inline:var(--yy-space-block);
  }
  :where(.yy-content) .yy-menuCards[data-yy-slider="menu"] .yy-menuCard{
    flex:0 0 80%;
    scroll-snap-align:start;
  }
}
:where(.yy-content) .yy-menuCard{
  border-radius:var(--yy-radius);
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}

:where(.yy-content) .yy-menuCard__media{
  aspect-ratio:1 / 1;
  width:100%;
  overflow:hidden;
  background:rgba(0,0,0,.03);
}

:where(.yy-content) .yy-menuCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* template-test / home: remove section alternating backgrounds only */
:where(.yy-content--template-test) .yy-section--ivory,
:where(.yy-content--template-test) .yy-section--warm,
:where(.yy-content--home) .yy-section--ivory,
:where(.yy-content--home) .yy-section--warm{
  background: transparent !important;
}

/* ---------------------------------------------------------
   Home: align menu cards with template-test (safe set)
--------------------------------------------------------- */
:where(.yy-content--home) .yy-menuCard{ border-radius:0; }

:where(.yy-content--home) .yy-menuCard__media,
:where(.yy-content--home) .yy-menuCard__media img{
  border-radius:0;
}

:where(.yy-content--home) .yy-menuCard{
  background: transparent;
  border: none;
  box-shadow: none;
}

:where(.yy-content--home) .yy-menuCards.is-slider{
  --yy-menu-card-w: clamp(240px, 22vw, 320px);
}

:where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track{
  gap: clamp(16px, 2vw, 20px);
}

:where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCard,
:where(.yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCard{
  flex:0 0 var(--yy-menu-card-w);
}

@media (max-width:767px){
  :where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track,
  :where(.yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track{
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
  :where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCard,
  :where(.yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCard{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

:where(.yy-content--home) .yy-menuCard__action{
  align-self: stretch;
  text-align: left;
}

:where(.yy-content--home) .yy-menuCard__accordion,
:where(.yy-content--home) .yy-menuCard__action{
  width: calc(100% - (var(--yy-space-block) * 2));
  margin-left: var(--yy-space-block);
  margin-right: var(--yy-space-block);
}
:where(.yy-content--home) .yy-menuCard__accordion{
  margin-top: calc(var(--yy-space-inline) * 2);
}
:where(.yy-content--home) .yy-menuCard__action{
  margin-top: calc(var(--yy-space-inline) * 2);
}
:where(.yy-content--home) .yy-acc__summary,
:where(.yy-content--home) .yy-menuCard__btn{
  display: block;
  width: 100%;
}
:where(.yy-content--home) .yy-acc__summary{
  padding-inline: 0;
  justify-content: flex-start;
}

:where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track,
:where(.yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track{
  scrollbar-width: none;
}
:where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track::-webkit-scrollbar,
:where(.yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track::-webkit-scrollbar{
  display: none;
}
:where(.yy-content--home) .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}
:where(.yy-content--home) .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}
:where(.yy-content--home) .yy-sliderBtn{
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

:where(.yy-content--home) .yy-menuCard__media{
  width: calc(100% - (var(--yy-space-block) * 2));
  margin-inline: auto;
}

:where(.yy-content--home) .yy-acc__summary{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
  list-style: none;
}
:where(.yy-content--home) .yy-acc__summary::marker,
:where(.yy-content--home) .yy-acc__summary::-webkit-details-marker{
  display: none;
}
:where(.yy-content--home) .yy-acc__summary::before{
  content: "＋";
  display: inline-block;
  width: 1.2em;
  text-align: center;
  color: var(--yy-ink-muted);
}
:where(.yy-content--home) details[open] > .yy-acc__summary::before{
  content: "−";
}

:where(.yy-content--home) .yy-menuCard__accordion,
:where(.yy-content--home) .yy-menuCard__action{
  align-self: stretch;
  text-align: left;
}

:where(.yy-content--home) .yy-menuCards.is-slider{
  --yy-menu-card-w: clamp(240px, 22vw, 320px);
}

:where(.yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track{
  gap: clamp(16px, 2vw, 20px);
}

/* keep review cards white */
:where(.yy-content--home) .yy-reviewCard{
  background:#fff;
}

:where(.yy-content) .yy-menuCard__body{
  padding:calc(var(--yy-space-inline) * 2) var(--yy-space-block) var(--yy-space-block);
  display:flex;
  flex-direction:column;
  gap:var(--yy-space-inline);
  align-items:center;
  text-align:center;
  flex:1;
}

:where(.yy-content) .yy-menuCard__title{
  margin:0;
  font-size:var(--yy-f-menu-title);
  line-height:1.55;
  font-family:var(--yy-font-serif);
  letter-spacing:.08em;
}

:where(.yy-content) .yy-menuCard__symptoms{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
  justify-content:center;
  width:100%;
}

:where(.yy-content) .yy-menuCard__symptom,
:where(.yy-content) .yy-menuCard__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.05);
  background:rgba(226,214,198,.55);
  font-size:var(--yy-f-tag);
  line-height:var(--yy-lh-tag);
  color:var(--yy-ink-soft);
  font-family:var(--yy-font-serif);
}

:where(.yy-content) .yy-menuCard__text{
  margin:0;
  font-size:var(--yy-f-text);
  line-height:var(--yy-lh-text);
  color:var(--yy-ink-muted);
  max-width:100%;
  font-family:var(--yy-font-sans);
}

:where(.yy-content) .yy-menuCard__meta{
  display:flex;
  flex-wrap:wrap;
  gap:var(--yy-space-inline);
  margin:var(--yy-space-inline) 0 0;
  color:var(--yy-ink-soft);
  justify-content:center;
}

:where(.yy-content) .yy-menuCard__price,
:where(.yy-content) .yy-menuCard__time{
  font-size:var(--yy-f-price);
  font-family:var(--yy-font-serif);
  font-weight:500;
}

:where(.yy-content) .yy-menuCard__action{
  margin-top:var(--yy-space-inline);
  width:100%;
  text-align:left;
}

:where(.yy-content) .yy-menuCard__btn{
  display:inline-block;
  padding:0;
  border:none;
  background:transparent;
  color:var(--yy-ink-muted);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
  font-size:var(--yy-f-btn);
  font-weight:500;
  letter-spacing:.02em;
  font-family:var(--yy-font-serif);
}

/* Slider UI */
:where(.yy-content) .yy-sliderBtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--yy-mist);
  background:#fff;
  color:var(--yy-ink);
  display:none;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}

:where(.yy-content) .yy-menuCards.is-slider .yy-sliderBtn{
  display:flex;
}

:where(.yy-content) .yy-sliderBtn--prev{ left:8px; }
:where(.yy-content) .yy-sliderBtn--next{ right:8px; }

:where(.yy-content) .yy-sliderBtn:disabled{
  opacity:.4;
  cursor:default;
}

:where(.yy-content) .yy-sliderDots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:var(--yy-space-inline);
}

:where(.yy-content) .yy-menuCards:not(.is-slider) .yy-sliderDots{
  display:none;
}

:where(.yy-content) .yy-sliderDot{
  width:18px;
  height:1px;
  border-radius:999px;
  border:none;
  background:rgba(36,30,27,.28);
  padding:0;
}

:where(.yy-content) .yy-sliderDot.is-active{
  background:var(--yy-ink);
}

/* template-test: page background */
html[data-yy-page="template-test"],
html[data-yy-page="template-test"] body{
  background:#f3eee7;
}

/* home: page background (preview + WP fragment) */
html[data-yy-page="home"],
html[data-yy-page="home"] body{
  background:#f3eee7;
}
:where(.yy-content--home){
  background:#f3eee7;
}

/* ---------------------------------------------------------
   Component C: CTA / Button (yy-btn)
--------------------------------------------------------- */
:where(.yy-content) .yy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:var(--yy-ink);
  font-size:var(--yy-f-btn);
  font-family:var(--yy-font-sans);
  text-decoration:none;
  letter-spacing:.04em;
}

:where(.yy-content) .yy-cta{
  text-align:center;
}

/* =========================================================
   Statement (yy-statement)
   ========================================================= */
:where(.yy-content) .yy-statement{
  padding: 88px 0;
  color: #241e1b;
}

:where(.yy-content) .yy-statement__inner{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

:where(.yy-content) .yy-statement__eyebrow{
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  opacity: .75;
  font-family: var(--yy-font-serif);
  color: #241e1b;
}

:where(.yy-content) .yy-statement__eyebrow--jp{
  letter-spacing: .12em;
}

:where(.yy-content) .yy-statement__eyebrow--en{
  margin-top: 6px;
}

:where(.yy-content) .yy-statement__rule{
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: .35;
  margin: 10px auto 14px;
}

:where(.yy-content) .yy-statement__lead{
  margin: 0;
  font-size: clamp(16px, 2vw, 30px);
  line-height: 1.4;
  font-weight: 600;
  color: #241e1b;
  font-family: var(--yy-font-serif);
  white-space: nowrap;
}

:where(.yy-content) .yy-statement__sub{
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .85;
  color: #241e1b;
  font-family: var(--yy-font-sans);
}

:where(.yy-content) .yy-statement__sub.is-hidden{
  display: none;
}

:where(.yy-content) .yy-serif{
  font-family: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS Mincho",serif;
}

@media (max-width: 768px){
  :where(.yy-content) .yy-statement{
    padding: 64px 0;
  }
}

/* =========================================================
   Home: Conditions (card grid)
   ========================================================= */
:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__item{
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: var(--yy-space-inline);
  text-align: center;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__media{
  margin: 0;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__title,
:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__text{
  margin: 0;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__media{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__eyebrow{
  margin: 0;
  font-size: var(--yy-f-tag);
  line-height: var(--yy-lh-tag);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
}

:where(.yy-content--home) .yy-section--conditions .yy-menuCard__symptoms{
  justify-content: center;
  margin: 0;
  padding: 0;
}

:where(.yy-content--home) .yy-section--conditions .yy-cardGrid__action{
  display: flex;
  justify-content: center;
}

@media (max-width:768px){
  :where(.yy-content) .yy-menuCards__track{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   home flow (scoped) - align with template-test
   ========================================================= */
:where(.yy-content--home) .yy-section--flow{
  background: transparent !important;
  --yy-flow-gap: var(--yy-space-block);
  --yy-flow-card-w: calc((100% - (var(--yy-flow-gap) * 2)) / 2.5);
  --yy-flow-fade: rgba(255,255,255,0.72);
}

:where(.yy-content--home) .yy-section--flow .yy-flowLayout{
  display:grid;
  grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: var(--yy-space-block);
  align-items:start;
}

:where(.yy-content--home) .yy-section--flow .yy-flowLayout__head{
  max-width:none;
  text-align:left;
}

:where(.yy-content--home) .yy-section--flow .yy-flowLayout__content{
  min-width:0;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlider{
  position: relative;
  overflow: hidden;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlider::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:20%;
  height:100%;
  background: var(--yy-flow-fade);
  pointer-events:none;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlider__track{
  display:flex;
  gap: var(--yy-flow-gap);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-right: calc(var(--yy-flow-gap) * 2);
  scroll-padding-right: var(--yy-flow-gap);
  scrollbar-width:none;
}
:where(.yy-content--home) .yy-section--flow .yy-flowSlider__track::-webkit-scrollbar{
  display:none;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide{
  flex:0 0 var(--yy-flow-card-w);
  scroll-snap-align:start;
  border-radius:0;
  display:flex;
  flex-direction:column;
  gap: var(--yy-space-inline);
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__media{
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:0;
  background:transparent;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  display:block;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__body{
  text-align:left;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__num{
  display:inline-block;
  font-size: var(--yy-f-tag);
  letter-spacing:.12em;
  color: var(--yy-ink-muted);
  margin-right: .4em;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__title{
  margin:0;
  font-family: var(--yy-font-serif);
  font-size: var(--yy-f-menu-title);
  letter-spacing:.08em;
  line-height:1.55;
}

:where(.yy-content--home) .yy-section--flow .yy-flowSlide__list{
  margin:0;
  padding-left:1.2em;
  color: var(--yy-ink-muted);
  line-height: var(--yy-lh-text);
}

@media (max-width: 768px){
  :where(.yy-content--home) .yy-section--flow{
    --yy-flow-card-w: calc((100% - var(--yy-flow-gap)) / 1.2);
  }
  :where(.yy-content--home) .yy-section--flow .yy-flowLayout{
    grid-template-columns:1fr;
  }
  :where(.yy-content--home) .yy-section--flow .yy-flowLayout__head{
    margin-bottom: var(--yy-space-inline);
  }
  :where(.yy-content--home) .yy-section--flow .yy-flowSlider::after{
    width:24%;
  }
}

/* =========================================================
   home flow: template-test sizing (for specific sections)
   ========================================================= */
:where(.yy-content--home) .yy-flow--template{
  --yy-flow-card-w: calc((100% - (var(--yy-flow-gap) * 2)) / 3.3) !important;
  --yy-flow-peek: calc(var(--yy-flow-card-w) / 3) !important;
  --yy-flow-media-h: var(--yy-flow-card-w);
  --yy-flow-fade: rgba(255,255,255,0) !important;
}

:where(.yy-content--home) .yy-flow--template .yy-flowSlider{
  overflow: visible !important;
}

:where(.yy-content--home) .yy-flowSlider--template{
  overflow: visible !important;
}

:where(.yy-content--home) .yy-flowSlider--template::before,
:where(.yy-content--home) .yy-flowSlider--template::after{
  content: none !important;
  display: none !important;
}

:where(.yy-content--home) .yy-flow--template .yy-flowSlider::before,
:where(.yy-content--home) .yy-flow--template .yy-flowSlider::after{
  content: none !important;
  display: none !important;
}

:where(.yy-content--home) .yy-flow--template .yy-flowSlider__track{
  padding-right: var(--yy-flow-peek) !important;
  scroll-padding-right: var(--yy-flow-gap) !important;
}

:where(.yy-content--home) .yy-flow--template .yy-flowSlide__media{
  height: var(--yy-flow-media-h);
}

@media (min-width: 900px){
  :where(.yy-content--home) .yy-flow--template .yy-flowSlide__media{
    width: 283px;
    height: 283px;
  }
}

/* =========================================================
   home flow: catalog variant (match template-test visual)
   ========================================================= */
:where(.yy-content) .yy-flow--catalog .yy-flowNav{
  display: none;
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlider{
  overflow: visible !important;
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlider::before,
:where(.yy-content) .yy-flow--catalog .yy-flowSlider::after{
  content: none !important;
  display: none !important;
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlider__track{
  padding-right: var(--yy-flow-peek);
  scroll-padding-right: var(--yy-flow-gap);
}

:where(.yy-content) .yy-flow--catalog{
  --yy-flow-card-w: calc((100% - (var(--yy-flow-gap) * 2)) / 3.3);
  --yy-flow-peek: calc(var(--yy-flow-card-w) / 3);
  --yy-flow-media-h: var(--yy-flow-card-w);
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlide{
  flex: 0 0 var(--yy-flow-card-w) !important;
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlide__body{
  padding: calc(var(--yy-space-inline) * 2) 0 var(--yy-space-block);
  display: flex;
  flex-direction: column;
  gap: var(--yy-space-inline);
  align-items: center;
  text-align: center;
  color: var(--yy-ink);
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlide__title{
  margin: 0;
  font-size: var(--yy-f-menu-title);
  line-height: 1.55;
  font-family: var(--yy-font-serif);
  letter-spacing: .08em;
  color: var(--yy-ink);
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlide__action{
  display: flex;
  justify-content: center;
}

:where(.yy-content--home) .yy-flow--flat .yy-flowSlide__body{
  align-items: center;
  text-align: center;
}

:where(.yy-content--home) .yy-flow--flat .yy-menuCard__symptoms{
  justify-content: center;
}

:where(.yy-content--home) .yy-flow--flat .yy-flowSlide__action{
  margin-top: calc(var(--yy-space-inline) * 2);
  width: 100%;
  align-self: stretch;
  text-align: left;
  justify-content: flex-start;
}

:where(.yy-content--home) .yy-flow--flat .yy-flowSlide__action .yy-menuCard__btn{
  display: block;
  width: 100%;
}

:where(.yy-content) .yy-flow--catalog .yy-flowSlide__media{
  height: var(--yy-flow-media-h);
}

@media (max-width: 768px){
  :where(.yy-content) .yy-flow--catalog{
    --yy-flow-card-w: clamp(220px, 80vw, 320px);
    --yy-flow-peek: 18vw;
  }
}

@media (min-width: 900px){
  :where(.yy-content) .yy-flow--catalog .yy-flowSlide__media{
    width: 283px;
    height: 283px;
  }
  :where(.yy-content) .yy-flow--catalog{
    --yy-flow-media-h: 283px;
  }
}

:where(.yy-content) .yy-flow--catalog .yy-sliderBtn{
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 5;
  pointer-events: auto;
}

:where(.yy-content) .yy-flow--catalog .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content) .yy-flow--catalog .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--home) .yy-flow--template .yy-sliderBtn{
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 5;
  pointer-events: auto;
}

:where(.yy-content--home) .yy-flow--template .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--home) .yy-flow--template .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}

@media (max-width: 768px){
  :where(.yy-content--home) .yy-flow--template{
    --yy-flow-card-w: clamp(220px, 80vw, 320px);
    --yy-flow-peek: 18vw;
  }
}

/* =========================================
   template-test restore from stash
   ========================================= */
:where(.yy-content--template-test) .yy-cardGrid__item{
  border:none;
  border-radius:0;
  background:transparent;
  padding:0;
  gap:var(--yy-space-inline);
}

:where(.yy-content--template-test) .yy-cardGrid__media{
  aspect-ratio:4 / 5;
  overflow:hidden;
  border-radius:0;
}

:where(.yy-content--template-test) .yy-cardGrid__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:0;
}

:where(.yy-content--template-test) .yy-cardGrid__eyebrow{
  margin:0;
  font-size:var(--yy-f-tag);
  line-height:var(--yy-lh-tag);
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--yy-ink-muted);
  font-family:var(--yy-font-serif);
}

:where(.yy-content--template-test) .yy-cardGrid--square{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

:where(.yy-content--template-test) .yy-cardGrid--square .yy-cardGrid__media{
  aspect-ratio:1 / 1;
}

@media (max-width: 900px){
  :where(.yy-content--template-test) .yy-cardGrid--square{
    grid-template-columns:1fr;
  }
}

:where(.yy-content--template-test, .yy-content--home) .yy-section--specialized .yy-menuCards__track{
  gap: calc(var(--yy-space-block) * 0.6) !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  justify-content: flex-start;
  padding-inline: 0;
  scroll-padding-inline: 0;
}
:where(.yy-content--template-test, .yy-content--home) .yy-section--specialized .yy-menuCards__track::-webkit-scrollbar{
  display: none;
  width: 0;
  height: 0;
}

:where(.yy-content--template-test) .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--template-test) .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--template-test) .yy-sliderBtn{
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 24px !important;
  height: 72px !important;
  padding: 0 !important;
  font-size: 24px !important;
  font-weight: 200 !important;
  letter-spacing: 0;
  line-height: 1;
  transform: none;
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track{
  gap: clamp(16px, 2vw, 20px);
}

:where(.yy-content--template-test) .yy-section--flow{
  background: transparent !important;
  --yy-flow-gap: var(--yy-space-block);
  --yy-flow-card-w: calc((100% - (var(--yy-flow-gap) * 2)) / 3.3);
  --yy-flow-peek: calc(var(--yy-flow-card-w) / 3);
  --yy-flow-media-h: var(--yy-flow-card-w);
  --yy-flow-fade: rgba(255,255,255,0.72);
  padding-top: var(--yy-space-section);
  padding-bottom: var(--yy-space-section);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowLayout{
  display:grid;
  grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: var(--yy-space-block);
  align-items:start;
  max-width: var(--yy-content-w);
  margin-inline: auto;
}

:where(.yy-content--template-test) .yy-section--flow .yy-slider{
  --yy-mask-w: var(--yy-flow-peek);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowLayout__head{
  max-width:none;
  text-align:left;
  margin-left: 0;
  margin-right: auto;
  justify-self: start;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowLayout__head .yy-bh__lead{
  font-size: var(--yy-f-text);
}

:where(.yy-content--template-test) .yy-bh__lead{
  font-size: var(--yy-f-text);
  line-height: var(--yy-lh-text);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowLayout__content{
  min-width:0;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowNav{
  display:none;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowNav__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(4, var(--yy-flow-card-w));
  gap: var(--yy-flow-gap);
  position:relative;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowNav__item{
  display:grid;
  place-items:center;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowNav__num{
  position:relative;
  z-index:1;
  font-size: var(--yy-f-tag);
  letter-spacing:.12em;
  color: var(--yy-ink-muted);
  background:#f3eee7;
  padding:0 12px;
  border-radius:0;
  width:100%;
  text-align:center;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider{
  position: relative;
  overflow: visible;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider::after{
  content:none;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider__track{
  display:flex;
  gap: var(--yy-flow-gap);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-right: var(--yy-flow-peek);
  scroll-padding-right: var(--yy-flow-gap);
  scrollbar-width:none;
}



:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider__track::-webkit-scrollbar{
  display:none;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide{
  flex:0 0 var(--yy-flow-card-w);
  scroll-snap-align:start;
  border-radius:0;
  display:flex;
  flex-direction:column;
  gap: var(--yy-space-inline);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__media{
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:0;
  background:transparent;
  height: var(--yy-flow-media-h);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  display:block;
}

:where(.yy-content--template-test) .yy-section--flow .yy-sliderBtn{
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 5;
  pointer-events: auto;
}

:where(.yy-content--template-test) .yy-section--flow .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--template-test) .yy-section--flow .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__body{
  text-align:left;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__eyebrow{
  margin: 0 0 var(--yy-space-inline);
  font-size: var(--yy-f-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__num{
  display:inline-block;
  font-size: var(--yy-f-tag);
  letter-spacing:.12em;
  color: var(--yy-ink-muted);
  margin-right: .4em;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__title{
  margin: 0 0 var(--yy-space-inline);
  font-family: var(--yy-font-serif);
  font-size: var(--yy-f-menu-title);
  letter-spacing:.08em;
  line-height:1.55;
}

:where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__list{
  margin:0;
  padding-left:1.2em;
  color: var(--yy-ink-muted);
  line-height: var(--yy-lh-text);
}

@media (max-width: 768px){
  :where(.yy-content--template-test) .yy-section--flow{
    --yy-flow-card-w: clamp(220px, 80vw, 320px);
    --yy-flow-peek: 18vw;
  }
  :where(.yy-content--template-test) .yy-section--flow .yy-flowLayout{
    grid-template-columns:1fr;
  }
  :where(.yy-content--template-test) .yy-section--flow .yy-flowLayout__head{
    margin-bottom: var(--yy-space-inline);
  }
  :where(.yy-content--template-test) .yy-section--flow .yy-flowSlider::after{
    width:24%;
  }
}

@media (min-width: 900px){
  :where(.yy-content--template-test) .yy-section--flow .yy-flowSlide__media{
    width:283px;
    height:283px;
  }

  :where(.yy-content--template-test) .yy-section--flow{
    --yy-flow-media-h: 283px;
  }

  :where(.yy-content--template-test) .yy-section--flow .yy-flowNav__num{
    width:283px;
    margin-inline:auto;
  }
}


:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__body{
  align-items: stretch !important;
}



:where(.yy-content--template-test) .yy-media{
  align-items: start;
}

:where(.yy-content--template-test) .yy-media__image{
  border-radius: 0;
}

:where(.yy-content--template-test) .yy-media__image img{
  border-radius: 0;
}

:where(.yy-content--template-test) .yy-media__body{
  align-content: start;
}

:where(.yy-content--template-test) .yy-media__eyebrow{
  margin: 0;
  font-size: var(--yy-f-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
  margin-bottom: calc(var(--yy-space-inline) * 2);
}

:where(.yy-content--template-test) .yy-mediaGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--yy-space-block);
}

:where(.yy-content--template-test) .yy-mediaCard{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  column-gap: var(--yy-space-block);
  row-gap: var(--yy-space-block);
  align-items: center;
}

:where(.yy-content--template-test) .yy-mediaCard .yy-media__image{
  order: 1;
}

:where(.yy-content--template-test) .yy-mediaCard .yy-media__body{
  order: 2;
}

:where(.yy-content--template-test) .yy-mediaCard:nth-child(even) .yy-media__image{
  order: 2;
}

:where(.yy-content--template-test) .yy-mediaCard:nth-child(even) .yy-media__body{
  order: 1;
}

:where(.yy-content--template-test) .yy-media__image--4x5{
  aspect-ratio: 4 / 5;
}

:where(.yy-content--template-test) .yy-media__image--1x1{
  aspect-ratio: 1 / 1;
}

:where(.yy-content--template-test) .yy-mediaCard:nth-child(2) .yy-media__image{
  width: 65%;
  margin-inline: auto;
}

:where(.yy-content--template-test) .yy-mediaCard:nth-child(3) .yy-media__image{
  width: 75%;
  margin-inline: auto;
}

@media (max-width: 900px){
  :where(.yy-content--template-test) .yy-mediaCard{
    grid-template-columns: 1fr;
  }
}

:where(.yy-content--template-test) .yy-section__content{
  margin-top: var(--yy-space-block);
}

:where(.yy-content--template-test) .yy-media--reverse .yy-media__image{
  order: 2;
}

:where(.yy-content--template-test) .yy-media--reverse .yy-media__body{
  order: 1;
}

:where(.yy-content--template-test) .yy-slider{
  --yy-mask-w: 96px;
  --yy-mask-color: rgba(243,238,231,.85);
  --yy-mask-left: 0px;
  --yy-mask-right: 0px;
  position: relative;
  overflow: hidden;
}

:where(.yy-content--template-test) .yy-slider::after{
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--yy-mask-w);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 5;
}

:where(.yy-content--template-test) .yy-slider::before{
  left: 0;
  width: var(--yy-mask-left);
  background: var(--yy-mask-color);
}

:where(.yy-content--template-test) .yy-slider::after{
  right: 0;
  width: var(--yy-mask-right);
  background: var(--yy-mask-color);
}

:where(.yy-content--template-test) .yy-slider.is-fade-left::before{
  opacity: 1;
}

:where(.yy-content--template-test) .yy-slider.is-fade-right::after{
  opacity: 1;
}

:where(.yy-content--template-test) .yy-menuDetail__reserve{
  transition: opacity .2s ease, filter .2s ease;
}

:where(.yy-content--template-test) .yy-menuDetail__reserve:hover{
  opacity: .85;
}

:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider .yy-sliderBtn{
  display: flex;
}

:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider .yy-sliderDots{
  margin-top: var(--yy-space-inline);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  pointer-events: none;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__bar{
  pointer-events: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px var(--yy-space-block);
  background: #f3eee7;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: none;
  background: #241e1b;
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  font-family: var(--yy-font-serif);
  border-radius: 0;
  cursor: pointer;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__btn--campaign{
  background: #241e1b;
  color: #fff;
  border: none;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panel{
  pointer-events: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: transparent;
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta.is-open .yy-fixedCta__panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panelInner{
  width: 90%;
  max-width: none;
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__header{
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  font-family: var(--yy-font-serif);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__logo{
  height: 22px;
  width: auto;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hours{
  text-align: left;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hours--row{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  white-space: normal;
}

:where(.yy-content--template-test) .yy-menuDetail{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--yy-space-block);
  align-items: start;
}

:where(.yy-content--template-test) .yy-menuDetail__media{
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 0;
}

:where(.yy-content--template-test) .yy-menuDetail__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

:where(.yy-content--template-test) .yy-menuDetail__body{
  display: grid;
  gap: 14px;
}

:where(.yy-content--template-test) .yy-menuDetail__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

:where(.yy-content--template-test) .yy-menuDetail__title{
  margin: 0;
  font-size: var(--yy-f-menu-title);
  letter-spacing: .08em;
  font-family: var(--yy-font-serif);
}

:where(.yy-content--template-test) .yy-menuDetail__reserve{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  min-height: 36px;
  background: #241e1b;
  color: #fff;
  font-size: var(--yy-f-btn);
  font-family: var(--yy-font-serif);
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
}

:where(.yy-content--template-test) .yy-qa{
  border-top: 1px solid rgba(0,0,0,.12);
  max-width: 720px;
  margin-inline: auto;
}

:where(.yy-content--template-test) .yy-qa__item{
  border-bottom: 1px solid rgba(0,0,0,.12);
}

:where(.yy-content--template-test) .yy-qa__q{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  list-style: none;
  cursor: pointer;
}

:where(.yy-content--template-test) .yy-qa__q::-webkit-details-marker{
  display: none;
}

:where(.yy-content--template-test) .yy-qa__qLabel{
  font-weight: 600;
  color: var(--yy-ink);
}

:where(.yy-content--template-test) .yy-qa__qText{
  color: var(--yy-ink);
  font-size: var(--yy-f-text);
  line-height: var(--yy-lh-text);
}

:where(.yy-content--template-test) .yy-qa__icon{
  width: 12px;
  height: 12px;
  position: relative;
}

/* plus/minus icon */
:where(.yy-content--template-test) .yy-qa__icon::before,
:where(.yy-content--template-test) .yy-qa__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,.55);
  transform: translateY(-50%);
}
:where(.yy-content--template-test) .yy-qa__icon::after{
  transform: translateY(-50%) rotate(90deg);
}
:where(.yy-content--template-test) details[open] .yy-qa__icon::after{
  content: "";
  opacity: 0;
}

:where(.yy-content--template-test) .yy-qa__a{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 0 0 16px;
  color: var(--yy-ink-muted);
}

:where(.yy-content--template-test) .yy-qa__aLabel{
  font-weight: 600;
  color: var(--yy-ink);
}

:where(.yy-content--template-test) .yy-qa__aBody{
  font-size: var(--yy-f-text);
  line-height: var(--yy-lh-text);
}

:where(.yy-content--template-test) .yy-qa__item:hover .yy-qa__q{
  opacity: .85;
}

:where(.yy-content--template-test) .yy-menuDetail__reserve{
  background: #241e1b !important;
  color: #fff !important;
  border: none !important;
}

:where(.yy-content--template-test) .yy-menuDetail__meta{
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--yy-font-serif);
  margin-top: 24px;
}

:where(.yy-content--template-test) .yy-menuDetail__price,
:where(.yy-content--template-test) .yy-menuDetail__time{
  font-size: var(--yy-f-price);
  color: var(--yy-ink);
}

:where(.yy-content--template-test) .yy-menuDetail__symptoms{
  justify-content: flex-start;
  gap: 8px;
}

:where(.yy-content--template-test) .yy-tabs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
}

:where(.yy-content--template-test) .yy-tabs__input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

:where(.yy-content--template-test) .yy-tabs__label{
  font-size: var(--yy-f-text);
  letter-spacing: .08em;
  color: var(--yy-ink-muted);
  cursor: pointer;
  padding: 10px 0;
  text-align: center;
  font-family: var(--yy-font-serif);
  border-bottom: 1px solid transparent;
}

:where(.yy-content--template-test) #yy-tab-terms:checked ~ .yy-tabs__label[for="yy-tab-terms"]{
  color: var(--yy-ink);
  border-bottom-color: var(--yy-ink);
}

:where(.yy-content--template-test) .yy-tabs__panel{
  display: none;
  grid-column: 1 / -1;
  padding-top: 12px;
  color: var(--yy-ink-muted);
  line-height: 1.7;
  font-size: var(--yy-f-text);
}

:where(.yy-content--template-test) #yy-tab-terms:checked ~ .yy-tabs__panel--terms{
  display: block;
}

:where(.yy-content--template-test) .yy-tabs__panel ul{
  margin: 0;
  padding-left: 1.2em;
}

@media (max-width: 900px){
  :where(.yy-content--template-test) .yy-menuDetail{
    grid-template-columns: 1fr;
  }
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hoursTitle{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--yy-ink);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hoursItem{
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  color: var(--yy-ink-muted);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actionBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: none;
  background: #241e1b;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: .04em;
  width: 100%;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actionBtn--tel{
  background: #241e1b;
  color: #fff;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panel .yy-fixedCta__actions{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 16px;
  padding-inline: 16px;
  background: transparent;
  font-family: var(--yy-font-serif);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panel .yy-fixedCta__actionBtn{
  width: auto;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__line{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--yy-font-serif);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineLink{
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--yy-ink-muted);
  text-decoration: none;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineLink img{
  width: 56px;
  height: 56px;
  display: block;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineTitle{
  font-size: 10px;
  color: var(--yy-ink);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineNote{
  font-size: 12px;
}

:where(.yy-content--template-test) .yy-hero{
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

:where(.yy-content--template-test) .yy-hero__media{
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

:where(.yy-content--template-test) .yy-hero__image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

:where(.yy-content--template-test) .yy-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
}

:where(.yy-content--template-test) .yy-hero__inner{
  max-width: var(--yy-content-w);
  margin: 0 auto;
  padding: var(--yy-space-block);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

:where(.yy-content--template-test) .yy-hero__lead{
  margin: 0;
  font-family: var(--yy-font-serif);
  font-size: var(--yy-f-text);
  color: var(--yy-ink);
  letter-spacing: .04em;
  line-height: var(--yy-lh-text);
  display: grid;
  gap: 20px;
  opacity: 1;
}

:where(.yy-content--template-test) .yy-hero__eyebrow{
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0;
  color: var(--yy-ink-muted);
  opacity: 0;
  transition: opacity 2.2s ease;
  transition-delay: .3s;
}

:where(.yy-content--template-test) .yy-hero__title{
  margin: 0;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: .08em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink);
  opacity: 0;
  transition: opacity 2.2s ease;
  transition-delay: .3s;
}

:where(.yy-content--template-test) .yy-hero__copy{
  margin: 0;
  font-size: 15px;
  line-height: var(--yy-lh-text);
  color: var(--yy-ink-muted);
  font-family: var(--yy-font-serif);
  opacity: 0;
  transition: opacity 2.2s ease;
  transition-delay: 1.6s;
}

:where(.yy-content--template-test) .yy-hero__logo{
  display: none;
}

:where(.yy-content--template-test) .yy-hero.is-inview .yy-hero__lead{
  opacity: 1;
  transform: none;
  filter: none;
}

:where(.yy-content--template-test) .yy-hero.is-inview .yy-hero__eyebrow,
:where(.yy-content--template-test) .yy-hero.is-inview .yy-hero__title{
  opacity: 1;
}

:where(.yy-content--template-test) .yy-hero.is-inview .yy-hero__copy{
  opacity: 1;
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__inner{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__eyebrow,
:where(.yy-content--template-test) .yy-hero--video .yy-hero__title{
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__lead{
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__copy{
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__media{
  aspect-ratio: 1536 / 643;
}

:where(.yy-content--template-test) .yy-hero--video .yy-hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

:where(.yy-content--template-test) .yy-hero--image .yy-hero__media{
  aspect-ratio: 1536 / 643;
}

:where(.yy-content--template-test)[data-yy-hero-variant="video"] .yy-hero--image{
  display: none;
}

:where(.yy-content--template-test)[data-yy-hero-variant="image"] .yy-hero--video{
  display: none;
}

@media (prefers-reduced-motion: reduce){
  :where(.yy-content--template-test) .yy-hero__lead,
  :where(.yy-content--template-test) .yy-hero__eyebrow,
  :where(.yy-content--template-test) .yy-hero__title,
  :where(.yy-content--template-test) .yy-hero__copy{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  :where(.yy-content--template-test) .yy-hero--video .yy-hero__video{
    display: none;
  }
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panel .yy-fixedCta__actions{
  background: transparent !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  padding-inline: 16px !important;
  max-width: 360px;
  margin-inline: auto;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panel .yy-fixedCta__actionBtn{
  width: auto !important;
  min-width: 120px;
  margin: 0 !important;
  background: #241e1b !important;
  color: #fff !important;
  border: none !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__panelInner{
  background: #fff;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9100;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal.is-open{
  display: flex;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__content{
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  background: #fff;
  border: 1px solid var(--yy-mist);
  border-radius: 0;
  overflow: hidden;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__link img{
  display: block;
  width: 100%;
  height: auto;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
}

@media (max-width: 640px){
  :where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__bar{
    grid-template-columns: 1fr;
  }
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  padding-bottom: env(safe-area-inset-bottom);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actions{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px var(--yy-space-block);
  background: var(--yy-ink);
  border-top: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__campaign{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.9);
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: .05em;
  border-radius: 0;
  cursor: pointer;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__campaign{
  background: #fff;
  color: var(--yy-ink);
  border-color: #fff;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__icon{
  display: inline-flex;
  align-items: center;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta.is-open .yy-fixedCta__icon{
  transform: rotate(180deg);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__menu{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: var(--yy-ivory);
  border-top: 1px solid var(--yy-mist);
  padding: 18px var(--yy-space-block) 22px;
  display: grid;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta.is-open .yy-fixedCta__menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__header{
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__logo{
  width: auto;
  height: 32px;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hoursTitle{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--yy-ink);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hoursItem{
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  color: var(--yy-ink-muted);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__hoursHoliday{
  color: var(--yy-ink-soft);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__buttons{
  display: grid;
  gap: 10px;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actionBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 0;
  background: #241e1b;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actionBtn--tel{
  background: #241e1b;
  color: #fff;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__line{
  display: grid;
  gap: 8px;
  justify-items: center;
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineLabel{
  margin: 0;
  font-size: 12px;
  color: var(--yy-ink-muted);
}

:where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__lineQr img{
  width: 96px;
  height: 96px;
  display: block;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9100;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal.is-open{
  display: flex;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__content{
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  background: #fff;
  border: 1px solid var(--yy-mist);
  border-radius: 0;
  overflow: hidden;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__link img{
  display: block;
  width: 100%;
  height: auto;
}

:where(.yy-content--template-test, .yy-content--home) .yy-campaignModal__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
}

@media (max-width: 640px){
  :where(.yy-content--template-test, .yy-content--home) .yy-fixedCta__actions{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__media,
:where(.yy-content--template-test) .yy-tabs{
  position: relative;
}
:where(.yy-content--template-test) .yy-tabs::after{
  content: none;
}
:where(.yy-content--template-test) #yy-tab-desc:checked ~ .yy-tabs__label[for="yy-tab-desc"],
:where(.yy-content--template-test) #yy-tab-flow:checked ~ .yy-tabs__label[for="yy-tab-flow"],
:where(.yy-content--template-test) #yy-tab-terms:checked ~ .yy-tabs__label[for="yy-tab-terms"]{
  color: var(--yy-ink);
  border-bottom-color: var(--yy-ink);
}
:where(.yy-content--template-test) #yy-tab-desc:checked ~ .yy-tabs__panel--desc{
  display: block;
}
:where(.yy-content--template-test) #yy-tab-flow:checked ~ .yy-tabs__panel--flow{
  display: block;
}


/* Reviews slider (template-test) */
:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider{
  position: relative;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider__track{
  display: flex;
  gap: var(--yy-space-block);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: var(--yy-space-block);
  padding-inline: var(--yy-space-block);
  padding-bottom: var(--yy-space-inline);
  scrollbar-width: none;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider__track::-webkit-scrollbar{
  display: none;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCta{
  margin-top: var(--yy-space-inline);
  text-align: center;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 0;
  background: #241e1b;
  color: #fff;
  text-decoration: none;
  font-family: var(--yy-font-serif);
  font-size: var(--yy-f-btn);
  letter-spacing: .04em;
}

:where(.yy-content--home) .yy-reviewSlider .yy-sliderBtn--prev{
  left: calc(var(--yy-space-block) * -1 - 24px);
}

:where(.yy-content--home) .yy-reviewSlider .yy-sliderBtn--next{
  right: calc(var(--yy-space-block) * -1 - 24px);
}

/* Flow navigation + slider dots */
:where(.yy-content--template-test) .yy-flowNav{
  margin: 0 0 var(--yy-space-inline);
}
:where(.yy-content--template-test) .yy-flowNav__list{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, var(--yy-flow-card-w));
  gap: var(--yy-flow-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
:where(.yy-content--template-test) .yy-flowNav__list::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,.18);
}
:where(.yy-content--template-test) .yy-flowNav__item{
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
:where(.yy-content--template-test) .yy-flowNav__num{
  font-size: var(--yy-f-tag);
  letter-spacing: .12em;
  color: var(--yy-ink-muted);
  background: #f3eee7;
  padding: 0 8px;
}
:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider::before,
:where(.yy-content--template-test) .yy-section--flow .yy-flowSlider::after{
  content: none !important;
}

:where(.yy-content--template-test) .yy-sliderDots{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
:where(.yy-content--template-test) .yy-sliderDot{
  width: 26px;
  height: 1px;
  border: none;
  background: rgba(0,0,0,.25);
  padding: 0;
}
:where(.yy-content--template-test) .yy-sliderDot.is-active{
  background: rgba(0,0,0,.6);
}

/* =========================================================
   template-test SSOT (single source of truth)
   - review card width
   - align "利用規約 / 詳細を見る" to image left edge
   ========================================================= */
:where(.yy-content--template-test, .yy-content--home){
  --yy-review-card-w: 420px;
  --yy-menu-card-inner-pad: var(--yy-space-block);
  --yy-menu-card-w: 380px;
  --yy-acc-width: 8.5em;
}

:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider,
:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider__track{
  --yy-review-card-w: 420px;
}

:where(.yy-content--template-test, .yy-content--home) .yy-reviewSlider__track > .yy-reviewCard,
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard{
  flex: 0 0 var(--yy-review-card-w) !important;
  width: var(--yy-review-card-w) !important;
  max-width: var(--yy-review-card-w) !important;
  min-width: var(--yy-review-card-w) !important;
  box-shadow: none !important;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCta{
  margin-top: calc(var(--yy-space-block) * 2) !important;
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCard{
  width: var(--yy-menu-card-w) !important;
  max-width: var(--yy-menu-card-w) !important;
  flex: 0 0 var(--yy-menu-card-w) !important;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__media,
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__media img{
  border-radius: 0;
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track{
  gap: clamp(16px, 2vw, 20px);
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCards:not(.is-slider) .yy-menuCards__track{
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(var(--yy-menu-card-w), var(--yy-menu-card-w)));
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track{
  scrollbar-width: none;
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track::-webkit-scrollbar{
  display: none;
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCard,
:where(.yy-content--template-test, .yy-content--home) .yy-menuCards.is-slider .yy-menuCard{
  flex: 0 0 var(--yy-menu-card-w);
}

@media (min-width:1024px){
  :where(.yy-content--template-test, .yy-content--home) .yy-menuCards__track{
    grid-template-columns: repeat(auto-fit, minmax(var(--yy-menu-card-w), var(--yy-menu-card-w)));
    justify-content: center;
  }
}

@media (max-width:767px){
  :where(.yy-content--template-test, .yy-content--home) .yy-menuCards.is-slider .yy-menuCards__track,
  :where(.yy-content--template-test, .yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCards__track{
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
  :where(.yy-content--template-test, .yy-content--home) .yy-menuCards.is-slider .yy-menuCard,
  :where(.yy-content--template-test, .yy-content--home) .yy-menuCards[data-yy-slider="menu"] .yy-menuCard{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__media{
  width: calc(100% - (var(--yy-menu-card-inner-pad) * 2)) !important;
  margin-left: var(--yy-menu-card-inner-pad) !important;
  margin-right: var(--yy-menu-card-inner-pad) !important;
  background: transparent !important;
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__body{
  padding-inline: var(--yy-menu-card-inner-pad) !important;
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__accordion,
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__action{
  align-self: stretch !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-inline: 0 !important;
  text-align: left !important;
  box-sizing: border-box !important;
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__symptoms{
  margin-bottom: calc(var(--yy-space-inline) * 0.5);
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__accordion{
  margin-top: calc(var(--yy-space-inline) * 0.75);
}
:where(.yy-content--template-test, .yy-content--home) .yy-menuCard__btn,
:where(.yy-content--template-test, .yy-content--home) .yy-acc__summary{
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  padding-inline: 0 !important;
}
:where(.yy-content--template-test, .yy-content--home) .yy-acc__summary{
  justify-content: flex-start !important;
  padding-inline: 0 !important;
  border: none !important;
  background: transparent !important;
  color: var(--yy-ink-muted) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
  font-size: var(--yy-f-btn) !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  font-family: var(--yy-font-serif) !important;
}

/* =========================================================
   template-test review cards (Aman tone)
   - calm typography / generous spacing
   - no border / no shadow (white card only)
   ========================================================= */
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard{
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 22px 24px;
  gap: 12px;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__menu{
  font-family: var(--yy-font-serif);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--yy-ink-muted);
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__stars{
  color: #b79c7e;
  font-size: 13px;
  letter-spacing: .08em;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__title{
  margin: 0;
  font-family: var(--yy-font-serif);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--yy-ink);
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__text{
  margin: 0;
  font-size: var(--yy-f-text);
  line-height: 1.9;
  color: var(--yy-ink-muted);
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__tags{
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
:where(.yy-content--template-test, .yy-content--home) .yy-reviewCard__tags li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.05);
  background: rgba(226,214,198,.55);
  font-size: var(--yy-f-tag);
  color: var(--yy-ink-soft);
}

/* ---------------------------------------------------------
   Home: Aman sections (place / director / salon)
--------------------------------------------------------- */
:where(.yy-content--home) .yy-amanHeading{
  display: grid;
  gap: 10px;
  max-width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

:where(.yy-content--home) .yy-amanHeading__eyebrow{
  margin: 0;
  font-size: var(--yy-f-eyebrow);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink-muted);
}

:where(.yy-content--home) .yy-amanHeading__title{
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.6;
  letter-spacing: .12em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink);
}

:where(.yy-content--home) .yy-amanHeading__lead{
  margin: 0;
  font-size: var(--yy-f-text);
  line-height: 1.9;
  color: var(--yy-ink-soft);
}

:where(.yy-content--home) .yy-placeGallery{
  position: relative;
  overflow: hidden;
  padding-block: 6px;
}

:where(.yy-content--home) .yy-placeGallery::before,
:where(.yy-content--home) .yy-placeGallery::after{
  content: none;
}

:where(.yy-content--home) .yy-placeGallery__track{
  display: flex;
  width: max-content;
  gap: 0;
  animation: yy-place-marquee 46s linear infinite;
  will-change: transform;
}

:where(.yy-content--home) .yy-placeGallery__group{
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  padding-right: clamp(14px, 2vw, 26px);
  align-items: stretch;
}

:where(.yy-content--home) .yy-placeGallery__item{
  width: clamp(200px, 28vw, 320px);
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

:where(.yy-content--home) .yy-placeGallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

:where(.yy-content--home) .yy-placeGallery__item:hover img{
  transform: scale(1.02);
}

@keyframes yy-place-marquee{
  to{ transform: translateX(-50%); }
}

:where(.yy-content--home) .yy-directorCard{
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  justify-content: center;
  max-width: 980px;
  margin-inline: auto;
}

:where(.yy-content--home) .yy-directorCard__media{
  min-height: clamp(320px, 42vw, 520px);
  align-self: stretch;
}

:where(.yy-content--home) .yy-directorCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

:where(.yy-content--home) .yy-directorCard__body{
  padding: clamp(24px, 4vw, 56px);
  display: flex;
  align-items: flex-start;
  min-height: clamp(360px, 42vw, 520px);
  color: #241e1b;
  max-width: 640px;
  justify-self: center;
}

:where(.yy-content--home) .yy-profile-copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 640px;
  margin: 0;
  width: max-content;
  max-width: 100%;
}

:where(.yy-content--home) .yy-profile-catch{
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.6;
  letter-spacing: .12em;
  font-family: var(--yy-font-serif);
  font-weight: 500;
  color: #241e1b;
  text-align: left;
}

:where(.yy-content--home) .yy-profile-sign{
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .6em;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  letter-spacing: .12em;
  font-family: var(--yy-font-serif);
  color: #241e1b;
  justify-content: flex-start;
}

:where(.yy-content--home) .yy-profile-sign__role{
  font-size: .85em;
  letter-spacing: .22em;
}

:where(.yy-content--home) .yy-profile-sign__name{
  font-size: 1em;
  letter-spacing: .12em;
}

:where(.yy-content--home) .yy-directorCard__heading{
  margin: 0;
  text-align: start;
  writing-mode: vertical-rl;
  text-orientation: upright;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

:where(.yy-content--home) .yy-directorCard__heading-role{
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink-muted);
  margin-bottom: 1.2em;
}

:where(.yy-content--home) .yy-directorCard__heading-name{
  display: block;
  font-size: var(--yy-f-title);
  letter-spacing: .18em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink);
}

:where(.yy-content--home) .yy-directorCard__text p{
  margin: 0;
  font-size: var(--yy-f-text);
  line-height: 2.3;
  color: #241e1b;
}

:where(.yy-content--home) .yy-directorCard__heading + p{
  margin-top: 18px;
}

:where(.yy-content--home) .yy-directorCard__text p + p{
  margin-top: 12px;
}

:where(.yy-content--home) .yy-directorCard__text{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--yy-font-serif);
  letter-spacing: .08em;
  line-height: 1.9;
}

:where(.yy-content--home) .yy-profile-body{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--yy-font-serif);
  letter-spacing: .08em;
  line-height: 2.3;
  color: #241e1b;
  height: 360px;
  margin: 0;
  padding-top: 40px;
  align-self: center;
}

:where(.yy-content--home) .yy-directorCard__motto{
  margin: 0;
  padding-top: 0;
  border-top: none;
  font-family: var(--yy-font-serif);
  font-size: var(--yy-f-title);
  letter-spacing: .18em;
  color: var(--yy-ink);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
}

:where(.yy-content--home) .yy-salonGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--yy-space-block);
}

:where(.yy-content--home) .yy-salonCard{
  display: grid;
  grid-template-rows: auto 1fr;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

:where(.yy-content--home) .yy-salonCard__media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

:where(.yy-content--home) .yy-salonCard__body{
  padding-block: clamp(18px, 3vw, 28px);
  padding-right: clamp(18px, 3vw, 28px);
  padding-left: 0;
  display: grid;
  gap: 12px;
}

:where(.yy-content--home) .yy-salonCard__label{
  margin: 0;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink-muted);
}

:where(.yy-content--home) .yy-salonCard__name{
  margin: 0;
  font-size: 20px;
  letter-spacing: .12em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink);
}

:where(.yy-content--home) .yy-salonCard__tags{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 0;
  margin: 0;
}

:where(.yy-content--home) .yy-salonCard__tags li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.05);
  background: rgba(226,214,198,.55);
  font-size: var(--yy-f-tag);
  color: var(--yy-ink-soft);
}

:where(.yy-content--home) .yy-salonCard__info p{
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--yy-ink-soft);
}

:where(.yy-content--home) .yy-salonCard__info p + p{
  margin-top: 12px;
}

:where(.yy-content--home) .yy-salonCard__holiday{
  color: var(--yy-ink);
  font-weight: 600;
}

:where(.yy-content--home) .yy-salonCard__link{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  font-family: var(--yy-font-serif);
  color: var(--yy-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

:where(.yy-content--home) .yy-salonCard__link:hover{
  opacity: .7;
}

@media (max-width: 900px){
  :where(.yy-content--home) .yy-directorCard{
    grid-template-columns: 1fr;
  }

  :where(.yy-content--home) .yy-directorCard__media{
    min-height: 240px;
  }

  :where(.yy-content--home) .yy-directorCard__body{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  :where(.yy-content--home) .yy-profile-copy{
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  :where(.yy-content--home) .yy-profile-sign{
    justify-content: flex-start;
  }

  :where(.yy-content--home) .yy-profile-body{
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: auto;
  }

  :where(.yy-content--home) .yy-directorCard__heading{
    margin: 0 0 12px;
    text-align: left;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    grid-column: auto;
    grid-row: auto;
  }

  :where(.yy-content--home) .yy-directorCard__heading-role{
    font-size: 10px;
    letter-spacing: .28em;
    margin-bottom: .8em;
  }

  :where(.yy-content--home) .yy-directorCard__heading-name{
    font-size: var(--yy-f-title);
    letter-spacing: .16em;
  }

  :where(.yy-content--home) .yy-directorCard__motto{
    writing-mode: horizontal-tb;
    grid-column: auto;
    grid-row: auto;
    align-self: start;
    justify-self: start;
    margin-top: 12px;
  }
}

@media (max-width: 768px){
  :where(.yy-content--home) .yy-directorCard__heading-name,
  :where(.yy-content--home) .yy-directorCard__motto{
    font-size: var(--yy-f-title-sp);
  }
}

@media (max-width: 640px){
  :where(.yy-content--home) .yy-placeGallery__item{
    width: clamp(220px, 70vw, 320px);
  }
}

@media (prefers-reduced-motion: reduce){
  :where(.yy-content--home) .yy-placeGallery{
    overflow-x: auto;
  }

  :where(.yy-content--home) .yy-placeGallery__track{
    animation: none;
  }

  :where(.yy-content--home) .yy-placeGallery__group[aria-hidden="true"]{
    display: none;
  }
}
