/* ============================================================
   BOSS MARINE — css/index.css
   index.html 専用スタイルシート
   共通ファイルを @import した後、index専用スタイルを定義します。
   ============================================================ */

@import url('./base.css');
@import url('./header.css');
@import url('./footer.css');

/* ============================================================
   HERO — Google口コミ主役（カンプ準拠・フルスクリーン）
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #001028;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}
.hero-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  display: block;
  opacity: 0;
  will-change: transform, opacity;
  animation: hero-fade 18s ease-in-out infinite, hero-kenburns 24s ease-in-out infinite;
}
.hero-media picture:nth-child(1) .hero-media-img { animation-delay: -2s, 0s; object-position: 50% 42%; }
.hero-media picture:nth-child(2) .hero-media-img { animation-delay: -12s, -8s; object-position: 60% 45%; }
.hero-media picture:nth-child(3) .hero-media-img { animation-delay: -6s, -16s; object-position: 48% 50%; }
.hero-media picture:nth-child(4) .hero-media-img { animation-delay: -15s, -4s; object-position: 55% 38%; }
.hero-media picture:nth-child(5) .hero-media-img { animation-delay: -9s, -12s; object-position: 52% 48%; }
@keyframes hero-fade {
  0%        { opacity: 0; }
  10%       { opacity: 1; }
  28%       { opacity: 1; }
  38%, 100% { opacity: 0; }
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.08) translate(0, 0); }
  50%  { transform: scale(1.14) translate(-1.5%, 1%); }
  100% { transform: scale(1.08) translate(0, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,12,36,.72) 0%, rgba(0,18,48,.42) 42%, rgba(0,20,50,.18) 68%, rgba(0,20,50,.28) 100%),
    linear-gradient(180deg, rgba(0,10,30,.35) 0%, transparent 28%, transparent 48%, rgba(0,10,28,.78) 100%);
}
.header:not(.scrolled) .logo-jp { color: #fff; }
.header:not(.scrolled) .logo-en { color: rgba(255,255,255,.72); }
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,.92); }
.header:not(.scrolled) .nav-link:hover { color: #fff; }
.header:not(.scrolled) .nav-link::after { background: var(--accent); }
.header:not(.scrolled) .hamburger span { background: #fff; }
.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .04em;
  border: none;
  box-shadow: 0 6px 20px rgba(255,200,0,.35);
  transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer;
}
.header-cta:hover {
  background: #ffe566;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,200,0,.45);
}
/* CTA visibility owned by css/lang.css (≥1180). Legacy 1100 rule removed. */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) clamp(56px, 8vh, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}
.hero-content { max-width: 560px; text-align: left; }
.hero-rating {
  margin-bottom: 18px;
  opacity: 0;
  animation: hero-rise .7s ease both .12s;
}
.hero-rating-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}
.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-rating-row--score { gap: 10px; }
.hero-rating-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
}
.hero-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: .1em;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255,216,61,.4);
}
.hero-rating-meta {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}
.hero-rating-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.hero-rating-sep {
  margin: 0 4px;
  opacity: .55;
  font-weight: 500;
}
.hero-rating-demo {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: .58rem;
  font-weight: 700;
  color: rgba(0,20,60,.8);
  background: rgba(255,216,61,.9);
  padding: 2px 7px;
  border-radius: 999px;
}
.hero-rating-empty-msg {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.hero-g { display: block; flex-shrink: 0; }
.hero-heading {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 4px 24px rgba(0,8,32,.45);
  opacity: 0;
  animation: hero-rise .75s ease both .28s;
}
.hero-br { display: inline; }
.hero-sub {
  font-size: clamp(.88rem, 1.1vw, .98rem);
  line-height: 1.85;
  color: rgba(255,255,255,.86);
  margin: 0 0 28px;
  max-width: 34em;
  text-shadow: 0 2px 12px rgba(0,8,32,.4);
  opacity: 0;
  animation: hero-rise .75s ease both .48s;
}
.hero-sub-br { display: none; }
@media (min-width: 900px) {
  .hero-sub-br { display: inline; }
}
/* Same-day CTA — deliberately navy/glass, not the yellow primary CTA's
   color, so it reads as complementary rather than a second competing
   action. Reuses [data-reserve-cta] (see js/reserve-handoff.js) — same
   destination, language param, and course-routing as the main CTA, no
   new JS. Sits between hero-sub and hero-btns so the primary CTA stays
   the dominant action. */
.hero-same-day {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  /* .58 measured ~2.6:1 contrast for the sub-line against the single
     brightest patch found across all 5 rotating hero photos (a sun
     glint / white-foam highlight) — below WCAG AA. .70 brings that
     same worst case to ~4.0:1 (title stays ~6.8:1+) while keeping the
     glass-blur look; opacity only, no other change. */
  background: rgba(8, 22, 48, .70);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 20px;
  margin: 0 0 16px;
  min-height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: left;
  transition: background .25s, border-color .25s, transform .25s;
  opacity: 0;
  animation: hero-rise .75s ease both .57s;
}
.hero-same-day:hover,
.hero-same-day:focus-visible {
  background: rgba(8, 22, 48, .74);
  border-color: rgba(255,216,61,.5);
  transform: translateY(-2px);
}
.hero-same-day-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-same-day-title {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0,8,32,.4);
}
.hero-same-day-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.78);
  letter-spacing: .01em;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: hero-rise .75s ease both .66s;
}
.hero-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 28px rgba(255,200,0,.38);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.hero-reserve-btn:hover {
  background: #ffe566;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255,200,0,.48);
}
.hero-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 14px 24px;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: transform .25s, background .25s, border-color .25s;
}
.hero-contact-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.hero-contact-link {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 4px 2px;
  cursor: pointer;
  text-shadow: 0 2px 10px rgba(0,8,32,.4);
}
.hero-contact-link span { margin-left: 4px; }
.hero-reviews {
  justify-self: end;
  width: min(100%, 380px);
  opacity: 0;
  animation: hero-rise .8s ease both .85s;
  /* 高さ変動を口コミ領域内に閉じ込める（上のCTAと連動しない） */
  flex-shrink: 0;
  align-self: end;
}
.hero-reviews.is-empty { display: none; }
.hero-reviews-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* JS で実測高さを入れる。未計測時の仮高さ */
  min-height: 132px;
}
.hero-reviews-slider {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform .45s cubic-bezier(.22, .8, .28, 1);
}
.hero-reviews-slider.is-instant {
  transition: none;
}
.hero-review-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: rgba(8, 22, 48, .58);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,8,32,.35);
  /* カード単体の float はレイアウト計測を乱すのでトラック側で行う */
}
a.hero-review-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
a.hero-review-card--link:hover,
a.hero-review-card--link:focus-visible {
  border-color: rgba(255,216,61,.55);
  background: rgba(8, 22, 48, .72);
  box-shadow: 0 18px 44px rgba(0,8,32,.42);
  outline: none;
}
.hero-reviews-track.is-ready {
  animation: hero-card-float 5.5s ease-in-out infinite;
}
@keyframes hero-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-review-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-review-card-meta .hero-stars { font-size: .95rem; }
.hero-review-badge {
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--primary);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-review-text {
  margin: 0 0 14px;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.94);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  quotes: none;
}
.hero-review-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.hero-review-author {
  font-style: normal;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}
.hero-review-date {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  animation: hero-rise .7s ease both 1.2s;
}
.hero-scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(255,255,255,.85);
  animation: hero-scroll-dot 1.8s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
@keyframes hero-scroll-dot {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-svg-defs,
.hero-bg,
.hero-img-panel,
.hero-watermark,
.hero-sparkles,
.hero-deco,
.hero-btns-mobile,
.hero-wave-bottom,
.hero-bubble-wrap,
.hero-tags,
.hero-img-pair { display: none !important; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); backdrop-filter: none; box-shadow: none; }
.btn-outline:hover { background: rgba(0,20,80,.06); border-color: var(--primary); transform: translateY(-2px); }
.btn-outline::after { background: rgba(0,20,80,.06); }
.btn-glass {
  background: rgba(255,255,255,.12); color: white;
  border: 2px solid rgba(255,255,255,.34); backdrop-filter: blur(12px); box-shadow: none;
}
.btn-glass:hover { background: rgba(255,255,255,.24); border-color: rgba(255,255,255,.7); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.btn-glass::after { background: rgba(255,255,255,.08); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes swim  { 0%{transform:translateX(0) scaleX(1)} 45%{transform:translateX(60px) scaleX(1)} 50%{transform:translateX(60px) scaleX(-1)} 95%{transform:translateX(0) scaleX(-1)} 100%{transform:translateX(0) scaleX(1)} }
@keyframes spin  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.float-anim { animation: float 3.5s ease-in-out infinite; }
.swim-anim  { animation: swim  6s   ease-in-out infinite; }
.spin-anim  { animation: spin  12s  linear      infinite; }
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 72px;
  }
  .hero-reviews {
    justify-self: start;
    width: min(100%, 420px);
  }
  .hero-content { max-width: 520px; }
}
/* ============================================================
   WHY CHOOSE  ―  bento-style redesign
   ============================================================ */

/* ── section wrapper ── */
.why {
  position: relative;
  /* 深海 → 浅瀬 → 砂浜のグラデーション */
  background:
    linear-gradient(
      180deg,
      #001830 0%,
      #002f5c 18%,
      #004d7a 38%,
      #006e8a 58%,
      #007a6e 75%,
      #2a8a60 88%,
      #4a7a3a 100%
    );
  padding-block: var(--section-py);
  overflow: hidden;
}

/* ── bg container ── */
.why-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* ── SVG noise layer (砂のザラザラ) ── */
.why-noise-svg { position: absolute; width: 0; height: 0; }
.why-noise-layer {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .045;
  mix-blend-mode: overlay;
}

/* ── 光の粒子 スパークル ── */
.why-sparkles { position: absolute; inset: 0; }
.why-sp {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: why-sparkle 3s ease-in-out infinite;
}
.why-sp1  { width: 3px; height: 3px; top: 12%; left: 18%; animation-delay: 0s;    animation-duration: 2.8s; }
.why-sp2  { width: 2px; height: 2px; top: 22%; left: 45%; animation-delay: .6s;   animation-duration: 3.5s; }
.why-sp3  { width: 4px; height: 4px; top: 35%; left: 70%; animation-delay: 1.2s;  animation-duration: 2.5s; }
.why-sp4  { width: 2px; height: 2px; top: 50%; left: 30%; animation-delay: 1.8s;  animation-duration: 4s;   }
.why-sp5  { width: 3px; height: 3px; top: 65%; left: 82%; animation-delay: .3s;   animation-duration: 3.2s; }
.why-sp6  { width: 2px; height: 2px; top: 75%; left: 12%; animation-delay: 2.1s;  animation-duration: 2.9s; }
.why-sp7  { width: 4px; height: 4px; top: 18%; left: 88%; animation-delay: .9s;   animation-duration: 3.8s; }
.why-sp8  { width: 2px; height: 2px; top: 80%; left: 55%; animation-delay: 1.5s;  animation-duration: 2.6s; }

@keyframes why-sparkle {
  0%, 100% { opacity: 0; transform: scale(.6); }
  50%       { opacity: .9; transform: scale(1.4); }
}

