/* ============================================================
   ÉRIC FERRER — Feuille de style
   Direction : élégant / classique — noir, or, serif
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0b0a08;
  --bg-panel: #151210;
  --bg-panel-raised: #1c1815;
  --ivory: #f4eedf;
  --ivory-dim: #c9c0ac;
  --ivory-faint: #8d8672;
  --gold: #c6a15c;
  --gold-light: #e8ce96;
  --gold-deep: #8b6f3d;
  --burgundy: #2b1214;
  --burgundy-edge: #4a1c20;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;
  --font-utility: "Jost", "Helvetica Neue", Arial, sans-serif;

  --section-pad: clamp(4rem, 9vw, 5rem);
  --content-width: 1180px;
}

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--ivory);
}

a {
  color: inherit;
}

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

ul {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section {
  padding: var(--section-pad) 0;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-utility);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold-deep);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- En-tête de page (pages internes) ---------- */
.page-hero {
  padding: clamp(7rem, 14vw, 4rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 1.1rem;
}

.page-hero p {
  max-width: 640px;
  margin: 1.5rem auto 0;
  color: var(--ivory-dim);
  font-size: 1.15rem;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 161, 92, 0.18);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ivory);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.logo-mark {
  color: var(--gold);
  font-style: italic;
}

.main-nav {
  display: flex;
  gap: 2.1rem;
}

.main-nav a {
  font-family: var(--font-utility);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

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

.main-nav a:hover::after {
  right: 0;
}

.main-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.main-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-deep);
  color: var(--ivory);
  width: 42px;
  height: 38px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1.1rem;
    padding-top: 1.2rem;
  }
  .main-nav.open {
    display: flex;
  }
  .site-header .inner {
    flex-wrap: wrap;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-top: 3.5rem;
  background: var(--bg-panel);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 1.75rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}

.footer-role {
  margin: 0.2rem 0 0;
  color: var(--gold);
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ivory-dim);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

.footer-copy {
  text-align: center;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  margin: 0;
}

/* ============================================================
   Signature : liseré "touches de piano"
   ============================================================ */
.key-divider {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.key-divider .rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-deep) 12%,
    var(--gold) 50%,
    var(--gold-deep) 88%,
    transparent
  );
  margin-bottom: 6px;
}

.key-divider .keys {
  display: flex;
  justify-content: center;
  gap: 3px;
  height: 10px;
}

.key-divider .keys span {
  width: 4px;
  background: var(--ivory-faint);
  border-radius: 0 0 1px 1px;
}

.key-divider .keys span:nth-child(4n + 1) {
  opacity: 1;
}

.key-divider .keys span:not(:nth-child(4n + 1)) {
  opacity: 0.45;
}

section.key-divider-section {
  padding: 2.5rem 0;
}

/* ============================================================
   Hero (accueil)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0b0a08;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 15%,
      rgba(198, 161, 92, 0.16),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(11, 10, 8, 0.55) 0%,
      rgba(11, 10, 8, 0.75) 45%,
      #0b0a08 92%
    );
}

.hero-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(198, 161, 92, 0.28);
  pointer-events: none;
  z-index: 2;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero-inner {
  position: relative;
  padding: 2rem;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-divider {
  margin: 2.2rem auto;
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ivory-dim);
  max-width: 520px;
  margin: 0 auto 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Bandeau devise ---------- */
.motto-band {
  background: var(--burgundy);
  border-top: 1px solid var(--burgundy-edge);
  border-bottom: 1px solid var(--burgundy-edge);
  text-align: center;
  padding: var(--section-pad) 0;
}

.motto-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  max-width: 780px;
  margin: 0 auto;
  color: var(--gold-light);
  line-height: 1.4;
}

/* ---------- En-tête de section générique ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-head--centered {
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-top: 0.6rem;
}

.section-link {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  white-space: nowrap;
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 3px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.section-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* ---------- Bio (accueil) ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.bio-lead {
  font-size: 1.3rem;
  color: var(--ivory);
  font-family: var(--font-body);
}

.bio-text {
  color: var(--ivory-dim);
}

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

/* ---------- Bande maîtres (accueil) ---------- */
.maitres-strip {
  background: var(--bg-panel);
}

.maitres-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
}

.maitre-portrait-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.maitre-portrait-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(198, 161, 92, 0.2);
  filter: grayscale(100%) contrast(1.05);
}

.maitre-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory-dim);
}

/* ---------- Concerts ---------- */
.concert-list {
  display: flex;
  flex-direction: column;
}

.concert-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(198, 161, 92, 0.16);
}

.concert-row:first-child {
  border-top: 1px solid rgba(198, 161, 92, 0.16);
}

.concert-date {
  font-family: var(--font-utility);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.concert-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}

.concert-place {
  color: var(--ivory-dim);
  font-size: 1rem;
  margin: 0.2rem 0 0;
}

