/* ========================================
   YOSAPARK ハイビスカス — Minimal Luxury
   ======================================== */

:root {
  --bg: #fff;
  --bg2: #f8f5f1;
  --gold: #b8964e;
  --gold-d: #96763a;
  --dark: #1e1e1e;
  --text: #3a3a3a;
  --muted: #8a8580;
  --border: #e8e2db;
  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --ease: .45s cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); font-weight: 300; line-height: 1.9; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* ── Header ── */
.header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 22px 0; transition: all var(--ease); }
.header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(16px); padding: 14px 0; box-shadow: 0 1px 0 var(--border); }
.header-inner { max-width: 1060px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--gold); letter-spacing: .08em; }
.logo span { font-family: var(--sans); font-size: .65rem; color: var(--muted); margin-left: 8px; letter-spacing: .15em; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: .76rem; color: var(--muted); letter-spacing: .1em; font-weight: 400; transition: color var(--ease); }
.nav a:hover { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold) !important; color: var(--gold) !important; padding: 6px 18px !important; transition: all var(--ease) !important; }
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 7px; z-index: 101; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); transition: all .3s; }
.hamburger.active span:first-child { transform: rotate(45deg) translate(5.5px,5.5px); }
.hamburger.active span:last-child { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: #1a1714; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,.3) 0%, rgba(20,18,14,.6) 100%); }
.hero-content { max-width: 680px; position: relative; z-index: 2; }
.hero-label { font-size: .78rem; color: var(--gold); letter-spacing: .45em; margin-bottom: 36px; opacity: 0; animation: fadeUp .8s .2s forwards; }
.hero-title { font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 200; color: #fff; letter-spacing: .08em; line-height: 1.7; opacity: 0; animation: fadeUp .8s .5s forwards; }
.hero-line { width: 40px; height: 1px; background: var(--gold); margin: 32px auto; opacity: 0; animation: fadeUp .8s .7s forwards; }
.hero-desc { font-size: .88rem; color: rgba(255,255,255,.75); letter-spacing: .06em; line-height: 2; opacity: 0; animation: fadeUp .8s .85s forwards; }
.hero-accent { font-size: .82rem; color: var(--gold); letter-spacing: .14em; margin-top: 6px; font-weight: 400; opacity: 0; animation: fadeUp .8s 1s forwards; }
.hero .btn { margin-top: 48px; opacity: 0; animation: fadeUp .8s 1.15s forwards; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 16px 52px; background: var(--gold); color: #fff; font-size: .82rem; font-weight: 400; letter-spacing: .12em; border: none; cursor: pointer; font-family: var(--sans); transition: background var(--ease); }
.btn:hover { background: var(--gold-d); color: #fff; }
.btn-full { width: 100%; text-align: center; }
.btn-line { display: inline-block; padding: 12px 32px; background: #06c755; color: #fff !important; font-size: .82rem; border-radius: 4px; letter-spacing: .04em; transition: opacity var(--ease); font-weight: 400; }
.btn-line:hover { opacity: .85; color: #fff; }

/* ── Marquee ── */
.marquee { padding: 32px 0; overflow: hidden; background: var(--bg); }
.marquee-track { display: flex; gap: 12px; margin-bottom: 12px; white-space: nowrap; will-change: transform; }
.marquee-track:last-child { margin-bottom: 0; }
.marquee-track img { width: 300px; height: 200px; object-fit: cover; flex-shrink: 0; }
.marquee-left { animation: mLeft 35s linear infinite; }
.marquee-right { animation: mRight 35s linear infinite; }
@keyframes mLeft { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-312px * 6)); } }
@keyframes mRight { 0% { transform: translateX(calc(-312px * 6)); } 100% { transform: translateX(0); } }

/* ── Sections ── */
.sec { padding: 120px 0; }
.sec-warm { background: var(--bg2); }
.sec-label { font-family: var(--serif); font-size: .72rem; color: var(--gold); letter-spacing: .45em; text-transform: uppercase; margin-bottom: 14px; opacity: 0; transform: translateY(12px); }
.sec-title { font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 1.9rem); font-weight: 300; color: var(--dark); letter-spacing: .08em; line-height: 1.7; margin-bottom: 20px; opacity: 0; transform: translateY(12px); }
.sec-body { font-size: .88rem; color: var(--muted); line-height: 2.4; text-align: center; margin-bottom: 64px; opacity: 0; transform: translateY(12px); }
.visible .sec-label, .visible .sec-title, .visible .sec-body { opacity: 1; transform: translateY(0); transition: all .7s var(--ease); }
.visible .sec-title { transition-delay: .1s; }
.visible .sec-body { transition-delay: .2s; }

/* ── Concept Cards ── */
.concept-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.concept-card { overflow: hidden; opacity: 0; transform: translateY(20px); }
.visible .concept-card { opacity: 1; transform: translateY(0); transition: all .7s var(--ease); }
.visible .concept-card:nth-child(1) { transition-delay: .25s; }
.visible .concept-card:nth-child(2) { transition-delay: .4s; }
.visible .concept-card:nth-child(3) { transition-delay: .55s; }
.concept-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s ease; }
.concept-card:hover img { transform: scale(1.04); }
.concept-card-body { padding: 24px 4px 0; }
.concept-num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 300; opacity: .5; }
.concept-card h3 { font-size: .92rem; font-weight: 400; color: var(--dark); letter-spacing: .04em; margin: 10px 0 8px; }
.concept-card p { font-size: .78rem; color: var(--muted); line-height: 2; }

