/* =========================================================================
   BODY CARE TRANJI — design system
   3案統合：ダークベージュの落ち着き × 明るいアイボリー × ナチュラルな抜け感
   ========================================================================= */

:root {
  --ivory:    #F4EDE2;   /* main background */
  --cream:    #EBE1D2;   /* sub background */
  --sand:     #E3D6C2;   /* card / soft block */
  --stone:    #CFC0A8;   /* borders / dividers */
  --taupe:    #9C8C76;   /* sub text */
  --brown:    #6E6052;   /* body text */
  --espresso: #4A3F34;   /* strong text */
  --dark:     #332B22;   /* headings / dark sections */
  --gold:     #B6964F;   /* accent */
  --gold-soft:#C9A84C;   /* accent highlight */
  --white:    #FCF8F2;   /* card background */

  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --serif-jp: "Noto Serif JP", "Yu Mincho", serif;
  --sans-jp:  "Noto Sans JP", "Hiragino Sans", sans-serif;

  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-jp);
  font-weight: 300;
  color: var(--brown);
  background: var(--ivory);
  line-height: 1.9;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- typography helpers ---------- */
.en { font-family: var(--serif-en); letter-spacing: .14em; }
.jp-serif { font-family: var(--serif-jp); }
.eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--espresso);
}
.section-sub {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--taupe);
}
.section-sub::before, .section-sub::after { content: "—"; margin: 0 .6em; color: var(--stone); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(244,237,226,.86);
  backdrop-filter: blur(10px);
  padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(207,192,168,.5);
}
.brand { line-height: 1.15; }
.brand .brand-en { font-family: var(--serif-en); font-size: 13px; letter-spacing: .34em; color: var(--gold); }
.brand .brand-name { font-family: var(--serif-en); font-size: 24px; letter-spacing: .22em; color: var(--dark); font-weight: 500; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav a.navlink {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .18em; color: var(--espresso);
  position: relative; padding: 4px 0;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav a.navlink:hover::after { width: 100%; }
.btn-reserve {
  font-family: var(--serif-jp); font-size: 14px; letter-spacing: .12em;
  background: var(--dark); color: var(--white);
  padding: 12px 26px; border: 1px solid var(--dark);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.btn-reserve:hover { background: transparent; color: var(--dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(244,237,226,.92) 0%, rgba(244,237,226,.62) 38%, rgba(244,237,226,.12) 70%, rgba(51,43,34,.10) 100%);
}
.hero-rail {
  position: absolute; left: clamp(18px,3vw,40px); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; z-index: 3;
  font-family: var(--serif-en); font-size: 12px; letter-spacing: .4em; color: var(--taupe);
  height: 60%; display: flex; flex-direction: column; justify-content: space-between; align-items: center;
}
.hero-rail .rail-line { width: 1px; flex: 1; background: linear-gradient(var(--stone), transparent); margin: 16px 0; }
.hero-inner { position: relative; z-index: 4; padding-left: clamp(56px, 8vw, 130px); max-width: 640px; }
.hero .eyebrow { display: block; margin-bottom: 18px; }
.hero h1 {
  font-family: var(--serif-en); font-weight: 500; color: var(--dark);
  font-size: clamp(40px, 6vw, 74px); letter-spacing: .14em; line-height: 1; margin-bottom: 6px;
}
.hero .hero-sub-en { font-family: var(--serif-en); font-size: 15px; letter-spacing: .3em; color: var(--gold); }
.hero-divider { width: 46px; height: 1px; background: var(--gold); margin: 30px 0; }
.hero h2 {
  font-family: var(--serif-jp); font-weight: 300; color: var(--espresso);
  font-size: clamp(22px, 3vw, 32px); letter-spacing: .14em; line-height: 1.7;
}
.hero p.lead { margin-top: 20px; font-size: 14px; color: var(--brown); line-height: 2.1; }
.hero .cta-row { margin-top: 38px; }

/* CTA button (outline) */
.btn-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--serif-jp); font-size: 15px; letter-spacing: .12em; color: var(--dark);
  border: 1px solid var(--espresso); padding: 16px 34px; background: rgba(252,248,242,.4);
  transition: background .45s var(--ease), color .45s var(--ease);
}
.btn-cta .arr { transition: transform .45s var(--ease); }
.btn-cta:hover { background: var(--dark); color: var(--white); }
.btn-cta:hover .arr { transform: translateX(7px); }
.btn-cta.dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-cta.dark:hover { background: transparent; color: var(--dark); }

/* =========================================================================
   Sections
   ========================================================================= */
section { position: relative; }
.block { padding: clamp(70px, 10vw, 130px) 0; }
.block.tint { background: var(--cream); }
.block-head { text-align: center; margin-bottom: 56px; }
.block-head .section-label { display: block; }
.block-head h3 { font-family: var(--serif-jp); font-weight: 300; font-size: clamp(20px,2.4vw,26px); color: var(--espresso); margin-top: 10px; letter-spacing: .1em; }

/* About / お悩み */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.worry-list { list-style: none; display: grid; gap: 14px; }
.worry-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--espresso); font-family: var(--serif-jp); }
.worry-list li .chk {
  width: 22px; height: 22px; border: 1px solid var(--gold); border-radius: 2px; flex: none;
  display: grid; place-items: center; color: var(--gold); font-size: 12px;
}
.about-copy h4 { font-family: var(--serif-jp); font-weight: 300; font-size: 20px; color: var(--espresso); line-height: 1.9; margin-bottom: 18px; letter-spacing: .08em; }
.about-copy p { font-size: 14px; color: var(--brown); }