.concert-status {
  font-family: var(--font-utility);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

@media (max-width: 640px) {
  .concert-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ---------- Bandeau CTA (accueil) ---------- */
.cta-band {
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin-bottom: 1.4rem;
}

.cta-text {
  color: var(--ivory-dim);
  max-width: 520px;
  margin: 0 auto 2.2rem;
}

/* ---------- Lecteur audio (accueil) ---------- */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 720px;
  margin: 0 auto;
}

.audio-item {
  background: var(--bg-panel);
  border: 1px solid rgba(198, 161, 92, 0.18);
  border-radius: 3px;
  padding: 1.3rem 1.6rem;
}

.audio-item p {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
}

.audio-item span {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.audio-item audio {
  width: 100%;
  margin-top: 0.8rem;
  filter: invert(88%) sepia(8%) saturate(400%) hue-rotate(0deg);
}

/* ---------- Timeline (concerts) ---------- */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-deep) 4%,
    var(--gold) 50%,
    var(--gold-deep) 96%,
    transparent
  );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 2.2rem;
}

.timeline-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  text-align: center;
  padding-top: 0.1rem;
}

.timeline-dot {
  position: absolute;
  left: 70px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline-title {
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.timeline-place {
  color: var(--ivory-dim);
  font-style: italic;
  margin: 0 0 1.2rem;
}

.timeline-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.timeline-gallery a {
  display: block;
  width: 128px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(198, 161, 92, 0.18);
}

.timeline-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.timeline-gallery a:hover img {
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .timeline::before {
    left: 8px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 26px;
  }
  .timeline-dot {
    left: 4px;
    top: 0.35rem;
  }
  .timeline-year {
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .timeline-gallery a {
    width: 100px;
  }
}

/* ---------- Rencontres — mosaïque ---------- */
.rencontres-category {
  margin-bottom: 3.5rem;
}

.rencontres-category:last-child {
  margin-bottom: 0;
}

.rencontres-category h2 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  font-style: italic;
  text-align: center;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.7rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(198, 161, 92, 0.16);
  aspect-ratio: 1 / 1;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover img {
  transform: scale(1.09);
}

.mosaic-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.6rem 0.9rem 0.7rem;
  background: linear-gradient(to top, rgba(11, 10, 8, 0.94), transparent);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mosaic-item:hover .mosaic-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Programmes ---------- */
.programme-group {
  margin-bottom: 4rem;
}

.programme-group:last-child {
  margin-bottom: 0;
}

.programme-group > h2 {
  font-size: 1.6rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}

.programme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(198, 161, 92, 0.16);
  border: 1px solid rgba(198, 161, 92, 0.16);
}

.programme-card {
  background: var(--bg);
  padding: 2rem;
}

.programme-card h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-utility);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.programme-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ivory-dim);
}

.programme-card li {
  padding: 0.3rem 0;
}

/* ---------- Répertoire — index alphabétique éditorial ---------- */
.repertoire-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.9rem;
  max-width: 760px;
  margin: 0 auto 3rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(198, 161, 92, 0.16);
}

.repertoire-alpha-nav a {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--gold);
  transition: color 0.2s ease;
}

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

.repertoire-index {
  max-width: 860px;
  margin: 0 auto;
}

.repertoire-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed rgba(198, 161, 92, 0.16);
  scroll-margin-top: 6rem;
}

.repertoire-entry:last-child {
  border-bottom: none;
}

.repertoire-entry .composer {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex: 0 0 190px;
}

.repertoire-entry .works {
  color: var(--ivory-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1 1 380px;
}

@media (max-width: 640px) {
  .repertoire-entry .composer {
    flex-basis: 100%;
  }
}

/* ---------- Portrait (contact) ---------- */
.contact-portrait {
  width: 100%;
  max-width: 320px;
  border-radius: 2px;
  border: 1px solid rgba(198, 161, 92, 0.25);
  margin-bottom: 2rem;
}

/* ============================================================
   Pages de contenu (biographie, maîtres, répertoire, contact)
   ============================================================ */
.body-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ivory-dim);
}

.body-copy p {
  margin: 0 0 1.5rem;
}

.body-copy p:first-child {
  font-size: 1.25rem;
  color: var(--ivory);
}

.quote-block {
  margin: 3rem auto 0;
  max-width: 620px;
  text-align: center;
  padding: 2.4rem 2rem;
  background: var(--burgundy);
  border-top: 1px solid var(--burgundy-edge);
  border-bottom: 1px solid var(--burgundy-edge);
}

.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Grille maîtres ---------- */
.maitres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(198, 161, 92, 0.16);
  border: 1px solid rgba(198, 161, 92, 0.16);
}

.maitre-card {
  background: var(--bg);
  padding: 2.4rem 2rem;
}

.maitre-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(198, 161, 92, 0.16);
  filter: grayscale(100%) contrast(1.05);
}

.maitre-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.maitre-card p {
  color: var(--ivory-dim);
  font-size: 1rem;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

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

.contact-socials a {
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
  color: var(--ivory);
}

.contact-socials a:hover {
  color: var(--gold-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.form-field input,
.form-field textarea {
  background: var(--bg-panel);
  border: 1px solid rgba(198, 161, 92, 0.28);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.submit-row {
  margin-top: 0.5rem;
}