/* ── Numbers ── */
.sec-numbers { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.number-item { position: relative; }
.number-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.number-value { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--dark); font-weight: 300; letter-spacing: .02em; display: block; line-height: 1.2; }
.number-value small { font-size: .45em; font-weight: 400; color: var(--gold); }
.number-label { font-size: .72rem; color: var(--muted); letter-spacing: .12em; margin-top: 10px; display: block; }
@media (max-width: 600px) { .numbers { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; } .number-item:nth-child(2)::after { display: none; } .number-item:not(:last-child)::after { display: none; } }

/* ── About YOSA ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.about-img { overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-text h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--dark); letter-spacing: .06em; line-height: 1.8; margin-bottom: 20px; }
.about-text p { font-size: .85rem; color: var(--muted); line-height: 2.2; margin-bottom: 16px; }
.about-points { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-point { padding: 16px; background: var(--bg); border: 1px solid var(--border); }
.about-point strong { display: block; font-size: .82rem; color: var(--gold); font-weight: 400; letter-spacing: .04em; margin-bottom: 4px; }
.about-point span { font-size: .75rem; color: var(--muted); }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .about-points { grid-template-columns: 1fr; } }

/* ── Worry Grid ── */
.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; margin-bottom: 32px; }
.worry-card { padding: 28px 24px; border: 1px solid var(--border); transition: all var(--ease); }
.worry-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.worry-card h4 { font-family: var(--serif); font-size: .95rem; font-weight: 400; color: var(--dark); letter-spacing: .06em; margin-bottom: 8px; }
.worry-card p { font-size: .78rem; color: var(--muted); line-height: 2; }
@media (max-width: 600px) { .worry-grid { grid-template-columns: 1fr; } }

/* ── Owner ── */
.owner-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.owner-img { overflow: hidden; }
.owner-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.owner-text h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--dark); letter-spacing: .06em; line-height: 1.8; margin-bottom: 20px; }
.owner-text p { font-size: .85rem; color: var(--muted); line-height: 2.2; margin-bottom: 12px; }
.owner-sign { margin-top: 24px; font-size: .82rem; color: var(--gold); font-weight: 400; letter-spacing: .08em; }
@media (max-width: 768px) { .owner-grid { grid-template-columns: 1fr; } .owner-img { max-width: 320px; } }

