/* =============================================
   Hair Salon Lino — styles.css
============================================= */

/* ===== Variables ===== */
:root {
  --green:    #8a9a7b;
  --green-d:  #5c7050;
  --green-l:  #c4d1b4;
  --cream:    #f7f3ea;
  --cream-l:  #faf8f3;
  --warm:     #f2ede3;
  --ink:      #2c2c24;
  --ink-2:    #68685c;
  --ink-3:    #9e9e92;
  --line:     #e6dfd0;
  --white:    #ffffff;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Layout ===== */
.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad { padding: 96px 0; }

/* ===== Section Head ===== */
.sec-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--green-d);
  line-height: 1;
  display: block;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.sec-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.sec-title-lg {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .06em;
  color: var(--ink);
  margin: 6px 0 26px;
}

.sec-note {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .08em;
  margin-top: 4px;
}

.sec-head { margin-bottom: 52px; }
.sec-head--center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .22s;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-arr { font-size: 16px; margin-left: 2px; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(138,154,123,.3);
}

.btn--primary:hover {
  background: var(--green-d);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(92,112,80,.32);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--green-l);
  background: var(--cream-l);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,.14);
}

.btn--lg {
  padding: 20px 40px;
  font-size: 15px;
}

/* ===== Scroll animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}

.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(60,55,40,.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
}

.logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 12.5px;
  letter-spacing: .22em;
  color: var(--ink-2);
}

.logo-name {
  font-family: "Parisienne", cursive;
  font-size: 40px;
  color: var(--green-d);
  line-height: .92;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gnav-list {
  display: flex;
  gap: 26px;
}

.gnav-list a {
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}

.gnav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width .25s;
}

.gnav-list a:hover { color: var(--green-d); }
.gnav-list a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: .1em;
  transition: background .22s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--green-d); }
.header-cta svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    98deg,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.84) 28%,
    rgba(255,255,255,.32) 52%,
    rgba(255,255,255,0) 66%
  );
}

.hero-deco {
  position: absolute;
  left: -20px;
  bottom: 14%;
  width: 210px;
  opacity: .72;
  pointer-events: none;
  transform: rotate(-6deg);
}

.hero-body {
  position: relative;
  z-index: 5;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 11.5px;
  letter-spacing: .36em;
  color: var(--green-d);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: .05em;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--green-d);
}

.hero-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-2);
  margin-bottom: 44px;
  letter-spacing: .05em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-scroll-hint span {
  font-family: "Cormorant Garamond", serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  color: var(--ink-3);
}

.hero-scroll-hint svg {
  width: 16px;
  height: 28px;
  color: var(--ink-3);
}

/* ===== CAMPAIGN ===== */
.campaign {
  background: var(--green-d);
  color: var(--white);
  padding: 16px 0;
}

.campaign-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.campaign-badge {
  background: var(--white);
  color: var(--green-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.campaign-text {
  flex: 1;
  font-size: 13.5px;
  letter-spacing: .05em;
}

.campaign-text strong { font-weight: 700; }

.campaign-btn {
  background: var(--white);
  color: var(--green-d);
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: opacity .2s;
}

.campaign-btn:hover { opacity: .82; }

/* ===== CONCEPT ===== */
.concept {
  background: var(--cream-l);
  overflow: hidden;
  position: relative;
}

.concept-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 76px;
  align-items: start;
}

.concept-photo {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(80,72,50,.1);
}

.concept-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.concept-text { padding-top: 20px; }

.concept-body {
  font-size: 14.5px;
  line-height: 2.3;
  color: var(--ink);
  letter-spacing: .04em;
}

.concept-deco {
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 155px;
  opacity: .55;
  pointer-events: none;
}

/* ===== MENU ===== */
.menu { background: var(--white); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.menu-card {
  background: var(--cream-l);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: box-shadow .22s, transform .22s;
}

.menu-card:hover {
  box-shadow: 0 8px 26px rgba(80,72,50,.1);
  transform: translateY(-3px);
}

.menu-card--pick {
  background: var(--cream);
  border-color: #d8d0b4;
}

.menu-pick-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.menu-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.menu-name {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
}

.menu-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .04em;
}

.menu-more {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--green-d);
  letter-spacing: .06em;
}