/* Feature 01-02-03 */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.feature-cell { padding: 44px 28px; text-align: center; border-left: 1px solid var(--stone); }
.feature-cell:first-child { border-left: 0; }
.feature-cell .num { font-family: var(--serif-en); font-size: 50px; color: var(--gold); font-style: italic; line-height: 1; }
.feature-cell .ftitle { font-family: var(--serif-jp); font-size: 17px; color: var(--espresso); margin: 22px 0 10px; letter-spacing: .08em; }
.feature-cell .fdesc { font-size: 13px; color: var(--taupe); line-height: 1.9; }
.feature-cell .leaf { margin: 14px auto 0; width: 26px; opacity: .5; }

/* Voice */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; max-width: 880px; margin: 0 auto; }
.voice-card { background: var(--white); border: 1px solid var(--stone); padding: 30px 28px; display: flex; gap: 18px; align-items: flex-start; }
.voice-card .leaf { width: 30px; opacity: .55; flex: none; margin-top: 4px; }
.voice-card .vbody { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); line-height: 1.8; }
.voice-card .stars { color: var(--gold-soft); letter-spacing: .2em; font-size: 13px; margin-top: 12px; }
.center-link { text-align: center; margin-top: 40px; }
.text-link { font-family: var(--serif-jp); font-size: 14px; color: var(--espresso); display: inline-flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--stone); padding-bottom: 4px; transition: gap .4s var(--ease); }
.text-link:hover { gap: 18px; }

/* Therapist + Instagram + Reserve composite */
.trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: start; }
.therapist-card .photo { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); margin-bottom: 18px; }
.therapist-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.therapist-card .role { font-family: var(--serif-jp); font-size: 15px; color: var(--gold); margin-bottom: 8px; }
.therapist-card p { font-size: 13px; color: var(--brown); margin-bottom: 12px; }
.col-head { font-family: var(--serif-en); font-size: 14px; letter-spacing: .26em; color: var(--espresso); text-transform: uppercase; margin-bottom: 6px; }
.col-sub { font-family: var(--serif-jp); font-size: 12px; color: var(--taupe); letter-spacing: .2em; margin-bottom: 22px; }
.insta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.insta-grid .cell { aspect-ratio: 1; background: var(--sand); overflow: hidden; }
.insta-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-grid .cell:hover img { transform: scale(1.06); }
.insta-foot { margin-top: 18px; display: flex; gap: 16px; align-items: center; font-size: 13px; }
.reserve-col p.note { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); margin-bottom: 22px; }
.reserve-meta { margin-top: 24px; font-size: 14px; line-height: 2.2; }
.reserve-meta dt { color: var(--gold); font-family: var(--serif-en); letter-spacing: .14em; display: inline-block; width: 56px; }
.reserve-links { margin-top: 22px; display: flex; gap: 18px; font-size: 13px; }

