/* ==========================================================================
   LP テンプレート — main.css スターター
   --------------------------------------------------------------------------
   新案件の Stage 5（フロント実装）開始時に、最低限の可読性・アクセシビリティ
   ルールを最初から組み込んだ状態でスタートできるようにするための雛形。

   このスターターには以下が含まれる：
     - CSS Custom Properties の最小セット（カラー・タイポ・余白）
     - 日本語可読性のためのグローバル設定（word-break / overflow-wrap）
     - .nowrap ユーティリティクラス（重要フレーズ保護用）
     - skip-link / :focus-visible のアクセシビリティ最低限
     - prefers-reduced-motion 対応
     - JS 有効時のみ動く .fade-in / .section__title の初期アニメーション

   実装時の注意：
     1. デザイン仕様書 §1〜2 のカラーパレットとフォントを反映
     2. 重要フレーズは <span class="nowrap"> で保護
     3. 句点・読点だけが行頭に落ちる短文は <span class="text-chunk"> で文末まで保護
     4. body の word-break / overflow-wrap は絶対に消さない（Pole Pole 反省 #18）
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties（デザイン仕様書 §1〜4 で上書き）
   -------------------------------------------------------------------------- */
:root {
  --color-bg-primary: #fff7e5;
  --color-bg-secondary: #fff1cb;
  --color-panel: rgba(255, 255, 255, 0.78);
  --color-text-primary: #463629;
  --color-text-secondary: #766355;
  --color-border: rgba(248, 188, 93, 0.36);
  --color-accent-primary: #ff6b19;
  --color-accent-primary-hover: #eb5410;
  --color-mint: #24c8b7;
  --color-mint-dark: #13a99b;
  --color-sky: #23a6ff;
  --color-coral: #ff7d6f;
  --color-yellow: #ffd751;
  --color-focus: rgba(255, 107, 25, 0.36);

  /* Typography */
  --font-jp: 'Hiragino Maru Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'YuGothic', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Hiragino Maru Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'YuGothic', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-micro: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;

  --fs-display: 64px;
  --fs-h1: 44px;
  --fs-h2: 31px;
  --fs-h3: 19px;
  --fs-body: 16px;
  --fs-caption: 14px;

  --lh-body: 1.95;
  --lh-heading: 1.55;
  --ls-body: 0;
  --ls-heading: 0;

  /* Spacing */
  --space-section-pc: 92px;
  --space-section-sp: 48px;
  --container-max: 1080px;
  --side-padding-pc: 60px;
  --side-padding-sp: 24px;

  /* Easings */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quick: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Header */
  --header-h-pc: 80px;
  --header-h-sp: 60px;
}

@media (max-width: 767px) {
  :root {
    --fs-display: 38px;
    --fs-h1: 30px;
    --fs-h2: 23px;
    --fs-h3: 17px;
    --fs-body: 15px;
    --fs-caption: 13px;
    --lh-heading: 1.5;
    --space-section-sp: 44px;
    --side-padding-sp: 16px;
  }
}

