/* =========================================================
   Osaka Bay Compass — Editorial Travel Guide
   ========================================================= */

:root {
  --bg: #f8f6f1;
  --bg-2: #f1ede4;
  --shell: #ffffff;
  --ink: #14233d;
  --ink-2: #324158;
  --muted: #6b7689;
  --line: #e2dccf;
  --line-2: #ccc4b3;
  --gold: #b58536;
  --gold-2: #d4a14a;
  --gold-soft: #f0e2c2;
  --deep: #0a2540;
  --deep-2: #123052;
  --sea: #1a4669;
  --danger: #b7472a;
  --ok: #2f7d4a;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 2px 6px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08), 0 2px 6px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 20px 48px rgba(10, 37, 64, 0.12);
  --max-w: 1180px;

  --serif-display: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
  --serif-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --sans: 'Inter', 'Hiragino Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; }

p { margin: 0 0 1.1em 0; }

h1, h2, h3, h4 {
  margin: 0 0 .4em 0;
  font-family: var(--serif-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--deep);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: var(--radius);
}
.skip-link:focus { left: 12px; color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-h {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--deep);
}

.section-lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 28px 0;
}

.section-head {
  text-align: center;
  margin: 0 auto 36px auto;
  max-width: 720px;
}
.section-head .eyebrow { color: var(--gold); }
.section-head .section-lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   Buttons
   ========================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: var(--deep);
  color: #fff;
  border: 1px solid var(--deep);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: background .2s ease, transform .15s ease;
}
.btn-primary:hover {
  background: var(--deep-2);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, color .2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.btn-block { width: 100%; }

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--deep);
}
.nav-brand:hover { color: var(--deep); }
.nav-mark { width: 28px; height: 28px; }
.nav-brand-name { letter-spacing: .01em; }

.nav-desktop {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--radius);
}
.nav-link:hover {
  background: var(--bg-2);
  color: var(--ink);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .03em;
}
.lang-btn:hover { background: var(--bg-2); border-color: var(--gold); }
.lang-btn-icon { width: 14px; height: 14px; display: inline-flex; color: var(--ink-2); }
.lang-btn-icon svg { width: 100%; height: 100%; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px 24px 22px;
  display: flex;
  flex-direction: column;
}
.mobile-menu[hidden] { display: none; }
.mobile-link {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
}
.mobile-link:hover { color: var(--gold); }