/* Salon interior gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 10px; }
.gallery .g-intro { grid-column: span 1; grid-row: span 1; display: flex; flex-direction: column; justify-content: center; padding: 8px; background: var(--cream); }
.gallery .g-intro .en { font-size: 22px; letter-spacing: .2em; color: var(--espresso); }
.gallery .g-intro p { font-family: var(--serif-jp); font-size: 13px; color: var(--taupe); margin-top: 10px; }
.gallery .tile { overflow: hidden; background: var(--sand); }
.gallery .tile.wide { grid-column: span 2; }
.gallery .tile.tall { grid-row: span 2; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery .tile:hover img { transform: scale(1.05); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--dark); color: #D8CCBC; padding: 70px 0 36px; }
.site-footer .f-brand { text-align: center; }
.site-footer .f-brand .en { font-size: 22px; letter-spacing: .26em; color: #EFE6D7; }
.site-footer .f-brand p { font-family: var(--serif-jp); font-size: 13px; color: #B6A88F; margin-top: 12px; }
.f-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin: 34px 0; font-family: var(--serif-en); font-size: 12px; letter-spacing: .2em; }
.f-nav a { color: #C9BBA2; }
.f-nav a:hover { color: var(--gold-soft); }
.f-copy { text-align: center; font-family: var(--serif-en); font-size: 11px; letter-spacing: .2em; color: #8C7E68; }

/* =========================================================================
   Reveal animation
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================================
   Botanical decoration
   ========================================================================= */
.botanical { position: absolute; pointer-events: none; opacity: .5; z-index: 1; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .about-grid, .trio { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-cell { border-left: 0; border-top: 1px solid var(--stone); }
  .feature-cell:first-child { border-top: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery .tile.wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav .navlink { display: none; }
  .nav-toggle { display: block; }
  .hero-rail { display: none; }
  .hero-inner { padding-left: 0; }
  .btn-reserve { padding: 10px 18px; font-size: 13px; }
}

/* =========================================================================
   Sub-page shared
   ========================================================================= */
.page-hero { padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 6vw, 64px); background: var(--cream); text-align: center; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-title { font-family: var(--serif-jp); font-weight: 300; font-size: clamp(26px, 4vw, 40px); letter-spacing: .12em; color: var(--dark); }
.page-lead { margin-top: 20px; font-size: 14px; color: var(--brown); line-height: 2.1; }

/* Menu list */
.menu-list { display: grid; gap: clamp(40px, 6vw, 72px); max-width: 900px; }
.menu-item { border-top: 1px solid var(--stone); padding-top: 40px; }
.menu-item-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 26px; }
.menu-code { font-family: var(--serif-en); font-size: 34px; font-style: italic; color: var(--gold); line-height: 1; flex: none; }
.menu-name { font-family: var(--serif-jp); font-weight: 400; font-size: clamp(20px, 2.6vw, 26px); color: var(--dark); letter-spacing: .06em; }
.menu-tagline { font-family: var(--serif-jp); font-size: 13px; color: var(--gold); margin-top: 8px; }
.menu-item-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.menu-desc p { font-size: 14px; color: var(--brown); line-height: 2; }
.recommend { margin-top: 22px; background: var(--white); border: 1px solid var(--stone); padding: 20px 24px; }
.recommend-label { font-family: var(--serif-jp); font-size: 13px; color: var(--gold); display: block; margin-bottom: 10px; letter-spacing: .1em; }
.recommend ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.recommend li { font-size: 13px; color: var(--espresso); position: relative; padding-left: 16px; }
.recommend li::before { content: "·"; position: absolute; left: 4px; color: var(--gold); }
.menu-price { background: var(--sand); padding: 28px 26px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--stone); }
.price-row:first-child { padding-top: 0; }
.price-label { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); }
.price-dur { font-size: 12px; color: var(--taupe); }
.price-amount { font-family: var(--serif-en); font-size: 22px; color: var(--dark); letter-spacing: .04em; }
.price-note { font-size: 12px; color: var(--taupe); margin: 4px 0 4px; }
.menu-reserve { width: 100%; justify-content: center; margin-top: 22px; }

/* School */
.note-banner { background: var(--sand); border-left: 3px solid var(--gold); padding: 22px 26px; margin-bottom: 48px; font-size: 14px; color: var(--espresso); }
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.course-card { background: var(--white); border: 1px solid var(--stone); padding: 34px 30px; }
.course-name { font-family: var(--serif-jp); font-weight: 400; font-size: 20px; color: var(--dark); margin: 10px 0 8px; }
.course-summary { font-size: 13px; color: var(--gold); margin-bottom: 16px; }
.course-desc { font-size: 13px; color: var(--brown); line-height: 1.95; min-height: 80px; }
.course-meta { margin-top: 20px; border-top: 1px solid var(--stone); padding-top: 16px; }
.course-meta div { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; }
.course-meta dt { color: var(--taupe); }
.course-meta dd { color: var(--espresso); }

