/* =============================================
   ミダクル LP — style.css
   Mobile-first (375px base → 1200px max)
   「和の品格 × 現代的な明朗さ」
   ============================================= */

/* --- CSS Variables --- */
:root {
  --color-bg: #f8f6f3;
  --color-bg-alt: #f0ece5;
  --color-card: #ffffff;
  --color-border: #d4cfc8;
  --color-text: #2c2820;
  --color-muted: #8a8378;
  --color-accent: #6b5c4c;
  --color-gold: #b8963e;
  --color-gold-light: #f5eedc;
  --color-emergency: #8b2020;
  --color-line: #06C755;
  --color-dark: #1a1a1a;
  --color-dark-soft: #2c2820;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;

  --shadow-sm: 0 1px 3px rgba(44, 40, 32, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 40, 32, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 40, 32, 0.12);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 14px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
  margin-bottom: 36px;
  font-family: var(--font-sans);
}

.gold { color: var(--color-gold); }
.red { color: var(--color-emergency); }

/* --- Section spacing --- */
.section {
  padding: 56px 0;
}

.section--white {
  background: var(--color-card);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-dark);
  color: #e8e4df;
}

.section--dark .section-title {
  color: var(--color-gold);
}

.section--dark .section-title::after {
  background: rgba(184, 150, 62, 0.4);
}

/* Decorative section border */
.section--white + .section--alt,
.section--alt + .section--white {
  border-top: 1px solid var(--color-border);
}

/* =============================================
   1. Header
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: #e8e4df;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  padding: 6px 16px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.header__phone:hover {
  border-color: var(--color-gold);
}

.header__phone-icon {
  width: 16px;
  height: 16px;
}

/* =============================================
   2. Hero
   ============================================= */
.hero {
  background: linear-gradient(170deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: #e8e4df;
  padding: 100px 0 60px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 150, 62, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 150, 62, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(184, 150, 62, 0.2);
}

.hero__sub-brand {
  font-size: 12px;
  color: rgba(184, 150, 62, 0.6);
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
  margin-top: -4px;
}

.hero__copy {
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.8;
  font-weight: 700;
  color: #f0ece5;
}

.hero__copy .gold {
  color: var(--color-gold);
  text-shadow: 0 1px 8px rgba(184, 150, 62, 0.15);
}

.hero__desc {
  font-size: 13px;
  line-height: 2.1;
  color: #a8a298;
  font-family: var(--font-sans);
}

.hero__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 4px;
}

.hero__badge-label {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-right: 4px;
}

.hero__badge-price {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__badge-unit {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.btn-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-emergency);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(139, 32, 32, 0.35);
  font-family: var(--font-sans);
}

.btn-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139, 32, 32, 0.45);
}

.btn-phone:active {
  transform: translateY(0);
}

.btn-phone__label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.btn-phone__number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__hours {
  text-align: center;
  font-size: 12px;
  color: rgba(168, 162, 152, 0.8);
  font-family: var(--font-sans);
}

.hero__image {
  display: none;
}

/* =============================================
   3. Trust Bar
   ============================================= */
.trust-bar {
  padding: 36px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-bar__item {
  text-align: center;
  padding: 20px 10px;
  background: var(--color-card);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.trust-bar__item:hover {
  box-shadow: var(--shadow-md);
}

.trust-bar__icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.trust-bar__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.trust-bar__text {
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 500;
}

/* =============================================
   4. Pain Points (お悩み共感)
   ============================================= */
.pain__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.pain__item {
  padding: 14px 16px 14px 40px;
  border-left: 4px solid var(--color-emergency);
  background: var(--color-card);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pain__item::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--color-emergency);
  font-weight: 700;
  font-size: 13px;
}

/* =============================================
   5. Reasons (選ばれる理由)
   ============================================= */
.reasons__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason-card {
  background: var(--color-card);
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow 0.2s;
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
}

.reason-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-gold), #9a7a2e);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(184, 150, 62, 0.25);
}