/* ── コースティクス (海中の光の筋) ── */
.why-caustics { position: absolute; inset: 0; }
.why-ca {
  position: absolute;
  border-radius: 50% 60% 40% 50% / 50% 40% 60% 50%;
  background: radial-gradient(ellipse at center, rgba(69,200,216,.18) 0%, transparent 70%);
  animation: why-caustic 8s ease-in-out infinite alternate;
}
.why-ca1 { width: 500px; height: 200px; top: 5%;  left: -80px;  animation-delay: 0s;  }
.why-ca2 { width: 400px; height: 160px; top: 40%; right: -60px; animation-delay: -3s; animation-duration: 10s; }
.why-ca3 { width: 360px; height: 130px; top: 70%; left: 20%;   animation-delay: -5s; animation-duration: 7s;  }

@keyframes why-caustic {
  0%   { transform: scaleX(1)    skewX(0deg)   translateX(0);    opacity: .7; }
  50%  { transform: scaleX(1.15) skewX(8deg)   translateX(30px); opacity: 1;  }
  100% { transform: scaleX(.9)   skewX(-5deg)  translateX(-20px); opacity: .6; }
}

/* ── 上部: 波入り口 ── */
.why-wave-top {
  position: absolute;
  top: -1px; left: -2%; right: -2%;
  width: 104%;
  height: 90px;
  animation: why-wave-shift 12s ease-in-out infinite alternate;
}

/* ── 下部: 砂浜グラデーション波 ── */
.why-wave-bot {
  position: absolute;
  bottom: -1px; left: -2%; right: -2%;
  width: 104%;
  height: 120px;
  animation: why-wave-shift 9s ease-in-out infinite alternate-reverse;
}

@keyframes why-wave-shift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(3%); }
}

/* ── 大型テキスト (背面) ── */
.why-bg-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: .12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  white-space: nowrap;
  pointer-events: none;
}

@keyframes why-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.08); }
}

/* ── section header ── */
.why-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.why-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: #7eecd8;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 24px;
}
.why-eyebrow::before,
.why-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #7eecd8;
  opacity: .55;
}
.why-eyebrow::before { right: 100%; margin-right: -20px; }
.why-eyebrow::after  { left:  100%; margin-left:  -20px; }

.why-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,80,160,.6);
}
.why-title-outline {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px #FFD83D;
}

.why-catch {
  font-size: .95rem;
  color: rgba(200,240,255,.65);
  letter-spacing: .1em;
}

/* ── bento grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* card--4 (large) takes the wide column, card--2 (small) the narrow one */
.why-card--4 { grid-column: 1; grid-row: 1; }
.why-card--2 { grid-column: 2; grid-row: 1; }

/* ── base card ── */
.why-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  background: rgba(0,30,70,.45);
  border: 1px solid rgba(126,236,216,.15);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.22,.68,0,1.4), box-shadow .4s, border-color .4s;
}
.why-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1.5px rgba(126,236,216,.45), inset 0 0 0 1px rgba(255,216,61,.12);
  border-color: rgba(126,236,216,.45);
}

/* ── image area ── */
.why-card-img {
  position: relative;
  height: 240px;
  background-size: 105%;
  background-position: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  transition: background-size .6s ease, clip-path .5s cubic-bezier(.22,.68,0,1.2);
}
.why-card:hover .why-card-img {
  background-size: 115%;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

/* dark gradient overlay */
.why-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,14,40,.55) 0%, rgba(0,59,142,.25) 60%, transparent 100%);
  z-index: 1;
  transition: opacity .4s;
}
.why-card:hover .why-card-img::after { opacity: .7; }

/* ── big number ── */
.why-card-num {
  position: absolute;
  bottom: 4px;
  right: 16px;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.22);
  letter-spacing: -.04em;
  z-index: 2;
  pointer-events: none;
  transition: -webkit-text-stroke-color .35s, transform .35s cubic-bezier(.22,.68,0,1.4);
}
.why-card:hover .why-card-num {
  -webkit-text-stroke-color: rgba(255,216,61,.7);
  transform: scale(1.1) translateY(-4px);
}

/* ── diagonal slash animation ── */
.why-card-slash {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.why-card-slash::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -60%;
  width: 40%;
  height: 300%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.18) 40%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.18) 60%,
    transparent
  );
  transform: rotate(20deg) translateX(-120%);
  transition: none;
}
.why-card:hover .why-card-slash::before {
  transform: rotate(20deg) translateX(500%);
  transition: transform .6s ease;
}

/* ── icon badge ── */
.why-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,30,80,.55);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.22,.68,0,1.4), background .3s;
}
.why-card:hover .why-card-badge {
  transform: rotate(-8deg) scale(1.12);
  background: rgba(0,59,142,.65);
}

/* ── card body ── */
.why-card-body {
  padding: 22px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card-title {
  font-size: 1.12rem;
  font-weight: 900;
  color: white;
  line-height: 1.3;
}
.why-card-title em {
  font-style: normal;
  color: var(--accent);
}
.why-card:hover .why-card-title em {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.why-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  flex: 1;
}

/* ── tag pills ── */
.why-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease .1s;
}
.why-card:hover .why-card-tags {
  max-height: 200px;
  opacity: 1;
}
.why-card:hover .why-card-tags--activities {
  max-height: 320px;
}
.why-card--3 .why-card-tags--activities {
  max-height: 320px;
  opacity: 1;
}
.why-card-tags li {
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(69,200,216,.12);
  color: var(--secondary);
  border: 1px solid rgba(69,200,216,.3);
}

/* ── sister service embed (card 4) ── */
.why-card-partner {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(126,236,216,.18);
}
.why-card-partner-inner {
  position: relative;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, rgba(0,20,50,.75) 0%, rgba(0,45,100,.55) 100%);
  border: 1px solid rgba(126,236,216,.28);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  overflow: hidden;
}
.why-card-partner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: skewX(-24deg);
  opacity: .85;
}
.why-card-partner-label {
  display: inline-block;
  font-size: .52rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .22em;
  color: #001845;
  background: var(--accent);
  padding: 3px 10px 3px 12px;
  margin-bottom: 8px;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  transform: skewX(-6deg);
}
.why-card-partner-name {
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
}
.why-card-partner-name span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(255,216,61,.9);
  margin-top: 1px;
}
.why-card-partner-tagline {
  font-size: .72rem;
  color: rgba(200,240,255,.62);
  line-height: 1.55;
  margin-bottom: 10px;
}
.why-card-partner-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.why-card-partner-feats li {
  font-size: .62rem;
  font-weight: 700;
  padding: 3px 9px;
  color: var(--secondary);
  background: rgba(69,200,216,.1);
  border: 1px solid rgba(69,200,216,.28);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.why-card-partner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: background .25s, border-color .25s, transform .25s cubic-bezier(.22,.68,0,1.4);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.why-card-partner-link:hover {
  background: rgba(255,216,61,.12);
  border-color: rgba(255,216,61,.45);
  transform: translateX(3px);
}
.why-card-partner-link-text {
  font-size: .76rem;
  font-weight: 700;
}
.why-card-partner-go {
  font-size: .82rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  flex-shrink: 0;
}
.why-card--4 { cursor: default; }
.why-card--4:hover { cursor: default; }

/* ── scroll entrance ── */
.why-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .6s ease var(--why-delay, 0ms),
    transform .6s cubic-bezier(.22,.68,0,1.2) var(--why-delay, 0ms),
    box-shadow .4s,
    border-color .4s;
}
/* even-indexed: come from right */
.why-card:nth-child(even) {
  transform: translateX(40px);
}
.why-card--visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}
/* override hover while already using transition */
.why-card--visible:hover {
  transform: translateY(-10px) scale(1.01) !important;
}

@keyframes why-badge-float {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-6px) rotate(2deg); }
}

/* ── accent bottom line (wave gradient) ── */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #7eecd8, #FFD83D, #ff9f7f);
  transition: width .5s ease;
  border-radius: 0 0 0 20px;
}
.why-card:hover::after { width: 100%; }

/* ── responsive ── */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .why-card--1, .why-card--2, .why-card--3, .why-card--4 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card-img { height: 190px; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
  .why-card-num { font-size: 4.2rem; }
  .why-card-body { padding: 20px 20px 28px; }
  /* モバイルではタグを常時表示 */
  .why-card-tags {
    max-height: 200px !important;
    overflow: visible !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background:white; padding-block:var(--section-py); }
.services-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.service-card {
  background:var(--bg); border-radius:var(--r-lg); padding:32px 20px 28px;
  text-align:center; border:2px solid transparent; transition:var(--transition);
  cursor:pointer; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,var(--bg-light),transparent); opacity:0; transition:opacity var(--transition);
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:var(--secondary); }
.service-card:hover::before { opacity:1; }
.service-icon-wrap { width:80px; height:80px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; }
.service-icon  { width:100%; height:100%; }
.service-title { font-size:.9rem; font-weight:900; color:var(--primary); margin-bottom:8px; line-height:1.4; }
.service-desc  { font-size:.78rem; color:var(--text-light); line-height:1.6; }

/* ============================================================
   BOATS
   ============================================================ */
.boats { background:var(--bg-light); padding-block:var(--section-py); }
.boats-top { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; gap:24px; }
.boats-sub { font-size:1.1rem; color:var(--text-mid); margin-bottom:4px; }
.boats-heading { font-size:clamp(2rem,4vw,3.2rem); font-weight:900; color:var(--primary); line-height:1.1; }
.boats-heading em { font-style:normal; }
.boats-carousel { position:relative; overflow:hidden; border-radius:var(--r-lg); }
.boats-track { display:flex; gap:24px; transition:transform .5s var(--ease); }
.boat-card { flex:0 0 calc(33.333% - 16px); background:white; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-xs); transition:var(--transition); }
.boat-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.boat-card-img { position:relative; height:220px; overflow:hidden; }
.boat-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.boat-card:hover .boat-card-img img { transform:scale(1.06); }
.boat-badges { position:absolute; top:12px; left:12px; display:flex; gap:6px; }
.badge { font-size:.7rem; font-weight:900; padding:4px 10px; border-radius:var(--r-full); letter-spacing:.06em; }
.badge--new     { background:var(--accent); color:var(--primary); }
.badge--popular { background:var(--primary); color:white; }
.badge--sale    { background:#ff5757; color:white; }
.boat-card-body { padding:20px; }
.boat-name  { font-size:.92rem; font-weight:900; color:var(--primary); margin-bottom:6px; }
.boat-price { font-size:1.1rem; font-weight:900; color:var(--secondary); margin-bottom:10px; }
.boat-tags  { display:flex; gap:6px; flex-wrap:wrap; }
.tag { font-size:.68rem; font-weight:700; padding:3px 10px; border-radius:var(--r-full); border:1.5px solid var(--secondary); color:var(--secondary); }
.carousel-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; background:white; border-radius:50%;
  box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center;
  color:var(--primary); z-index:2; transition:var(--transition);
}
.carousel-btn:hover { background:var(--primary); color:white; transform:translateY(-50%) scale(1.1); }
.carousel-btn--prev { left:-24px; }
.carousel-btn--next { right:-24px; }
.beginner-banner { margin-top:60px; background:var(--primary); border-radius:var(--r-xl); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; min-height:280px; position:relative; }
.beginner-content { padding:52px 48px; display:flex; flex-direction:column; gap:16px; justify-content:center; }
.beginner-eyebrow { font-size:.78rem; font-weight:700; letter-spacing:.14em; color:var(--accent); display:inline-block; background:rgba(255,216,61,.15); padding:4px 14px; border-radius:var(--r-full); }
.beginner-title { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:900; color:white; line-height:1.1; }
.beginner-desc  { font-size:.88rem; color:rgba(255,255,255,.8); line-height:1.7; }
.beginner-visual { position:relative; overflow:hidden; }
.beginner-visual img { width:100%; height:100%; object-fit:cover; opacity:.8; }
.beginner-flag { position:absolute; top:20px; right:20px; background:var(--accent); color:var(--primary); font-size:1.3rem; font-weight:700; width:80px; height:80px; border-radius:50%; display:flex; align-items:center; justify-content:center; text-align:center; line-height:1.2; transform:rotate(8deg); box-shadow:var(--shadow-md); }