.menu-more a:hover { opacity: .7; }

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream-l);
}

.gallery .inner { padding-bottom: 36px; }

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 40px 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-track::-webkit-scrollbar { height: 3px; }
.gallery-track::-webkit-scrollbar-track { background: var(--line); }
.gallery-track::-webkit-scrollbar-thumb { background: var(--green-l); border-radius: 2px; }

.gallery-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(44,44,36,.72) 0%, transparent 100%);
  color: var(--white);
}

.gallery-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.gallery-menu {
  font-size: 11.5px;
  opacity: .82;
  letter-spacing: .04em;
}

/* ===== STYLIST ===== */
.stylist { background: var(--white); }

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

.stylist-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-l);
  transition: box-shadow .22s;
}

.stylist-card:hover { box-shadow: 0 8px 26px rgba(80,72,50,.1); }

.stylist-photo img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: center top;
}

.stylist-info { padding: 20px 20px 22px; }

.stylist-role {
  font-size: 10.5px;
  letter-spacing: .24em;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.stylist-name {
  font-family: "Parisienne", cursive;
  font-size: 30px;
  color: var(--green-d);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stylist-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--ink);
  letter-spacing: .03em;
  margin-bottom: 14px;
}

.stylist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stylist-tags li {
  background: #edf2e6;
  color: var(--green-d);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ===== VOICE ===== */
.voice { background: var(--cream-l); }

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

.voice-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  position: relative;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: var(--green-l);
  line-height: 1;
  opacity: .55;
  pointer-events: none;
}

.voice-stars {
  color: #c4a03c;
  font-size: 13px;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.voice-text {
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink);
  letter-spacing: .03em;
  margin-bottom: 18px;
}

.voice-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .06em;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.voice-name span {
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 8px;
  font-size: 11.5px;
}

/* ===== REASON ===== */
.reason { background: var(--white); }

.reason-list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.reason-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.reason-item:first-child { border-top: 1px solid var(--line); }

.reason-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--green-l);
  line-height: 1;
}

.reason-body h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink);
  margin-bottom: 12px;
  padding-top: 6px;
}

.reason-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: .04em;
}

/* ===== FLOW ===== */
.flow { background: var(--cream-l); }

.flow-steps {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 48px;
}

.flow-step {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 32px 16px 26px;
  text-align: center;
  position: relative;
}

.flow-num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
}

.flow-ic {
  width: 52px;
  height: 52px;
  margin: 4px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-ic svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.flow-step h3 {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 10px;
  color: var(--ink);
}

.flow-step p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
  letter-spacing: .03em;
}

.flow-arrow-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-l);
}

.flow-arrow-sp svg {
  width: 18px;
  height: 18px;
}

.flow-cta { text-align: center; }

/* ===== FAQ ===== */
.faq { background: var(--white); }

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

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  transition: background .2s;
}

.faq-q:hover { background: var(--cream-l); }

.faq-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--green-d);
  width: 18px;
  flex-shrink: 0;
}

.faq-qt {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}

.faq-icon {
  color: var(--green-d);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s;
  font-weight: 300;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .35s ease;
  padding: 0 8px 0 36px;
}

.faq-item.is-open .faq-a {
  max-height: 200px;
  padding: 0 8px 20px 36px;
}

.faq-a p {
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: .04em;
}

/* ===== SHOP ===== */
.shop { background: var(--cream-l); }

.shop-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}

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

