@charset "UTF-8";

:root {
  --ivory: #f8f5ef;
  --paper: #fffdf9;
  --ink: #47423c;
  --muted: #655f58;
  --gold: #b69a58;
  --gold-deep: #8f7538;
  --rose: #b9757c;
  --rose-pale: #f4e8e7;
  --blue: #a9bec8;
  --blue-pale: #eaf1f3;
  --line: rgba(78, 69, 58, 0.16);
  --shadow: 0 24px 70px rgba(67, 54, 37, 0.1);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --content: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.9;
  letter-spacing: 0.055em;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: normal;
  word-break: auto-phrase;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 8px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(182, 154, 88, 0.13);
  background: rgba(255, 253, 249, 0.91);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 160px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  content: url("assets/kafna-logo-katakana-transparent.png");
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: 0.3s;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.global-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.global-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  transition: 0.25s;
}

.nav-cta:hover {
  color: white;
  background: var(--gold);
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-image--home {
  aspect-ratio: 12 / 5;
}

.hero-image--home > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  width: 12.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  outline: none;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-hotspot__surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(83, 62, 26, 0);
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.hero-hotspot__surface img {
  position: absolute;
  width: 819.7% !important;
  max-width: none;
  height: auto !important;
  object-fit: initial;
  pointer-events: none;
  user-select: none;
}

.hero-hotspot--color .hero-hotspot__surface img {
  top: -146.5%;
  left: -625%;
}

.hero-hotspot--nail .hero-hotspot__surface img {
  top: -230.6%;
  left: -401.7%;
}

.hero-hotspot--color {
  top: 42.7%;
  left: 76.25%;
}

.hero-hotspot--nail {
  top: 67.4%;
  left: 49%;
}

.hero-hotspot::before {
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-top-color: #e2b22a;
  border-right-color: rgba(255, 229, 142, 0.9);
  border-radius: inherit;
  content: "";
  z-index: 3;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(224, 174, 34, 0.8));
}

.hero-hotspot::after {
  position: absolute;
  inset: 5%;
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 236, 167, 0.95);
  border-radius: inherit;
  content: "";
  z-index: 3;
  opacity: 0;
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible {
  transform: translateY(-6px) scale(1.035);
}

.hero-hotspot:hover .hero-hotspot__surface,
.hero-hotspot:focus-visible .hero-hotspot__surface {
  box-shadow: 0 12px 24px rgba(103, 77, 28, 0.2);
  transform: translateY(-2px) scale(1.035);
}

.hero-hotspot:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 0.08s;
}

.hero-hotspot:active .hero-hotspot__surface {
  box-shadow: 0 2px 6px rgba(103, 77, 28, 0.12);
  transform: translateY(1px) scale(0.955);
  transition-duration: 0.08s;
}

.hero-hotspot:hover::before,
.hero-hotspot:focus-visible::before {
  opacity: 1;
  animation: ring-spin 1.15s linear infinite;
}

.hero-hotspot:hover::after,
.hero-hotspot:focus-visible::after {
  opacity: 1;
  animation: ring-spin-reverse 1.5s linear infinite;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 13vw, 170px) 24px clamp(70px, 10vw, 128px);
  background: linear-gradient(135deg, #fffdf9 0%, #f8f5ef 100%);
}

.page-hero::before {
  position: absolute;
  top: -58%;
  right: -13%;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 214deg,
    rgba(177, 196, 202, 0.58),
    rgba(205, 192, 215, 0.55),
    rgba(226, 184, 193, 0.5),
    rgba(226, 207, 161, 0.46),
    rgba(189, 211, 198, 0.48),
    rgba(177, 196, 202, 0.58)
  );
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.64);
  content: "";
  filter: blur(5px);
  opacity: 0.52;
}

.page-hero::after {
  position: absolute;
  top: -50%;
  right: -9%;
  width: min(48vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(182, 154, 88, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: auto;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero h1,
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.13em;
}

.page-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(76px, 10vw, 140px) 0;
}

.section--compact {
  padding: clamp(52px, 7vw, 88px) 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--rose {
  background: var(--rose-pale);
}

.section--blue {
  background: var(--blue-pale);
}

.container {
  width: var(--content);
  margin-inline: auto;
}

.lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.desktop-only {
  display: inline;
}

.center {
  text-align: center;
}

.split-intro {
  padding: clamp(80px, 10vw, 150px) 0;
  text-align: center;
}

.split-intro .section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.gateway-grid {
  display: grid;
  max-width: 860px;
  margin: clamp(54px, 7vw, 90px) auto 0;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 5vw, 70px);
}

.gateway {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  place-items: end center;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gateway::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 35%, rgba(44, 36, 30, 0.7));
  content: "";
}

.gateway::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  transition: transform 0.5s ease;
}

.gateway img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gateway:hover img {
  transform: scale(1.06);
}

.gateway:hover::before {
  transform: rotate(7deg);
}

.gateway__text {
  padding: 0 20px 15%;
  text-align: center;
}

.gateway__text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gateway__text strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.11em;
}

.concept {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 8vw, 110px);
}

.concept__image {
  position: relative;
}