/* ============================================================
   ABOUT — sandy beach storytelling
   ============================================================ */
.about {
  position:relative;
  padding-block:clamp(72px,10vw,120px) clamp(88px,12vw,140px);
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 50% at 15% 100%, rgba(196,132,90,.3) 0%, transparent 60%),
    radial-gradient(ellipse 65% 45% at 90% 95%, rgba(175,110,55,.25) 0%, transparent 55%),
    linear-gradient(180deg, #EDD080 0%, #F0D888 35%, #F5E4A8 70%, #F8FCFF 100%);
}
.about-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.about-sand-texture {
  position:absolute; inset:0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E"),
    repeating-linear-gradient(168deg, transparent 0 7px, rgba(200,140,50,.06) 7px 8px);
  background-size:170px 170px, 100% 100%;
  opacity:.45;
  mix-blend-mode:multiply;
}
.about-wave-top { position:absolute; top:-1px; left:-2%; width:104%; height:100px; display:block; }
.about-wave-bot { position:absolute; bottom:-1px; left:0; width:100%; height:80px; display:block; }
.about-bg-text {
  position:absolute;
  bottom:18%;
  left:50%;
  transform:translateX(-50%);
  font-size:clamp(5rem,14vw,11rem);
  font-weight:900;
  letter-spacing:.1em;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(0,59,142,.06);
  white-space:nowrap;
  user-select:none;
}
.about-sparkles { position:absolute; inset:0; }
.about-sp {
  position:absolute;
  border-radius:50%;
  background:var(--accent);
  animation:about-sparkle 3s ease-in-out infinite;
}
.about-sp1 { width:5px; height:5px; top:18%; left:12%; animation-delay:0s; }
.about-sp2 { width:4px; height:4px; top:32%; right:18%; animation-delay:.8s; }
.about-sp3 { width:6px; height:6px; top:55%; left:8%;  animation-delay:1.4s; }
.about-sp4 { width:4px; height:4px; top:72%; right:10%; animation-delay:.4s; }
@keyframes about-sparkle {
  0%,100% { opacity:0; transform:scale(.5); }
  50%      { opacity:.85; transform:scale(1.3); }
}
.about .container { position:relative; z-index:1; }
.about-inner {
  display:block;
  max-width:720px;
}

/* ── content ── */
.about-header {
  display:grid;
  grid-template-columns:1fr minmax(130px,38%);
  gap:4px 14px;
  align-items:start;
  margin-bottom:28px;
}
.about-header-text { min-width:0; }
.about-eyebrow {
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.25em;
  color:var(--primary);
  text-transform:uppercase;
  margin-bottom:16px;
  position:relative;
  padding:6px 20px;
  background:rgba(255,255,255,.55);
  border-radius:var(--r-full);
  border:1.5px solid rgba(0,59,142,.12);
}
.about-title {
  font-size:clamp(2rem,4.5vw,3.2rem);
  font-weight:900;
  color:var(--primary);
  line-height:1.2;
  margin-bottom:6px;
}
.about-title-accent {
  font-style:normal;
  font-size:1.15em;
  color:var(--secondary);
  display:inline-block;
  transform:rotate(-2deg);
}
.about-title-deco { width:min(220px,60%); margin-bottom:20px; }
.about-title-deco svg { display:block; width:100%; height:auto; }
.about-lead {
  font-size:clamp(1rem,2vw,1.12rem);
  font-weight:700;
  color:var(--text-mid);
  letter-spacing:.04em;
}

.about-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:0;
  list-style:none;
}
.about-action {
  display:inline-block;
  font-size:clamp(.92rem,2vw,1.05rem);
  font-weight:900;
  color:var(--primary);
  background:white;
  padding:10px 18px;
  border-radius:var(--r-full);
  box-shadow:var(--shadow-xs);
  border:2px solid rgba(0,59,142,.08);
  transform:rotate(var(--rot,0deg));
  transition:transform .35s var(--ease-bounce), box-shadow .3s;
}
.about-action:nth-child(1) { --rot:-3deg; }
.about-action:nth-child(2) { --rot:2deg;  margin-top:4px; }
.about-action:nth-child(3) { --rot:-1deg; }
.about-action:nth-child(4) { --rot:3deg;  margin-top:6px; }
.about-action--hl {
  background:var(--accent);
  border-color:rgba(0,59,142,.15);
  box-shadow:0 4px 16px rgba(255,216,61,.45);
}
.about-action:hover { transform:rotate(0deg) scale(1.05); box-shadow:var(--shadow-md); }

.about-body { margin-bottom:0; }
.about-actions-col {
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}
.about-line {
  font-size:clamp(.95rem,2vw,1.05rem);
  color:var(--text-mid);
  line-height:1.75;
}
.about-line--brand {
  font-weight:700;
  color:var(--primary);
  margin-top:8px;
  font-size:clamp(1rem,2.2vw,1.15rem);
}

.about-memories {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}
.about-memory {
  font-size:.92rem;
  font-weight:700;
  color:var(--primary);
  background:rgba(255,255,255,.7);
  padding:8px 16px;
  border-radius:var(--r-sm);
  border-left:4px solid var(--secondary);
  box-shadow:var(--shadow-xs);
}
.about-memory:nth-child(2) { transform:rotate(1.5deg); }

.about-quote {
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:700;
  color:var(--primary);
  margin:0 0 28px;
  padding:20px 28px;
  background:white;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
  display:inline-block;
  transform:rotate(-2deg);
  border:2px dashed rgba(69,200,216,.4);
  line-height:1.2;
}
.about-close {
  font-size:clamp(1.05rem,2.5vw,1.25rem);
  font-weight:900;
  color:var(--primary);
  line-height:1.7;
  margin:0;
}

/* ── lower block (memories + quote + photo) ── */
.about-tail {
  display:grid;
  grid-template-columns:1fr minmax(112px,34%);
  gap:12px 14px;
  align-items:start;
}
.about-tail-text { min-width:0; }
.about-tail .about-memories { margin-bottom:24px; }
.about-tail .about-quote { margin-bottom:24px; }
.about-photo--tail {
  position:relative;
  display:flex;
  justify-content:center;
  align-self:center;
  padding-top:8px;
}
.about-polaroid--tail {
  transform:rotate(-3deg);
  animation:about-float-tail 5.2s ease-in-out infinite .2s;
}
.about-polaroid--tail:hover { transform:rotate(0deg) scale(1.04); }
@keyframes about-float-tail {
  0%,100% { transform:rotate(-3deg) translateY(0); }
  50%      { transform:rotate(-3deg) translateY(-6px); }
}

/* ── polaroid photos ── */
.about-actions-row {
  display:grid;
  grid-template-columns:1fr minmax(112px,34%);
  gap:12px 14px;
  align-items:start;
  margin-bottom:24px;
}
.about-visual,
.about-photo--mid {
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}
.about-visual { width:100%; margin-top:18px; }
.about-photo--mid { padding-top:4px; }
.about-polaroid {
  position:relative;
  background:white;
  padding:8px 8px 26px;
  box-shadow:var(--shadow-md);
  border-radius:3px;
  transition:transform .35s var(--ease-bounce), box-shadow .3s;
  margin:0;
}
.about-polaroid:hover {
  box-shadow:var(--shadow-lg);
  animation-play-state:paused;
}
.about-polaroid-img { overflow:hidden; border-radius:1px; }
.about-polaroid-img img {
  width:clamp(96px,24vw,132px);
  height:clamp(76px,19vw,106px);
  object-fit:cover;
  display:block;
  transition:transform .5s var(--ease);
}
.about-polaroid:hover img { transform:scale(1.04); }
.about-polaroid-cap {
  text-align:center;
  margin-top:5px;
  font-size:.78rem;
  color:var(--text-mid);
  line-height:1;
}
.about-polaroid--head {
  transform:rotate(-4deg);
  animation:about-float-head 5s ease-in-out infinite;
}
.about-polaroid--head:hover { transform:rotate(0deg) scale(1.04); }
.about-polaroid--mid {
  transform:rotate(5deg);
  animation:about-float-mid 5.5s ease-in-out infinite .4s;
}
.about-polaroid--mid:hover { transform:rotate(0deg) scale(1.04); }
@keyframes about-float-head {
  0%,100% { transform:rotate(-4deg) translateY(0); }
  50%      { transform:rotate(-4deg) translateY(-6px); }
}
@keyframes about-float-mid {
  0%,100% { transform:rotate(5deg) translateY(0); }
  50%      { transform:rotate(5deg) translateY(-6px); }
}
.about-star {
  position:absolute;
  top:0;
  left:0;
  width:26px;
  animation:spin 8s linear infinite;
}
.about-photo--mid .about-splash {
  position:absolute;
  bottom:-6px;
  right:-4px;
  font-size:1.3rem;
  animation:float 3s ease-in-out infinite;
  filter:drop-shadow(0 2px 4px rgba(0,59,142,.15));
  pointer-events:none;
}

@media (min-width:769px) {
  .about-inner { max-width:none; }
  .about-header {
    grid-template-columns:1fr 1fr;
    gap:24px 48px;
    margin-bottom:40px;
  }
  .about-actions-row {
    grid-template-columns:1fr minmax(200px,28%);
    gap:20px 40px;
    margin-bottom:40px;
  }
  .about-tail {
    grid-template-columns:1fr minmax(200px,28%);
    gap:20px 40px;
  }
  .about-visual { margin-top:8px; }
  .about-polaroid { padding:12px 12px 32px; }
  .about-polaroid-img img {
    width:clamp(150px,16vw,200px);
    height:clamp(120px,13vw,160px);
  }
  .about-polaroid-cap { font-size:.92rem; margin-top:7px; }
  .about-star { width:36px; top:-4px; left:-8px; }
  .about-photo--mid .about-splash { font-size:1.7rem; bottom:-8px; right:-10px; }
}

/* ============================================================
   HOW WE SUPPORT
   ============================================================ */
