:root {
  --green: #d28a93;
  --green-dark: #97505d;
  --green-light: #fbe7ea;
  --gold: #d2a07f;
  --ink: #3a2e30;
  --gray: #8d7780;
  --line: #f0dee2;
  --bg: #ffffff;
  --bg-soft: #fdf4f5;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(151, 80, 93, 0.1);
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }
.container-narrow { max-width: 760px; }
.sp-only { display: none; }

.mincho { font-family: "Shippori Mincho", serif; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(210, 138, 147, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(210, 138, 147, 0.5); }
.btn-ghost { background: rgba(255,255,255,.85); color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: #fff; transform: translateY(-3px); }
.btn-block { width: 100%; padding: 18px; font-size: 16px; }

/* ===== Header ===== */
.sample-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 38px; padding: 0 14px;
  background: var(--green-dark); color: #fff;
  font-size: 12.5px; font-weight: 500; white-space: nowrap;
}
.sample-tag {
  background: #fff; color: var(--green-dark);
  font-weight: 700; font-size: 11px; letter-spacing: .08em;
  padding: 2px 9px; border-radius: 999px;
}
.sample-bar a {
  color: #fff; font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px;
}
.sample-bar a:hover { opacity: .8; }
.site-header {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 900; font-size: 22px;
  display: grid; place-items: center;
}
.logo-text { font-weight: 700; font-size: 17px; line-height: 1.2; }
.logo-text small { display: block; font-size: 10px; color: var(--gray); letter-spacing: .12em; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: 10px 22px; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden; padding-top: 110px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(120deg, rgba(151,80,93,.28) 0%, rgba(180,109,120,.18) 55%, rgba(210,138,147,.24) 100%),
    url("../img/bg1.jpeg") center / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,169,106,.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.15), transparent 40%);
}
.hero-inner { padding: 60px 0; position: relative; }
.hero-sub { letter-spacing: .3em; font-size: 13px; font-weight: 700; opacity: .85; margin-bottom: 20px; }
.hero-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(30px, 5.2vw, 60px);
  font-weight: 700; line-height: 1.4; margin-bottom: 24px;
  text-shadow: 0 2px 14px rgba(70,25,35,.35);
}
.hero-title .accent {
  color: #d06074;
  text-shadow: 0 2px 16px #ffffff;
}
.hero-lead { font-size: clamp(15px, 2vw, 19px); margin-bottom: 38px; opacity: .95; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-tags li {
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(151,80,93,.42); border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 3px rgba(60,20,30,.45);
}
.hero-tags .tag-salary {
  background: #d06074;
  color: rgba(255, 255, 255, .92);
  border: none;
  font-size: 14px;
  font-weight: 900;
  padding: 9px 20px;
  text-shadow: none;
  /* box-shadow: 0 6px 18px rgba(199, 154, 91, .5); */
}
.hero-tags .tag-salary::before { content: "★ "; }
.scroll-down { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.scroll-down span {
  display: block; width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.7); border-radius: 12px; position: relative;
}
.scroll-down span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: #fff;
  animation: scrolldot 1.5s infinite;
}
@keyframes scrolldot { 0%{opacity:1;top:6px} 100%{opacity:0;top:18px} }