.concept__image::before {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 45%;
  height: 50%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  content: "";
}

.concept__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 43%;
}

.concept__image--profile {
  width: min(100%, 320px);
  max-width: 320px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  justify-self: center;
  background: #eef2f3;
  box-shadow: 0 24px 55px rgba(66, 57, 47, 0.13);
}

.concept__image--profile::before {
  display: none;
}

.concept__image--profile img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.concept__copy h2 {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1.65;
}

.concept__copy p {
  color: var(--muted);
}

.concept__copy {
  max-width: 620px;
}

.service-guide {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.service-guide__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding: 22px 52px 20px 0;
  border-top: 1px solid rgba(182, 154, 88, 0.35);
  color: var(--gold-deep);
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.service-guide__link::after {
  position: absolute;
  right: 4px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "→";
  display: grid;
  place-items: center;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-guide__link span { font-size: .92rem; }
.service-guide__link small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-guide__link:hover,
.service-guide__link:focus-visible { padding-left: 8px; }
.service-guide__link:hover::after,
.service-guide__link:focus-visible::after {
  color: white;
  background: var(--gold);
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.text-link::after {
  width: 48px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.25s;
}

.text-link:hover::after {
  width: 70px;
}

.feature-grid,
.gallery-grid,
.case-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.feature-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.section-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.explore-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(67, 54, 37, 0);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.explore-card:hover,
.explore-card:focus-visible {
  border-color: rgba(182, 154, 88, .7);
  background: rgba(255, 251, 244, .96);
  box-shadow: 0 18px 42px rgba(67, 54, 37, .1);
  outline: none;
  transform: translateY(-7px);
}

.explore-card:active {
  box-shadow: 0 6px 18px rgba(67, 54, 37, .07);
  transform: translateY(-1px) scale(.99);
  transition-duration: .08s;
}

.explore-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
}

.explore-card__link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(182,154,88,.28);
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .13em;
}

.explore-card__link::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-left: auto;
  content: "→";
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.explore-card:hover .explore-card__link::after,
.explore-card:focus-visible .explore-card__link::after {
  color: white;
  background: var(--gold);
  transform: translateX(5px);
}

.feature-card__number {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.15rem;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.wide-visual {
  overflow: hidden;
  padding: clamp(22px, 4vw, 58px) 0;
  background: var(--ivory);
}

.wide-visual img {
  width: min(1440px, calc(100% - 48px));
  height: auto;
  margin: auto;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(70, 57, 40, 0.08);
}

.service-hero-visual {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.service-hero-visual img {
  width: 100%;
  height: auto;
  margin: 0;
  box-shadow: none;
}

.single-photo {
  max-width: 760px;
  margin: 50px auto 0;
}

.single-photo img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 36%;
}

.landscape-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 100px);
}

.menu-section__visual img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
}

.menu-section__visual--color img {
  object-position: center 38%;
}

.menu-section__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
  font-weight: 400;
}

.menu-section__content > p {
  color: var(--muted);
}

.recommended {
  margin: 34px 0;
  padding: 26px 28px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}

.recommended h3 {
  margin-top: 0;
  font-size: 1rem;
}

.recommended ul {
  margin: 0;
  padding-left: 1.2em;
}

.color-invitation {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, #fffdf9 0%, #f7f0ee 55%, #eef3f2 100%);
}

.color-invitation::before {
  position: absolute;
  top: -240px;
  right: -190px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(175,198,204,.35), rgba(208,191,216,.32), rgba(229,184,194,.3), rgba(226,207,163,.28), rgba(190,212,199,.3), rgba(175,198,204,.35));
  box-shadow: inset 0 0 70px rgba(255,255,255,.7);
  content: "";
  filter: blur(4px);
}

.color-invitation__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.color-invitation h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .1em;
}

.color-invitation__lead {
  margin: 12px 0 42px;
  color: var(--gold-deep);
  font-size: 1.02rem;
}

.color-invitation__body {
  max-width: 720px;
  margin: auto;
  color: var(--muted);
}

.color-invitation__body p + p {
  margin-top: 24px;
}

.color-invitation__closing {
  position: relative;
  margin: 52px auto 0;
  padding-top: 36px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.8;
  letter-spacing: .09em;
}

.color-invitation__closing::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.price-card {
  margin-top: 20px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(182, 154, 88, 0.38);
  background: white;
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  font-weight: 500;
}

.price {
  margin: 12px 0;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
}

.price small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.75rem;
}

.price-card ul {
  padding-left: 1.2em;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.25s;
}

.button:hover,
.button--fill {
  color: white;
  background: var(--gold);
}

