/* ===================================================
   KOKOROBA 心場 - 女性専用フィットネスジム デモサイト
   =================================================== */

:root {
  --navy: #16283f;
  --blue-deep: #1f4e8c;
  --blue: #2f7bc2;
  --blue-light: #6fb3e0;
  --blue-pale: #eaf4fb;
  --teal: #4fb7ad;
  --bg: #f6faff;
  --white: #ffffff;
  --text: #223247;
  --text-soft: #5a6b80;
  --line: #dde8f2;
  --shadow: 0 10px 30px rgba(22, 40, 63, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 40, 63, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--navy);
  line-height: 1.5;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "●"; font-size: 8px; color: var(--teal); }

.section { padding: 100px 0; }
.section.tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 15.5px; }
.section.alt { background: var(--white); }
.section.navy {
  background: linear-gradient(150deg, var(--navy), var(--blue-deep) 70%);
  color: #dce8f5;
}
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy .section-head p { color: #b7cbe2; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 123, 194, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(47, 123, 194, .42); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-ghost {
  background: var(--white);
  color: var(--blue-deep);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue-light); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(22,40,63,.08);
  padding: 12px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 700; color: #fff; }
.site-header.solid .brand { color: var(--navy); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 800; letter-spacing: -1px;
  flex-shrink: 0;
}
.brand .sub { font-size: 10px; letter-spacing: .18em; font-weight: 600; display: block; color: inherit; opacity: .75; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  color: #fff; font-size: 14.5px; font-weight: 600; position: relative; padding: 4px 0;
}
.site-header.solid .main-nav a { color: var(--text); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--teal); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--teal); }
.site-header.solid .main-nav a.active { color: var(--blue-deep); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .tel { color: #fff; font-size: 14px; font-weight: 700; }
.site-header.solid .header-cta .tel { color: var(--navy); }
.header-cta .tel small { display: block; font-size: 10px; font-weight: 500; opacity: .7; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); position: relative; flex-shrink: 0;
}
.site-header.solid .nav-toggle { background: var(--blue-pale); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: all .3s ease;
}
.site-header.solid .nav-toggle span, .site-header.solid .nav-toggle::before, .site-header.solid .nav-toggle::after { background: var(--navy); }
.nav-toggle span { top: 20px; }
.nav-toggle::before { top: 14px; }
.nav-toggle::after { top: 26px; }
.nav-toggle.open::before { top: 20px; transform: rotate(45deg); }
.nav-toggle.open::after { top: 20px; transform: rotate(-45deg); }
.nav-toggle.open span { opacity: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,32,55,.88) 10%, rgba(22,60,100,.65) 55%, rgba(30,90,140,.45)),
              linear-gradient(0deg, rgba(10,20,35,.55), transparent 40%);
}
.hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .14em;
  font-weight: 700; padding: 8px 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; margin-bottom: 26px;
}
.hero h1 {
  color: #fff; font-size: clamp(34px, 5.4vw, 58px); font-weight: 700; margin-bottom: 22px; max-width: 760px;
}
.hero h1 span { color: var(--blue-light); }
.hero p.lead { font-size: 17px; max-width: 520px; color: #dfe9f4; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 28px; color: #fff; font-family: "Zen Maru Gothic", sans-serif; }
.hero-stats div span { font-size: 12.5px; color: #b7cbe2; letter-spacing: .04em; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .1em; color: #cfe0f0; z-index: 2;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(#fff, transparent); animation: scrolldown 1.8s infinite; }
@keyframes scrolldown { 0% { opacity: 0; transform: scaleY(0); transform-origin: top;} 40% {opacity:1; transform: scaleY(1); transform-origin: top;} 100% {opacity:0; transform: scaleY(1); transform-origin: bottom;} }

.page-hero {
  position: relative; min-height: 52vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 56px; }
.page-hero .crumb { font-size: 13px; color: #cfe0f0; margin-bottom: 14px; letter-spacing: .04em; }
.page-hero .crumb a { color: #fff; font-weight: 700; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 46px); }
.page-hero p { color: #dfe9f4; margin-top: 14px; max-width: 520px; font-size: 15.5px; }

/* ---------- feature / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card .ico {
  width: 56px; height: 56px; border-radius: 16px; background: var(--blue-pale); color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 24px;
}
.feature-card h3 { font-size: 18.5px; margin-bottom: 12px; }
.feature-card p { color: var(--text-soft); font-size: 14.5px; }

.program-card {
  border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card .thumb { height: 220px; overflow: hidden; position: relative; }
.program-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.program-card:hover .thumb img { transform: scale(1.08); }
.program-card .tag {
  position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.92); color: var(--blue-deep);
  font-size: 11.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; letter-spacing: .04em;
}
.program-card .body { padding: 26px 26px 30px; }
.program-card h3 { font-size: 18px; margin-bottom: 10px; }
.program-card p { color: var(--text-soft); font-size: 14px; margin-bottom: 16px; }
.program-card .meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--blue-deep); font-weight: 700; }

/* ---------- about / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .visual { order: 2; }
.split .visual { position: relative; }
.split .visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split .visual .float-card {
  position: absolute; bottom: -26px; left: -26px; background: #fff; padding: 20px 26px; border-radius: 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split .visual .float-card .num { font-size: 26px; font-weight: 800; color: var(--blue-deep); font-family: "Zen Maru Gothic"; }
.split .visual .float-card p { font-size: 12.5px; color: var(--text-soft); }
.split .copy h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 20px; }
.split .copy p { color: var(--text-soft); margin-bottom: 18px; font-size: 15px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; }
.checklist li .c {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 2px;
}

/* ---------- testimonials ---------- */
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--line); height: 100%;
}
.testi-card .stars { color: #f2b84b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 14.5px; color: var(--text); margin-bottom: 24px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-card .who strong { font-size: 14px; display: block; }
.testi-card .who span { font-size: 12px; color: var(--text-soft); }

/* ---------- pricing ---------- */
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow);
  border: 1px solid var(--line); text-align: center; position: relative; transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--blue); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 6px 18px; border-radius: 999px; letter-spacing: .04em;
}
.price-card h3 { font-size: 17px; margin-bottom: 6px; }
.price-card .desc { font-size: 12.5px; color: var(--text-soft); margin-bottom: 20px; }
.price-card .amount { font-family: "Zen Maru Gothic"; font-size: 40px; color: var(--blue-deep); font-weight: 800; }
.price-card .amount span { font-size: 13px; color: var(--text-soft); font-weight: 500; }
.price-card ul { text-align: left; margin: 26px 0; }
.price-card ul li { font-size: 13.5px; color: var(--text-soft); padding: 9px 0; border-bottom: 1px dashed var(--line); display:flex; gap:8px; }
.price-card ul li::before { content: "✓"; color: var(--teal); font-weight: 800; }

/* ---------- timetable ---------- */
.timetable { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.timetable th, .timetable td { padding: 16px 12px; text-align: center; font-size: 13px; border-bottom: 1px solid var(--line); }
.timetable th { background: var(--navy); color: #fff; font-weight: 600; font-size: 12.5px; letter-spacing: .04em; }
.timetable td.time { color: var(--text-soft); font-weight: 700; background: var(--blue-pale); }
.timetable td.cell strong { display: block; color: var(--blue-deep); font-size: 12.5px; margin-bottom: 2px; }
.timetable td.cell span { font-size: 11px; color: var(--text-soft); }
.timetable td.off { color: #c3ccd6; }
.timetable tr:last-child td { border-bottom: none; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px; }
.gallery a { border-radius: 14px; overflow: hidden; position: relative; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.1); }
.gallery .g-big { grid-column: span 2; grid-row: span 2; }

/* ---------- amenity list ---------- */
.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.amenity-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; padding: 20px; border-radius: 14px; border: 1px solid var(--line); }
.amenity-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-pale); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.amenity-item h4 { font-size: 14.5px; margin-bottom: 4px; }
.amenity-item p { font-size: 12.5px; color: var(--text-soft); }

/* ---------- staff ---------- */
.staff-card { text-align: center; }
.staff-card .photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; height: 300px; }
.staff-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card h3 { font-size: 17px; margin-bottom: 4px; }
.staff-card .role { font-size: 12.5px; color: var(--blue); font-weight: 700; margin-bottom: 12px; letter-spacing: .03em; }
.staff-card p.bio { font-size: 13.5px; color: var(--text-soft); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step::before {
  counter-increment: step; content: counter(step); position: absolute; top: -6px; left: 0;
  font-family: "Zen Maru Gothic"; font-size: 44px; font-weight: 800; color: var(--blue-pale); z-index: 0;
}
.step h4 { position: relative; z-index: 1; font-size: 15.5px; margin: 10px 0 8px; }
.step p { position: relative; z-index: 1; font-size: 13px; color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 28px; overflow: hidden; padding: 70px 60px; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(16,32,55,.92), rgba(31,78,140,.75)); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 16px; }
.cta-band p { color: #dfe9f4; max-width: 480px; margin: 0 auto 32px; font-size: 15px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 15px;
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s ease; font-size: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 14px; }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: #dce8f5; border-radius: var(--radius); padding: 40px 34px; }
.contact-info-card h3 { color: #fff; font-size: 19px; margin-bottom: 22px; }
.contact-info-card .row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-card .row .ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .row strong { display: block; font-size: 13.5px; color: #fff; margin-bottom: 3px; }
.contact-info-card .row span, .contact-info-card .row a { font-size: 13px; color: #b7cbe2; }
.contact-info-card .sns { display: flex; gap: 12px; margin-top: 28px; }
.contact-info-card .sns a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .25s ease; }
.contact-info-card .sns a:hover { background: var(--blue); }

.form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.field label .req { color: #e0645c; font-size: 11px; margin-left: 4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14px; color: var(--text); transition: border-color .2s ease;
  background: #fbfdff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 120px; }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13.5px; }
.form-note { font-size: 12px; color: var(--text-soft); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .ico { width: 64px; height: 64px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--text-soft); font-size: 14px; }

/* ---------- map / access ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }
.access-table { width: 100%; border-collapse: collapse; }
.access-table tr { border-bottom: 1px solid var(--line); }
.access-table tr:last-child { border-bottom: none; }
.access-table th, .access-table td { text-align: left; padding: 16px 6px; font-size: 14px; vertical-align: top; }
.access-table th { width: 130px; color: var(--blue-deep); font-weight: 700; }
.access-table td { color: var(--text-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #b7cbe2; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid .brand { color: #fff; margin-bottom: 16px; }
.footer-grid p.desc { font-size: 13.5px; line-height: 1.9; color: #9fb4cc; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 18px; letter-spacing: .03em; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13.5px; color: #9fb4cc; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 12.5px; color: #7f95ae; flex-wrap: wrap; gap: 10px; }
.footer-bottom .demo-note { font-size: 11.5px; color: #5f7690; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- misc ---------- */
.divider-blob { height: 90px; margin-top: -90px; position: relative; z-index: 3; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .tel { display: none; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .visual { order: 0; }
  .amenity-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery .g-big { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .timetable { display: block; overflow-x: auto; }
  .cta-band { padding: 50px 26px; }
}

/* ---------- mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; background: linear-gradient(160deg, var(--navy), var(--blue-deep)); z-index: 450;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { color: #fff; font-size: 22px; font-weight: 700; }
.mobile-nav .btn-primary { margin-top: 10px; }