/* Access */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.info-list div { display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--stone); }
.info-list dt { font-family: var(--serif-en); letter-spacing: .12em; color: var(--gold); width: 120px; flex: none; font-size: 13px; padding-top: 2px; }
.info-list dd { font-size: 15px; color: var(--espresso); }
.map-placeholder { background: var(--sand); }
.map-placeholder img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.map-placeholder p { font-size: 12px; color: var(--taupe); padding: 14px 18px; }

/* Forms (reservation / account) */
.form-card { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--stone); padding: clamp(28px, 5vw, 48px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--serif-jp); font-size: 14px; color: var(--espresso); margin-bottom: 8px; letter-spacing: .06em; }
.field .req { color: var(--gold); font-size: 12px; margin-left: 6px; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field input[type=password], .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--stone); background: var(--ivory);
  font-family: var(--sans-jp); font-size: 15px; color: var(--espresso); border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 110px; resize: vertical; }
.radio-cards { display: grid; gap: 12px; }
.radio-card { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--stone); padding: 16px 18px; cursor: pointer; transition: border-color .3s, background .3s; }
.radio-card:hover { border-color: var(--gold); }
.radio-card input { margin-top: 4px; }
.radio-card.selected { border-color: var(--gold); background: var(--sand); }
.radio-card .rc-title { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); }
.radio-card .rc-meta { font-size: 12px; color: var(--taupe); margin-top: 4px; }
.btn-submit { display: inline-flex; align-items: center; gap: 14px; background: var(--dark); color: var(--white); border: 1px solid var(--dark); font-family: var(--serif-jp); font-size: 15px; padding: 15px 40px; cursor: pointer; transition: background .4s, color .4s; }
.btn-submit:hover { background: transparent; color: var(--dark); }
.form-error { background: #f3e0db; border: 1px solid #d9a89c; color: #8a4232; padding: 14px 18px; font-size: 14px; margin-bottom: 22px; border-radius: 2px; }
.form-success { background: #e6ecdf; border: 1px solid #b3c39c; color: #4a5a36; padding: 14px 18px; font-size: 14px; margin-bottom: 22px; border-radius: 2px; }
.steps { display: flex; justify-content: center; gap: 0; margin-bottom: 44px; }
.steps .step { display: flex; align-items: center; gap: 10px; color: var(--taupe); font-size: 13px; font-family: var(--serif-en); letter-spacing: .12em; }
.steps .step .dot { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--stone); display: grid; place-items: center; font-size: 12px; }
.steps .step.active .dot { background: var(--gold); color: #fff; border-color: var(--gold); }
.steps .step.active { color: var(--espresso); }
.steps .bar { width: 40px; height: 1px; background: var(--stone); margin: 0 14px; }

/* Reservation date/time picker */
.date-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 8px; margin-bottom: 26px; }
.date-cell { border: 1px solid var(--stone); background: var(--white); padding: 12px 4px; text-align: center; cursor: pointer; transition: all .25s; }
.date-cell:hover:not(.disabled) { border-color: var(--gold); }
.date-cell.disabled { opacity: .4; cursor: not-allowed; background: var(--cream); }
.date-cell.selected { background: var(--dark); color: var(--white); border-color: var(--dark); }
.date-cell .dc-wd { font-size: 11px; color: var(--taupe); }
.date-cell.selected .dc-wd { color: #cbb; }
.date-cell .dc-day { font-family: var(--serif-en); font-size: 20px; }
.date-cell .dc-mark { font-size: 11px; margin-top: 2px; }
.date-cell .dc-mark.ok { color: var(--gold); }
.date-cell .dc-mark.ng { color: #c08; opacity:.6; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 8px; }
.time-cell { border: 1px solid var(--stone); background: var(--white); padding: 12px 4px; text-align: center; cursor: pointer; font-family: var(--serif-en); font-size: 16px; color: var(--espresso); transition: all .25s; }
.time-cell:hover:not(.full) { border-color: var(--gold); }
.time-cell.full { opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.time-cell.selected { background: var(--dark); color: var(--white); border-color: var(--dark); }
.summary-box { background: var(--sand); padding: 22px 24px; margin-bottom: 26px; }
.summary-box .sb-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.summary-box .sb-row dt { color: var(--taupe); }
.summary-box .sb-row dd { color: var(--espresso); font-weight: 400; }
.form-section-title { font-family: var(--serif-jp); font-weight: 400; font-size: 19px; color: var(--dark); margin-bottom: 22px; letter-spacing: .06em; }
.field-help { font-size: 13px; color: var(--taupe); margin-bottom: 18px; }
.time-label, label.time-label { display:block; font-family: var(--serif-jp); font-size: 14px; color: var(--espresso); margin: 18px 0 10px; }
button.text-link { background: none; border: 0; cursor: pointer; }

@media (max-width: 820px) {
  .menu-item-body, .access-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* nav cart */
.nav-cart { position: relative; color: var(--espresso); display: inline-flex; }
.nav-cart:hover { color: var(--gold); }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--gold); color: #fff; font-size: 10px; min-width: 16px; height: 16px; border-radius: 8px; display: grid; place-items: center; padding: 0 4px; font-family: var(--sans-jp); }

/* shop catalog */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.cat-chip { font-family: var(--serif-jp); font-size: 13px; color: var(--espresso); border: 1px solid var(--stone); padding: 8px 18px; border-radius: 20px; transition: .25s; }
.cat-chip:hover, .cat-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.product-card { display: block; transition: transform .4s var(--ease); }
.product-card:hover { transform: translateY(-4px); }
.product-card .pc-img { aspect-ratio: 4/5; background: var(--sand); overflow: hidden; position: relative; }
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .pc-sold { position: absolute; inset: 0; background: rgba(51,43,34,.5); color: #fff; display: grid; place-items: center; font-family: var(--serif-en); letter-spacing: .2em; font-size: 14px; }
.product-card .pc-cat { font-family: var(--serif-en); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--taupe); margin-top: 14px; }
.product-card .pc-name { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); margin: 4px 0; }
.product-card .pc-price { font-family: var(--serif-en); font-size: 19px; color: var(--dark); }

/* product detail */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-gallery { background: var(--sand); aspect-ratio: 4/5; overflow: hidden; }
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat { font-family: var(--serif-en); font-size: 11px; text-transform: uppercase; letter-spacing: .26em; color: var(--gold); }
.pd-name { font-family: var(--serif-jp); font-weight: 400; font-size: clamp(22px, 3vw, 30px); color: var(--dark); margin: 12px 0; }
.pd-price { font-family: var(--serif-en); font-size: 30px; color: var(--dark); margin-bottom: 8px; }
.pd-tax { font-size: 12px; color: var(--taupe); }
.pd-desc { font-size: 14px; color: var(--brown); line-height: 2; margin: 24px 0; white-space: pre-line; }
.pd-meta { border-top: 1px solid var(--stone); padding-top: 18px; font-size: 13px; color: var(--taupe); }
.qty-row { display: flex; align-items: center; gap: 16px; margin: 26px 0; }
.qty-input { width: 70px; padding: 10px; border: 1px solid var(--stone); text-align: center; font-size: 16px; }

/* cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-family: var(--serif-en); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); padding: 12px 0; border-bottom: 1px solid var(--stone); }
.cart-table td { padding: 18px 0; border-bottom: 1px solid var(--stone); vertical-align: middle; }
.cart-prod { display: flex; gap: 16px; align-items: center; }
.cart-prod img { width: 70px; height: 88px; object-fit: cover; background: var(--sand); }
.cart-prod .cp-name { font-family: var(--serif-jp); font-size: 15px; color: var(--espresso); }
.cart-summary { background: var(--sand); padding: 26px 28px; }
.cart-summary .cs-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.cart-summary .cs-total { border-top: 1px solid var(--stone); margin-top: 10px; padding-top: 14px; font-family: var(--serif-en); font-size: 22px; color: var(--dark); }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.empty-state { text-align: center; padding: 60px 0; color: var(--taupe); }

@media (max-width: 820px) { .pd-grid, .cart-layout { grid-template-columns: 1fr; gap: 28px; } }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; background: rgba(51,43,34,.97); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 26px; }
.drawer.open { display: flex; }
.drawer a { font-family: var(--serif-en); font-size: 18px; letter-spacing: .2em; color: #EFE6D7; }
.drawer .close { position: absolute; top: 24px; right: 28px; font-size: 28px; color: #EFE6D7; background: none; border: 0; }