.reason-card__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--color-text);
}

.reason-card__text {
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--color-muted);
  line-height: 1.9;
}

/* =============================================
   6. Pricing (料金表)
   ============================================= */
.pricing__block {
  margin-bottom: 32px;
}

.pricing__heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--color-gold);
  color: var(--color-text);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--color-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.price-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 15px;
}

.price-table small {
  color: var(--color-muted);
  font-size: 11px;
}

.price-table tr:last-child td { border-bottom: none; }

/* Special offer box */
.offer-box {
  background: linear-gradient(135deg, var(--color-gold-light), #ece3cc);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(184, 150, 62, 0.12);
}

.offer-box__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-box__title::before {
  content: '★';
  color: var(--color-gold);
  font-size: 14px;
}

.offer-box__item {
  font-size: 13px;
  font-family: var(--font-sans);
  line-height: 1.9;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: var(--color-text);
}

.offer-box__item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.pricing__notes {
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.9;
  margin-top: 16px;
  font-family: var(--font-sans);
}

.pricing__notes p {
  margin-bottom: 4px;
}

/* =============================================
   7. Monto (門徒登録)
   ============================================= */
.monto__catch {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--color-text);
}

.monto__sub {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.9;
  font-family: var(--font-sans);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--color-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.compare-table thead th {
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-serif);
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-size: 12px;
}

.compare-table .col-monto {
  background: var(--color-gold-light);
  font-weight: 700;
  color: var(--color-emergency);
  font-size: 14px;
}

.compare-table thead .col-monto {
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold-light), #ece3cc);
}

/* Simulation */
.simulation {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.simulation__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-text);
}

.simulation__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  font-family: var(--font-sans);
  border-bottom: 1px solid var(--color-border);
}

.simulation__row:last-of-type { border-bottom: none; }

.simulation__row--highlight {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 14px;
}

.simulation__result {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-emergency);
}

/* Monto info list */
.monto__info {
  font-size: 13px;
  line-height: 2;
  color: var(--color-muted);
  font-family: var(--font-sans);
}

.monto__info li {
  padding-left: 18px;
  position: relative;
}

.monto__info li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* =============================================
   8. Competitor Comparison (他社比較)
   ============================================= */
.competitor-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 14px;
}

.competitor-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 12px;
  background: var(--color-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.competitor-table th,
.competitor-table td {
  padding: 11px 10px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.competitor-table th:last-child,
.competitor-table td:last-child {
  border-right: none;
}

.competitor-table thead th {
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
  font-family: var(--font-serif);
  color: var(--color-accent);
}

.competitor-table th:first-child,
.competitor-table td:first-child {
  text-align: left;
  white-space: nowrap;
  font-size: 11px;
}

.competitor-table .col-midakuru {
  background: var(--color-gold-light);
  font-weight: 700;
  color: var(--color-text);
}

.competitor-table thead .col-midakuru {
  background: linear-gradient(135deg, var(--color-gold), #9a7a2e);
  color: #fff;
}

.competitor-note {
  font-size: 10px;
  color: var(--color-muted);
  line-height: 1.7;
  font-family: var(--font-sans);
}

/* =============================================
   9. Flow (ご利用の流れ)
   ============================================= */
.flow__timeline {
  position: relative;
  padding-left: 44px;
  max-width: 700px;
  margin: 0 auto;
}

.flow__timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), rgba(184, 150, 62, 0.2));
}

.flow__step {
  position: relative;
  margin-bottom: 32px;
}

.flow__step:last-child { margin-bottom: 0; }

.flow__number {
  position: absolute;
  left: -44px;
  top: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--color-gold), #9a7a2e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(184, 150, 62, 0.25);
}

.flow__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.flow__text {
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--color-muted);
  line-height: 1.9;
}

/* =============================================
   10. FAQ
   ============================================= */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.faq__question::before {
  content: 'Q.';
  flex-shrink: 0;
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 17px;
}

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  border-radius: 1px;
}