/* ===== Section common ===== */
.section { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-en { font-size: 13px; letter-spacing: .3em; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.section-title { font-family: "Shippori Mincho", serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; }
.section-desc { margin-top: 16px; color: var(--gray); font-size: 15px; }
.section-head.light .section-title { color: #fff; }
.section-head.light .section-desc { color: rgba(255,255,255,.85); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Message ===== */
.message { background: var(--bg-soft); }
.message-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.photo-frame {
  aspect-ratio: 3/4; border-radius: var(--radius);
  background: linear-gradient(135deg, #d7e7e2, #b9d3cb);
  display: grid; place-items: center; color: var(--green-dark);
  font-weight: 700; box-shadow: var(--shadow);
}
.message-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.message-sign { text-align: center; margin-top: 16px; font-weight: 700; color: var(--green-dark); }
.cred-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.cred-tags li {
  font-size: 12.5px; font-weight: 700; color: var(--green-dark);
  background: var(--green-light); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}
.message-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
}
.message-stats dt { font-size: 12.5px; color: var(--gray); font-weight: 700; margin-bottom: 4px; }
.message-stats dd { font-size: 14px; color: var(--green-dark); font-weight: 700; }
.message-stats dd b { font-family: "Shippori Mincho", serif; font-size: 32px; line-height: 1; margin-right: 2px; }
.message-body h3 { font-family: "Shippori Mincho", serif; font-size: clamp(20px, 3vw, 28px); line-height: 1.6; margin-bottom: 24px; color: var(--green-dark); }
.message-body p { margin-bottom: 18px; color: #3f4744; }

/* ===== Numbers ===== */
.numbers {
  background: linear-gradient(135deg, rgba(151, 80, 93, 0.2), rgba(180, 109, 120, .42)), url(../img/bg2.jpeg) center / cover no-repeat;
  color: #fff;
}
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.num-card {
  background: rgba(210, 138, 147, 0.4);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.num-label { font-size: 14px; font-weight: 500; opacity: .9; }
.num-value { font-family: "Shippori Mincho", serif; font-size: 54px; font-weight: 700; line-height: 1.1; margin: 8px 0; color: #ffe9bf; }
.num-value i { font-size: 22px; font-style: normal; margin-left: 4px; }
.num-note { font-size: 13px; opacity: .85; line-height: 1.7; }

/* ===== Features ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features {
  background:
    linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)),
    url("../img/bg3.jpeg") center / cover no-repeat fixed;
}
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-light); color: var(--green-dark);
  font-weight: 900; font-size: 20px; display: grid; place-items: center; margin-bottom: 20px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--green-dark); }
.feature-card p { font-size: 14.5px; color: var(--gray); line-height: 1.85; }

/* ===== Reasons ===== */
.reasons { background: var(--bg-soft); }
.reason-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason-badges li {
  background: #fff; border-radius: var(--radius); padding: 24px 24px 24px 90px;
  position: relative; border: 1px solid var(--line); font-size: 15px; font-weight: 500;
}
.reason-badges b {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 700;
}

/* ===== Women ===== */
.women-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.women .section-head { text-align: left; margin-bottom: 28px; }
.women-text > p { color: #3f4744; margin-bottom: 24px; }
.women-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--green-light); border-radius: 12px; margin-bottom: 14px;
  font-size: 14.5px; color: #3f4744;
}
.women-list li img {
  flex: 0 0 auto; width: 64px; height: 64px; object-fit: cover;
  border-radius: 50%; box-shadow: var(--shadow);
}
.women-list b { display: block; color: var(--green-dark); font-size: 16px; margin-bottom: 4px; }
.women-photo .photo-frame { aspect-ratio: 4/5; }
.women-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}

/* ===== Voice ===== */
.voice {
  background:
    linear-gradient(135deg, rgba(151,80,93,.45), rgba(180,109,120,.38)),
    url("../img/room.jpeg") center / cover no-repeat;
  color: #fff;
}
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.voice-card {
  background: rgba(255,255,255,.95); color: var(--ink); border-radius: var(--radius);
  padding: 32px; position: relative;
}
.voice-card blockquote { font-size: 15px; line-height: 1.95; }
.voice-card::before {
  content: "“"; font-family: "Shippori Mincho", serif; font-size: 70px; color: var(--green-light);
  position: absolute; top: 6px; right: 22px; line-height: 1;
}
.voice-card figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; font-weight: 700; color: var(--green-dark);
}
.voice-card figcaption img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 50%;
  box-shadow: var(--shadow);
}

/* ===== Bonus ===== */
.bonus { background: #d06074; }
.bonus .btn-primary {
  background: #fff; color: #d06074;
  box-shadow: 0 8px 24px rgba(120,30,50,.28);
}
.bonus .btn-primary:hover { background: #fff5f7; color: #b84d5e; }
.bonus-inner { display: flex; align-items: center; justify-content: center; gap: 30px; padding: 40px 0; flex-wrap: wrap; }
.bonus-text { color: #fff; font-size: clamp(18px, 3vw, 26px); font-weight: 700; }
.bonus-text b { font-size: 1.3em; border-bottom: 3px solid #fff; }

/* ===== Requirements ===== */
.req-block { margin-bottom: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.req-title { background: var(--green); color: #fff; padding: 18px 28px; font-size: 19px; }
.req-table { width: 100%; border-collapse: collapse; }
.req-table th, .req-table td { text-align: left; padding: 18px 28px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.req-table th { width: 150px; background: var(--bg-soft); font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.req-table tr:last-child th, .req-table tr:last-child td { border-bottom: none; }

/* ===== Flow ===== */
.flow {
  background:
    linear-gradient(135deg, rgba(151,80,93,.45), rgba(180,109,120,.38)),
    url("../img/room2.jpeg") center / cover no-repeat;
  color: #fff;
}
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.flow-steps li {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative;
}
.flow-num { font-family: "Shippori Mincho", serif; font-size: 30px; color: #ffe9bf; font-weight: 700; }
.flow-steps h3 { font-size: 17px; margin: 8px 0; }
.flow-steps p { font-size: 13px; opacity: .9; line-height: 1.7; }

/* ===== Team photo ===== */
.team { background: var(--bg-soft); }
.team-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.team-photo img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.team-text .section-en { margin-bottom: 10px; }
.team-text h2 {
  font-family: "Shippori Mincho", serif; font-size: clamp(22px, 3.2vw, 32px);
  color: var(--green-dark); line-height: 1.5; margin-bottom: 20px;
}
.team-text p { color: var(--gray); font-size: 15px; line-height: 1.95; margin-bottom: 16px; }
.team-text p:last-child { margin-bottom: 0; }

/* ===== Photo marquee ===== */
.gallery { background: var(--bg-soft); padding: 24px 0; overflow: hidden; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track {
  display: flex; width: max-content; gap: 18px;
  animation: marquee 80s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { flex: 0 0 auto; }
.marquee-track img {
  width: 280px; height: 180px; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow); display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
}

/* ===== Schedule ===== */
.schedule { background: var(--bg-soft); }
.timeline { position: relative; margin-top: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 76px; top: 8px; bottom: 8px;
  width: 2px; background: var(--green-light);
}
.timeline li {
  position: relative; display: grid; grid-template-columns: 64px 1fr;
  gap: 28px; padding: 0 0 26px 0;
}
.timeline li:last-child { padding-bottom: 0; }
.tl-time {
  font-family: "Shippori Mincho", serif; font-weight: 700;
  color: var(--green-dark); font-size: 16px; text-align: right; padding-top: 2px;
}
.tl-body {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 20px; margin-left: 22px;
}
.tl-body::before {
  content: ""; position: absolute; left: -29px; top: 16px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--green-light);
}
.tl-body h3 { font-size: 16px; color: var(--green-dark); margin-bottom: 4px; }
.tl-body p { font-size: 14px; color: var(--gray); line-height: 1.8; }
.tl-note { display: block; margin-top: 6px; font-size: 12.5px; color: var(--green-dark); font-weight: 700; }

/* ===== Casual contact ===== */
.casual { background: #fff; }
.casual-card {
  background: linear-gradient(135deg, var(--green-light), #fff);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 40px; text-align: center;
}
.casual-en { font-size: 13px; letter-spacing: .3em; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.casual-title { font-family: "Shippori Mincho", serif; font-size: clamp(22px, 3.4vw, 30px); color: var(--green-dark); line-height: 1.5; margin-bottom: 16px; }
.casual-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 28px; }
.casual-photos img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow); display: block;
}
.casual-lead { color: var(--gray); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.casual-lead:last-of-type { margin-bottom: 30px; }
.casual-checks {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px;
  margin-bottom: 18px; font-size: 13px; font-weight: 700; color: var(--green-dark);
}
.casual-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-line { background: #06c755; color: #fff; box-shadow: 0 8px 24px rgba(6,199,85,.3); }
.btn-line:hover { background: #05b34c; transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.casual-note { margin-top: 18px; font-size: 13px; color: var(--gray); }

/* ===== Access ===== */
.access-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: stretch; }
.access-info h3 { font-size: 20px; color: var(--green-dark); margin-bottom: 18px; }
.access-info dl { display: grid; grid-template-columns: 90px 1fr; gap: 12px 16px; }
.access-info dt { font-weight: 700; color: var(--green-dark); font-size: 14px; }
.access-info dd { font-size: 14px; color: var(--ink); line-height: 1.8; }
.access-map { min-height: 320px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.access-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 44px 24px 16px; font-size: 16px; font-weight: 700; color: var(--ink);
  position: relative; line-height: 1.6;
}
.faq-q::before { content: "Q"; color: var(--green); font-family: "Shippori Mincho", serif; margin-right: 12px; font-size: 18px; }
.faq-q::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 12px; height: 12px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 16px 24px 44px; color: var(--gray); }

/* ===== Entry ===== */
.entry { background: linear-gradient(135deg, #97505d, #d28a93); color: #fff; }
.entry-form { background: #fff; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.entry-form label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.form-full { grid-column: 1 / -1; }
.req { background: #e35d5d; color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 6px; }
.entry-form input, .entry-form textarea {
  width: 100%; margin-top: 8px; padding: 13px 16px; font-size: 15px;
  border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit;
  background: var(--bg-soft); transition: border .2s, background .2s;
}
.entry-form input:focus, .entry-form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-check { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.form-check input { width: auto; margin: 0; }
.form-check a { color: var(--green); text-decoration: underline; }
.form-result { margin-top: 18px; text-align: center; font-weight: 700; color: var(--green-dark); }

/* ===== Footer ===== */
.site-footer { background: #97505d; color: #f3dce1; padding: 56px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-brand p { margin-top: 12px; font-weight: 700; color: #fff; }
.footer-addr { font-weight: 400 !important; font-size: 13px; color: #e6c5cc; line-height: 1.8; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; align-content: flex-start; }
.footer-nav a { font-size: 14px; color: #f3dce1; }
.footer-nav a:hover { color: #fff; }
.copyright { text-align: center; font-size: 12px; color: #d9b3bb; padding-top: 24px; }

/* ===== Float CTA ===== */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 700; padding: 16px 28px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(210,138,147,.5); display: none;
}
.float-cta.show { display: block; animation: floatin .4s ease; }
@keyframes floatin { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav {
    position: fixed; top: 110px; right: 0; width: 78%; max-width: 320px; height: calc(100vh - 110px);
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 30px; gap: 8px; transform: translateX(110%); transition: transform .3s;
    box-shadow: -10px 0 40px rgba(0,0,0,.12); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; border-bottom: none !important; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .message-grid, .women-inner, .team-inner { grid-template-columns: 1fr; gap: 32px; }
  .message-photo { max-width: 320px; margin: 0 auto; }
  .numbers-grid, .feature-grid, .reason-badges { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sp-only { display: inline; }
  .section { padding: 64px 0; }
  .sample-extra { display: none; }
  .numbers-grid, .feature-grid, .reason-badges, .flow-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .entry-form { padding: 28px 20px; }
  .req-table th { width: 100px; padding: 14px; }
  .req-table td { padding: 14px; }
  .hero-actions .btn-primary { display: none; }
  .hero-actions .btn-ghost { flex: 1; width: 100%; text-align: center; }
  .float-cta { left: 16px; right: 16px; text-align: center; }
  .casual-card { padding: 36px 22px; }
  .casual-actions .btn { width: 100%; }
  .timeline::before { left: 60px; }
  .timeline li { grid-template-columns: 50px 1fr; gap: 20px; }
}