.support { background:var(--bg); padding-block:var(--section-py); position:relative; }
.support-bg-wave { position:absolute; top:0; left:0; right:0; height:6px; background:linear-gradient(90deg,var(--secondary),var(--primary),var(--secondary)); }
.support-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.support-item { text-align:center; padding:36px 20px; background:white; border-radius:var(--r-lg); box-shadow:var(--shadow-xs); transition:var(--transition); position:relative; }
.support-item:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.support-num { position:absolute; top:-16px; left:50%; transform:translateX(-50%); background:var(--accent); color:var(--primary); font-size:1.4rem; font-weight:700; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-xs); }
.support-icon-wrap { width:80px; height:80px; margin:12px auto 20px; }
.support-icon-wrap svg { width:100%; height:100%; }
.support-title { font-size:.98rem; font-weight:900; color:var(--primary); margin-bottom:8px; }
.support-desc  { font-size:.82rem; color:var(--text-light); line-height:1.6; }

/* ============================================================
   ACTIVITY HIGHLIGHTS
   ============================================================ */
.activity-hl { background:white; padding-block:var(--section-py); }
.activity-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.activity-item { border-radius:var(--r-lg); overflow:hidden; }
.activity-img-wrap { position:relative; height:320px; overflow:hidden; }
.activity-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.activity-item:hover .activity-img-wrap img { transform:scale(1.08); }
.activity-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,59,142,.85) 0%,rgba(0,59,142,.2) 60%,transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:28px 24px; color:white; transition:var(--transition); }
.activity-num { font-size:2.4rem; font-weight:700; color:var(--accent); line-height:1; margin-bottom:4px; }
.activity-overlay h3 { font-size:1.1rem; font-weight:900; margin-bottom:6px; }
.activity-overlay p  { font-size:.8rem; opacity:.88; line-height:1.6; max-height:0; overflow:hidden; transition:max-height .4s var(--ease),opacity .4s var(--ease); }
.activity-item:hover .activity-overlay p { max-height:80px; }

/* ============================================================
   GALLERY — horizontal marquee
   ============================================================ */
.gallery { background:var(--bg); padding-block:var(--section-py); position:relative; overflow:hidden; }
.gallery-bg-wave,.gallery-bg-wave--bot { position:absolute; left:0; right:0; z-index:0; }
.gallery-bg-wave svg,.gallery-bg-wave--bot svg { display:block; width:100%; height:100px; }
.gallery .container { position:relative; z-index:1; }

/* marquee track */
.gallery-marquee-wrap {
  position:relative;
  z-index:1;
  margin:0 0 8px;
  padding:12px 0 36px;
}
.gallery-marquee {
  overflow:hidden;
  width:100%;
  cursor:grab;
  touch-action:pan-y;
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.gallery-marquee.is-dragging {
  cursor:grabbing;
  touch-action:none;
  user-select:none;
}
.gallery-marquee-track {
  display:flex;
  width:max-content;
  will-change:transform;
}
.gallery-marquee-group {
  display:flex;
  align-items:center;
  gap:32px;
  padding-right:32px;
}

/* polaroid cards in marquee */
.gallery-item {
  flex-shrink:0;
  width:220px;
  margin:0;
  cursor:pointer;
  position:relative;
}
.gallery-item:nth-child(odd)  { margin-top:14px; }
.gallery-item:nth-child(even) { margin-top:-10px; }
.gallery-item--tall { width:200px; }
.gallery-item--tall .polaroid-inner { aspect-ratio:3/4; }
.polaroid-card {
  background:white;
  padding:14px 14px 44px;
  box-shadow:var(--shadow-sm);
  border-radius:2px;
  transition:transform .4s var(--ease-bounce), box-shadow .3s var(--ease);
  transform-origin:center bottom;
}
.polaroid-card:hover {
  transform:scale(1.06) rotate(0deg) !important;
  box-shadow:var(--shadow-lg);
  z-index:4;
}
.polaroid-inner {
  position:relative;
  overflow:hidden;
  aspect-ratio:1;
  border-radius:1px;
  background:var(--bg-light);
}
.polaroid-inner img,
.polaroid-inner video {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s var(--ease);
}
.polaroid-card:hover .polaroid-inner img,
.polaroid-card:hover .polaroid-inner video { transform:scale(1.06); }
.polaroid-caption {
  display:block;
  text-align:center;
  margin-top:10px;
  font-size:1.05rem;
  color:var(--text-mid);
  line-height:1;
}
.r-neg1{transform:rotate(-1.5deg)} .r-neg2{transform:rotate(-3deg)} .r-neg3{transform:rotate(-4.5deg)}
.r-pos1{transform:rotate(1.5deg)}  .r-pos2{transform:rotate(3deg)}  .r-pos3{transform:rotate(4.5deg)}

/* video badge */
.gallery-item--video .polaroid-inner::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,59,142,.25) 0%, transparent 45%);
  pointer-events:none;
  transition:opacity .3s;
}
.gallery-item--video.is-playing .polaroid-inner::after { opacity:0; }
.polaroid-video-badge {
  position:absolute;
  bottom:10px;
  right:10px;
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  color:var(--primary);
  border-radius:50%;
  box-shadow:0 2px 10px rgba(0,59,142,.25);
  transition:transform .3s var(--ease-bounce), opacity .3s;
  pointer-events:none;
  z-index:2;
}
.gallery-item--video.is-playing .polaroid-video-badge {
  opacity:0;
  transform:scale(.6);
}
.gallery-marquee-hint {
  text-align:center;
  font-size:1rem;
  color:var(--text-light);
  margin-top:8px;
  opacity:.7;
  letter-spacing:.04em;
}

@media (max-width:768px) {
  .gallery-item { width:180px; }
  .gallery-item--tall { width:165px; }
  .gallery-marquee-group { gap:20px; padding-right:20px; }
  .gallery-marquee-hint { font-size:.9rem; }
}

/* reduced motion — manual scroll only, no auto drift */
@media (prefers-reduced-motion:reduce) {
  .gallery-marquee { overflow-x:auto; -webkit-mask-image:none; mask-image:none; scroll-snap-type:x proximity; }
  .gallery-marquee-track { transform:none !important; }
}

/* ============================================================
   SHOP INFO — marine + Persona UI
   ============================================================ */
.info {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(168deg, #002a66 0%, var(--primary) 42%, #0062c8 100%);
  overflow: hidden;
}
.info-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.info-bg-text {
  position: absolute;
  top: 8%;
  right: -4%;
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.035);
  letter-spacing: -.04em;
  line-height: 1;
  user-select: none;
}
.info-slash {
  position: absolute;
  width: 140%;
  height: 2px;
  background: var(--secondary);
  top: 38%;
  left: -20%;
  transform: rotate(-7deg);
  opacity: .22;
}
.info-slash--2 {
  top: 72%;
  opacity: .1;
  background: var(--accent);
}
.info-bubbles { position: absolute; inset: 0; }
.info-bbl {
  position: absolute;
  border-radius: 50%;
  background: rgba(69,200,216,.12);
  animation: info-bbl-float 7s ease-in-out infinite;
}
.info-bbl:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 8%; animation-delay: 0s; }
.info-bbl:nth-child(2) { width: 50px; height: 50px; top: 60%; right: 12%; animation-delay: 2s; }
.info-bbl:nth-child(3) { width: 36px; height: 36px; bottom: 20%; left: 25%; animation-delay: 4s; }
@keyframes info-bbl-float {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%      { transform: translateY(-14px); opacity: .8; }
}

.info-wave-top,
.info-wave-bot {
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
}
.info-wave-top svg,
.info-wave-bot svg { display: block; width: 100%; height: 90px; }
.info-wave-bot svg { margin-bottom: -2px; }

.info .container { position: relative; z-index: 2; }

.info-header {
  text-align: center;
  margin-bottom: 52px;
}
.info-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .28em;
  color: #001845;
  background: var(--accent);
  padding: 5px 16px 5px 20px;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transform: skewX(-6deg);
  box-shadow: 0 3px 14px rgba(255,216,61,.35);
}
.info-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.info-title-sub {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.45);
}
.info-title-em {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: .06em;
  text-shadow: 3px 3px 0 rgba(69,200,216,.45);
}
.info-lead {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.4fr);
  gap: 28px;
  align-items: stretch;
}

.info-safety {
  position: relative;
  padding: 32px 28px;
  background: rgba(0,18,52,.55);
  border: 1.5px solid rgba(69,200,216,.25);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  box-shadow: 6px 6px 0 rgba(69,200,216,.2);
  transform: skewX(-2deg);
}
.info-safety > * { transform: skewX(2deg); }
.info-safety-label {
  display: inline-block;
  font-size: .58rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .24em;
  color: var(--secondary);
  margin-bottom: 10px;
}
.info-safety-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.info-safety-title em {
  font-style: italic;
  color: var(--accent);
}
.info-safety-desc {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
}
.info-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.info-stat { flex: 1; }
.info-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,.25);
}
.info-stat-unit {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  margin-top: 6px;
}

.info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.info-row {
  display: grid;
  grid-template-columns: minmax(140px, 38%) 1fr;
  gap: 12px 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s, padding-left .25s;
}
.info-row:last-child { border-bottom: none; }
.info-row:hover {
  background: rgba(255,255,255,.06);
  padding-left: 28px;
}
.info-row-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.info-row-num {
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(69,200,216,.35);
  line-height: 1;
  min-width: 28px;
  transition: color .2s;
}
.info-row:hover .info-row-num { color: var(--accent); }
.info-row-label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  line-height: 1.4;
}
.info-row-value {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.65;
  align-self: center;
}

@media (max-width: 768px) {
  .info { padding: 80px 0 100px; }
  .info-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-safety { transform: none; }
  .info-safety > * { transform: none; }
  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }
  .info-row-value { font-size: .88rem; }
  .info-bg-text { font-size: 4.5rem; top: 4%; }
}

.info-access {
  margin-top: 40px;
  padding: 28px 28px 24px;
  background: rgba(0,18,52,.4);
  border: 1.5px solid rgba(69,200,216,.2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  text-align: center;
}
.info-access-head {
  margin-bottom: 12px;
}
.info-access-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .24em;
  color: var(--secondary);
  margin-bottom: 8px;
}
.info-access-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}
.info-access-title em {
  font-style: italic;
  color: var(--accent);
}
.info-access-addr {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.info-access-note {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.info-map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.info-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.info-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: #001845;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .06em;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255,216,61,.3);
}
.info-map-link:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(255,255,255,.2);
}
.info-map-icon { flex-shrink: 0; }
.info-map-text { flex: 1; }
.info-map-go {
  font-size: .7rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .1em;
  opacity: .7;
}
.info-map-link:hover .info-map-go { opacity: 1; }

@media (max-width: 768px) {
  .info-access {
    margin-top: 28px;
    padding: 22px 18px 20px;
  }
  .info-map-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* ============================================================
   VOICE — Google Reviews widget
   ============================================================ */
.voice { background:var(--bg-light); padding-block:var(--section-py); }

.voice-widget {
  display:grid;
  grid-template-columns:minmax(220px, 280px) 1fr;
  gap:0;
  background:white;
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-md);
  overflow:hidden;
  border:1.5px solid rgba(69,200,216,.18);
  min-height:320px;
}

