/* ─── Tokens ─── */
:root {
  --white: #ffffff;
  --bg: #fafafa;
  --black: #111111;
  --black-mid: #333333;
  --black-light: #666666;
  --gray: #999999;
  --gray-light: #e0e0e0;
  --yellow: #ffd000;
  --yellow-pale: #fffbe6;
  --red: #d44;
  --font-en: "Plus Jakarta Sans", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --max-w: 1100px;
  --r: 6px;
  --r-sm: 3px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  font-family: var(--font-jp); color: var(--black); background: var(--bg);
  line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
fieldset { border: none; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-family: var(--font-en); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--white); letter-spacing: -0.02em; }
.nav__logo span { color: var(--yellow); }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { font-family: var(--font-en); font-size: clamp(0.78rem, 1vw, 0.95rem); font-weight: 600; color: var(--gray); letter-spacing: 0.02em; transition: color 0.2s; }
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--yellow); color: var(--black) !important;
  padding: 6px 16px; font-size: clamp(0.72rem, 1vw, 0.85rem); border-radius: var(--r-sm); font-weight: 700 !important; transition: transform 0.15s; white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-1px); }

/* ─── Hero ─── */
.hero {
  position: relative; height: calc(100svh - 56px); display: flex; align-items: flex-end;
  padding: 0 0 clamp(40px, 5vh, 80px); margin-top: 56px; overflow: hidden; background: var(--black); color: var(--white);
}
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__slideshow { position: absolute; inset: 0; }
.hero__slideshow .hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0 !important; transition: opacity 1.5s ease-in-out; }
.hero__slideshow .hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; animation: hero-zoom 25s linear infinite alternate; }
.hero__slideshow .hero__slide--active { opacity: 1 !important; }
@keyframes hero-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,0) 50%, rgba(17,17,17,0.6) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; width: 100%; }
.hero__tag {
  display: inline-block; font-family: var(--font-en);
  font-size: clamp(0.72rem, 1vw, 0.9rem); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--yellow); padding: 8px 18px; border-radius: var(--r-sm); margin-bottom: clamp(16px, 2vh, 28px);
}
.hero__catchcopy {
  font-family: var(--font-jp); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white); letter-spacing: 0.06em; line-height: 1.3; margin-bottom: clamp(8px, 1.5vh, 20px);
}
.hero__title {
  font-family: var(--font-en); font-weight: 800;
  font-size: clamp(0.85rem, 1.8vw, 1.5rem); line-height: 1.2; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.hero__title .yellow { color: var(--yellow); }
.hero__sub { font-size: 0.95rem; line-height: 1.9; max-width: 480px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.hero__facts { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__fact { font-family: var(--font-en); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; }
.hero__fact strong { display: block; font-size: 1.1rem; color: var(--white); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 2px; text-transform: none; }

/* ─── Lead / Intro ─── */
.lead { text-align: left; padding: clamp(40px, 6vw, 80px) 24px; max-width: var(--max-w); margin: 0 auto; }
.lead__copy { font-size: clamp(0.85rem, 1.1vw, 0.95rem); line-height: 2; color: var(--fg); font-weight: 400; }
.lead__copy strong { font-weight: 700; color: var(--black); }

/* ─── Reviews ─── */
.reviews { padding: clamp(48px, 8vw, 80px) 24px; max-width: var(--max-w); margin: 0 auto; }
.reviews__header { margin-bottom: 28px; }
.reviews__stars { color: #fbbc04; font-size: 1.4rem; letter-spacing: 2px; vertical-align: middle; }
.reviews__rating { font-family: var(--font-en); font-weight: 800; font-size: 1.3rem; margin-left: 6px; vertical-align: middle; }
.reviews__count { font-size: 0.8rem; color: var(--gray); margin-left: 8px; vertical-align: middle; }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { background: #fafafa; border: 3px dashed var(--gray-light); border-radius: var(--r); padding: 28px 28px 24px; position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: 16px; left: 20px; font-size: 3rem; line-height: 1; color: var(--yellow); font-family: Georgia, serif; }
.review-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-left: 28px; }
.review-card__name { font-weight: 700; font-size: 0.88rem; }
.review-card__stars { color: #fbbc04; font-size: 0.8rem; }
.review-card__text { font-size: 0.85rem; line-height: 1.9; color: var(--black-light); }
.reviews__link { text-align: center; margin-top: 32px; }
.reviews__link a { font-size: 0.85rem; color: var(--gray); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ─── Photo Slider ─── */
.photo-slider { overflow: hidden; padding: 32px 0; }
.photo-slider__track {
  display: flex; gap: 8px;
  animation: photo-scroll 35s linear infinite;
  width: max-content;
}
.photo-slider__track img {
  height: 280px; width: auto; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
@keyframes photo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Legacy photo-strip (kept for compatibility) */
.photo-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
.photo-strip img { width: 100%; height: 400px; object-fit: cover; object-position: center 30%; }

/* ─── Section ─── */
.section { padding: 56px 0; }
.section--form { background: var(--white); }
.section__label { font-family: var(--font-en); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.section__heading { font-family: var(--font-en); font-weight: 800; font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 12px; }
.section__desc { font-size: 0.88rem; color: var(--black-light); margin-bottom: 32px; }
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.act-card { margin: 0; overflow: hidden; border-radius: var(--r); position: relative; }
.act-card img { width: 100%; height: 200px; object-fit: cover; object-position: center 30%; display: block; border-radius: var(--r); }
.act-card figcaption {
  font-family: var(--font-en); font-weight: 800; font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.02em;
  text-align: center; padding: 14px 6px 10px; color: var(--black); line-height: 1.2;
}
.act-card figcaption .act-label {
  font-style: normal;
}
.act-card figcaption .act-label::before {
  content: ''; display: inline-block; width: 0.45em; height: 0.45em;
  background: var(--yellow); border-radius: 50%; margin-right: 0.3em;
  vertical-align: 0.15em;
}
.act-card figcaption span { display: block; font-family: var(--font-jp); font-weight: 400; font-size: 0.62rem; color: var(--gray); margin-top: 4px; letter-spacing: 0.02em; }

/* ─── Plans ─── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--r);
  padding: 28px 24px; position: relative; transition: border-color 0.2s, box-shadow 0.2s;
}
.plan:hover { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.plan--featured { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.plan__badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--yellow); color: var(--black); font-family: var(--font-en);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.plan__name { font-family: var(--font-en); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 2px; }
.plan__dates { font-size: 0.82rem; color: var(--black-light); margin-bottom: 6px; }
.plan__duration {
  display: inline-block; font-family: var(--font-en); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--black-mid);
  background: var(--bg); border: 1px solid var(--gray-light);
  padding: 3px 10px; border-radius: var(--r-sm); margin-bottom: 24px;
}
.plan__original { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; margin-bottom: 4px; }
.plan__original-label { font-size: 0.72rem; color: var(--gray); margin-right: 2px; }
.plan__original-tax { font-size: 0.72rem; }
.plan__price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.plan__yen { font-family: var(--font-en); font-weight: 700; font-size: 1rem; }
.plan__amount { font-family: var(--font-en); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -0.03em; }
.plan__tax-incl { font-size: 0.78rem; color: var(--gray); margin-bottom: 20px; }
.plan__early { background: var(--yellow-pale); border-radius: var(--r-sm); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.plan__early-tag {
  font-family: var(--font-en); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--black); background: var(--yellow); padding: 3px 8px; border-radius: 2px; flex-shrink: 0;
}
.plan__early-price { font-family: var(--font-en); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.plan__early-tax { font-size: 0.72rem; color: var(--gray); margin-left: 4px; }

.plan__slots {
  font-family: var(--font-en); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.02em; text-align: center; margin-top: 8px; color: var(--black-light);
}
.plan__slots--urgent { color: #d44; }
.plan__slots--sold-out { color: var(--gray); }

/* FAQ */
.faq-list { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item summary {
  padding: 20px 0; font-weight: 600; font-size: clamp(0.88rem, 1.2vw, 1rem); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-en); font-size: 1.4rem; font-weight: 300; color: var(--gray);
  flex-shrink: 0; margin-left: 24px; width: 1.4rem; text-align: center;
  transition: opacity 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.faq-item[open] .faq-answer { opacity: 1; }
.faq-answer > div { }
.faq-item p { padding: 0 0 20px; font-size: clamp(0.82rem, 1vw, 0.92rem); color: var(--black-light); line-height: 1.9; }

/* Early bird banner */
.early-bird-banner {
  margin-top: 24px; margin-bottom: 20px;
}
.early-bird-banner__tag {
  font-family: var(--font-en); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: #d44; letter-spacing: 0.02em;
}
.early-bird-banner__countdown {
  font-family: var(--font-en); font-weight: 600; font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #d44; margin-top: 8px; letter-spacing: 0.03em;
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--yellow); color: var(--black); box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  padding: 0; line-height: 0;
  opacity: 0; transform: translateY(16px); transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-to-top svg { display: block; margin: 0 auto; }
.back-to-top--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--black); color: var(--white); }

/* Cancel policy link (small, under pricing) */
.cancel-link {
  margin-top: 20px; font-size: 0.78rem; color: var(--gray);
}
.cancel-link a {
  color: var(--black-light); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.15s;
}
.cancel-link a:hover { color: var(--black); }

/* Includes */
.includes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gray-light); border: 1px solid var(--gray-light); border-radius: var(--r);
  overflow: hidden; margin-top: 48px;
}
.includes-item { background: var(--white); padding: 20px 16px; font-size: 0.82rem; font-weight: 500; text-align: center; }
.includes-item strong {
  display: block; font-family: var(--font-en); font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px;
}
.includes-note { margin-top: 12px; font-size: 0.75rem; color: var(--gray); }

/* ─── Discounts (light bg) ─── */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.disc { padding: 24px 0; border-top: 3px solid var(--yellow); }
.disc__name { font-family: var(--font-en); font-weight: 700; font-size: 0.82rem; color: var(--gray); margin-bottom: 4px; }
.disc__amount { font-family: var(--font-en); font-weight: 800; font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 6px; }
.disc__amount small { font-size: 0.85rem; font-weight: 500; letter-spacing: 0; }
.disc__cond { font-size: 0.78rem; color: var(--gray); }
.disc-total { padding-top: 20px; border-top: 1px solid var(--gray-light); font-size: 0.88rem; color: var(--black-light); }
.disc-total strong { color: var(--black); font-family: var(--font-en); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }

/* ─── Form ─── */
.form { max-width: 680px; margin: 0 auto; }
.form__block {
  background: var(--bg); border: 1px solid var(--gray-light); border-radius: var(--r);
  padding: 28px 28px 24px; margin-bottom: 16px;
}
.form__block-title {
  font-family: var(--font-en); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--black-mid);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.form__block-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--black); color: var(--white);
  font-size: 0.68rem; font-weight: 800; border-radius: var(--r-sm); flex-shrink: 0;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form__field { margin-bottom: 12px; }
.form__row .form__field { margin-bottom: 0; }
.form__label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--black-mid); margin-bottom: 5px; }
.req { color: var(--red); font-size: 0.7rem; margin-left: 2px; }

.form__input, .form__select, .form__textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--gray-light); border-radius: var(--r-sm);
  font-size: 0.9rem; font-family: var(--font-jp); color: var(--black);
  background: var(--white); transition: border-color 0.15s;
}
.form__select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='%23999' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--black); }
.form__textarea { resize: vertical; min-height: 56px; }