.faq__icon::before {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s;
}

.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer-inner {
  padding: 0 18px 18px 18px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  font-family: var(--font-sans);
}

/* =============================================
   11. Area (対応エリア)
   ============================================= */
.area__map {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.area__tag {
  display: inline-block;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--color-text);
  transition: background 0.2s, border-color 0.2s;
}

.area__tag:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
}

/* =============================================
   12. Profile (住職紹介)
   ============================================= */
.profile__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.profile__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(184, 150, 62, 0.15);
}

.profile__photo-placeholder {
  font-size: 11px;
  color: var(--color-muted);
  text-align: center;
  font-family: var(--font-sans);
}

.profile__info {
  text-align: center;
}

.profile__temple {
  font-size: 12px;
  color: var(--color-gold);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
}

.profile__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.profile__role {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.profile__text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-accent);
  max-width: 600px;
  font-family: var(--font-sans);
}

/* =============================================
   13. Final CTA
   ============================================= */
.final-cta {
  text-align: center;
  background: linear-gradient(170deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(184, 150, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.final-cta .section-title {
  color: var(--color-gold);
  font-size: 22px;
}

.final-cta__sub {
  font-size: 13px;
  color: #a8a298;
  margin-bottom: 28px;
  font-family: var(--font-sans);
}

.final-cta__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 28px;
}

.final-cta .btn-phone {
  padding: 20px 32px;
}

.final-cta .btn-phone__number {
  font-size: 24px;
}

.final-cta .btn-phone__label {
  font-size: 12px;
}

.final-cta__info {
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.9;
  font-family: var(--font-sans);
}

/* =============================================
   14. Sticky CTA
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta .btn-phone {
  flex: 1;
  padding: 10px 16px;
  flex-direction: row;
  gap: 6px;
}

.sticky-cta .btn-phone__number {
  font-size: 16px;
}

/* =============================================
   15. Footer
   ============================================= */
.footer {
  background: var(--color-dark);
  color: #a8a298;
  padding: 48px 0 100px;
  font-size: 12px;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}

.footer__links a {
  color: #a8a298;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--color-gold); }

.footer__org {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.footer__copy {
  text-align: center;
  color: var(--color-muted);
  font-size: 10px;
  font-family: var(--font-sans);
}

/* =============================================
   Scroll Reveal
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   PC Responsive (min-width: 768px)
   ============================================= */
@media (min-width: 768px) {
  .section { padding: 80px 0; }

  .section-title { font-size: 26px; margin-bottom: 10px; }
  .section-title::after { width: 48px; margin-top: 16px; }

  .header__phone { display: flex; }

  /* Hero 2-column */
  .hero { min-height: auto; padding: 130px 0 90px; }
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .hero__content { flex: 1; }
  .hero__brand { font-size: 48px; }
  .hero__image {
    display: flex;
    flex: 0 0 380px;
    height: 420px;
    background: linear-gradient(135deg, var(--color-accent), #4a3f32);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    color: rgba(168, 162, 152, 0.5);
    font-size: 13px;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(184, 150, 62, 0.15);
  }
  .hero__copy { font-size: 30px; }
  .hero__badge-price { font-size: 36px; }
  .hero__badge-label,
  .hero__badge-unit { font-size: 14px; }

  /* Trust bar */
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  /* Reasons 2-col */
  .reasons__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Profile side by side */
  .profile__wrap {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
  .profile__info { text-align: left; }

  /* Area map taller */
  .area__map { height: 400px; }

  /* Sticky CTA hidden on PC */
  .sticky-cta { display: none; }

  /* Footer bottom padding reset */
  .footer { padding-bottom: 48px; }
}

@media (min-width: 1024px) {
  .hero__image { flex: 0 0 460px; height: 480px; }
  .hero__copy { font-size: 34px; }
  .hero__brand { font-size: 52px; }

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