/* ── CTA Banner ── */
.sec-cta { padding: 80px 0; background: linear-gradient(135deg, var(--dark) 0%, #2a2520 100%); text-align: center; }
.cta-lead { font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing: .1em; margin-bottom: 16px; }
.cta-title { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.8rem); color: #fff; font-weight: 300; letter-spacing: .1em; margin-bottom: 12px; }
.cta-desc { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-w { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.cta-note { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 20px; }

/* ── Menu group desc ── */
.menu-group-desc { font-size: .8rem; color: var(--muted); line-height: 2; margin-bottom: 16px; }

/* ── Tag Cloud (For You) ── */
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.tag-cloud span { padding: 10px 24px; border: 1px solid var(--border); font-size: .8rem; color: var(--text); letter-spacing: .04em; transition: all var(--ease); }
.tag-cloud span:hover { border-color: var(--gold); color: var(--gold); }
.tag-note { text-align: center; margin-top: 32px; font-size: .82rem; color: var(--gold); letter-spacing: .06em; font-weight: 400; }

/* ── Menu ── */
.menu-list { display: flex; flex-direction: column; gap: 48px; }
.menu-group-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--dark); letter-spacing: .08em; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.popular { font-size: .6rem; background: var(--gold); color: #fff; padding: 3px 10px; margin-left: 12px; letter-spacing: .08em; vertical-align: middle; font-family: var(--sans); }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.04); }
.menu-name { font-size: .9rem; color: var(--dark); }
.menu-name small { display: block; font-size: .74rem; color: var(--muted); margin-top: 3px; font-weight: 300; }
.menu-meta { font-family: var(--serif); font-size: .88rem; color: var(--gold); white-space: nowrap; margin-left: 16px; }
.menu-footer { margin-top: 48px; padding: 24px; background: var(--bg2); text-align: center; }
.menu-footer p { font-size: .78rem; color: var(--muted); line-height: 2; }

/* ── Flow ── */
.flow { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; position: relative; }
.flow::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 40px; width: 1px; background: var(--border); }
.flow-item { display: flex; gap: 32px; padding: 28px 0; position: relative; opacity: 0; transform: translateY(12px); }
.visible .flow-item { opacity: 1; transform: translateY(0); transition: all .6s var(--ease); }
.visible .flow-item:nth-child(1) { transition-delay: .15s; }
.visible .flow-item:nth-child(2) { transition-delay: .3s; }
.visible .flow-item:nth-child(3) { transition-delay: .45s; }
.visible .flow-item:nth-child(4) { transition-delay: .6s; }
.visible .flow-item:nth-child(5) { transition-delay: .75s; }
.flow-num { font-family: var(--serif); font-size: .9rem; color: var(--gold); width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--bg2); z-index: 1; }
.flow-item h4 { font-size: .9rem; font-weight: 400; color: var(--dark); letter-spacing: .04em; margin-bottom: 4px; }
.flow-item p { font-size: .78rem; color: var(--muted); line-height: 1.9; }

/* ── Voice Slider ── */
.voice-slider { overflow: hidden; padding: 0 0 20px; }
.voice-track { display: flex; gap: 24px; animation: voiceScroll 45s linear infinite; width: max-content; }
.voice-track:hover { animation-play-state: paused; }
.voice-slide { flex-shrink: 0; width: 380px; background: var(--bg); border: 1px solid var(--border); overflow: hidden; transition: box-shadow var(--ease); }
.voice-slide:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.voice-slide-img { height: 200px; overflow: hidden; }
.voice-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.voice-slide-body { padding: 24px; }
.voice-stars { color: var(--gold); font-size: .8rem; letter-spacing: .08em; margin-bottom: 12px; }
.voice-slide-body p { font-size: .8rem; color: var(--text); line-height: 2.1; margin-bottom: 16px; }
.voice-slide-body cite { display: block; padding-top: 14px; border-top: 1px solid var(--border); font-size: .82rem; color: var(--dark); font-style: normal; font-weight: 400; }
.voice-slide-body cite span { display: block; font-size: .7rem; color: var(--muted); margin-top: 2px; font-weight: 300; }
@keyframes voiceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-404px * 6)); }
}
@media (max-width: 768px) {
  .voice-slide { width: 300px; }
  .voice-slide-img { height: 160px; }
  @keyframes voiceScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-324px * 6)); }
  }
}

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item { overflow: hidden; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.salon-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; margin-top: 48px; }
.salon-points span { font-size: .75rem; color: var(--muted); letter-spacing: .1em; padding: 0 20px; line-height: 1; border-right: 1px solid var(--border); }
.salon-points span:last-child { border-right: none; }
@media (max-width: 480px) { .salon-points span { padding: 4px 14px; } }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq { border-bottom: 1px solid var(--border); }
.faq summary { padding: 22px 36px 22px 0; font-size: .88rem; color: var(--dark); cursor: pointer; list-style: none; position: relative; letter-spacing: .02em; font-weight: 400; transition: color var(--ease); }
.faq summary:hover { color: var(--gold); }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.3rem; color: var(--gold); font-weight: 300; transition: transform .3s; }
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding: 0 0 24px; font-size: .82rem; color: var(--muted); line-height: 2.2; }