/* --------------------------------------------------------------------------
   2. Reset / Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 13%, rgba(255, 213, 95, 0.26), transparent 26%),
    radial-gradient(circle at 87% 19%, rgba(36, 200, 183, 0.17), transparent 25%),
    linear-gradient(180deg, #fff8e7 0%, #fff3d7 54%, #ffecbd 100%);
  color: var(--color-text-primary);
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  overflow-x: hidden;

  /* ------------------------------------------------------------------------
     【Pole Pole 反省 #18】日本語の単語を不自然な位置で分割しない（必須）
     ------------------------------------------------------------------------
     ブラウザのデフォルトでは日本語は任意の文字位置で改行可能なため、
     スマホ表示で「ハン / ドメイド」「Pole / Pole」のような単語途中改行が発生する。
     以下 3 行を絶対に消さないこと。ただし overflow-wrap:anywhere は句読点だけを
     次行に落とす原因になりやすいため使わない。重要フレーズは <span class="nowrap">、
     文末の短いまとまりは <span class="text-chunk"> でさらに保護する。
     ------------------------------------------------------------------------ */
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { background: none; border: none; padding: 0; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease-out-quick); }
h1, h2, h3, h4, h5, h6, p, dl, dt, dd { margin: 0; }

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection {
  background: var(--color-accent-primary);
  color: #FFFFFF;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--color-text-primary);
  color: #FFFFFF;
  padding: 10px 16px;
  z-index: 1000;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   3. 重要フレーズ保護ユーティリティ（必須・Pole Pole 反省 #18）
   --------------------------------------------------------------------------
   使い方：意味のまとまり（屋号・カタカナ複合語・商品カテゴリ・地名+助詞など）を
           <span class="nowrap"> で囲む。inline-block により単語途中で改行されない。

   保護すべき代表例：
     - 屋号：「Pole Pole（ポレポレ）」「ELLIE clothes」
     - カタカナ複合語：ハンドメイド雑貨／インテリア雑貨／ギフトラッピング
     - 商品カテゴリ：焼き菓子／一点もの／季節のおすすめ
     - 地名+助詞：上越市の／新潟県上越市・高田駅近くの
     - 営業情報：11:00〜16:00／火・水・木曜日／駐車場 2 台
     - 連絡手段：Instagram DM／@handmadeshop_polepole
   -------------------------------------------------------------------------- */
.nowrap {
  display: inline-block;
  white-space: nowrap;
}

/*
  短文カード・理由説明・CTA 周辺で、文末の「。」だけが行頭に落ちるのを防ぐ。
  1 chunk は 8〜14 文字程度に分け、長すぎる chunk で横はみ出しを作らない。
*/
.text-chunk {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

/* --------------------------------------------------------------------------
   4. レスポンシブ改行ユーティリティ
   --------------------------------------------------------------------------
   .br-sp ── PC では非表示、スマホ（767px以下）でのみ改行する
   .br-pc ── PC では改行、スマホ（767px以下）では非表示
   -------------------------------------------------------------------------- */
.br-sp { display: none; }
.br-pc { display: inline; }
@media (max-width: 767px) {
  .br-sp { display: inline; }
  .br-pc { display: none; }
}

/* --------------------------------------------------------------------------
   5. Container / Section（デザイン仕様書で必要に応じて上書き）
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--side-padding-pc) * 2);
  margin: 0 auto;
  padding-left: var(--side-padding-sp);
  padding-right: var(--side-padding-sp);
}
@media (min-width: 1024px) {
  .container { padding-left: var(--side-padding-pc); padding-right: var(--side-padding-pc); }
}

.section {
  padding-top: var(--space-section-sp);
  padding-bottom: var(--space-section-sp);
}
@media (min-width: 1024px) {
  .section { padding-top: var(--space-section-pc); padding-bottom: var(--space-section-pc); }
}

/* --------------------------------------------------------------------------
   6. Motion starter（IntersectionObserver と連携）
   --------------------------------------------------------------------------
   - JS が html.motion-ready を付けた場合だけアニメーション化する
   - JS 無効時、または prefers-reduced-motion 時は常時表示のまま
   - ELLIE 反省 #3 により、観測は .section__title を含め rootMargin -25% を使う
   -------------------------------------------------------------------------- */
.fade-in,
.section__title,
.section-lead {
  opacity: 1;
  transform: none;
}

.motion-ready .fade-in,
.motion-ready .section__title,
.motion-ready .section-lead {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition:
    opacity 0.72s var(--ease-out-soft),
    filter 0.72s var(--ease-out-soft),
    transform 0.72s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready .section__title {
  transform: translateY(18px);
}

.motion-ready .fade-in.is-visible,
.motion-ready .section__title.is-visible,
.motion-ready .section-lead.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.motion-ready .hero__copy > *,
.motion-ready .hero__media img {
  animation: lp-hero-rise 0.54s var(--ease-out-soft) both;
}

.motion-ready .hero__copy > *:nth-child(2) { animation-delay: 0.04s; }
.motion-ready .hero__copy > *:nth-child(3) { animation-delay: 0.08s; }
.motion-ready .hero__copy > *:nth-child(4) { animation-delay: 0.12s; }
.motion-ready .hero__media img { animation: lp-hero-image 0.72s var(--ease-out-soft) both; }

.hover-lift {
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-spring), border-color 0.28s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

@keyframes lp-hero-rise {
  from {
    opacity: 0;
    filter: none;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes lp-hero-image {
  from {
    opacity: 0;
    filter: saturate(0.92);
    transform: none;
  }
  to {
    opacity: 1;
    filter: saturate(1) blur(0);
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   7. Reduced motion（必須・アクセシビリティ）
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in,
  .section__title,
  .section-lead,
  .motion-ready .fade-in,
  .motion-ready .section__title,
  .motion-ready .section-lead {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .hover-lift:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   ここから下：案件固有のスタイルを追加
   --------------------------------------------------------------------------
   以下のセクションを必要に応じて実装：
     8. Header / Mobile menu
     9. FV / HERO
    10. 各セクション（CONCEPT / WORKS / PRODUCTS / VOICE / SHOP 等）
    11. Footer
    12. Sticky CTA
   -------------------------------------------------------------------------- */

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 14% 22%, #ff7d6f 0 4px, transparent 5px),
    radial-gradient(circle at 88% 18%, #24c8b7 0 5px, transparent 6px),
    radial-gradient(circle at 10% 72%, #ffd751 0 5px, transparent 6px),
    radial-gradient(circle at 82% 82%, #23a6ff 0 4px, transparent 5px);
  opacity: 0.32;
}

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100% - 40px, 1110px);
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-mark,
.header-cta {
  pointer-events: auto;
}

.brand-mark {
  display: block;
  width: 126px;
  padding: 4px;
  border: 2px solid rgba(36, 200, 183, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(255, 152, 53, 0.18);
}

.brand-mark img {
  border-radius: 999px;
}

.header-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 158, 45, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #ff3f1f;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(255, 142, 24, 0.14);
}

.insta-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.insta-icon::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
}

.insta-icon::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.insta-icon--large {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.insta-icon--large::before {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
}

.hero {
  position: relative;
  min-height: 664px;
  padding: 84px 0 36px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 231, 0.9) 0%, rgba(255, 248, 231, 0.7) 30%, rgba(255, 248, 231, 0.04) 58%),
    linear-gradient(180deg, rgba(255, 246, 218, 0.08) 68%, #fff7e5 100%);
}

.awning {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 52px;
  background:
    radial-gradient(circle at 22px 52px, transparent 21px, #35cab6 22px 46px, transparent 47px) 0 0 / 68px 52px repeat-x,
    linear-gradient(180deg, #65ddc9 0%, #37cbb8 100%);
  box-shadow: 0 10px 16px rgba(30, 166, 151, 0.12);
}

.hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 544px;
  width: 100%;
  margin: 0 auto;
}

.hero__copy {
  position: relative;
  z-index: 5;
  max-width: 520px;
  margin-left: max(24px, calc((100vw - 1110px) / 2));
  padding-top: 52px;
}

.hero__label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--color-mint-dark);
  font-size: 19px;
  font-weight: 900;
}

.hero__label::after {
  display: inline-block;
  color: #f4bd24;
  content: "★";
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 6px 0 rgba(255, 255, 255, 0.9);
}

.hero__title-orange {
  color: var(--color-accent-primary);
}

.hero__title-mint {
  color: var(--color-mint);
}

.hero__text {
  margin-top: 22px;
  color: var(--color-text-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8b27 0%, #ff5d13 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 13px 22px rgba(255, 92, 19, 0.34), inset 0 2px 0 rgba(255, 255, 255, 0.34);
}

.cta:hover {
  background: linear-gradient(180deg, #ff9a3a 0%, #ee5010 100%);
  color: #fff;
}

.cta--hero {
  margin-top: 34px;
  min-width: 314px;
  min-height: 72px;
  font-size: 24px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 8;
  display: grid;
  gap: 4px;
  justify-items: center;
  color: var(--color-mint-dark);
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.scroll-cue__arrow {
  width: 17px;
  height: 17px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg);
}

.section--about {
  padding-top: 18px;
}

.intro-card,
.moments-panel,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(232, 155, 67, 0.12);
  backdrop-filter: blur(8px);
}

.intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 38px;
  align-items: center;
  padding: 36px;
}

.intro-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
}

.intro-card__body {
  display: grid;
  gap: 18px;
  color: var(--color-text-primary);
  font-weight: 700;
}

.ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 22px;
  border-radius: 7px;
  background: linear-gradient(180deg, #34d7b7 0%, #1ab99f 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 7px 14px rgba(20, 173, 151, 0.18);
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  top: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  content: "";
}

.ribbon::before {
  left: -12px;
  border-right: 13px solid #1ab99f;
}

.ribbon::after {
  right: -12px;
  border-left: 13px solid #34d7b7;
}

.section__title,
.hero__title,
.final-cta h2 {
  color: var(--color-text-primary);
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.section__title {
  font-size: var(--fs-h2);
}

.section-heading {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading--inline {
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  text-align: left;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.activity-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(229, 151, 61, 0.13);
  text-align: center;
}

.activity-card__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.activity-card__label--mint { background: linear-gradient(180deg, #35d7b7 0%, #18b69c 100%); }
.activity-card__label--blue { background: linear-gradient(180deg, #42bcff 0%, #1b88f7 100%); }
.activity-card__label--orange { background: linear-gradient(180deg, #ff9841 0%, #ff6419 100%); }

.activity-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.activity-card h3 {
  min-height: 54px;
  color: var(--color-text-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.moments-panel {
  padding: 28px;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.moment {
  display: grid;
  gap: 10px;
  min-width: 0;
  justify-items: center;
}

.moment img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  box-shadow: 0 10px 18px rgba(230, 152, 66, 0.13);
}

.moment:nth-child(4) img {
  object-position: 58% center;
}

.moment figcaption {
  display: inline-flex;
  justify-content: center;
  min-width: 108px;
  min-height: 36px;
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #37d4b8 0%, #16b39c 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.34);
}

.moment:nth-child(2) figcaption { background: linear-gradient(180deg, #ff7d7a 0%, #f05f68 100%); }
.moment:nth-child(3) figcaption { background: linear-gradient(180deg, #ffb326 0%, #ff8a0f 100%); }
.moment:nth-child(4) figcaption { background: linear-gradient(180deg, #b985f8 0%, #9f62df 100%); }

.info-card {
  padding: 30px 34px;
}

.section-heading--info {
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  margin-bottom: 22px;
  text-align: left;
}

.info-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid rgba(247, 178, 78, 0.34);
  border-radius: 24px;
  background: rgba(255, 251, 239, 0.68);
}

.info-list {
  display: grid;
  gap: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px dashed rgba(226, 167, 80, 0.42);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--color-text-primary);
  font-weight: 900;
}

.info-list dt::before {
  display: inline-block;
  width: 28px;
  margin-right: 8px;
  text-align: center;
}

.info-list div:nth-child(1) dt::before { content: "⛺"; }
.info-list div:nth-child(2) dt::before { content: "🔔"; }
.info-list div:nth-child(3) dt::before { content: "🍪"; }

.info-list dd {
  color: var(--color-text-primary);
  font-weight: 800;
}

.info-mascot {
  width: 180px;
  border-radius: 999px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 16% 20%, rgba(36, 200, 183, 0.34), transparent 20%),
    radial-gradient(circle at 82% 30%, rgba(255, 125, 111, 0.28), transparent 22%),
    linear-gradient(135deg, #ffe293 0%, #ffc36e 100%);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.final-cta img {
  border: 3px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(197, 124, 43, 0.14);
}

.final-cta h2 {
  color: #4a3525;
  font-size: 28px;
}

.final-cta p {
  margin-top: 6px;
  color: #6f553c;
  font-weight: 800;
}

.footer {
  padding: 24px 0 92px;
  background: #fff5da;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.footer__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.24s var(--ease-out-quick), transform 0.24s var(--ease-out-quick);
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta .cta {
  min-height: 50px;
  padding: 0 22px;
  font-size: 15px;
}

.container--narrow {
  max-width: 860px;
}

.eyebrow {
  color: var(--color-mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.concept__body {
  display: grid;
  gap: 14px;
}

.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-mint), transparent);
}

.rule--short {
  max-width: 160px;
}

.header {
  padding: 22px var(--side-padding-sp);
  background: rgba(255, 247, 229, 0.86);
}

.header__logo {
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__inner {
    width: 100%;
  }

  .activity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .activity-card {
    padding: 14px;
  }

  .activity-card__label {
    font-size: 13px;
  }

  .moment-grid {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 22px);
    align-items: center;
  }

  .brand-mark {
    width: 82px;
    padding: 3px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    min-height: 700px;
    padding: 86px 0 44px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 231, 0.88) 0%, rgba(255, 248, 231, 0.38) 38%, rgba(255, 248, 231, 0.08) 62%, #fff7e5 100%),
      linear-gradient(90deg, rgba(255, 248, 231, 0.72) 0%, rgba(255, 248, 231, 0.04) 100%);
  }

  .awning {
    top: 70px;
    height: 36px;
    background:
      radial-gradient(circle at 18px 36px, transparent 17px, #35cab6 18px 36px, transparent 37px) 0 0 / 52px 36px repeat-x,
      linear-gradient(180deg, #65ddc9 0%, #37cbb8 100%);
  }

  .hero__inner {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    width: calc(100% - 28px);
    min-height: 560px;
  }

  .hero__copy {
    max-width: 100%;
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 34px;
  }

  .hero__label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero__title {
    font-size: var(--fs-display);
    line-height: 1.18;
  }

  .hero__text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
  }

  .cta--hero {
    min-width: 0;
    width: min(100%, 286px);
    min-height: 58px;
    margin-top: 20px;
    font-size: 18px;
  }

  .hero__media {
    top: 246px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 430px;
  }

  .hero__media img {
    object-position: 59% center;
  }

  .scroll-cue {
    bottom: 14px;
    font-size: 11px;
  }

  .section--about {
    padding-top: 8px;
  }

  .intro-card,
  .moments-panel,
  .info-card {
    border-radius: 24px;
  }

  .intro-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }

  .intro-card__image img {
    border-radius: 18px;
  }

  .intro-card__body {
    gap: 13px;
  }

  .ribbon {
    min-height: 30px;
    padding: 0 18px;
    font-size: 14px;
  }

  .ribbon::before,
  .ribbon::after {
    border-top-width: 15px;
    border-bottom-width: 15px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-heading--inline,
  .section-heading--info {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activity-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-areas:
      "image label"
      "image title";
    align-items: center;
    gap: 8px 14px;
    padding: 12px;
    text-align: left;
    border-radius: 20px;
  }

  .activity-card__label {
    grid-area: label;
    justify-self: start;
    min-height: 30px;
    font-size: 13px;
  }

  .activity-card img {
    grid-area: image;
    border-radius: 16px;
  }

  .activity-card h3 {
    grid-area: title;
    min-height: auto;
    font-size: 17px;
  }

  .moments-panel {
    padding: 18px;
  }

  .moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .moment img {
    border-width: 4px;
    border-radius: 18px;
  }

  .moment figcaption {
    min-width: 94px;
    min-height: 32px;
    font-size: 15px;
  }

  .info-card {
    padding: 18px;
  }

  .info-card__body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 0;
    padding: 12px 0;
  }

  .info-mascot {
    width: 124px;
    margin: 0 auto;
  }

  .final-cta {
    padding: 24px 0 28px;
  }

  .final-cta__inner {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .final-cta .cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .final-cta p {
    font-size: 14px;
    line-height: 1.65;
  }

  .footer {
    padding-bottom: 28px;
  }

  .footer__inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .sticky-cta .cta {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }
}

@media (max-width: 374px) {
  .header-cta span:last-child {
    max-width: 112px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__media {
    left: 0;
  }

  .activity-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
