/* =========================================================
   ÉCLAT — Natural & Warm Beauty Salon
   Pattern C : ナチュラル温かみ系
   Shared stylesheet for index.html (HP) & lp.html (LP)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg-ivory: #faf6f0;
  --bg-beige: #f5efe6;
  --bg-card: #fffdfa;
  --mocha: #8c7a5b;
  --greige: #b9a88f;
  --greige-soft: #d8cbb6;
  --green: #9aa78c;
  --green-deep: #7d8c6e;
  --terracotta: #c98e6f;
  --terracotta-deep: #b9785a;
  --text: #4a443c;
  --text-soft: #6f675b;
  --white: #ffffff;
  --line: #25c160; /* LINE brand */

  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 28px rgba(140, 122, 91, 0.12);
  --shadow-card: 0 6px 22px rgba(140, 122, 91, 0.10);
  --shadow-hover: 0 14px 36px rgba(140, 122, 91, 0.18);

  --maxw: 1080px;
  --gap: clamp(2.5rem, 6vw, 5rem);

  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-en: "Cormorant Garamond", serif;
  --font-script: "Caveat", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-ivory);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; margin: 0; }
p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container { width: min(92%, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--gap); position: relative; }
.section--alt { background: var(--bg-beige); }
.center { text-align: center; }

/* Section heading block */
.sec-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.sec-head .en {
  display: block;
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sec-head .ja {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--mocha);
  letter-spacing: 0.08em;
}
.sec-head .lead {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Decorative leaf divider under headings */
.leaf-divider { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 0.7rem; }
.leaf-divider span { height: 1px; width: 42px; background: var(--greige-soft); }
.leaf-divider svg { width: 22px; height: 22px; color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: var(--shadow-card);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn svg { width: 20px; height: 20px; }

.btn--line { background: var(--line); color: #fff; }
.btn--line:hover { background: #1fae54; }
.btn--primary { background: var(--terracotta); color: #fff; }
.btn--primary:hover { background: var(--terracotta-deep); }
.btn--outline { background: var(--white); color: var(--mocha); box-shadow: inset 0 0 0 1.5px var(--greige); }
.btn--outline:hover { background: var(--bg-beige); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 168, 143, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .name {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mocha);
}
.logo .sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--greige);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--terracotta); }
.nav a:hover::after { width: 100%; }
.header-cta .btn { padding: 0.65rem 1.3rem; font-size: 0.9rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--mocha);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#nav-check { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-ivory);
    padding: 1rem 0 2rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--greige-soft);
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(185,168,143,0.2);
  }
  .nav a::after { display: none; }
  .nav .btn--line { margin-top: 1rem; width: 80%; }
  #nav-check:checked ~ .nav { transform: translateY(0); }
  #nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  #nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(154, 167, 140, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(201, 142, 111, 0.15), transparent 45%),
    linear-gradient(160deg, var(--bg-ivory), var(--bg-beige));
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy .eyebrow {
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 5.2vw, 3rem);
  color: var(--mocha);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.hero-copy h1 .accent { color: var(--terracotta); }
