/* ==========================================================================
   St. Barnabas Orthodox Church — Design System
   Palette: candlelit byzantine — ink plum, wine, gold, parchment.
   Type: Cormorant Garamond (display serif) + Inter (body sans), via CDN.
   See CLAUDE.md for component documentation.
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #171118;          /* near-black plum — footers, overlays, dark bands */
  --plum: #241a26;         /* dark band background */
  --wine: #59252f;         /* byzantine burgundy — accents, quote band */
  --wine-deep: #3d1a22;    /* deep wine — gradients */
  --gold: #c3993f;         /* primary gold — buttons, rules, eyebrows */
  --gold-deep: #a67f2e;    /* hover gold */
  --gold-soft: #d9bc74;    /* gold on dark backgrounds */
  --gold-pale: #efe3c2;    /* faint gold — borders on parchment */
  --parchment: #f6f1e7;    /* section background (alternate) */
  --paper: #fbf8f1;        /* main page background */
  --white-warm: #fffdf8;
  --text: #3b333d;         /* body text on light */
  --text-soft: #6d6270;    /* muted text on light */
  --text-on-dark: #e9e2d5; /* body text on dark */

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1140px;
  --radius: 6px;
  --shadow-soft: 0 10px 40px -12px rgba(23, 17, 24, 0.18);
  --shadow-lift: 0 18px 50px -14px rgba(23, 17, 24, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--wine); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
p { margin: 0 0 1.2em; }

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}
.container--narrow { width: min(820px, calc(100% - 3rem)); margin-inline: auto; }

/* ---------- Eyebrow / ornament ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.on-dark .eyebrow, .eyebrow--light { color: var(--gold-soft); }

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament svg { flex: none; }
.ornament--center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn--gold {
  background: linear-gradient(135deg, #d0a94e, var(--gold) 55%, #b78c33);
  color: #241a10;
  box-shadow: 0 8px 24px -8px rgba(195, 153, 63, 0.55);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(195, 153, 63, 0.7);
  color: #171008;
}
.btn--ghost {
  border-color: rgba(233, 226, 213, 0.55);
  color: var(--white-warm);
  background: rgba(23, 17, 24, 0.18);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}
.btn--outline-dark {
  border-color: rgba(59, 51, 61, 0.35);
  color: var(--ink);
}
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 1.1rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header.scrolled {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(195, 153, 63, 0.25), 0 10px 30px -18px rgba(23, 17, 24, 0.4);
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white-warm);
}
.brand svg { transition: filter 0.3s; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  color: var(--gold-soft);
}
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .brand-sub { color: var(--gold-deep); }
.brand:hover { color: var(--gold-soft); }
.site-header.scrolled .brand:hover { color: var(--wine); }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.85);
  position: relative;
  padding: 0.3rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: right 0.3s var(--ease);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-soft); }
.site-header.scrolled .site-nav a { color: var(--text); }
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a[aria-current="page"] { color: var(--gold-deep); }

.site-nav .nav-give {
  border: 1px solid var(--gold-soft);
  border-radius: 3px;
  padding: 0.55rem 1.3rem;
  color: var(--gold-soft);
}
.site-nav .nav-give::after { display: none; }
.site-nav .nav-give:hover { background: var(--gold); border-color: var(--gold); color: #241a10; }
.site-header.scrolled .nav-give { border-color: var(--gold); color: var(--gold-deep); }
.site-header.scrolled .nav-give:hover { background: var(--gold); color: #241a10; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white-warm);
  margin: 6px 0;
  transition: all 0.35s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
body.nav-open .nav-toggle span { background: var(--white-warm); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(89, 37, 47, 0.35), transparent 60%),
      var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav a { font-size: 1rem; color: var(--text-on-dark); }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  color: var(--white-warm);
  isolation: isolate;
  overflow: hidden;
}
.hero--page { min-height: 62vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroDrift 14s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
}

/* The signature image treatment: layered plum/wine gradient + soft vignette */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(168deg,
      rgba(23, 17, 24, 0.72) 0%,
      rgba(61, 26, 34, 0.44) 46%,
      rgba(23, 17, 24, 0.88) 100%),
    radial-gradient(90% 60% at 50% 110%, rgba(23, 17, 24, 0.75), transparent 70%);
}
.hero::after {
  /* faint gold light bleeding from above, like lamplight */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(55% 40% at 72% 8%, rgba(195, 153, 63, 0.16), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
  padding: 9rem 0 6.5rem;
}
.hero--page .hero-content { padding-bottom: 4.5rem; }
.hero h1 { color: var(--white-warm); max-width: 17ch; text-wrap: balance; }
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  max-width: 54ch;
  color: rgba(233, 226, 213, 0.92);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
  margin: 0 0 1.6rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--parchment { background: var(--parchment); }
.section--dark {
  background:
    radial-gradient(110% 80% at 85% -10%, rgba(89, 37, 47, 0.5), transparent 60%),
    var(--plum);
  color: var(--text-on-dark);
}
.section--dark h2, .section--dark h3 { color: var(--white-warm); }
.section--wine {
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(195, 153, 63, 0.12), transparent 55%),
    linear-gradient(150deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: var(--text-on-dark);
}
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .ornament { justify-content: center; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section--dark .section-head p, .section--wine .section-head p { color: rgba(233, 226, 213, 0.8); }

/* ---------- Two-column feature ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--rev > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
}

/* Framed image: double gold frame with offset, subtle warm filter */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  filter: saturate(1.04) contrast(1.02);
}
.img-frame::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(195, 153, 63, 0.55);
  border-radius: var(--radius);
  z-index: -1;
}
.img-frame--left::after { inset: 14px 14px -14px -14px; }
.img-frame figcaption {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-top: 1rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.02rem;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--white-warm);
  border: 1px solid rgba(195, 153, 63, 0.22);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: 0.4rem; }
