/* ==========================================================================
   MISS KITTYMAE JEWELS — shared styles
   ========================================================================== */

:root {
  /* Real brand colors, sampled directly from the logo (img/logo.png) */
  --gold: #d4aa52;
  --gold-dark: #a8813f;
  --charcoal: #000000;
  --charcoal-soft: #201c1a;
  --cream: #ffffff;
  --cream-dark: #f7ecd9;
  --white: #ffffff;
  --text: #2a2521;
  --text-muted: #6b625a;
  --success: #4f7a5c;

  /* Reserved for full-bleed black statement sections */
  --bg-dark: #0c0a08;
  --on-dark: #f4ecdb;
  --on-dark-muted: #cabb9b;

  --radius: 18px;
  --shadow: 0 2px 20px rgba(32, 28, 26, 0.07);
  --shadow-lg: 0 18px 40px rgba(32, 28, 26, 0.13);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 20px 56px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Editorial homepage sections (index.html only)
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 16px 6vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(32, 28, 26, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  flex-shrink: 0;
}
.nav-icon svg { width: 18px; height: 18px; fill: currentColor; }

.hero-full {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
}

.hero-full-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 6vw 48px;
  color: var(--white);
}

.hero-full-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.12;
}

.hero-full-content p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 0 22px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  flex-shrink: 0;
}

.pill-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, letter-spacing 0.25s ease;
}
.pill-btn:hover {
  transform: translateY(-2px);
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(32, 28, 26, 0.18);
}

.pill-btn-dark { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--charcoal); }
.pill-btn-light { background: var(--white); color: var(--charcoal); }
.pill-btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.7); }

.section-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 6vw;
}
.section-wrap.tight { padding-top: 40px; padding-bottom: 40px; }

.eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin: 0;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 20px;
}

.eyebrow-left { text-align: left; }
.eyebrow-left::after { margin-left: 0; }

.inline-icon {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
  vertical-align: -3px;
  margin-right: 2px;
}

.section-heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--charcoal);
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.two-col .col-text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--charcoal);
}

.two-col .col-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.collection-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow);
  background: linear-gradient(155deg, #7a5c2e 0%, var(--gold-dark) 50%, var(--gold) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-tile:hover img { transform: scale(1.06); }

.collection-tile .tile-icon {
  position: absolute;
  top: 18px;
  left: 18px;
}

.collection-tile .tile-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.4;
  opacity: 0.92;
  transition: transform 0.2s ease;
}

.collection-tile:hover .tile-icon svg { transform: scale(1.12); }

.collection-tile .tile-label {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.split-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}

a.split-panel {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.split-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 55%);
}

.split-panel-content {
  position: relative;
  z-index: 1;
  padding: 0 20px 26px;
  color: var(--white);
}

.split-panel-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 14px;
}

.brand-statement {
  background: var(--cream-dark);
  text-align: center;
  padding: 70px 6vw;
}

.brand-statement h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--charcoal);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}

.brand-statement p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- value proposition cards ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 170, 82, 0.12);
}

.value-card .value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.3;
}

.value-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--charcoal);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- feature highlight cards ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 170, 82, 0.14);
  transition: background 0.25s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.feature-card .feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.4;
  transition: stroke 0.25s ease;
}

.feature-card:hover .feature-icon svg { stroke: var(--white); }

.feature-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--charcoal);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- benefits (outcome-focused) ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(212, 170, 82, 0.07);
  border: 1px solid rgba(212, 170, 82, 0.18);
}

.benefit-item .benefit-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item .benefit-check svg {
  width: 13px;
  height: 13px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2.4;
}

.benefit-item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--charcoal);
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- honest testimonial / social proof ---------- */

.proof-panel {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 34px;
  box-shadow: var(--shadow);
}

.proof-panel svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 18px;
}

.proof-panel p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ---------- FAQ accordion ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary .faq-plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-item summary .faq-plus::before,
.faq-item summary .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  transition: transform 0.2s ease;
}

.faq-item summary .faq-plus::before {
  top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%);
}

.faq-item summary .faq-plus::after {
  left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%);
}

.faq-item[open] summary .faq-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* ---------- final CTA ---------- */

.final-cta {
  text-align: center;
  padding: 80px 6vw;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 14px;
}

.final-cta p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ---------- structured footer ---------- */

.site-footer {
  background: var(--white);
  border-top: 1px solid rgba(32, 28, 26, 0.08);
  padding: 56px 6vw 28px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 14px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

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

.footer-col li { margin-bottom: 9px; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--gold-dark); }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 28, 26, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 720px) {
  .value-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .split-photos { grid-template-columns: 1fr; }
  .hero-full { min-height: 78vh; }
  .nav-links { order: 3; width: 100%; justify-content: center; gap: 16px; }
}

/* ---------- header / brand ---------- */

.brand-header {
  text-align: center;
  margin-bottom: 24px;
}

.brand-name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.brand-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- section labels ---------- */

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 28px 0 10px 4px;
}

/* ---------- link buttons ---------- */

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  border: 1px solid rgba(32, 28, 26, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover, .btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn .icon { font-size: 1.2rem; flex-shrink: 0; }
.btn .icon svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.btn .btn-arrow { margin-left: auto; opacity: 0.4; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  border-color: var(--gold-dark);
}

.btn-primary .btn-arrow { opacity: 0.7; }

.btn-gold {
  border-left: 4px solid var(--gold);
  background: linear-gradient(0deg, rgba(184,146,90,0.06), rgba(184,146,90,0.06)), var(--white);
}

/* ---------- disclosure badges (pawnable / non-pawnable) ---------- */

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.badge-pawnable {
  background: rgba(79, 122, 92, 0.14);
  color: var(--success);
}

.badge-not-pawnable {
  background: rgba(184, 146, 90, 0.16);
  color: var(--gold-dark);
}

/* ---------- catalog photo gallery (by type) ---------- */

.gallery-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--charcoal);
  margin: 4px 0 10px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.25s ease;
}

.photo-strip img:hover { transform: scale(1.04); }

@media (max-width: 380px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- product/collection cards ---------- */

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(212, 170, 82, 0.20);
}

.card h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.card p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card .card-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
}

/* ---------- social row ---------- */

.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 28px 0 8px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--charcoal);
}

.social-row svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- footer ---------- */

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer a { color: var(--gold-dark); text-decoration: none; }

/* ---------- back link (sub-pages) ---------- */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 18px;
}

/* ---------- info banner ---------- */

.info-banner {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
}

@media (max-width: 380px) {
  .brand-name { font-size: 1.4rem; }
}

/* ---------- keyboard focus ---------- */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