.hero-copy .hero-sub {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  max-width: 30ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-note { margin-top: 1.4rem; font-size: 0.82rem; color: var(--greige); }

/* Hero photo */
.hero-media { position: relative; }
.hero-photo {
  border-radius: var(--radius-l);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero-media .badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-media .badge svg { width: 30px; height: 30px; color: var(--green); }
.hero-media .badge .b-num { font-family: var(--font-en); font-size: 1.5rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.hero-media .badge .b-txt { font-size: 0.72rem; color: var(--text-soft); }

/* floating leaves */
.hero-leaf { position: absolute; color: var(--green); opacity: 0.35; pointer-events: none; }
.hero-leaf--1 { top: 8%; right: 6%; width: 70px; transform: rotate(20deg); }
.hero-leaf--2 { bottom: 6%; left: 4%; width: 54px; transform: rotate(-30deg); color: var(--terracotta); opacity: 0.28; }

/* ---------- Photo Placeholder ---------- */
.photo-ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--greige-soft), var(--bg-beige) 55%, #efe6d6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--mocha);
}
.photo-ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
}
.photo-ph .ph-label {
  position: relative;
  font-family: var(--font-en);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.65;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.photo-ph .ph-label svg { width: 16px; height: 16px; }

/* =========================================================
   CONCEPT
   ========================================================= */
.concept .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.concept-media { position: relative; }
.concept-photo { border-radius: var(--radius-l); aspect-ratio: 5 / 6; box-shadow: var(--shadow-card); }
.concept-photo--small {
  position: absolute;
  width: 48%;
  aspect-ratio: 1 / 1;
  bottom: -28px; right: -20px;
  border: 6px solid var(--bg-ivory);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.concept-body .en {
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: 1.8rem;
}
.concept-body h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--mocha);
  margin: 0.4rem 0 1.4rem;
  letter-spacing: 0.05em;
}
.concept-body p { color: var(--text-soft); margin-bottom: 1.1rem; }
.concept-body .sign { font-family: var(--font-script); color: var(--mocha); font-size: 1.4rem; margin-top: 1rem; }

/* =========================================================
   MENU & PRICE
   ========================================================= */
.menu-groups { display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); }
.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(185,168,143,0.18);
}
.menu-card__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--greige-soft);
}
.menu-card__head .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--bg-beige);
  border-radius: 50%;
  color: var(--green-deep);
  flex-shrink: 0;
}
.menu-card__head .ico svg { width: 24px; height: 24px; }
.menu-card__head h3 { font-size: 1.25rem; color: var(--mocha); }
.menu-card__head .en { font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--greige); text-transform: uppercase; }
.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}
.menu-list .m-name { color: var(--text); font-size: 0.97rem; }
.menu-list .m-dot { flex: 1; border-bottom: 1px dotted var(--greige-soft); transform: translateY(-4px); }
.menu-list .m-price { font-family: var(--font-en); font-size: 1.15rem; font-weight: 600; color: var(--terracotta); white-space: nowrap; }
.menu-note { text-align: center; margin-top: 1.8rem; font-size: 0.82rem; color: var(--greige); }

@media (min-width: 760px) {
  .menu-groups { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
.gallery-grid .photo-ph {
  border-radius: var(--radius-m);
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease;
}
.gallery-grid .photo-ph:hover { transform: scale(1.02); }
.gallery-grid .g-tall { aspect-ratio: auto; grid-row: span 2; }
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-tall { grid-row: span 1; aspect-ratio: 1/1; }
}

/* =========================================================
   VOICE
   ========================================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.voice-card {
  background: var(--bg-card);
  border-radius: var(--radius-m);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(185,168,143,0.18);
}
.voice-card .quote-mark {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--greige-soft);
  line-height: 0.6;
  display: block;
  margin-bottom: 0.4rem;
}
.voice-card .stars { color: var(--terracotta); letter-spacing: 2px; margin-bottom: 0.7rem; font-size: 0.95rem; }
.voice-card p { color: var(--text-soft); font-size: 0.93rem; margin-bottom: 1.2rem; }
.voice-card .who { display: flex; align-items: center; gap: 0.7rem; }
.voice-card .who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--greige), var(--green));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-en); font-weight: 600;
  flex-shrink: 0;
}
.voice-card .who .meta { font-size: 0.82rem; color: var(--mocha); }
.voice-card .who .meta span { display: block; color: var(--greige); font-size: 0.72rem; }

/* =========================================================
   FLOW
   ========================================================= */
.flow-list { display: grid; gap: 0.6rem; counter-reset: step; }
.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  background: var(--bg-card);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(185,168,143,0.18);
}
.flow-step .num {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.4rem; font-weight: 600;
  flex-shrink: 0;
}
.flow-step h3 { font-size: 1.1rem; color: var(--mocha); margin-bottom: 0.3rem; }
.flow-step p { font-size: 0.9rem; color: var(--text-soft); }