/* ── left panel ── */
.voice-panel {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:36px 28px;
  background:linear-gradient(165deg, #f0faff 0%, #e4f6fc 45%, #d8f0f8 100%);
  border-right:1px solid rgba(69,200,216,.15);
  position:relative;
}
.voice-panel::after {
  content:'';
  position:absolute;
  bottom:-20px; right:-20px;
  width:100px; height:100px;
  background:radial-gradient(circle, rgba(69,200,216,.2) 0%, transparent 70%);
  pointer-events:none;
}
.voice-panel-loading {
  width:80%;
  height:180px;
  border-radius:var(--r-md);
  background:linear-gradient(90deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.8) 50%, rgba(255,255,255,.4) 100%);
  background-size:200% 100%;
  animation:voice-shimmer 1.4s ease-in-out infinite;
}
.voice-panel-brand { margin-bottom:20px; }
.voice-panel-logo {
  width:56px;
  height:56px;
  margin:0 auto 12px;
  display:block;
  object-fit:contain;
  border-radius:12px;
  filter:drop-shadow(0 4px 12px rgba(0,59,142,.2));
}
.voice-panel-name {
  font-size:.82rem;
  font-weight:700;
  color:var(--primary);
  line-height:1.55;
  max-width:200px;
}
.voice-stars { color:var(--accent); font-size:1.1rem; letter-spacing:3px; line-height:1; margin-bottom:10px; }
.voice-stars--lg { font-size:1.35rem; letter-spacing:4px; }
.voice-panel-count {
  font-size:.88rem;
  color:var(--text-mid);
  font-weight:700;
  margin-bottom:22px;
}
.voice-panel-count .poppins { font-size:1.05rem; color:var(--primary); font-weight:800; }
.voice-panel-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:200px;
  padding:13px 20px;
  background:var(--primary);
  color:white;
  font-size:.88rem;
  font-weight:700;
  border-radius:var(--r-sm);
  box-shadow:0 4px 16px rgba(0,59,142,.3);
  transition:var(--transition);
}
.voice-panel-cta:hover {
  background:#0050c0;
  transform:translateY(-2px);
  box-shadow:0 6px 22px rgba(0,59,142,.38);
}
.voice-panel-note {
  margin-top:16px;
  font-size:.68rem;
  color:var(--text-light);
  line-height:1.5;
}
.voice-panel-note code {
  font-size:.65rem;
  background:rgba(255,255,255,.6);
  padding:1px 6px;
  border-radius:3px;
}

/* ── carousel ── */
.voice-carousel-wrap {
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px 52px 44px;
  background:#f6f9fc;
  min-width:0;
}
.voice-carousel {
  width:100%;
  overflow:hidden;
  border-radius:var(--r-md);
}
.voice-carousel-track {
  display:flex;
  transition:transform .55s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.review-card {
  flex:0 0 100%;
  min-width:0;
  padding:4px;
}
a.review-card--link {
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}
a.review-card--link:hover .review-card-inner,
a.review-card--link:focus-visible .review-card-inner {
  border-color:rgba(0,59,142,.18);
  box-shadow:0 6px 22px rgba(0,59,142,.12);
  outline:none;
}
a.review-card--link:focus-visible {
  outline:none;
}
.review-card-inner {
  background:white;
  border-radius:var(--r-md);
  padding:24px 26px 28px;
  box-shadow:0 2px 12px rgba(0,59,142,.06);
  border:1px solid rgba(0,59,142,.05);
  min-height:200px;
  display:flex;
  flex-direction:column;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.review-card-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.review-card-user { display:flex; align-items:center; gap:12px; min-width:0; }
.review-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  object-fit:cover; display:block;
}
.review-avatar--initial {
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:800; color:white;
  font-family:var(--font-en);
}
.review-name { font-size:.88rem; font-weight:700; color:var(--text); margin-bottom:2px; }
.review-date { font-size:.75rem; color:var(--text-light); }
.g-icon { flex-shrink:0; opacity:.85; }
.review-card-rating {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.review-card-rating .voice-stars { font-size:.95rem; letter-spacing:2px; margin:0; }
.review-verified { display:flex; line-height:0; }
.review-text {
  font-size:.9rem;
  color:var(--text-mid);
  line-height:1.75;
  font-style:normal;
  flex:1;
  margin:0;
}
.review-empty {
  text-align:center;
  color:var(--text-light);
  padding:48px 20px;
  width:100%;
}
.review-card--loading .review-shimmer {
  height:180px;
  border-radius:var(--r-md);
  background:linear-gradient(90deg, #eef3f7 0%, #f8fbfd 50%, #eef3f7 100%);
  background-size:200% 100%;
  animation:voice-shimmer 1.4s ease-in-out infinite;
}

/* carousel controls */
.voice-carousel-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  background:white;
  border:1.5px solid rgba(0,59,142,.1);
  border-radius:50%;
  color:var(--text-light);
  box-shadow:var(--shadow-xs);
  transition:var(--transition);
}
.voice-carousel-btn:hover:not(:disabled) {
  color:var(--primary);
  border-color:var(--secondary);
  box-shadow:var(--shadow-sm);
  transform:translateY(-50%) scale(1.06);
}
.voice-carousel-btn:disabled { opacity:.35; cursor:not-allowed; }
.voice-carousel-btn--prev { left:12px; }
.voice-carousel-btn--next { right:12px; }

.voice-carousel-dots {
  display:flex;
  gap:8px;
  margin-top:18px;
}
.voice-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:rgba(0,59,142,.15);
  padding:0;
  transition:var(--transition);
}
.voice-dot.is-active {
  background:var(--secondary);
  transform:scale(1.25);
  box-shadow:0 0 0 3px rgba(69,200,216,.25);
}

@keyframes voice-shimmer {
  0%   { background-position:200% 0; }
  100% { background-position:-200% 0; }
}

@media (max-width:900px) {
  .voice-widget { grid-template-columns:1fr; }
  .voice-panel {
    border-right:none;
    border-bottom:1px solid rgba(69,200,216,.15);
    padding:28px 24px;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 20px;
  }
  .voice-panel-brand { display:flex; align-items:center; gap:14px; margin:0; text-align:left; }
  .voice-panel-logo { width:48px; height:48px; margin:0; object-fit:contain; border-radius:10px; }
  .voice-panel-name { max-width:none; font-size:.8rem; }
  .voice-stars--lg { margin:0; }
  .voice-panel-count { margin:0; }
  .voice-panel-cta { max-width:160px; width:auto; padding:11px 18px; }
  .voice-panel-note { width:100%; margin-top:4px; }
  .voice-carousel-wrap { padding:24px 48px 40px; }
}

@media (max-width:480px) {
  .voice-widget { border-radius:var(--r-lg); }
  .voice-carousel-wrap { padding:20px 40px 36px; }
  .voice-carousel-btn { width:34px; height:34px; }
  .voice-carousel-btn--prev { left:6px; }
  .voice-carousel-btn--next { right:6px; }
  .review-card-inner { padding:18px 18px 22px; min-height:180px; }
}


/* ============================================================
   FAQ — marine + Persona UI
   ============================================================ */
.faq {
  position: relative;
  padding: 100px 0 110px;
  background:
    linear-gradient(175deg, #c8ecf5 0%, var(--bg-light) 38%, #dff5fb 100%);
  overflow: hidden;
}
.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.faq-bg-text {
  position: absolute;
  top: 6%;
  left: -3%;
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(0,59,142,.04);
  letter-spacing: -.04em;
  line-height: 1;
  user-select: none;
}
.faq-slash {
  position: absolute;
  width: 130%;
  height: 2px;
  background: var(--secondary);
  top: 42%;
  left: -15%;
  transform: rotate(-6deg);
  opacity: .18;
}
.faq-slash--2 {
  top: 78%;
  opacity: .1;
  background: var(--primary);
  transform: rotate(4deg);
}

.faq .container { position: relative; z-index: 1; }

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .28em;
  color: #001845;
  background: var(--accent);
  padding: 5px 16px 5px 20px;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transform: skewX(-6deg);
  box-shadow: 0 3px 14px rgba(255,216,61,.35);
}
.faq-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.faq-title-sub {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--text-light);
}
.faq-title-em {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--primary);
  letter-spacing: .06em;
  text-shadow: 3px 3px 0 rgba(69,200,216,.35);
}
.faq-lead {
  font-size: .85rem;
  color: var(--text-mid);
  max-width: 420px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(0,59,142,.1);
  box-shadow: 0 4px 20px rgba(0,59,142,.07);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity .3s var(--ease), width .3s var(--ease);
  z-index: 2;
}
.faq-item[open] {
  border-color: rgba(69,200,216,.45);
  box-shadow: 0 8px 32px rgba(0,59,142,.14);
  transform: translateX(4px);
}
.faq-item[open]::before {
  opacity: 1;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--secondary) 100%);
}
.faq-item:nth-child(even) { transform: translateX(-2px); }
.faq-item:nth-child(even)[open] { transform: translateX(2px); }

.faq-q {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
  background: linear-gradient(105deg, var(--primary) 0%, #004aab 55%, #0058c4 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  transition: background .3s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }

.faq-q-num {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.faq-q-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: .85rem;
  font-weight: 900;
  font-style: italic;
  color: #001845;
  background: var(--accent);
  flex-shrink: 0;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transform: skewX(-8deg);
  box-shadow: 0 2px 8px rgba(255,216,61,.4);
}
.faq-q-text {
  position: relative;
  z-index: 1;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding-left: 4px;
}
.faq-q-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.35);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transform: skewX(-6deg);
  transition: border-color .25s, background .25s;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease-bounce), opacity .2s;
}
.faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}
.faq-item[open] .faq-q {
  background: linear-gradient(105deg, #002a66 0%, var(--primary) 60%, #0062c8 100%);
}
.faq-item[open] .faq-q-icon {
  border-color: var(--accent);
  background: rgba(255,216,61,.15);
}

.faq-a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 24px 22px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.faq-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(69,200,216,.06) 50%, transparent 70%);
  transform: skewX(-15deg) translateX(-120%);
  pointer-events: none;
  transition: transform 0s;
}
.faq-item[open] .faq-a::before {
  animation: faq-slash .7s ease forwards;
}
@keyframes faq-slash {
  0%   { transform: skewX(-15deg) translateX(-120%); }
  100% { transform: skewX(-15deg) translateX(220%); }
}

.faq-a-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: .78rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  background: var(--secondary);
  flex-shrink: 0;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  transform: skewX(-8deg);
  margin-top: 2px;
}
.faq-a p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 640px) {
  .faq { padding: 72px 0 80px; }
  .faq-header { margin-bottom: 36px; }
  .faq-q {
    grid-template-columns: auto 1fr auto;
    padding: 16px 16px;
    gap: 10px;
  }
  .faq-q-num { font-size: 2rem; left: 8px; }
  .faq-q-text { font-size: .88rem; }
  .faq-a { padding: 16px 16px 18px; gap: 10px; }
  .faq-item[open],
  .faq-item:nth-child(even)[open] { transform: none; }
}


/* ============================================================
   NEWS + INSTAGRAM
   ============================================================ */
