/* Print Sur Mesure — craft / maker aesthetic · multi-page */
:root {
  --bg: #f6f1ea;
  --bg-alt: #ebe3d8;
  --surface: #fffdf9;
  --ink: #1c1a18;
  --ink-soft: #4a453f;
  --muted: #7a7268;
  --line: #d9cfc2;
  --charcoal: #2a2622;
  --charcoal-deep: #161412;
  --amber: #d4893a;
  --amber-bright: #e8a04a;
  --copper: #c46b2a;
  --amber-soft: #f5e6d3;
  --focus: #c46b2a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(28, 26, 24, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(232, 160, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(196, 107, 42, 0.06), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

img {
  height: auto;
}

a {
  color: var(--copper);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--amber);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(28, 26, 24, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--ink);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

@media (max-width: 420px) {
  .logo-text {
    font-size: 0.95rem;
  }
  .logo-img {
    height: 36px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--ink);
}

.nav-list a.is-active {
  color: var(--copper);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.5rem 0.95rem !important;
  background: var(--charcoal);
  color: #f6f1ea !important;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--copper);
  color: #fff !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, filter 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-bright), var(--copper));
  color: #1c1a18;
  box-shadow: 0 8px 24px rgba(196, 107, 42, 0.28);
}

.btn-primary:hover {
  color: #1c1a18;
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 230, 211, 0.45) 0%, transparent 100%);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--charcoal-deep);
}

.page-hero .lead {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Home hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--charcoal-deep);
}

.hero h1 em {
  font-style: italic;
  color: var(--copper);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(100%, 400px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(28, 26, 24, 0.06);
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease;
  background: var(--charcoal-deep);
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card-caption {
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: #c9b8a0;
  background: var(--charcoal-deep);
}

/* Trust strip */
.trust-strip {
  padding: 1.25rem 0;
  background: var(--charcoal);
  color: #f6f1ea;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-bright);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #e6ddd0 100%);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards-4,
.cards-3,
.cards-2 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(28, 26, 24, 0.03);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cbbba8;
}

.card-icon {
  color: var(--copper);
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.card p + p {
  margin-top: 0.65rem;
}

.material-tag {
  display: inline-block;
  margin-bottom: 0.75rem !important;
  padding: 0.2rem 0.65rem;
  background: var(--amber-soft);
  color: var(--copper) !important;
  border-radius: 999px;
  font-size: 0.8rem !important;
  font-weight: 600;
}

.material-list {
  margin: 1rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.material-list li + li {
  margin-top: 0.35rem;
}

.note {
  margin: 1.75rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--amber-soft);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  border-left: 4px solid var(--amber);
}

.step-num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.gallery-teaser {
  grid-template-columns: 1fr;
}

.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-alt);
}

.gallery-item figcaption {
  padding: 0.85rem 1rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.gallery-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.atelier-teaser a {
  color: var(--accent, var(--ink));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.atelier-teaser a:hover {
  text-decoration-thickness: 2px;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1.25rem;
}

.pricing-main,
.pricing-ranges {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.pricing-main {
  background: var(--charcoal);
  color: #f6f1ea;
  border-color: transparent;
}

.pricing-main h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.6rem;
  color: #fff;
}

.pricing-main p {
  margin: 0 0 1.5rem;
  color: #c9b8a0;
}

.pricing-main .btn-primary {
  box-shadow: none;
}

.pricing-ranges h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  background: var(--amber-soft);
  color: var(--copper);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-disclaimer {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-list span {
  color: var(--ink-soft);
}

.price-list strong {
  white-space: nowrap;
  color: var(--ink);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.contact-intro > p {
  color: var(--ink-soft);
}

.contact-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.contact-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #a3988c;
}

.form-row input:hover,
.form-row textarea:hover,
.form-row select:hover {
  border-color: #cbbba8;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 160, 74, 0.25);
}

.label-optional {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.88em;
}

.field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-row input[type="file"] {
  padding: 0.65rem 0.75rem;
  background: var(--bg-alt);
  cursor: pointer;
}

.form-note {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #e4efe4;
  color: #1f4d2a;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-error {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #f8e4df;
  color: #7a2e22;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Legal / prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.placeholder-box {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: var(--amber-soft);
  border: 1px dashed var(--amber);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  background: var(--charcoal);
  color: #f6f1ea;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: #c9b8a0;
}

/* Footer */
.site-footer {
  background: var(--charcoal-deep);
  color: #c9b8a0;
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #3a3632;
}

.footer-brand .logo {
  margin-bottom: 0.65rem;
}

.footer-brand .logo-text {
  color: #f6f1ea;
}

.footer-brand .logo-img {
  height: 36px;
  filter: brightness(1.05);
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-brand a {
  color: var(--amber-bright);
  text-decoration: none;
}

.footer-brand a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: #c9b8a0;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--amber-bright);
}

.footer-copy {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: #7a7268;
}

/* Responsive */
@media (min-width: 640px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-teaser {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 1000px) {
    .gallery.gallery-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    /* 5 items: 3+2 layout reads better than five narrow columns */
    .gallery.gallery-5 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .pricing {
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card,
  .gallery-item,
  .hero-card,
  .btn {
    transition: none;
  }
}

/* Screen-reader / honeypot */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.upload-frame-wrap {
  margin-top: 0.5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.upload-frame {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}


.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  text-decoration: none;
  margin: 0.5rem 0 0.25rem;
}
.btn-secondary:hover {
  border-color: var(--amber);
  background: var(--bg-alt);
}