/* =========================================================
   STAFF
   ========================================================= */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 760px;
  margin-inline: auto;
}
.staff-card {
  background: var(--bg-card);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid rgba(185,168,143,0.18);
}
.staff-card .photo-ph { aspect-ratio: 1 / 1; }
.staff-card .info { padding: 1.4rem 1.2rem 1.8rem; }
.staff-card .role { font-family: var(--font-en); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--terracotta); text-transform: uppercase; }
.staff-card .sname { font-size: 1.2rem; color: var(--mocha); margin: 0.3rem 0 0.7rem; }
.staff-card .sbio { font-size: 0.85rem; color: var(--text-soft); }
@media (max-width: 520px) { .staff-grid { grid-template-columns: 1fr; max-width: 340px; } }

/* =========================================================
   ACCESS
   ========================================================= */
.access .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3rem); align-items: center; }
.access-map { border-radius: var(--radius-l); aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.access-info dl { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem 1.2rem; margin: 0 0 1.6rem; }
.access-info dt {
  font-family: var(--font-head);
  color: var(--green-deep);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.access-info dt svg { width: 18px; height: 18px; }
.access-info dd { margin: 0; color: var(--text); font-size: 0.95rem; }
@media (max-width: 760px) { .access .container { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(185,168,143,0.18);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--mocha);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q {
  font-family: var(--font-en);
  color: var(--terracotta);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--greige);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem 3.4rem; color: var(--text-soft); font-size: 0.92rem; }

/* =========================================================
   CONTACT / RESERVE
   ========================================================= */
.contact {
  background:
    radial-gradient(circle at 15% 20%, rgba(154,167,140,0.2), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(201,142,111,0.18), transparent 50%),
    var(--bg-beige);
}
.contact .sec-head .ja { color: var(--mocha); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  max-width: 880px;
  margin-inline: auto;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; align-items: center;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.contact-card .ic {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.contact-card .ic svg { width: 32px; height: 32px; }
.contact-card.line .ic { background: rgba(37,193,96,0.12); color: var(--line); }
.contact-card.insta .ic { background: rgba(201,142,111,0.14); color: var(--terracotta); }
.contact-card.tel .ic { background: rgba(154,167,140,0.16); color: var(--green-deep); }
.contact-card h3 { font-size: 1.15rem; color: var(--mocha); margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.2rem; }
.contact-card .big { font-family: var(--font-en); font-size: 1.3rem; font-weight: 600; color: var(--mocha); margin-bottom: 1.2rem; }
.contact-card .btn { margin-top: auto; width: 100%; }
@media (max-width: 720px) { .contact-cards { grid-template-columns: 1fr; max-width: 380px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--mocha);
  color: #f0e9dd;
  padding-block: 3rem 1.5rem;
}
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer .f-logo .name { font-family: var(--font-en); font-size: 1.8rem; letter-spacing: 0.12em; color: #fff; }
.site-footer .f-logo .sub { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--greige-soft); text-transform: uppercase; }
.site-footer .f-logo p { margin-top: 1rem; font-size: 0.85rem; color: #d9cfbe; max-width: 32ch; }
.site-footer h4 { font-size: 0.95rem; color: #fff; margin-bottom: 1rem; letter-spacing: 0.05em; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { font-size: 0.86rem; color: #e3d9c8; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.site-footer .copy {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.75rem;
  color: var(--greige-soft);
}
@media (max-width: 680px) { .site-footer .container { grid-template-columns: 1fr; text-align: left; } }

/* =========================================================
   ============  LP-ONLY STYLES (lp.html)  ================
   ========================================================= */

/* LP simplified header */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185,168,143,0.25);
}
.lp-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.lp-header .header-cta .btn { padding: 0.6rem 1.3rem; font-size: 0.9rem; }
@media (max-width: 480px) { .lp-header .header-cta .btn { padding: 0.55rem 1rem; font-size: 0.82rem; } }

/* LP First View */
.lp-fv {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(154,167,140,0.22), transparent 48%),
    radial-gradient(circle at 12% 85%, rgba(201,142,111,0.18), transparent 48%),
    linear-gradient(165deg, var(--bg-ivory), var(--bg-beige));
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.lp-fv .container { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.lp-fv .ribbon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terracotta); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; margin-bottom: 1.1rem;
  box-shadow: var(--shadow-card);
}
.lp-fv .ribbon svg { width: 16px; height: 16px; }
.lp-fv h1 {
  font-size: clamp(1.8rem, 5.5vw, 2.9rem);
  color: var(--mocha);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.lp-fv h1 .hl {
  color: var(--terracotta);
  background: linear-gradient(transparent 65%, rgba(201,142,111,0.22) 65%);
  padding: 0 0.15em;
}
.lp-fv .fv-sub { color: var(--text-soft); margin-bottom: 1.6rem; }

.offer-box {
  background: var(--white);
  border: 2px dashed var(--terracotta);
  border-radius: var(--radius-l);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.offer-box .label { font-family: var(--font-head); font-weight: 700; color: var(--green-deep); font-size: 0.9rem; margin-bottom: 0.4rem; }
.offer-box .menu-name { color: var(--mocha); font-weight: 700; font-family: var(--font-head); margin-bottom: 0.3rem; }
.offer-box .price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.7rem; flex-wrap: wrap; }
.offer-box .was { color: var(--greige); text-decoration: line-through; font-size: 1rem; font-family: var(--font-en); }
.offer-box .now { font-family: var(--font-en); font-size: 2.6rem; font-weight: 700; color: var(--terracotta); line-height: 1; }
.offer-box .now .yen { font-size: 1.3rem; }
.offer-box .tax { font-size: 0.72rem; color: var(--greige); }

.lp-fv .fv-actions { display: flex; flex-direction: column; gap: 0.7rem; }
.lp-fv .fv-note { margin-top: 1rem; font-size: 0.8rem; color: var(--greige); text-align: center; }

.lp-fv-media { position: relative; }
.lp-fv-photo { border-radius: var(--radius-l); aspect-ratio: 3/4; box-shadow: var(--shadow-soft); }
.lp-fv-media .float-badge {
  position: absolute; top: -16px; right: -12px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-head); font-weight: 700;
  box-shadow: var(--shadow-card);
  line-height: 1.3;
  transform: rotate(-8deg);
}
.lp-fv-media .float-badge .s { font-size: 0.7rem; display: block; }
.lp-fv-media .float-badge .l { font-family: var(--font-en); font-size: 1.6rem; }

/* LP worry / empathy checklist */
.worry { background: var(--bg-beige); }
.worry-box {
  max-width: 640px; margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-card);
}
.worry-list { display: grid; gap: 1rem; }
.worry-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1rem; color: var(--text); }
.worry-list li svg { width: 24px; height: 24px; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.worry-arrow { text-align: center; margin-top: 1.8rem; }
.worry-arrow svg { width: 40px; height: 40px; color: var(--green); }
.worry-arrow p { font-family: var(--font-head); font-weight: 700; color: var(--mocha); font-size: 1.15rem; margin-top: 0.4rem; }

/* LP reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.reason-card {
  background: var(--bg-card);
  border-radius: var(--radius-l);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(185,168,143,0.18);
  position: relative;
}
.reason-card .r-num {
  position: absolute; top: 1rem; right: 1.3rem;
  font-family: var(--font-en); font-size: 2.2rem; font-weight: 700;
  color: var(--greige-soft);
}
.reason-card .r-ico {
  width: 70px; height: 70px; margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-beige);
  color: var(--green-deep);
}
.reason-card .r-ico svg { width: 36px; height: 36px; }
.reason-card h3 { font-size: 1.15rem; color: var(--mocha); margin-bottom: 0.6rem; }
.reason-card p { font-size: 0.88rem; color: var(--text-soft); }

/* LP before/after */
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; max-width: 760px; margin-inline: auto; }
.ba-item { text-align: center; }
.ba-item .photo-ph { aspect-ratio: 1/1; border-radius: var(--radius-l); }
.ba-item .tag {
  display: inline-block; margin-top: 0.8rem;
  font-family: var(--font-en); letter-spacing: 0.15em; font-weight: 600;
  padding: 0.3rem 1.1rem; border-radius: var(--radius-pill); font-size: 0.85rem;
}
.ba-item .tag.before { background: var(--greige-soft); color: var(--mocha); }
.ba-item .tag.after { background: var(--terracotta); color: #fff; }
.ba-arrow svg { width: 40px; height: 40px; color: var(--green); }
.ba-note { text-align: center; margin-top: 1.4rem; font-size: 0.78rem; color: var(--greige); }
@media (max-width: 560px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow svg { transform: rotate(90deg); }
}

/* LP price emphasis */
.lp-price-box {
  max-width: 620px; margin-inline: auto;
  background: var(--bg-card);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(185,168,143,0.18);
}
.lp-price-box .pb-head {
  background: var(--green);
  color: #fff; text-align: center;
  padding: 1.1rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.lp-price-box .pb-body { padding: clamp(1.4rem,4vw,2rem); }
.lp-price-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 0;
  border-bottom: 1px dashed var(--greige-soft);
}
.lp-price-item:last-child { border-bottom: none; }
.lp-price-item .pi-name { font-family: var(--font-head); font-weight: 700; color: var(--mocha); }
.lp-price-item .pi-name span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--greige); font-family: var(--font-body); }
.lp-price-item .pi-price { text-align: right; }
.lp-price-item .pi-price .was { color: var(--greige); text-decoration: line-through; font-size: 0.9rem; font-family: var(--font-en); }
.lp-price-item .pi-price .now { font-family: var(--font-en); font-size: 1.8rem; font-weight: 700; color: var(--terracotta); line-height: 1; }
.lp-price-item .pi-price .now .yen { font-size: 1rem; }