/* Checkbox */
.form__check {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  padding: 10px 12px; margin-bottom: 2px; font-size: 0.82rem; line-height: 1.6;
  border: 1px solid transparent; border-radius: var(--r-sm); transition: background 0.15s;
}
.form__check:hover { background: var(--white); }
.form__check input { display: none; }
.form__check-box {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  border: 2px solid var(--gray-light); border-radius: 2px;
  position: relative; transition: background 0.15s, border-color 0.15s;
}
.form__check input:checked + .form__check-box { background: var(--black); border-color: var(--black); }
.form__check input:checked + .form__check-box::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: 2px solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.form__check--optional { opacity: 0.65; }
.form__check--optional em { font-style: normal; font-weight: 600; }
.form__check a { text-decoration: underline; text-underline-offset: 2px; }

/* Price box */
.price-box {
  margin-top: 16px; border: 2px solid var(--yellow); border-radius: var(--r);
  padding: 20px; text-align: center; background: var(--yellow-pale);
}
.price-box__placeholder { color: var(--gray); font-size: 0.85rem; }
.price-box__label { font-size: 0.78rem; color: var(--black-light); margin-bottom: 2px; }
.price-box__amount { font-family: var(--font-en); font-weight: 800; font-size: 2rem; letter-spacing: -0.03em; line-height: 1.2; }
.price-box__discount { font-size: 0.8rem; color: var(--black-light); font-weight: 600; margin-top: 4px; }