.shop-table th,
.shop-table td {
  padding: 13px 0;
  font-size: 14px;
  letter-spacing: .06em;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.shop-table th {
  width: 90px;
  font-weight: 500;
  color: var(--ink);
  padding-right: 12px;
}

.shop-table td { color: var(--ink-2); }

.shop-table a {
  color: var(--green-d);
  border-bottom: 1px solid var(--green-l);
}

.shop-links { margin-top: 22px; }

.shop-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--green-l);
  border-radius: 30px;
  font-size: 13px;
  color: var(--green-d);
  letter-spacing: .06em;
  transition: all .2s;
}

.shop-insta:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.shop-insta svg { width: 16px; height: 16px; }

.shop-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
  background: #eef0e8;
}

.shop-map svg { width: 100%; height: 100%; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,22,.54);
}

.footer-cta-body {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
}

.footer-cta-eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  opacity: .82;
  margin-bottom: 12px;
}

.footer-cta-title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 46px;
  line-height: 1.7;
}

.footer-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 48px 0 28px;
}

.site-footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.footer-logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 11.5px;
  letter-spacing: .24em;
  opacity: .65;
}

.footer-logo-name {
  font-family: "Parisienne", cursive;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: .1em;
  opacity: .6;
  transition: opacity .2s;
}

.footer-nav a:hover { opacity: 1; }

.footer-copy {
  font-size: 11px;
  letter-spacing: .16em;
  opacity: .42;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .flow-arrow-sp { display: none; }
}

@media (max-width: 860px) {
  .gnav-list { gap: 18px; }
  .gnav-list a { font-size: 11.5px; }
  .header-cta { padding: 10px 16px; font-size: 12px; }

  .concept-wrap { grid-template-columns: 1fr; gap: 36px; }
  .concept-photo img { height: 260px; }

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

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

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

  .shop-body { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 68px 0; }
  .inner { padding: 0 22px; }

  /* --- Header mobile --- */
  .header-inner { padding: 0 22px; height: 60px; }
  .gnav {
    display: none;
    position: fixed;
    inset: 60px 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 22px 32px;
    overflow-y: auto;
    z-index: 99;
    border-top: 1px solid var(--line);
    gap: 0;
  }
  .gnav.is-open { display: flex; }
  .gnav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .gnav-list a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .gnav-list a::after { display: none; }
  .header-cta {
    margin-top: 22px;
    justify-content: center;
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* --- Hero --- */
  .hero { max-height: 680px; }
  .hero-body { padding: 0 22px; padding-bottom: 60px; }
  .hero-title { font-size: 42px; }
  .hero-lead { font-size: 14px; }
  .hero-deco { width: 150px; bottom: 8%; }

  /* --- Campaign --- */
  .campaign-inner { padding: 0 22px; gap: 12px; }
  .campaign-text { font-size: 12.5px; }

  /* --- Concept --- */
  .concept-wrap { padding: 0 22px; }
  .sec-title-lg { font-size: 22px; }

  /* --- Menu --- */
  .menu-grid { max-width: 460px; margin: 0 auto; }

  /* --- Gallery --- */
  .gallery-track { padding: 0 22px 38px; }
  .gallery-item { flex: 0 0 210px; }
  .gallery-item img { height: 280px; }

  /* --- Stylist --- */
  .stylist-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  /* --- Voice --- */
  .voice-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* --- Reason --- */
  .reason-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 26px 0; }
  .reason-num { font-size: 42px; }
  .reason-body h3 { font-size: 16px; }

  /* --- Flow --- */
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* --- FAQ --- */
  .faq-qt { font-size: 13.5px; }

  /* --- Footer CTA --- */
  .footer-cta { padding: 72px 0; }
  .footer-cta-title { font-size: 22px; }
  .footer-cta-actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; max-width: 340px; justify-content: center; }
}

@media (max-width: 520px) {
  .hero-title { font-size: 34px; }
  .sec-en { font-size: 38px; }
  .flow-steps { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .voice-card::before { font-size: 48px; }
}