@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 90px;
  max-width: 920px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 161, 74, 0.18);
  border: 1px solid rgba(212, 161, 74, 0.5);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.hero-heading {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero-subheading {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .hero { min-height: 520px; }
  .hero-inner { padding: 60px 24px 70px; }
}

/* =========================================================
   INTRO
   ========================================================= */

.intro {
  padding: 90px 0;
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.intro-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intro-body .section-h {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 18px;
}
.intro-body p {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .intro { padding: 64px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   STATS
   ========================================================= */

.stats {
  background: var(--deep);
  color: #fff;
  padding: 56px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--serif-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* =========================================================
   ARTICLES
   ========================================================= */

.articles {
  padding: 96px 0 80px;
  background: var(--bg);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.article-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.article-media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .article-media img { transform: scale(1.04); }

.article-text {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.article-num {
  font-family: var(--serif-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  margin: 0;
}
.article-title {
  font-size: 21px;
  line-height: 1.25;
  color: var(--deep);
  margin: 2px 0 8px 0;
}
.article-excerpt {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.article-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
  border-radius: var(--radius);
  margin-top: auto;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.article-toggle:hover {
  background: var(--bg-2);
  border-color: var(--gold);
  color: var(--gold);
}
.article-expand {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.article-expand.open { display: block; }
.article-expand p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.article-expand p:last-child { margin-bottom: 0; }

/* =========================================================
   TIPS
   ========================================================= */

.tips {
  padding: 90px 0;
  background: var(--bg-2);
}
.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tip-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.tip-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.tip-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: var(--gold-2);
  border-radius: 50%;
  margin-bottom: 6px;
}
.tip-icon svg { width: 22px; height: 22px; }
.tip-h {
  font-family: var(--serif-display);
  font-size: 18px;
  color: var(--deep);
  margin: 0;
}
.tip-p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   SEASONAL GUIDE
   ========================================================= */

.seasonal {
  padding: 90px 0;
  background: var(--bg);
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.season-card {
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.season-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  pointer-events: none;
}
.season-card > * { position: relative; z-index: 1; }
.season-spring { background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%); }
.season-summer { background: linear-gradient(135deg, #9d4b00 0%, #e07b39 100%); }
.season-autumn { background: linear-gradient(135deg, #7f4f24 0%, #b5752a 100%); }
.season-winter { background: linear-gradient(135deg, #1b4965 0%, #3a8fb7 100%); }
.season-icon { width: 36px; height: 36px; margin-bottom: 6px; }
.season-icon svg { width: 100%; height: 100%; color: rgba(255,255,255,.9); }
.season-h {
  font-family: var(--serif-display);
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.season-period {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin: 0 0 14px 0;
}
.season-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.season-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.95);
}
.season-list li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
  padding: 80px 0 96px;
  background: var(--bg);
}
.newsletter-card {
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  box-shadow: var(--shadow-md);
}
.newsletter-card .eyebrow { color: var(--gold-2); }
.newsletter-card .section-h {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 12px;
}
.newsletter-card .newsletter-text p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
}
.field input[type=text],
.field input[type=email] {
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field input[type=text]::placeholder,
.field input[type=email]::placeholder { color: rgba(255,255,255,.45); }
.field input[type=text]:focus,
.field input[type=email]:focus {
  border-color: var(--gold-2);
  background: rgba(255,255,255,.12);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.check input[type=checkbox]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check input[type=checkbox]:checked + .check-mark {
  display: inline-flex;
}
.check-mark {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.check-mark svg { width: 14px; height: 14px; }

.newsletter-form .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  margin-top: 4px;
}
.newsletter-form .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.form-error {
  color: #ffc7b8;
  font-size: 13px;
  margin: 4px 0 0 0;
}

.newsletter-success {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212, 161, 74, .5);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.newsletter-success .section-h {
  font-size: 22px;
  margin-bottom: 6px;
}
.newsletter-success p {
  color: rgba(255,255,255,.85);
  margin: 0;
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .newsletter-card { grid-template-columns: 1fr; padding: 32px 26px; gap: 24px; }
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: 80px 0 96px;
  background: var(--bg-2);
}
.faq-shell {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq-item {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--serif-display);
  font-size: 17px;
  color: var(--deep);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-answer {
  padding: 0 22px 20px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col-about .footer-p {
  font-size: 14.5px;
  line-height: 1.6;
}
.footer-col-about .footer-note {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.footer-h {
  font-family: var(--serif-display);
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-list a:hover { color: var(--gold-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
.footer-legal {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 540px;
  width: calc(100% - 36px);
  background: var(--deep);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 90;
}
.cookie-banner[hidden] { display: none; }
.cookie-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  flex: 1;
  color: rgba(255,255,255,.9);
}
.cookie-banner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  padding: 8px 16px;
  font-size: 13px;
}
.cookie-banner .btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }

@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-page {
  padding: 64px 0 90px;
}
.legal-page .container {
  max-width: 780px;
}
.legal-page-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.legal-page-h {
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--deep);
  margin-bottom: 12px;
}
.legal-page-lede {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 30px;
}
.legal-page-meta {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  margin-bottom: 32px;
}
.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--deep);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-page ul {
  padding-left: 20px;
  list-style: disc;
  margin: 0 0 1em 0;
}
.legal-page ul li { margin-bottom: 6px; }
.legal-contact-wrap {
  font-weight: 600;
  color: var(--deep);
  word-break: break-all;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--deep);
}
.back-link::before {
  content: '\2190';
  font-size: 16px;
  color: var(--gold);
}

/* =========================================================
   SCROLL REVEAL — JS-gated, reduced-motion friendly
   ========================================================= */

.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}