.card .card-meta {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.8rem;
}
.card p { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 0; }

/* Photo link cards (Explore grid) */
.photo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white-warm);
  isolation: isolate;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); color: var(--white-warm); }
.photo-card .pc-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.photo-card:hover .pc-bg { transform: scale(1.05); }
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(185deg, rgba(23, 17, 24, 0.12) 30%, rgba(23, 17, 24, 0.88) 100%);
  transition: background 0.4s;
}
.photo-card-body { padding: 2rem; }
.photo-card h3 { color: var(--white-warm); margin-bottom: 0.3rem; }
.photo-card p { font-size: 0.92rem; color: rgba(233, 226, 213, 0.85); margin: 0; }
.photo-card .pc-cta {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.photo-card .pc-cta::after { content: " →"; transition: margin 0.3s; }
.photo-card:hover .pc-cta::after { margin-left: 4px; }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--white-warm);
}
.quote-band cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Schedule rows ---------- */
.schedule {
  border-top: 1px solid rgba(195, 153, 63, 0.35);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.5rem 0.2rem;
  border-bottom: 1px solid rgba(195, 153, 63, 0.35);
}
.schedule-row .s-name { font-family: var(--serif); font-size: 1.5rem; color: inherit; }
.schedule-row .s-time {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Prose (long-form text pages) ---------- */
.prose h2 { margin-top: 2.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1.06rem; color: #453c47; }
.prose .lead-in {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--ink);
}
.prose blockquote {
  margin: 2.2em 0;
  padding: 0.4em 0 0.4em 1.6em;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--wine);
}
.prose ol, .prose ul {
  font-size: 1.06rem;
  color: #453c47;
  padding-left: 1.4em;
  margin: 0 0 1.2em;
}
.prose ol li, .prose ul li { margin-bottom: 0.7em; }

/* Contents block for long reference pages (theology catechism) */
.toc {
  background: var(--white-warm);
  border: 1px solid rgba(195, 153, 63, 0.25);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem 2.2rem;
  margin: 2.6rem 0 0;
}
.toc h3 { margin-bottom: 1rem; }
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
}
.toc li { margin-bottom: 0.55em; break-inside: avoid; }
.toc a { font-size: 0.95rem; }
@media (max-width: 640px) { .toc ul { columns: 1; } }

/* ---------- Calendar ---------- */
.calendar-shell {
  background: var(--white-warm);
  border: 1px solid rgba(195, 153, 63, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}
.calendar-shell iframe {
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 4px;
  filter: saturate(0.92);
}
@media (max-width: 640px) { .calendar-shell iframe { height: 540px; } }

.view-toggle {
  display: inline-flex;
  border: 1px solid rgba(195, 153, 63, 0.5);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.view-toggle button {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 0;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.25s;
}
.view-toggle button.active { background: var(--gold); color: #241a10; }
.view-toggle button:not(.active):hover { color: var(--gold-deep); }

/* ---------- Giving ---------- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0 2rem;
}
.amount-grid[hidden] { display: none; }
.amount-pill {
  display: block;
  text-align: center;
  padding: 1.1rem 0.5rem;
  border: 1px solid rgba(195, 153, 63, 0.45);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.amount-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #241a10;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -10px rgba(195, 153, 63, 0.7);
}

/* ---------- Detail list ---------- */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(195, 153, 63, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
  justify-content: space-between;
  align-items: baseline;
}
.detail-list .dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.detail-list .dd { font-size: 1rem; color: var(--ink); margin: 0; }
.section--dark .detail-list .dd, .section--wine .detail-list .dd { color: var(--white-warm); }
.section--dark .detail-list .dt { color: rgba(233, 226, 213, 0.6); }

/* ---------- Map ---------- */
.map-shell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(195, 153, 63, 0.3);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.map-shell iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: sepia(0.22) saturate(0.85) contrast(1.02);
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(100% 70% at 15% 0%, rgba(89, 37, 47, 0.4), transparent 55%),
    var(--ink);
  color: var(--text-on-dark);
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(195, 153, 63, 0.22);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer p, .site-footer li { font-size: 0.95rem; color: rgba(233, 226, 213, 0.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(233, 226, 213, 0.9); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand .brand-name { font-size: 1.6rem; color: var(--white-warm); }
.footer-brand .brand-sub { color: var(--gold-soft); }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(233, 226, 213, 0.5);
}
.footer-bottom p { font-size: 0.8rem; color: inherit; margin: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.gold { color: var(--gold-deep); }
.small-note { font-size: 0.85rem; color: var(--text-soft); }
.on-dark .small-note { color: rgba(233, 226, 213, 0.6); }