.button--fill:hover {
  background: var(--gold-deep);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid img:nth-child(2) {
  transform: translateY(42px);
}

.gallery-grid img:nth-child(3) {
  transform: translateY(84px);
}

.case-card {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-direction: column;
  background: white;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.case-card__body {
  display: flex;
  min-height: 138px;
  padding: 22px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.case-card__body h2,
.case-card__body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.case-card__body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.qualification-list {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
}

.qualification-list li {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
}

.faq-group + .faq-group {
  margin-top: 68px;
}

.faq-group h2 {
  margin-bottom: 24px;
  color: var(--gold-deep);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 48px 24px 42px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  transition: color .25s ease, background-color .25s ease, padding-left .25s ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  padding-left: 48px;
  color: var(--gold-deep);
  background: linear-gradient(90deg, rgba(182, 154, 88, .1), transparent 72%);
  outline: none;
}

.faq-item summary::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--sans);
  content: "Q";
  transition: color .25s ease, transform .25s ease;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--gold-deep);
  content: "＋";
  transform: translateY(-50%);
  transition: color .25s ease, transform .3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover::before,
.faq-item summary:focus-visible::before { color: var(--rose); transform: translateX(4px); }
.faq-item summary:hover::after,
.faq-item summary:focus-visible::after { color: var(--rose); }
.faq-item[open] summary { color: var(--gold-deep); }

.faq-item p {
  position: relative;
  margin: 0;
  padding: 0 42px 26px;
  color: var(--muted);
}

.faq-item p::before {
  position: absolute;
  left: 0;
  color: var(--rose);
  font-family: var(--sans);
  content: "A";
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
}

.contact-choice {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.contact-choice + .contact-choice {
  margin-top: 18px;
}

.contact-form {
  padding: clamp(28px, 5vw, 58px);
  background: white;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.required {
  margin-left: 8px;
  color: var(--rose);
  font-family: var(--sans);
  font-size: 0.68rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--ivory);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}

.checkbox input {
  width: auto;
  margin-top: 7px;
}

.legal {
  max-width: 920px;
  margin: auto;
}

.legal h2 {
  margin-top: 60px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

.legal h3 {
  margin-top: 34px;
  font-size: 1.05rem;
}

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

.legal-table th,
.legal-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 26%;
  font-weight: 500;
  background: var(--ivory);
}

.salon-announcement {
  padding: clamp(36px, 5vw, 64px) 0;
  background: var(--ivory);
}

.salon-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.salon-announcement h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
}

.salon-announcement p {
  margin: 0;
}

#salon-open .section-title {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.hand-care-news {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 700px) {
  .salon-announcement__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.notice-list {
  display: grid;
  gap: 18px;
}

#events {
  scroll-margin-top: 82px;
}

.notice-card {
  display: grid;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  grid-template-columns: 160px 1fr;
  gap: 30px;
}

.notice-card time {
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.notice-card h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 400;
}

.notice-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 24px;
  color: white;
  text-align: center;
  background: var(--ink);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  width: 240px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.cta-band::before {
  top: -120px;
  left: 4%;
}

.cta-band::after {
  right: 5%;
  bottom: -130px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

.cta-band p {
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.73);
}

.cta-band .button {
  color: white;
}

.site-footer {
  padding: 76px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #38342f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: clamp(40px, 7vw, 90px);
}

.footer-brand {
  display: inline-block;
  width: 180px;
  height: 64px;
  background: transparent;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.32) saturate(1.08) drop-shadow(0 1px 0 rgba(0,0,0,.12));
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: white;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 8px 0;
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
}

.footer-links a,
.legal-links a {
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover,
.legal-links a:hover {
  color: white;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  margin: 20px 0 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes ring-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes ring-spin-reverse {
  to {
    transform: rotate(-1turn);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    background: rgba(255, 253, 249, 0.98);
    opacity: 0;
    transition: max-height 0.4s, opacity 0.3s, padding 0.4s;
  }

  .global-nav.is-open {
    max-height: calc(100vh - 70px);
    padding: 28px;
    opacity: 1;
  }

  .global-nav a {
    padding: 8px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-image--home {
    aspect-ratio: 12 / 5;
  }

  .hero-image--home img {
    object-fit: contain;
  }

  .concept,
  .menu-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-section__visual img {
    height: min(70vw, 640px);
  }

  .feature-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  .desktop-only {
    display: none;
  }

  :root {
    --content: min(100% - 34px, 1180px);
  }

  body {
    line-height: 1.85;
    letter-spacing: 0.035em;
  }

  .page-hero::before {
    top: -20%;
    right: -64%;
    width: 118vw;
    opacity: 0.46;
  }

  .page-hero::after {
    top: -13%;
    right: -55%;
    width: 102vw;
  }

  .color-invitation::before {
    top: -120px;
    right: -230px;
    width: 430px;
  }

  .color-invitation h2 br,
  .color-invitation__body br {
    display: none;
  }

  .color-invitation__lead {
    margin-bottom: 32px;
  }

  .brand img {
    width: 126px;
    height: 52px;
  }

  .hero-image--home {
    padding: 0;
  }

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

  .gateway {
    width: min(82vw, 380px);
    margin: auto;
  }

  .concept__copy h2 br {
    display: none;
  }

  .feature-grid,
  .gallery-grid,
  .case-grid,
  .info-grid,
  .qualification-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(n) {
    transform: none;
  }

  .wide-visual img {
    min-height: 0;
    object-fit: contain;
  }

  .hero-hotspot:hover,
  .hero-hotspot:focus-visible {
    transform: translateY(-3px) scale(1.025);
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .notice-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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