/* ── Access ── */
.access { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.access-map { min-height: 380px; background: var(--border); }
.access-map iframe { width: 100%; height: 100%; }
.access-table { width: 100%; border-collapse: collapse; }
.access-table th, .access-table td { padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; font-size: .85rem; }
.access-table th { width: 80px; color: var(--gold); font-weight: 400; font-size: .78rem; letter-spacing: .06em; }
.access-table td { color: var(--text); }
.access-table td a { color: var(--text); }
.access-table td strong { color: var(--gold); font-weight: 400; }

/* ── Contact ── */
.contact-top { text-align: center; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.tel { font-family: var(--serif); font-size: 2rem; color: var(--gold) !important; letter-spacing: .06em; font-weight: 400; display: block; }
.tel-note { font-size: .75rem; color: var(--muted); margin: 8px 0 24px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .78rem; color: var(--muted); }
.form-field label span { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea { background: var(--bg2); border: 1px solid var(--border); color: var(--text); padding: 13px 14px; font-family: var(--sans); font-size: .85rem; font-weight: 300; transition: border-color var(--ease); appearance: none; -webkit-appearance: none; border-radius: 0; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field select { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%238a8580" d="M0 0l5 5 5-5"/></svg>'); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.radios { display: flex; gap: 20px; padding-top: 4px; }
.radios label { font-size: .82rem; color: var(--text); display: flex; align-items: center; gap: 6px; cursor: pointer; }
.radios input { accent-color: var(--gold); }
.form .btn { margin-top: 8px; }

/* ── Footer ── */
.footer { background: var(--dark); color: #999; padding: 48px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; }
.footer-logo { font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .08em; }
.footer-addr { font-size: .72rem; color: #777; margin-top: 8px; }
.footer-addr a { color: #888; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: .72rem; color: #888; letter-spacing: .06em; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .68rem; color: #555; text-align: center; padding: 20px 0; border-top: 1px solid #333; }

/* ── Chatbot ── */
.chatbot-fab { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.15); z-index: 200; transition: transform .3s; }
.chatbot-fab:hover { transform: scale(1.08); }
.chatbot-fab svg { width: 24px; height: 24px; }
.chatbot-fab.hidden { display: none; }
.chatbot { position: fixed; bottom: 28px; right: 28px; width: 360px; max-height: 480px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,.12); z-index: 201; display: none; flex-direction: column; }
.chatbot.open { display: flex; animation: fadeUp .3s; }
.chatbot-header { background: var(--gold); color: #fff; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; font-weight: 400; letter-spacing: .04em; }
.chatbot-close { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 0 2px; }
.chatbot-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.chat-msg p { font-size: .8rem; line-height: 1.9; padding: 12px 16px; max-width: 90%; }
.chat-msg.bot p { background: var(--bg2); color: var(--text); border-radius: 0 12px 12px 12px; }
.chat-msg.user p { background: var(--gold); color: #fff; border-radius: 12px 0 12px 12px; margin-left: auto; }
.chat-options { display: flex; flex-direction: column; gap: 8px; }
.chat-options button { background: none; border: 1px solid var(--border); padding: 10px 14px; font-size: .78rem; color: var(--text); text-align: left; cursor: pointer; transition: all var(--ease); font-family: var(--sans); }
.chat-options button:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 480px) {
  .chatbot { width: calc(100% - 32px); right: 16px; bottom: 16px; max-height: 70vh; }
  .chatbot-fab { bottom: 16px; right: 16px; }
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .concept-row { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 48px; }
  .voices { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .access { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sec { padding: 80px 0; }
  .hamburger { display: flex; }
  .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); flex-direction: column; justify-content: center; gap: 24px; text-align: center; transition: right .4s; box-shadow: -4px 0 20px rgba(0,0,0,.06); }
  .nav.active { right: 0; }
  .nav a { font-size: .95rem; color: var(--text); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .marquee-track img { width: 220px; height: 150px; }
  @keyframes mLeft { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-232px * 6)); } }
  @keyframes mRight { 0% { transform: translateX(calc(-232px * 6)); } 100% { transform: translateX(0); } }
  .salon-points { gap: 8px; }
  .salon-points span { font-size: .68rem; padding: 5px 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item img { height: 200px; }
  .tel { font-size: 1.6rem; }
}