/* Submit */
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 680px; margin: 0 auto; padding: 16px 32px;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-en); font-size: 1rem; font-weight: 800; letter-spacing: 0.02em;
  border: none; border-radius: var(--r-sm); cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,208,0,0.3); }
.btn-submit:disabled { opacity: 0.3; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit__arrow { transition: transform 0.15s; }
.btn-submit:hover:not(:disabled) .btn-submit__arrow { transform: translateX(4px); }
.form__note { text-align: center; margin-top: 14px; font-size: 0.75rem; color: var(--gray); }

/* Thank you */
.thankyou { text-align: center; padding: 80px 20px; display: none; }
.thankyou__title { font-family: var(--font-en); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 8px; }
.thankyou__text { font-size: 0.88rem; color: var(--gray); line-height: 1.9; }

/* ─── Modal ─── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center;
}
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.modal__body {
  position: relative; background: var(--white); border-radius: var(--r);
  padding: 36px 32px; max-width: 560px; width: calc(100% - 48px);
  max-height: 85vh; overflow-y: auto;
}
.modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 1.5rem; color: var(--gray);
  cursor: pointer; line-height: 1; transition: color 0.15s;
}
.modal__close:hover { color: var(--black); }
.modal__title {
  font-family: var(--font-en); font-weight: 800; font-size: 1.1rem;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.modal__table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.modal__table td {
  padding: 10px 12px; border-bottom: 1px solid var(--gray-light);
  font-size: 0.85rem; vertical-align: top;
}
.modal__table tr:last-child td { border-bottom: none; }
.modal__table td:first-child { color: var(--black-light); width: 45%; }
.modal__notes { font-size: 0.8rem; color: var(--black-light); line-height: 1.8; }
.modal__notes p { margin-bottom: 8px; }
.modal__notes p:last-child { margin-bottom: 0; }

/* ─── Footer ─── */
.footer {
  padding: 48px 24px; background: var(--black); text-align: center;
  font-size: 0.75rem; color: var(--gray); border-top: 1px solid rgba(255,255,255,0.06);
}
.footer a { color: var(--gray); transition: color 0.2s; }
.footer a:hover { color: var(--white); }
.footer strong { display: block; color: var(--white); font-weight: 600; font-size: 0.82rem; margin-bottom: 4px; }
.footer__copy { margin-top: 12px; font-size: 0.7rem; opacity: 0.5; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .disc-grid { grid-template-columns: 1fr; max-width: 360px; }
  .plan--featured { order: -1; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 300px; }
  .photo-strip img:first-child { grid-column: 1 / -1; }
  .hero { height: calc(100svh - 48px); padding-bottom: clamp(80px, 12vh, 120px); }
  .hero__facts { gap: 20px; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
  .act-card img { height: 160px; }
  .form__row, .form__row--3 { grid-template-columns: 1fr; }
  .form__block { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 320px; }
  .photo-strip img:first-child { grid-column: auto; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .act-card img { height: 140px; }
  .act-card figcaption { font-size: 1rem; padding: 10px 4px 6px; }
}
