/* ============================================================
   EXTRA GOLF — Member Guide v2
   Design DNA: 黒×ゴールド / editorial-luxury / airy grid
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Noto+Serif+JP:wght@500;600&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark2: #1c1c1c;
  --dark3: #232323;
  --gold: #c9a96e;
  --gold-light: #e8d4a8;
  --gold-dim: rgba(201, 169, 110, 0.14);
  --gold-border: rgba(201, 169, 110, 0.28);
  --gold-border-strong: rgba(201, 169, 110, 0.55);
  --gold-glow: rgba(201, 169, 110, 0.2);
  --white: #f5f5f0;
  --gray: #b4b4ac;
  --gray-dim: #7a7a72;
  --accent: #e8c47a;
  --warn: #ff9f5a;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-heading: 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --radius: 4px;
  --ease: cubic-bezier(0.25, 0.6, 0.3, 1);
  --shadow-gold: 0 0 28px var(--gold-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 17px; scroll-padding-top: 5.5rem; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1rem;
}

/* 背景の微かなゴールドグロー（ブランドの空気感） */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 480px at 50% -12%, rgba(201, 169, 110, 0.09), transparent 62%),
    radial-gradient(800px 400px at 100% 105%, rgba(201, 169, 110, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--accent); }

::selection { background: var(--gold); color: var(--black); }

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

/* ── Header ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.85rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo a {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
}

.logo .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-dim);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links a[aria-current='page'] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-links .nav-cta a {
  margin-left: 0.6rem;
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius);
  color: var(--gold);
  padding: 0.45rem 1.05rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-links .nav-cta a:hover { background: var(--gold); color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold);
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--gold-border);
    padding: 0.5rem 1rem 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 0.5rem; border-bottom: 1px solid rgba(201, 169, 110, 0.1); font-size: 0.98rem; }
  .nav-links a[aria-current='page'] { border-bottom-color: var(--gold); }
  .nav-links .nav-cta a { margin: 0.75rem 0 0; text-align: center; }
}

/* ── Layout ─────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.35rem 4.5rem;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--gray-dim);
  margin-bottom: 1.75rem;
  letter-spacing: 0.03em;
}

.breadcrumbs a { color: var(--gray-dim); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 0.45rem; color: rgba(201, 169, 110, 0.4); }
.breadcrumbs .current { color: var(--gray); }

/* ── Hero ───────────────────────────────── */
.hero {
  text-align: center;
  padding: 2.5rem 0 3rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero .label {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.hero .lead {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 40em;
  margin: 0 auto;
  line-height: 1.95;
}

.hero .lead strong { color: var(--gold-light); font-weight: 500; }

/* ── Search（index） ─────────────────────── */
.guide-search {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.guide-search input {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.95rem 1.15rem 0.95rem 3rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.guide-search input::placeholder { color: var(--gray-dim); }

.guide-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.guide-search .icon {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  display: flex;
}

.search-empty {
  display: none;
  text-align: center;
  color: var(--gray-dim);
  padding: 2rem 0;
  font-size: 0.95rem;
}

.search-empty.visible { display: block; }

/* ── Quick chips ────────────────────────── */
.quick-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: -1rem auto 2.75rem;
  max-width: 640px;
}

.quick-chips a {
  font-size: 0.83rem;
  color: var(--gray);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}

.quick-chips a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Sections ───────────────────────────── */
.section { margin-bottom: 3rem; }

.section > h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section > h2 .h-icon { display: inline-flex; color: var(--gold); opacity: 0.85; }

/* ── Hub cards（index） ───────────────────── */
.hub-grid { display: grid; gap: 0.9rem; }

@media (min-width: 560px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .hub-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.hub-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 85%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  color: var(--white);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hub-link::after {
  content: '→';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.hub-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.hub-link:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.hub-link .hub-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.07);
}

.hub-link .title { font-weight: 500; font-size: 1.02rem; margin-bottom: 0.2rem; letter-spacing: 0.03em; }
.hub-link .desc { font-size: 0.88rem; color: var(--gray); font-weight: 300; line-height: 1.65; }

/* ── Cards ──────────────────────────────── */
.card-grid { display: grid; gap: 0.9rem; }

@media (min-width: 640px) {
  .card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
}

.card p, .card li { color: var(--gray); font-size: 0.96rem; }
.card ul { padding-left: 1.1rem; }
.card li { margin-bottom: 0.45rem; }

/* ── Tables ─────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  margin: 0.65rem 0 1.15rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

th, td {
  border-bottom: 1px solid rgba(201, 169, 110, 0.16);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

td:last-child, th:last-child { white-space: normal; }

thead th {
  background: var(--dark2);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold-border);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(201, 169, 110, 0.05); }

td { color: var(--gray); }
td strong { color: var(--white); font-weight: 500; }

.price { font-feature-settings: 'tnum'; letter-spacing: 0.02em; }

/* ── Notes / Highlights ─────────────────── */
.note {
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  font-size: 0.96rem;
  color: var(--gray);
  margin: 1.15rem 0;
  line-height: 1.85;
}

.note strong { color: var(--white); font-weight: 500; }

.highlight-box {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.03));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 1.15rem 0;
}

.highlight-box h3 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.highlight-box p, .highlight-box li { color: var(--gray); font-size: 0.98rem; margin-bottom: 0.4rem; }
.highlight-box strong { color: var(--white); font-weight: 500; }
.highlight-box ul { padding-left: 1.2rem; }

/* ── Steps ──────────────────────────────── */
.steps { list-style: none; padding: 0; counter-reset: step; }

.steps li {
  position: relative;
  padding: 0 0 1.35rem 3rem;
  color: var(--gray);
  font-size: 0.99rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  z-index: 1;
}

.steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 2.1rem;
  bottom: 0.15rem;
  width: 1px;
  background: linear-gradient(var(--gold-border), rgba(201, 169, 110, 0.08));
}

