/* ==========================================================================
   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 {
  /* Colors（プレースホルダ：デザイン仕様で確定） */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F5F5F5;
  --color-text-primary: #2A2724;
  --color-text-secondary: #6E6660;
  --color-border: #DDDDDD;
  --color-accent-primary: #B07A6E;
  --color-accent-primary-hover: #9F6A5E;
  --color-focus: rgba(176, 122, 110, 0.4);

  /* Typography */
  --font-jp: 'Shippori Mincho B1', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
  --font-en: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-micro: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;

  --fs-display: clamp(32px, 5vw, 56px);
  --fs-h1: clamp(26px, 3.6vw, 36px);
  --fs-h2: clamp(20px, 2.6vw, 26px);
  --fs-h3: clamp(17px, 1.8vw, 20px);
  --fs-body: clamp(15px, 1.1vw, 16px);
  --fs-caption: clamp(13px, 1vw, 14px);

  --lh-body: 1.95;
  --lh-heading: 1.55;
  --ls-body: 0.04em;
  --ls-heading: 0.06em;

  /* Spacing */
  --space-section-pc: 120px;
  --space-section-sp: 72px;
  --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;
}

/* --------------------------------------------------------------------------
   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: var(--color-bg-primary);
  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.84s var(--ease-out-soft) both;
}

.motion-ready .hero__copy > *:nth-child(2) { animation-delay: 0.08s; }
.motion-ready .hero__copy > *:nth-child(3) { animation-delay: 0.16s; }
.motion-ready .hero__copy > *:nth-child(4) { animation-delay: 0.24s; }
.motion-ready .hero__media img { animation: lp-hero-image 1.3s 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: blur(8px);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes lp-hero-image {
  from {
    opacity: 0;
    filter: saturate(0.82) blur(6px);
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    filter: saturate(1) blur(0);
    transform: scale(1);
  }
}

/* --------------------------------------------------------------------------
   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
   -------------------------------------------------------------------------- */

:root {
  --color-bg-primary: #fffdf7;
  --color-bg-secondary: #f8f3e8;
  --color-text-primary: #4b3427;
  --color-text-secondary: #6e5a49;
  --color-border: #dfd3bd;
  --color-accent-primary: #788342;
  --color-accent-primary-hover: #5f6733;
  --color-focus: rgba(120, 131, 66, 0.38);
  --color-paper: #fffaf0;
  --color-panel: #fff8ea;
  --color-gold: #d0b46a;
  --color-sky: #d9eef8;
  --container-max: 1120px;
  --side-padding-sp: 20px;
  --side-padding-pc: 44px;
  --fs-display: clamp(34px, 5.8vw, 68px);
  --fs-h1: clamp(28px, 3.8vw, 46px);
  --fs-h2: clamp(22px, 2.5vw, 32px);
  --fs-h3: clamp(17px, 1.6vw, 21px);
  --ls-body: 0.05em;
  --ls-heading: 0.08em;
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(209, 180, 100, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fffaf0 52%, #fffdf7 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 253, 247, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 211, 189, 0.58);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 14px 34px rgba(75, 52, 39, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1240px);
  height: 72px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-header__brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  color: var(--color-accent-primary);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 34px;
  height: 4px;
  margin-left: auto;
  border-radius: 999px;
  background: currentColor;
}

.global-nav {
  position: fixed;
  top: 72px;
  right: 16px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(75, 52, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.global-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--font-micro);
  font-size: 14px;
  color: var(--color-text-primary);
}

.global-nav a:hover {
  background: var(--color-bg-secondary);
}

.hero {
  position: relative;
  min-height: min(780px, 100svh);
  padding: 104px 20px 46px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 36% 0 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.90) 62%, rgba(255, 253, 247, 0) 100%);
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  inset: 72px 0 auto auto;
  width: min(72vw, 880px);
  z-index: 0;
}

.hero__visual img {
  width: 100%;
  filter: saturate(0.98);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(min(780px, 100svh) - 150px);
  max-width: 560px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.hero__logo {
  width: clamp(112px, 15vw, 178px);
  margin-bottom: clamp(28px, 5vw, 54px);
  mix-blend-mode: multiply;
}

.hero__title {
  font-size: var(--fs-display);
  line-height: 1.42;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero__lead {
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 2.05;
  color: var(--color-text-primary);
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 210px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-family: var(--font-micro);
  font-size: 15px;
  letter-spacing: 0.11em;
  line-height: 1.3;
  transition: transform 0.24s var(--ease-spring), background 0.24s ease, color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary,
.button--olive {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-primary-hover));
  color: #fff;
  border-color: transparent;
}

.button--secondary {
  background: rgba(255, 253, 247, 0.88);
  color: var(--color-accent-primary-hover);
}

.button--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-accent-primary-hover);
  border-color: transparent;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--color-accent-primary);
  font-family: var(--font-micro);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.section__title {
  position: relative;
  color: var(--color-text-primary);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.section__title--center {
  text-align: center;
}

.section__title--center::before,
.section__title--center::after {
  content: "⌁";
  display: inline-block;
  margin: 0 16px;
  color: var(--color-accent-primary);
  font-size: 0.9em;
}

.section-lead {
  margin-top: 26px;
  color: var(--color-text-secondary);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 2.05;
}

.concept {
  padding-top: 48px;
}

.concept__grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.concept__text {
  max-width: 520px;
}

.concept__photos {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.photo-card,
.menu-card img,
.points__panel > img,
.menu-preview__grid img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(223, 211, 189, 0.7);
  box-shadow: 0 18px 38px rgba(75, 52, 39, 0.12);
  object-fit: cover;
}

.photo-card--wide {
  aspect-ratio: 1.25 / 1;
}

.menu {
  padding-top: 26px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.menu-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(75, 52, 39, 0.1);
}

.menu-card img {
  aspect-ratio: 1.42 / 1;
  border: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: none;
}

.menu-card h3 {
  padding: 14px 18px 0;
  font-size: var(--fs-h3);
  line-height: 1.45;
  text-align: center;
}

.menu-card p {
  padding: 10px 18px 22px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
}

.points {
  padding: 16px 0 34px;
}

.points__panel {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(248, 243, 232, 0.92));
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.points__body {
  min-width: 0;
  max-width: 100%;
}

.points__panel > img {
  aspect-ratio: 1.6 / 1;
}

.point-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  margin-top: 26px;
  border: 1px dashed rgba(120, 131, 66, 0.5);
  border-width: 1px 0 0 1px;
}