.news-insta { background:white; padding-block:var(--section-py); }
.news-insta-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.news-col-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.news-title { font-size:1.6rem; font-weight:900; color:var(--primary); display:flex; align-items:center; gap:10px; }
.news-flag  { width:26px; height:24px; }
.news-list  { display:flex; flex-direction:column; }
.news-item  { display:grid; grid-template-columns:auto auto 1fr; align-items:center; gap:12px; padding:16px 0; border-bottom:1.5px solid var(--bg-light); transition:var(--transition); }
.news-item:hover { padding-left:8px; }
.news-date { font-size:.78rem; color:var(--text-light); white-space:nowrap; font-weight:700; }
.news-cat  { font-size:.68rem; font-weight:700; padding:3px 10px; border-radius:var(--r-full); white-space:nowrap; }
.news-cat--event { background:rgba(69,200,216,.15); color:var(--secondary); }
.news-cat--info  { background:rgba(0,59,142,.1);    color:var(--primary);   }
.news-cat--stock { background:rgba(255,216,61,.2);  color:#a07800;          }
.news-link { font-size:.88rem; color:var(--text); font-weight:500; transition:color var(--transition); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.news-link:hover { color:var(--primary); }
.news-link--static { cursor:default; }
.news-link--static:hover { color:var(--text); }
.news-item--loading .news-link,
.news-item--empty .news-link { color:var(--text-light); pointer-events:none; }
.insta-col-header { margin-bottom:20px; }
.insta-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; border-radius:var(--r-md); overflow:hidden; }
.insta-item { position:relative; aspect-ratio:1; overflow:hidden; }
.insta-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.insta-item:hover img { transform:scale(1.1); }
.insta-hover { position:absolute; inset:0; background:rgba(0,59,142,.6); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s var(--ease); }
.insta-item:hover .insta-hover { opacity:1; }
.insta-follow-btn { display:inline-flex; align-items:center; gap:8px; margin-top:16px; background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:white; font-size:.82rem; font-weight:700; padding:10px 20px; border-radius:var(--r-full); transition:var(--transition); }
.insta-follow-btn:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(220,39,67,.4); }

/* ============================================================
   CTA
   ============================================================ */
.cta { position:relative; padding-block:var(--section-py); text-align:center; overflow:hidden; }
.cta-bg-img { position:absolute; inset:0; z-index:0; }
.cta-bg-img img { width:100%; height:100%; object-fit:cover; }
.cta-overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(0,59,142,.85),rgba(69,200,216,.6)); }
.cta-wave-top,.cta-wave-bot { position:absolute; left:0; right:0; z-index:1; }
.cta-wave-top svg,.cta-wave-bot svg { display:block; width:100%; height:80px; }
.cta .container { position:relative; z-index:2; }
.cta-inner   { max-width:640px; margin:0 auto; }
.cta-eyebrow { font-size:1.4rem; color:var(--accent); display:block; margin-bottom:8px; }
.cta-heading { font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:900; color:white; line-height:1.15; margin-bottom:20px; }
.cta-sub     { color:rgba(255,255,255,.88); font-size:1rem; margin-bottom:36px; line-height:1.7; }
.cta-btns    { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.cta-hours   { font-size:.78rem; color:rgba(255,255,255,.7); }

/* ============================================================
   PICK SECTION
   ============================================================ */
.pick-section {
  position:relative;
  background:linear-gradient(158deg,#001234 0%,#003B8E 48%,#0062c8 100%);
  overflow:visible; padding-bottom:0;
}
.pick-section::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 15% 25%,rgba(0,120,255,.28) 0%,transparent 55%),
    radial-gradient(ellipse at 85% 75%,rgba(0,200,255,.15) 0%,transparent 50%);
  pointer-events:none;
}
.pick-bubbles { position:absolute; inset:0; pointer-events:none; }
.pb { position:absolute; border-radius:50%; border:1.5px solid rgba(255,255,255,.2); animation:pb-float 6s ease-in-out infinite; }
.pb1{width:12px;height:12px;top:8%; left:6%; animation-delay:0s;  animation-duration:5.5s}
.pb2{width:7px; height:7px; top:22%;left:18%;animation-delay:.8s; animation-duration:4.8s}
.pb3{width:16px;height:16px;top:5%; right:10%;animation-delay:1.4s;animation-duration:6.2s}
.pb4{width:9px; height:9px; top:40%;right:8%; animation-delay:.4s; animation-duration:5.1s}
.pb5{width:11px;height:11px;top:62%;left:5%; animation-delay:2s;  animation-duration:5.8s}
.pb6{width:6px; height:6px; top:75%;right:15%;animation-delay:1s;  animation-duration:4.5s}
@keyframes pb-float { 0%,100%{transform:translateY(0) translateX(0);opacity:.3} 50%{transform:translateY(-18px) translateX(6px);opacity:.6} }

.pick-inner { position:relative; z-index:1; max-width:900px; margin:0 auto; padding:72px 24px 56px; }
.pick-section-header .section-title { color:white; }
.pick-section-header .section-sub   { color:rgba(255,255,255,.7); }

.pick-main-badge { display:inline-block; background:var(--accent); color:#001845; font-family:'Poppins',sans-serif; font-size:.72rem; font-weight:900; letter-spacing:.18em; padding:5px 18px; border-radius:50px; margin-bottom:12px; box-shadow:0 3px 14px rgba(255,216,61,.4); }
.pick-sub-note { display:block; margin-top:6px; font-size:.72rem; color:rgba(255,255,255,.45); letter-spacing:.03em; }
.pick-sub-note a { color:rgba(255,255,255,.7); text-decoration:underline; text-decoration-color:rgba(255,255,255,.3); text-underline-offset:3px; transition:color .2s; }
.pick-sub-note a:hover { color:var(--accent); text-decoration-color:var(--accent); }

.pick-head  { text-align:center; margin-bottom:52px; }
.pick-title { display:flex; align-items:center; justify-content:center; gap:8px; line-height:1; flex-wrap:wrap; }
.pick-word  { font-size:clamp(3.2rem,9vw,7rem); font-weight:900; color:white; letter-spacing:-.02em; text-shadow:0 4px 24px rgba(0,80,255,.5); }
.pick-from-wrap { display:flex; align-items:center; gap:6px; }
.pick-from  { font-size:clamp(1.8rem,5vw,3.2rem); color:rgba(255,255,255,.75); display:inline-block; transform:rotate(-8deg); margin-right:4px; }
.pick-num   { font-size:clamp(7rem,22vw,14rem); font-weight:900; line-height:.85; letter-spacing:-.05em; position:relative; top:.1em; color:var(--accent, #FFD83D); background:linear-gradient(185deg, #FFF3A8 0%, #FFD83D 48%, #E8B80A 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; -webkit-text-stroke:0; text-shadow:none; filter:drop-shadow(0 2px 12px rgba(255,216,61,.38)) drop-shadow(0 1px 0 rgba(180,130,0,.18)); }
.pick-kana  { color:rgba(255,255,255,.6); font-size:.9rem; letter-spacing:.22em; margin-top:12px; }
.pick-word--accent {
  font-size:clamp(3.2rem,9vw,7rem); font-weight:900; letter-spacing:-.02em; line-height:1;
  color:var(--accent, #FFD83D);
  background:linear-gradient(185deg, #FFF3A8 0%, #FFD83D 48%, #E8B80A 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 2px 12px rgba(255,216,61,.38)) drop-shadow(0 1px 0 rgba(180,130,0,.18));
}
.pick-lineup-tagline { color:rgba(255,255,255,.75); font-size:clamp(.9rem,2.2vw,1.05rem); letter-spacing:.02em; margin-top:14px; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.6; }

.pick-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:36px; }
.pick-card {
  position:relative; border-radius:14px; overflow:hidden;
  padding:40px 14px 14px; min-height:130px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background-size:cover; background-position:center; background-color:#003B8E;
  transition:transform .28s cubic-bezier(.25,0,.1,1.6),box-shadow .28s;
  cursor:pointer; isolation:isolate;
}
.pick-card:hover { transform:translateY(-6px) scale(1.03); box-shadow:0 16px 40px rgba(0,0,0,.5); }
.pick-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,10,40,.88) 0%,rgba(0,10,40,.32) 55%,transparent 100%); transition:background .3s; pointer-events:none; z-index:1; }
.pick-card:hover::after { background:linear-gradient(to top,rgba(0,10,40,.6) 0%,rgba(0,10,40,.15) 50%,transparent 100%); }
.pick-card::before { content:''; position:absolute; top:0; bottom:0; left:-80%; width:60%; background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,.18) 50%,transparent 70%); transform:skewX(-18deg) translateX(0); transition:transform 0s; z-index:3; pointer-events:none; }
@keyframes card-slash { 0%{transform:skewX(-18deg) translateX(0)} 100%{transform:skewX(-18deg) translateX(360%)} }
.pick-card:hover::before { animation:card-slash .45s cubic-bezier(.16,1,.3,1) forwards; }
.pick-card-body { position:relative; z-index:4; transform:translateY(6px); transition:transform .3s cubic-bezier(.16,1,.3,1); }
.pick-card:hover .pick-card-body { transform:translateY(0); }
.pick-card-name { color:white; font-weight:900; font-size:clamp(.8rem,2.5vw,.95rem); letter-spacing:.06em; text-shadow:0 1px 8px rgba(0,0,0,.5); margin:0; transition:letter-spacing .25s cubic-bezier(.16,1,.3,1); }
.pick-card:hover .pick-card-name { letter-spacing:.12em; }
.pick-card-cap  { color:rgba(255,255,255,.7); font-size:.72rem; margin:3px 0 0; opacity:0; transform:translateY(6px); transition:opacity .25s .05s,transform .28s .05s cubic-bezier(.16,1,.3,1); }
.pick-card:hover .pick-card-cap { opacity:1; transform:translateY(0); }
.pick-card-accent { position:absolute; left:0; top:0; bottom:0; width:5px; background:rgba(255,255,255,.45); clip-path:polygon(0 0,100% 5%,100% 95%,0 100%); z-index:4; transition:background .25s,width .25s cubic-bezier(.34,1.56,.64,1); }
.pick-card:hover .pick-card-accent { background:var(--accent); width:7px; }

.pick-tabs { display:flex; gap:32px; align-items:flex-end; justify-content:center; flex-wrap:wrap; }
.pick-tab { display:flex; align-items:baseline; gap:0; border:none; background:transparent; cursor:pointer; padding:0; opacity:.22; filter:blur(.8px) grayscale(.4); transform:scale(.82) translateY(6px); transform-origin:bottom center; transition:opacity .35s cubic-bezier(.25,0,.1,1),filter .35s,transform .45s cubic-bezier(.34,1.4,.64,1); line-height:1; position:relative; isolation:isolate; }
.pick-tab:hover { opacity:.5; filter:blur(.2px); }
.pick-tab--active { opacity:1; filter:none; transform:scale(1) translateY(0); }

@keyframes pick-num-slam { 0%{transform:scale(0) rotate(-15deg);opacity:0} 55%{transform:scale(1.25) rotate(4deg);opacity:1} 72%{transform:scale(.92) rotate(-2deg)} 85%{transform:scale(1.06) rotate(1deg)} 100%{transform:scale(1) rotate(0deg)} }
.pick-tab--active .pick-num                   { animation:pick-num-slam .55s cubic-bezier(.34,1.56,.64,1) both; }
.pick-tab:not(.pick-tab--active) .pick-num    { animation:none; }