.steps li strong { color: var(--white); font-weight: 500; }

/* ── Accordion（FAQ的なつまみ読み） ─────────── */
.accordion {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0.75rem 0;
}

.accordion details + details { border-top: 1px solid rgba(201, 169, 110, 0.16); }

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.25rem;
  color: var(--white);
  font-weight: 400;
  font-size: 0.99rem;
  position: relative;
  transition: background 0.25s var(--ease);
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: '＋';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease);
}

.accordion details[open] summary::after { content: '－'; }
.accordion summary:hover { background: rgba(201, 169, 110, 0.06); }

.accordion .acc-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.85;
}

.accordion .acc-body strong { color: var(--white); font-weight: 500; }

/* ── Buttons / CTA ──────────────────────── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  background: linear-gradient(135deg, var(--gold), #a88b4a);
  color: var(--black);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.07em;
  border-radius: var(--radius);
  transition: filter 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); color: var(--gold); filter: none; }

.btn-line {
  background: transparent;
  border: 1px solid #06c755;
  color: #06c755;
}

.btn-line:hover { background: rgba(6, 199, 85, 0.12); color: #2bd97c; filter: none; box-shadow: 0 0 22px rgba(6, 199, 85, 0.15); }

/* ── LINEサポート帯（全ページ共通） ─────────── */
.line-cta {
  margin-top: 3.25rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--dark2), var(--dark));
  padding: 1.6rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.line-cta .txt h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.line-cta .txt p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; }

/* ── ページ送り（前後ナビ） ─────────────────── */
.page-nav {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}

@media (min-width: 560px) { .page-nav { grid-template-columns: 1fr 1fr; } }

.page-nav a {
  display: block;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  color: var(--gray);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.page-nav a:hover { border-color: var(--gold); color: var(--gold-light); }
.page-nav a.next { text-align: right; }
.page-nav .dir { display: block; font-size: 0.72rem; letter-spacing: 0.28em; color: var(--gold); margin-bottom: 0.25rem; text-transform: uppercase; }
.page-nav .ttl { font-size: 0.96rem; font-weight: 400; }

/* ── Campaign ───────────────────────────── */
.page-campaign .hero::after { width: 120px; }

.campaign-banner {
  text-align: center;
  padding: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.campaign-card {
  background: linear-gradient(160deg, #1a1814 0%, var(--dark) 100%);
  border: 1px solid var(--gold-border-strong);
  box-shadow: var(--shadow-gold);
  border-radius: var(--radius);
  padding: 1.7rem 1.35rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.campaign-card:hover { transform: translateY(-3px); border-color: var(--gold); }

.campaign-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.campaign-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.campaign-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

.campaign-card .emph {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.page-campaign table td strong,
.page-campaign table td.campaign-price { color: var(--gold-light); font-size: 1.03rem; }

/* ── Payment summary ────────────────────── */
.payment-summary { display: grid; gap: 0.7rem; margin: 1rem 0; }

.payment-summary .item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.payment-summary .item .label { color: var(--gray); }
.payment-summary .item .value { color: var(--white); font-weight: 500; text-align: right; }

ul.bullet-list { padding-left: 1.25rem; color: var(--gray); font-size: 0.99rem; }
ul.bullet-list li { margin-bottom: 0.5rem; }
ul.bullet-list strong { color: var(--white); font-weight: 500; }

/* ── 写真つきガイド ─────────────────────────── */
.photo-guide-banner {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.8;
}

.photo-guide-banner strong { color: var(--gold-light); }

.guide-figure {
  margin: 0;
  border: 1px solid var(--gold-border);
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
}

.guide-figure img { display: block; width: 100%; height: auto; }

.guide-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--gold-border);
}

.guide-figure figcaption strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.94rem;
}

.guide-figure--detail { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.guide-figure--detail img { max-height: min(72vh, 640px); object-fit: contain; background: #0d0d0d; }

.figure-stack { display: grid; gap: 1.25rem; margin: 1.5rem 0 2rem; }

@media (min-width: 768px) {
  .figure-stack.two-up { grid-template-columns: 1fr 1fr; align-items: start; }
}

.callout-red { display: inline-block; color: var(--warn); font-weight: 600; }

.step-link-photo { display: inline-block; margin-top: 0.35rem; font-size: 0.9rem; color: var(--gold); font-weight: 500; }

.guide-figure .tag-on-img {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 120, 60, 0.5);
  border-radius: 2px;
  color: var(--warn);
  background: rgba(255, 120, 60, 0.08);
}

/* ── Footer ─────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--gold-border);
  padding: 2.5rem 1.35rem 2.75rem;
  color: var(--gray-dim);
  font-size: 0.86rem;
}

.footer-inner { max-width: 960px; margin: 0 auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-nav a { color: var(--gray); font-size: 0.86rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-note { line-height: 1.8; }
.footer-note a { color: var(--gray); text-decoration: underline; text-underline-offset: 3px; }
.footer-note a:hover { color: var(--gold); }

/* ── Back to top ────────────────────────── */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--gold-border-strong);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 90;
}

.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--black); }

/* ── Misc ───────────────────────────────── */
.text-muted { color: var(--gray); font-size: 0.99rem; }
.text-muted strong { color: var(--white); font-weight: 500; }

@media (max-width: 720px) {
  html { font-size: 16px; }
  .hero { padding: 1.9rem 0 2.4rem; }
  th, td { padding: 0.75rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