.point-list li {
  display: grid;
  min-width: 0;
  justify-items: center;
  align-content: center;
  min-height: 112px;
  padding: 14px 8px;
  border: 1px dashed rgba(120, 131, 66, 0.5);
  border-width: 0 1px 1px 0;
  color: var(--color-text-primary);
  font-family: var(--font-micro);
  line-height: 1.45;
  text-align: center;
}

.point-list span {
  margin-bottom: 8px;
  color: var(--color-accent-primary);
  font-size: 32px;
  line-height: 1;
}

.menu-preview__grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.menu-preview__note {
  margin: 22px auto 0;
  color: var(--color-text-secondary);
  font-family: var(--font-micro);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.voices__lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.voice-card {
  min-width: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(75, 52, 39, 0.08);
}

.voice-card h3 {
  color: var(--color-accent-primary-hover);
  font-size: 18px;
  line-height: 1.55;
}

.voice-card p {
  margin-top: 12px;
  color: var(--color-text-secondary);
  line-height: 1.9;
  word-break: normal;
  overflow-wrap: break-word;
}

.access {
  padding-top: 42px;
}

.access-grid {
  display: grid;
  gap: 0;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.access-card {
  padding: 28px;
  border-bottom: 1px dashed var(--color-border);
}

.access-card:last-child {
  border-bottom: 0;
}

.access-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.access-card p {
  color: var(--color-text-secondary);
  line-height: 1.9;
}

.access-card__note {
  margin-top: 8px;
  font-size: 13px;
}

.final-cta {
  margin-top: 18px;
  padding: 38px 0;
  background:
    linear-gradient(135deg, rgba(120, 131, 66, 0.93), rgba(95, 103, 51, 0.95)),
    var(--color-accent-primary);
  color: #fff;
}

.final-cta__inner {
  display: grid;
  gap: 26px;
  align-items: center;
}

.final-cta img {
  width: 154px;
  height: 154px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
}

.final-cta h2 {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.55;
}

.final-cta p {
  margin-top: 10px;
  opacity: 0.92;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 28;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-accent-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(75, 52, 39, 0.18);
  font-family: var(--font-micro);
  font-size: 13px;
}

.footer {
  padding: 28px 0;
  background: #4b3427;
  color: rgba(255, 255, 255, 0.86);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-micro);
  font-size: 13px;
}

.privacy-page {
  padding-top: 72px;
}

.privacy-content {
  max-width: 820px;
  margin-top: 34px;
  color: var(--color-text-secondary);
  line-height: 2;
}

.privacy-content h2 {
  margin-top: 34px;
  color: var(--color-text-primary);
  font-size: 20px;
  line-height: 1.6;
}

.privacy-content p {
  margin-top: 12px;
}

.privacy-content a {
  color: var(--color-accent-primary-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content__date {
  text-align: right;
}

@media (max-width: 767px) {
  .site-header__brand span {
    font-size: 14px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 82px 18px 34px;
  }

  .hero::before {
    inset: 38% 0 0 0;
    background: linear-gradient(0deg, rgba(255, 253, 247, 0.99) 0%, rgba(255, 253, 247, 0.94) 78%, rgba(255, 253, 247, 0.42) 100%);
  }

  .hero__visual {
    position: relative;
    inset: auto;
    order: 1;
    width: 112%;
    margin: -14px -6% 0;
  }

  .hero__copy {
    order: 2;
    min-height: auto;
    margin: -38px 0 0;
  }

  .hero__logo {
    width: 112px;
    margin-bottom: 22px;
  }

  .hero__actions,
  .final-cta__actions {
    gap: 12px;
  }

  .button {
    min-width: min(100%, 214px);
    min-height: 52px;
    padding: 11px 22px;
    font-size: 14px;
  }

  .concept__photos {
    grid-template-columns: 1fr;
  }

  .section__title--center::before,
  .section__title--center::after {
    margin: 0 8px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .points__panel {
    grid-template-columns: 0.32fr 1fr;
    padding: 20px;
  }

  .point-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .menu-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-card {
    border-right: 1px dashed var(--color-border);
    border-bottom: 0;
  }

  .access-card:last-child {
    border-right: 0;
  }

  .final-cta__inner {
    grid-template-columns: 180px 1fr;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 0 34px;
  }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-toggle {
    display: none;
  }

  .concept__grid {
    grid-template-columns: 0.9fr 1.25fr;
  }
}