.pick-tab .pick-word { position:relative; display:inline-block; }
.pick-tab .pick-word::before { content:''; position:absolute; left:-4px; right:-4px; bottom:2px; height:44%; background:var(--accent); transform:scaleX(0) skewX(-8deg); transform-origin:left; z-index:-1; border-radius:3px; opacity:.9; }
@keyframes marker-blast { 0%{transform:scaleX(0) skewX(-8deg);opacity:1} 50%{transform:scaleX(1.08) skewX(-8deg);opacity:.95} 70%{transform:scaleX(.97) skewX(-8deg)} 100%{transform:scaleX(1) skewX(-8deg);opacity:.9} }
.pick-tab--active .pick-word::before                { animation:marker-blast .42s cubic-bezier(.16,1,.3,1) .08s both; }
.pick-tab:not(.pick-tab--active) .pick-word::before { transform:scaleX(0) skewX(-8deg); animation:none; }

@keyframes from-spin { 0%{opacity:0;transform:rotate(-30deg) scale(.5)} 70%{transform:rotate(6deg) scale(1.1);opacity:1} 100%{transform:rotate(-8deg) scale(1);opacity:1} }
.pick-tab--active .pick-from                { animation:from-spin .45s cubic-bezier(.34,1.56,.64,1) .05s both; }
.pick-tab:not(.pick-tab--active) .pick-from { animation:none; }

.pick-tab::after { content:''; position:absolute; inset:-10px; background:radial-gradient(ellipse at center,rgba(255,255,255,.6) 0%,transparent 70%); opacity:0; pointer-events:none; border-radius:8px; }
@keyframes tab-flash { 0%{opacity:.7;transform:scale(.6)} 60%{opacity:.15;transform:scale(1.3)} 100%{opacity:0;transform:scale(1.6)} }
.pick-tab--entering::after { animation:tab-flash .5s ease-out both; }

.pick-tab .pick-word     { position:relative; display:inline-block; font-size:clamp(2.4rem,7vw,5rem); font-weight:900; color:white; letter-spacing:-.02em; }
.pick-tab .pick-from-wrap{ display:flex; align-items:center; gap:4px; }
.pick-tab .pick-from     { font-size:clamp(1.2rem,3.5vw,2.2rem); color:rgba(255,255,255,.8); transform:rotate(-8deg); display:inline-block; }
.pick-tab .pick-num      { font-size:clamp(5rem,15vw,10rem); font-weight:900; line-height:.9; color:var(--accent, #FFD83D); background:linear-gradient(185deg, #FFF3A8 0%, #FFD83D 48%, #E8B80A 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; -webkit-text-stroke:0; text-shadow:none; filter:drop-shadow(0 2px 10px rgba(255,216,61,.35)); }

@keyframes card-slide-left  { 0%{opacity:0;transform:translateX(-40px) scale(.95)} 100%{opacity:1;transform:translateX(0) scale(1)} }
@keyframes card-slide-right { 0%{opacity:0;transform:translateX(40px)  scale(.95)} 100%{opacity:1;transform:translateX(0) scale(1)} }
.pick-grid.is-visible .pick-card:nth-child(odd)  { animation:card-slide-left  .55s cubic-bezier(.16,1,.3,1) both; }
.pick-grid.is-visible .pick-card:nth-child(even) { animation:card-slide-right .55s cubic-bezier(.16,1,.3,1) both; }
.pick-grid.is-visible .pick-card:nth-child(1){animation-delay:.05s}
.pick-grid.is-visible .pick-card:nth-child(2){animation-delay:.12s}
.pick-grid.is-visible .pick-card:nth-child(3){animation-delay:.19s}
.pick-grid.is-visible .pick-card:nth-child(4){animation-delay:.26s}
.pick-grid.is-visible .pick-card:nth-child(5){animation-delay:.33s}
.pick-grid.is-visible .pick-card:nth-child(6){animation-delay:.40s}
.pick-grid.is-visible .pick-card:nth-child(7){animation-delay:.47s}
.pick-grid.is-visible .pick-card:nth-child(8){animation-delay:.54s}
.pick-grid.is-visible .pick-card:nth-child(9){animation-delay:.61s}
.pick-grid.is-visible .pick-card:nth-child(10){animation-delay:.68s}

.pick-grid--p6,.pick-grid--p7 { display:none !important; margin-bottom:36px; } /* legacy */
.pick-grid--p6.is-active-grid,.pick-grid--p7.is-active-grid { display:grid !important; }
.pick-plans--p6,.pick-plans--p7 { display:none !important; }
.pick-plans--p6.is-active-plans,.pick-plans--p7.is-active-plans { display:grid !important; }

.pick-medal-wrap { position:absolute; top:6px; right:8px; z-index:2; filter:drop-shadow(0 2px 6px rgba(0,0,0,.4)); text-align:center; }
.pick-medal-svg  { width:36px; height:42px; }
.pick-rank-label { display:block; margin-top:1px; font-size:.55rem; font-weight:800; letter-spacing:.03em; color:#fff; white-space:nowrap; text-shadow:0 1px 4px rgba(0,0,0,.7); }

.pick-plans { display:grid; grid-template-columns:repeat(3,1fr); background:rgba(0,0,0,.4); border-radius:20px; overflow:hidden; border:1px solid rgba(255,255,255,.15); backdrop-filter:blur(8px); }
.pick-plan  { padding:22px 10px; text-align:center; border-right:1px solid rgba(255,255,255,.1); display:flex; flex-direction:column; align-items:center; gap:1px; position:relative; cursor:pointer; overflow:hidden; isolation:isolate; transition:background .3s,transform .3s cubic-bezier(.34,1.56,.64,1); }
.pick-plan:last-child { border-right:none; }
.pick-plan:hover,.pick-plan--selected { background:rgba(255,255,255,.1); transform:scaleY(1.03); z-index:1; }
.pick-plan--mid { background:rgba(255,255,255,.07); position:relative; }
.pick-plan-slash { position:absolute; inset:0; background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,.15) 50%,transparent 70%); transform:skewX(-15deg) translateX(-120%); pointer-events:none; z-index:0; }
@keyframes plan-slash { 0%{transform:skewX(-15deg) translateX(-120%)} 100%{transform:skewX(-15deg) translateX(220%)} }
.pick-plan--selecting .pick-plan-slash { animation:plan-slash .4s cubic-bezier(.16,1,.3,1) forwards; }
.pick-plan--selected .pick-plan-count { color:var(--accent); text-shadow:0 0 24px rgba(255,216,61,.7); }
.pick-plan--selected .pick-plan-price { transform:scale(1.08); display:inline-block; }
.pick-plan--mid::before { display:none; }
.pick-plan-header  { display:flex; flex-direction:column; align-items:center; gap:0; margin-bottom:12px; }
.pick-plan-pre     { font-size:clamp(.55rem,1.5vw,.68rem); color:rgba(255,255,255,.55); letter-spacing:.06em; line-height:1; }
.pick-plan-count   { font-size:clamp(2.2rem,6vw,3.2rem); font-weight:900; color:var(--accent); line-height:1; display:flex; align-items:baseline; gap:2px; }
.pick-plan-unit    { font-size:clamp(.9rem,2.5vw,1.1rem); font-weight:900; color:var(--accent); }
.pick-plan-time    { font-size:clamp(.62rem,1.8vw,.75rem); color:rgba(255,255,255,.7); letter-spacing:.05em; background:rgba(255,255,255,.1); border-radius:50px; padding:2px 10px; margin-top:4px; }
.pick-plan-pricing { display:flex; flex-direction:column; align-items:center; gap:1px; }
.pick-plan-orig    { font-size:clamp(.68rem,2vw,.82rem); color:#FF7777; text-decoration:line-through; letter-spacing:.02em; }
.pick-plan-arrow   { color:#FF4444; font-size:.75rem; line-height:1.1; }
.pick-plan-price   { font-size:clamp(1.3rem,4.5vw,1.9rem); font-weight:900; color:white; line-height:1.1; letter-spacing:-.02em; }
.pick-plan-per     { font-size:.65rem; color:rgba(255,255,255,.55); margin-top:2px; }

/* ── 他のプランリンク ── */
/* ── pick → why 移行ウェーブ ── */
.pick-to-why-wave {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.pick-to-why-wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

.pick-more {
  text-align: center;
  margin-top: 32px;
}
.pick-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 12px 28px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: color .25s, border-color .25s, background .25s, transform .25s;
  cursor: pointer;
}
.pick-more-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255,216,61,.08);
  transform: translateX(4px);
}

.pick-sub-note a.booking-modal-trigger {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.pick-sub-note a.booking-modal-trigger:hover {
  opacity: .8;
}

/* ============================================================
   BOOKING MODAL — Persona style (site palette)
   ============================================================ */
.booking-modal {
  --bm-deep:   #001234;
  --bm-mid:    var(--primary);
  --bm-bright: #0062c8;
  --bm-aqua:   var(--secondary);
  --bm-accent: var(--accent);
  --bm-white:  #ffffff;
  --bm-skew:   -10deg;

  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}
.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background:
  repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(69,200,216,.06) 6px,
    rgba(69,200,216,.06) 7px
  ),
  rgba(0, 18, 52, .88);
  backdrop-filter: blur(6px);
}

.booking-modal-panel {
  position: relative;
  width: min(480px, 100%);
  background: linear-gradient(158deg, var(--bm-deep) 0%, var(--bm-mid) 52%, var(--bm-bright) 100%);
  padding: 36px 28px 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transform: translateX(60px) skewX(var(--bm-skew));
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
  box-shadow:
    8px 8px 0 var(--bm-aqua),
    0 0 0 2px rgba(255,255,255,.12);
}
.booking-modal.is-open .booking-modal-panel {
  transform: translateX(0) skewX(var(--bm-skew));
}

/* un-skew inner content */
.booking-modal-panel > *:not(.booking-modal-decor) {
  transform: skewX(calc(var(--bm-skew) * -1));
}

.booking-modal-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  transform: none !important;
}
.booking-modal-bg-text {
  position: absolute;
  top: -10px;
  right: 50px;
  font-family: var(--font-en);
  font-size: 7rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.04);
  letter-spacing: -.04em;
  line-height: 1;
  user-select: none;
}
.booking-modal-slash {
  position: absolute;
  width: 200%;
  height: 3px;
  background: var(--bm-aqua);
  top: 42%;
  left: -30%;
  transform: rotate(-8deg);
  opacity: .3;
}
.booking-modal-slash--2 {
  top: 68%;
  transform: rotate(-8deg);
  opacity: .12;
  height: 1px;
  background: var(--bm-accent);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bm-accent);
  color: #001845;
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  transition: background .2s, color .2s, transform .2s;
}
.booking-modal-close:hover {
  background: var(--bm-aqua);
  color: var(--bm-white);
  transform: scale(1.1);
}
.booking-modal-close-x {
  font-size: .85rem;
  font-weight: 900;
  line-height: 1;
}

