/* ==========================================================================
   Massimo Rigotti, massimorigotti.com
   Plain CSS, no build step. cPanel / shared hosting friendly.
   Palette: charcoal, cream, gold. SOBER brand colors used only on method accents.
   ========================================================================== */

:root {
  --ink: #14120f;
  --ink-soft: #5b584e;
  --paper: #faf6ef;
  --paper-2: #f3eee4;
  --gold: #c4a035;
  --gold-dark: #9a7c28;
  --gold-tint: rgba(196, 160, 53, 0.14);
  --green: #5a7a2d;
  --red: #ce1515;
  --blue: #424e9b;
  --yellow: #e2b700;
  --purple: #8e3f74;
  --charcoal: #1a1814;
  --charcoal-2: #24211c;
  --line: rgba(20, 18, 15, 0.1);
  --line-light: rgba(250, 246, 239, 0.14);
  --max: 1120px;
  --radius: 14px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.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;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.15rem;
  max-width: 58ch;
}

.muted {
  color: var(--ink-soft);
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #d4b24a;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(196, 160, 53, 0.28);
}

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

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 246, 239, 0.55);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-dark);
}

.main-nav .nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
}

.main-nav .nav-cta:hover {
  color: var(--ink);
  background: #d4b24a;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}

.nav-overlay {
  display: none;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ---- hero -------------------------------------------------------------- */

.hero {
  background: var(--charcoal);
  color: var(--paper);
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  color: var(--paper);
  margin-bottom: 0.25em;
}

.hero .kicker {
  font-size: 1.25rem;
  color: rgba(250, 246, 239, 0.88);
  margin: 0 0 18px;
  max-width: 34ch;
}

.hero .lead {
  color: rgba(250, 246, 239, 0.72);
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: 50% 18%;
  /* padding-top technique is not needed: this is a portrait photo slot */
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, var(--charcoal), transparent);
}

/* ---- stats ------------------------------------------------------------- */

.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.stats span {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.75);
}

/* ---- sections ---------------------------------------------------------- */

.section {
  padding: 88px 0;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-dark p {
  color: rgba(250, 246, 239, 0.78);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p {
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split.flip {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.ratio-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-2);
}

.ratio-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--paper-2);
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 18, 15, 0.12);
}

/* ---- practice / about -------------------------------------------------- */

.practice-note {
  font-size: 0.95rem;
  padding: 16px 18px;
  background: var(--gold-tint);
  border-left: 3px solid var(--gold);
  margin: 20px 0 0;
  color: var(--ink);
}

/* ---- books ------------------------------------------------------------- */

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

.book-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  box-shadow: 0 10px 28px rgba(20, 18, 15, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.book-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin: 0 auto 18px;
  box-shadow: 0 14px 28px rgba(20, 18, 15, 0.16);
}

.book-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

.book-card p {
  font-size: 0.95rem;
  flex: 1;
}

.book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.book-links a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
}

.book-links a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.book-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.book-feature:last-child {
  border-bottom: 0;
}

.book-feature img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(20, 18, 15, 0.14);
}

/* ---- topics / speaker -------------------------------------------------- */

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

.topic-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  border-top: 3px solid var(--gold);
}

.topic-card h3 {
  margin-bottom: 0.45em;
}

.topic-card p {
  margin: 0;
  font-size: 0.98rem;
}

.sober-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.sober-letters span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.sober-letters .s {
  background: var(--green);
}
.sober-letters .o {
  background: var(--red);
}
.sober-letters .b {
  background: var(--blue);
}
.sober-letters .e {
  background: var(--yellow);
  color: var(--ink);
}
.sober-letters .r {
  background: var(--purple);
}

/* ---- quote ------------------------------------------------------------- */

.quote-band {
  background: var(--charcoal);
  color: var(--paper);
  padding: 72px 0;
  text-align: center;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 34em;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--paper);
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- photo mosaic ------------------------------------------------------ */

.mosaic {
  display: grid;
  grid-template-columns: 1.47fr 1fr;
  gap: 16px;
  align-items: start;
}

.mosaic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- samantha ---------------------------------------------------------- */

.memorial {
  max-width: 720px;
}

.memorial-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

.memorial-hero img {
  width: 100%;
  border-radius: var(--radius);
}

.memorial-photo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 36px 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(20, 18, 15, 0.12);
}

.donate-box {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--paper-2);
  border-radius: var(--radius);
}

.donate-box p:last-child {
  margin: 0;
}