/* LP reserve steps */
.rsteps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 820px; margin-inline: auto; }
.rstep {
  background: var(--bg-card); border-radius: var(--radius-l);
  padding: 1.8rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid rgba(185,168,143,0.18);
}
.rstep .num {
  width: 48px; height: 48px; margin: 0 auto 0.8rem;
  border-radius: 50%; background: var(--terracotta); color: #fff;
  display: grid; place-items: center; font-family: var(--font-en); font-weight: 700; font-size: 1.3rem;
}
.rstep h3 { font-size: 1rem; color: var(--mocha); margin-bottom: 0.4rem; }
.rstep p { font-size: 0.82rem; color: var(--text-soft); }
@media (max-width: 600px) { .rsteps { grid-template-columns: 1fr; } }

/* LP final CTA */
.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(154,167,140,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,142,111,0.2), transparent 50%),
    var(--bg-beige);
}
.final-cta h2 { font-size: clamp(1.6rem,4.5vw,2.3rem); color: var(--mocha); margin-bottom: 1rem; }
.final-cta p { color: var(--text-soft); margin-bottom: 2rem; }
.final-cta .fc-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* LP sticky bottom bar (mobile) */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255,253,250,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(140,122,91,0.18);
  border-top: 1px solid var(--greige-soft);
}
.sticky-bar .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.95rem; }
.sticky-bar .btn--outline { flex: 0 0 auto; padding: 0.85rem 1.1rem; }
@media (max-width: 880px) {
  .sticky-bar { display: flex; }
  body.lp-body { padding-bottom: 76px; }
}

/* LP general spacing helper */
.lp-section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* ---------- Mobile hero / general ---------- */
@media (max-width: 760px) {
  .hero .container,
  .concept .container,
  .lp-fv .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 360px; margin-inline: auto; }
  .lp-fv-media { max-width: 320px; margin-inline: auto; }
  .hero-copy .hero-sub { max-width: none; }
  .concept-photo--small { width: 42%; }
  .gallery-grid { gap: 0.5rem; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .btn { padding: 0.85rem 1.5rem; }
  .contact-card { padding: 1.6rem 1.2rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
