/* ===== 変数 ===== */
:root {
  --bg:       #08080f;
  --bg-mid:   #0f0f1a;
  --bg-light: #161625;
  --text:     #f0ece4;
  --text-dim: rgba(240,236,228,0.6);
  --gold:     #c9a84c;
  --gold-lt:  #e8d4a0;
  --gold-dk:  #8a6d2f;
  --purple:   #7b6fa0;
  --hibi:     #8b3a3a;
  --white:    #ffffff;

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

  --max-w: 900px;
  --px: 20px;
  --radius: 24px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== ナビゲーション ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(8,8,15,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav__logo {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.nav__links {
  display: none;
  gap: 28px;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.btn--nav {
  font-size: 0.78rem;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn--nav:hover { background: var(--gold); color: var(--bg); }

/* ===== ボタン共通 ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn--cta {
  background: linear-gradient(135deg, #c9a84c 0%, #e8d4a0 50%, #c9a84c 100%);
  color: #0a0a0f;
  font-weight: 400;
  padding: 16px 32px;
}
.btn--cta:hover { opacity: 0.88; }
.btn--cta:active { transform: scale(0.98); }
.btn--large { padding: 18px 44px; font-size: 1rem; }
.btn--full { width: 100%; text-align: center; }
.cta-block { text-align: center; margin-top: 36px; }
.cta-micro {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.7;
}
.cta-micro.light { color: rgba(240,236,228,0.5); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 60px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8,8,15,0.92) 0%,
    rgba(8,8,15,0.75) 50%,
    rgba(8,8,15,0.45) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--px) 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero__text { flex: 1; }
.hero__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 20px;
  color: var(--text);
}
.hero__sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 28px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.badge {
  font-size: 0.7rem;
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  color: var(--gold-lt);
  letter-spacing: 0.05em;
}
.hero__price {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
}
.hero__visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .hero__visual { margin-top: 0; }
}

.hero__inner {
  flex-direction: column;
}
@media (min-width: 600px) {
  .hero__inner { flex-direction: row; }
}

/* ===== スマホモックアップ ===== */
.phone {
  position: relative;
  width: 140px;
  aspect-ratio: 9/19;
  background: #0a0a15;
  border-radius: 22px;
  border: 2px solid rgba(201,168,76,0.5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 64px rgba(0,0,0,0.8),
    0 0 30px rgba(201,168,76,0.12);
  overflow: hidden;
}
.phone::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 4px;
  background: rgba(201,168,76,0.3);
  border-radius: 2px;
  z-index: 2;
}
.phone img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.phone--hero { width: 180px; }
.phone--large { width: 160px; }
.phone--small { width: 110px; }

/* ===== セクション共通 ===== */
.section { padding: 80px var(--px); }
.section--dark { background: var(--bg); }
.section--mid  { background: var(--bg-mid); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
.section__lead {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.9;
}
.section__body p {
  font-size: 0.92rem;
  margin-bottom: 1.2em;
  line-height: 1.9;
}
.section__body.center { text-align: center; }
.text--gold { color: var(--gold); font-family: var(--font-serif); }

/* ===== セクション区切り ===== */
.section-divider {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}
.section-divider span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

/* ===== ファウンダーバー ===== */
.founder-bar {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 24px var(--px);
}
.founder-bar__text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-lt);
  line-height: 1.9;
  text-align: center;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
.founder-bar__sig {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ===== 声セクション ===== */
.voice-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.voice-grid::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .voice-grid { overflow-x: visible; }
}
.voice-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 24px 20px;
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .voice-card { min-width: 0; flex-shrink: 1; }
}
.voice-card__text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}
.voice-card__text::before {
  content: '「';
  color: var(--gold);
}
.voice-card__meta {
  font-size: 0.72rem;
  color: rgba(240,236,228,0.35);
}
.voice-note {
  font-size: 0.68rem;
  color: rgba(240,236,228,0.3);
  text-align: center;
  line-height: 1.6;
}

/* ===== フック ===== */
.hook-bar {
  background: var(--bg-light);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 28px var(--px);
}
.hook-bar__text {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.hook-bar__em {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
}

/* ===== 統計 ===== */
.stat-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat-box {
  text-align: center;
  padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  min-width: 120px;
}
.stat-number {
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ===== 差別化 ===== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .diff-grid { grid-template-columns: 1fr; }
}
.diff-card {
  padding: 24px 20px;
  border-radius: 4px;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.diff-card li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 6px 0;
  padding-left: 14px;
  position: relative;
}
.diff-card li::before {
  content: '·';
  position: absolute;
  left: 0;
}
.diff-card--free {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.diff-card--free h3 { color: var(--text-dim); }
.diff-card--mamori {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.3);
}
.diff-card--mamori h3 { color: var(--gold); }
.diff-card--mamori li { color: var(--text); }
.diff-card--mamori .emphasis {
  color: var(--gold);
  font-family: var(--font-serif);
}

/* ===== ギャラリー（スマホモックアップ） ===== */
.gallery-phones {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-x: auto;
  padding: 20px var(--px) 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
@media (min-width: 700px) {
  .gallery-phones {
    justify-content: center;
    overflow-x: visible;
  }
}
.gallery-phones::-webkit-scrollbar { display: none; }
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.phone-wrap figcaption {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  text-align: center;
}
.phone-wrap--center .phone {
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.6),
    0 32px 80px rgba(0,0,0,0.9),
    0 0 60px rgba(201,168,76,0.2);
}
.note {
  font-size: 0.7rem;
  color: rgba(240,236,228,0.35);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ===== 3つの理由 ===== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .reason-grid { grid-template-columns: 1fr; }
}
.reason-card {
  padding: 28px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  text-align: center;
}
.reason-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.reason-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.reason-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.85;
}

/* ===== お届けするもの ===== */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .delivery-grid { grid-template-columns: 1fr; }
}
.delivery-card {
  padding: 20px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  text-align: center;
}
.delivery-card--main {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
}
.delivery-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.delivery-card h3 {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.delivery-card p {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.pdf-chapters {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.chapter {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.chapter:last-child { border-bottom: none; }
.chapter > span {
  font-family: var(--font-en);
  font-size: 1.6rem;
  color: rgba(201,168,76,0.4);
  min-width: 28px;
  line-height: 1;
}
.chapter strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.chapter small {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.pdf-total {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold-lt);
}

/* ===== フューチャーペーシング ===== */
.section--future {
  background: var(--bg);
  padding: 80px var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--future::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123,111,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.section__heading--future {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 36px;
  position: relative;
}
.future-body {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.future-body p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 2.1;
  margin-bottom: 1.4em;
}
.future-closing {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-top: 24px;
}

/* ===== 料金 ===== */
.price-card {
  display: flex;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  padding: 32px 28px;
  background: rgba(201,168,76,0.04);
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  .price-card { flex-direction: column; text-align: center; }
  .price-card__left { display: none; }
}
.price-card__name {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.price-card__amount {
  font-family: var(--font-en);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.price-card__amount small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
}
.price-card__includes {
  margin-bottom: 16px;
}
.price-card__includes li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 4px 0;
}
.price-card__anchor {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.price-card__anchor strong { color: var(--gold-lt); font-weight: 400; }

/* ===== フロー ===== */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}
.flow-steps::-webkit-scrollbar { display: none; }
.flow-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
}
.flow-step__num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  color: rgba(201,168,76,0.4);
  line-height: 1;
  margin-bottom: 10px;
}
.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.flow-step p {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.flow-arrow {
  flex-shrink: 0;
  align-self: center;
  color: rgba(201,168,76,0.35);
  font-size: 1rem;
  padding-top: 20px;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
@media (min-width: 640px) {
  .faq-item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.1); }
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-serif);
  user-select: none;
  gap: 12px;
}
.faq-item__q::before {
  content: 'Q.';
  color: var(--gold);
  font-family: var(--font-en);
  flex-shrink: 0;
}
.faq-item__q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  display: none;
  padding: 0 20px 16px 40px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.85;
}
.faq-item.is-open .faq-item__a { display: block; }

/* ===== 最終CTA ===== */
.section--final {
  position: relative;
  text-align: center;
  padding: 100px var(--px);
}
.final-bg {
  position: absolute;
  inset: 0;
}
.final-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,15,0.85);
}
.final-content {
  position: relative;
  z-index: 1;
}
.final-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
.final-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.9;
}
.disclaimer-inline {
  font-size: 0.68rem;
  color: rgba(240,236,228,0.3);
  margin-top: 20px;
}

/* ===== フッター ===== */
.site-footer {
  background: #05050c;
  padding: 36px var(--px) 28px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer__brand {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 16px;
}
.footer__nav a {
  font-size: 0.72rem;
  color: rgba(240,236,228,0.35);
}
.footer__copy {
  font-size: 0.68rem;
  color: rgba(240,236,228,0.2);
}

/* ===== モーダル ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 300;
  align-items: flex-end;
  justify-content: center;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--bg-mid);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 92svh;
  overflow-y: auto;
  padding: 32px 24px 40px;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
}
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
  color: var(--gold-lt);
}
.modal__lead {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* ===== フォーム ===== */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-serif);
  margin-bottom: 6px;
  color: var(--text-dim);
}
.required {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--hibi);
  background: rgba(139,58,58,0.15);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
}
.optional {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
}
.birthdate-selects {
  display: flex;
  gap: 8px;
}
.birthdate-selects select {
  flex: 1;
  padding: 12px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  appearance: none;
  text-align: center;
}
.birthdate-selects select:focus {
  border-color: var(--gold);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.6;
}
.btn__loading { display: none; }
.btn.is-loading .btn__text  { display: none; }
.btn.is-loading .btn__loading { display: inline; }