.booking-modal-header {
  position: relative;
  margin-bottom: 24px;
  padding-left: 4px;
}
.booking-modal-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .28em;
  color: #001845;
  background: var(--bm-accent);
  padding: 4px 14px 4px 18px;
  margin-bottom: 14px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transform: skewX(-6deg);
  box-shadow: 0 3px 12px rgba(255,216,61,.35);
}
.booking-modal-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
  line-height: 1.1;
}
.booking-modal-title-line {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
}
.booking-modal-title-em {
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--bm-white);
  letter-spacing: .06em;
  text-shadow: 3px 3px 0 rgba(69,200,216,.55);
}
.booking-modal-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  padding-left: 2px;
}

.booking-modal-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px 16px 10px;
  position: relative;
  color: var(--bm-white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s, padding-left .25s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  transform: translateX(30px);
  animation: none;
}
.booking-modal.is-open .booking-option {
  animation: p-option-in .4s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(.08s + var(--i, 0) * .07s);
}
@keyframes p-option-in {
  to { opacity: 1; transform: translateX(0); }
}

.booking-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--bm-accent);
  transition: width .25s cubic-bezier(.22,1,.36,1);
}
.booking-option:hover {
  background: rgba(255,255,255,.95);
  color: var(--bm-mid);
  padding-left: 18px;
}
.booking-option:hover::before {
  width: 5px;
}
.booking-option:hover .booking-option-num {
  color: var(--bm-bright);
}
.booking-option:hover .booking-option-en {
  color: var(--bm-aqua);
}
.booking-option:hover .booking-option-go {
  background: var(--bm-mid);
  color: var(--bm-white);
}

.booking-option-num {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.18);
  line-height: 1;
  min-width: 36px;
  transition: color .2s;
}
.booking-option-body {
  flex: 1;
  min-width: 0;
}
.booking-option-en {
  display: block;
  font-size: .58rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .22em;
  color: rgba(69,200,216,.55);
  margin-bottom: 2px;
  transition: color .2s;
}
.booking-option-name {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 1px;
}
.booking-option-desc {
  display: block;
  font-size: .68rem;
  opacity: .45;
  letter-spacing: .02em;
}
.booking-option:hover .booking-option-desc {
  opacity: .65;
  color: var(--text-mid);
}

.booking-option-go {
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .12em;
  padding: 6px 10px;
  background: rgba(69,200,216,.15);
  color: var(--bm-aqua);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background .2s, color .2s, transform .2s;
}
.booking-option-go-arrow {
  display: inline-block;
  margin-left: 2px;
  font-size: .9rem;
  transition: transform .2s;
}
.booking-option:hover .booking-option-go-arrow {
  transform: translateX(3px);
}

.booking-option.is-disabled {
  opacity: .25;
  pointer-events: none;
  cursor: not-allowed;
}
.booking-modal.is-open .booking-option.is-disabled {
  animation: none;
  opacity: .25;
  transform: none;
}

@media (max-width: 480px) {
  .booking-modal-panel {
    padding: 28px 18px 20px;
  }
  .booking-modal-title-em {
    font-size: 1.9rem;
  }
  .booking-option {
    padding: 14px 10px 14px 6px;
    gap: 10px;
  }
  .booking-option-num {
    font-size: 1.3rem;
    min-width: 28px;
  }
  .booking-option-name {
    font-size: .9rem;
  }
  .booking-modal-bg-text {
    font-size: 5rem;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width:1024px) {
  :root { --section-py:80px; }
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .service-card:nth-child(4),.service-card:nth-child(5) { margin-top:0; }
  .boats-carousel .boat-card { flex:0 0 calc(50% - 12px); }
  .carousel-btn--prev { left:0; }
  .carousel-btn--next { right:0; }
  .about-inner { gap:48px; }
  .support-grid { grid-template-columns:repeat(2,1fr); }
  .activity-grid { grid-template-columns:repeat(2,1fr); }
  .activity-img-wrap { height:260px; }
  .news-insta-grid { grid-template-columns:1fr; gap:48px; }
  .footer-main { grid-template-columns:1fr 1fr; gap:40px; }
  .footer-contact { grid-column:span 2; }
}

@media (min-width:900px) {
  /* reserved */
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width:768px) {
  :root { --section-py:64px; }

  .pick-inner { padding:52px 16px 44px; }
  .pick-grid  { grid-template-columns:repeat(2,1fr); gap:8px; }
  .pick-card  { min-height:90px; padding:36px 12px 12px; }
  .pick-plan  { padding:18px 6px; }

  /* Full-screen hero (camp) */
  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    align-items: stretch;
    overflow: hidden;
  }
  .header-cta { display: none !important; }
  .hero-media-img { object-position: 58% 42%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,12,36,.45) 0%, rgba(0,16,42,.28) 32%, rgba(0,14,36,.55) 62%, rgba(0,10,28,.88) 100%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
    min-height: 0;
    padding: calc(var(--header-h) + 12px) 20px 56px;
    gap: 16px;
    grid-template-columns: none;
  }
  .hero-content {
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-rating { margin-bottom: 14px; }
  .hero-rating-inner { align-items: center; }
  .hero-rating-row { justify-content: center; }
  .hero-heading {
    font-size: clamp(1.55rem, 6.4vw, 1.95rem);
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
  }
  .hero-br { display: block; }
  .hero-sub { display: none; }
  .hero-same-day {
    align-self: center;
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
    margin: 10px 0 0;
  }
  .hero-same-day-copy { align-items: center; }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 12px;
  }
  .hero-reserve-btn {
    width: 100%;
    max-width: 340px;
    padding: 15px 22px;
    font-size: .98rem;
  }
  .hero-contact-btn { display: none; }
  .hero-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-reviews {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
  }
  .hero-review-card {
    padding: 14px 16px 14px;
    border-radius: 16px;
  }
  .hero-review-text {
    font-size: .84rem;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
  }
  .hero-scroll {
    bottom: 10px;
  }
  .hero-scroll-mouse { display: none; }
  .hero-scroll-text {
    font-size: .58rem;
    position: relative;
  }
  .hero-scroll-text::before {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    margin: 0 auto 6px;
    background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  }

  .services-grid { grid-template-columns:repeat(2,1fr); }
  .service-card:last-child { grid-column:span 2; max-width:280px; margin-inline:auto; width:100%; }
  .boats-top { flex-direction:column; align-items:flex-start; }
  .boats-carousel .boat-card { flex:0 0 calc(100% - 0px); }
  .beginner-banner { grid-template-columns:1fr; }
  .beginner-visual { height:200px; }
  .about-header { grid-template-columns:1fr minmax(120px,32%); gap:4px 12px; }
  .about-actions-row,
  .about-tail { grid-template-columns:1fr minmax(108px,32%); gap:10px 12px; }
  .about-actions { gap:8px; }
  .about-action { padding:8px 14px; font-size:.88rem; }
  .about-quote { padding:16px 22px; }
  .support-grid { grid-template-columns:repeat(2,1fr); }
  .activity-grid{ grid-template-columns:repeat(2,1fr); }
  .activity-img-wrap { height:220px; }
  .news-insta-grid { gap:48px; }
  .footer-main  { grid-template-columns:1fr; gap:36px; }
  .footer-contact { grid-column:span 1; }
  .footer-nav   { grid-template-columns:repeat(2,1fr); }
  .pc-only { display:none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width:480px) {
  :root { --section-py:52px; }
  .hero-inner { padding: calc(var(--header-h) + 8px) 16px 52px; gap: 14px; }
  .hero-heading { font-size: clamp(1.4rem, 6.2vw, 1.75rem); }
  .hero-reserve-btn { max-width: none; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }
  .hero-btns .btn { max-width: none; }
  .services-grid { grid-template-columns:1fr; }
  .service-card:last-child { grid-column:span 1; max-width:100%; }
  .support-grid { grid-template-columns:1fr; }
  .activity-grid{ grid-template-columns:1fr; }
  .boats-top .btn { width:auto; max-width:none; }
  .beginner-banner .beginner-content { padding:36px 24px; }
  .footer-nav { grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
  .footer-logo-mark { width:52px; height:52px; }
  .about-polaroid { width:min(42vw,148px); }
  .about-polaroid-cap { font-size:.72rem; }
  .about-bg-text { font-size:4.5rem; }
}

/* ============================================================
   FOCUS VISIBLE / REDUCED MOTION
   ============================================================ */
:focus-visible { outline:3px solid var(--secondary); outline-offset:3px; border-radius:4px; }
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  [data-aos] { opacity:1 !important; transform:none !important; }
  .hero-rating,
  .hero-heading,
  .hero-sub,
  .hero-same-day,
  .hero-btns,
  .hero-reviews,
  .hero-scroll { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-media-img { animation: none !important; opacity: 1 !important; transform: scale(1.06) !important; }
  .hero-media-img:not(:first-child) { opacity: 0 !important; }
  .hero-reviews-track,
  .hero-reviews-slider { animation: none !important; transition: none !important; }
  .hero-scroll-mouse::after { animation: none !important; }
}


/* ── Pick from 7 (static, no 6/7 toggle) ── */
.pick-grid--single {
  display: grid !important;
  margin-bottom: 36px;
}
.pick-plans--tube3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}

.pick-cat-head {
  text-align: center;
  margin: 8px 0 20px;
}
.pick-cat-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(255,216,61,.9);
  margin-bottom: 6px;
}
.pick-cat-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: .06em;
}
.pick-cat-lead {
  margin: 8px auto 0;
  max-width: 28em;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  line-height: 1.6;
}

.pick-cat-teaser {
  margin-top: 36px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}
.pick-cat-teaser-label {
  text-align: center;
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}
.pick-cat-teaser-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pick-cat-teaser-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pick-cat-teaser-list li:last-child { border-bottom: none; }
.pick-cat-teaser-name {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
}
.pick-cat-teaser-plans {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  letter-spacing: .02em;
}

@media (max-width:768px) {
  .pick-plans--tube3 { grid-template-columns: 1fr; }
  .pick-plans--tube3 .pick-plan { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .pick-plans--tube3 .pick-plan:last-child { border-bottom: none; }
  .pick-cat-teaser-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
}


/* ============================================================
   RC FIX — phone landscape / short viewport (hero must not clip CTAs)
   ============================================================ */
@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
    align-items: flex-end;
  }
  .hero-inner {
    height: auto;
    min-height: 100svh;
    padding-bottom: 32px;
  }
}


/* ============================================================
   IMAGE PERF — picture fill, lazy fade-in, CLS guards
   ============================================================ */
.about-polaroid-img picture,
.cta-bg-img picture,
.gallery-item picture,
.gallery-track picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about-polaroid-img img,
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-mark,
.footer-logo-mark img {
  display: block;
}
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .45s ease;
  animation: bm-lazy-fallback 0s linear 2.5s forwards;
}
@keyframes bm-lazy-fallback { to { opacity: 1; } }
img[loading="lazy"].is-loaded,
img[loading="lazy"][data-loaded="1"] {
  opacity: 1;
  animation: none;
}
@supports (content-visibility: auto) {
  .pick-section,
  .why,
  .about,
  .gallery,
  .voice,
  .faq,
  .cta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
  .hero { content-visibility: visible; }
}