/* ---- contact ----------------------------------------------------------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(20, 18, 15, 0.06);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-size: 1rem;
  color: var(--ink);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- subscribe --------------------------------------------------------- */
/* Layout and control sizes match digitalsobriety.org's Stay Connected block. */

.subscribe {
  background: var(--paper);
  padding: 72px 0;
}

.subscribe .wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.subscribe .eyebrow {
  color: var(--gold-dark);
  text-align: center;
}

.subscribe h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  font-size: 1rem;
  color: var(--ink);
  font-family: inherit;
}

.subscribe-form input[type="email"]:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.subscribe-form button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--gold-dark);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.subscribe-form button:hover {
  opacity: 0.92;
}

.subscribe-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

.subscribe-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.subscribe-result {
  margin-top: 12px;
  font-weight: 600;
  min-height: 1.2em;
}

.subscribe-result.ok {
  color: var(--green);
}

.subscribe-result.err {
  color: var(--red);
}

.form-note {
  font-size: 0.82rem;
  margin: 12px 0 0;
}

.form-success,
.form-error {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-success {
  background: #e6f0dc;
  color: var(--green);
}

.form-error {
  background: #f8e2e2;
  color: var(--red);
}

.privacy-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.privacy-callout h3 {
  font-size: 1.1rem;
}

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

.site-footer {
  background: var(--ink);
  color: #eae7de;
  padding: 56px 0 28px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand {
  max-width: 280px;
}

.footer-sig {
  width: 180px;
  margin-bottom: 14px;
  opacity: 0.92;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c5b6;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #eae7de;
  text-decoration: none;
  opacity: 0.88;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--gold);
  text-decoration: underline;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.social-row a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  opacity: 1;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.78rem;
  color: #a9a596;
}

.legal p {
  color: #a9a596;
  margin: 0 0 8px;
}

.legal a {
  color: #c9c5b6;
}

/* ---- page hero (interior) ---------------------------------------------- */

.page-hero {
  background: var(--charcoal);
  color: var(--paper);
  padding: 64px 0 56px;
}

.page-hero h1 {
  color: var(--paper);
}

.page-hero .lead {
  color: rgba(250, 246, 239, 0.78);
  margin: 0;
}

.page-hero-dates {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin: 0.15em 0 0;
}

.page-hero .eyebrow {
  color: var(--gold);
}

/* ---- prose ------------------------------------------------------------- */

.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 1.05em;
}

/* ---- responsive -------------------------------------------------------- */

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .split.flip,
  .book-feature,
  .memorial-hero,
  .contact-wrap,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .book-grid,
  .topic-grid,
  .stats .wrap,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-photo img {
    max-height: 480px;
  }
}

@media (max-width: 760px),
  (max-width: 980px) and (hover: none) and (pointer: coarse) {
  .wrap {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .site-header .wrap {
    min-height: 56px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: -6px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 15, 0.4);
    z-index: 40;
  }

  .nav-overlay[hidden] {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px max(20px, env(safe-area-inset-right)) 20px max(20px, env(safe-area-inset-left));
    gap: 0;
    z-index: 51;
    max-height: calc(100vh - 56px - env(safe-area-inset-top));
    max-height: calc(100dvh - 56px - env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    -webkit-tap-highlight-color: transparent;
  }

  .main-nav .nav-cta {
    margin-top: 14px;
    justify-content: center;
    min-height: 44px;
    padding: 12px 1.15rem;
    border-bottom: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .btn,
  .btn-row .btn {
    min-height: 44px;
    padding: 0.85rem 1.4rem;
    touch-action: manipulation;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    text-align: center;
    width: 100%;
  }

  .book-links a,
  .social-row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
  }

  .site-footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .site-footer li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .book-grid,
  .topic-grid,
  .stats .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-photo {
    order: -1;
  }

  .hero-photo img {
    max-height: min(42vh, 340px);
  }

  .hero .kicker {
    font-size: 1.1rem;
    max-width: none;
  }

  .page-hero {
    padding: 40px 0 36px;
  }

  .section {
    padding: 48px 0;
  }

  .subscribe {
    padding: 48px 0;
  }

  .subscribe-form input[type="email"],
  .subscribe-form button {
    min-height: 44px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 1rem;
    min-height: 44px;
  }

  .form-row textarea {
    min-height: 140px;
  }

  .stats {
    padding: 22px 0;
  }

  .stats .wrap {
    gap: 18px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .memorial-photo {
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .btn {
    transition: none;
  }
}
