:root {
  --ink: #172321;
  --muted: #5f6d69;
  --paper: #f4f0e7;
  --paper-deep: #e8e1d4;
  --white: #fffdf8;
  --green: #163c36;
  --green-light: #27594e;
  --gold: #c99550;
  --brick: #a74f35;
  --line: rgba(23, 35, 33, 0.14);
  --shadow: 0 24px 70px rgba(21, 35, 31, 0.13);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--green);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brick);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.28;
}

p:last-child {
  margin-bottom: 0;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 231, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: var(--serif);
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: grid;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.04;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-button:hover,
.button:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: white;
  background: #17211f;
}

.hero-image,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(10, 22, 20, 0.93) 0%, rgba(10, 22, 20, 0.72) 34%, rgba(10, 22, 20, 0.12) 72%), linear-gradient(0deg, rgba(10, 22, 20, 0.36), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  align-content: center;
  padding-block: 88px;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 24px;
}

.hero .eyebrow {
  color: #e5b976;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

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

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  max-width: 330px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: rgba(11, 27, 24, 0.7);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(78px, 10vw, 140px);
}

.section-sm {
  padding-block: 72px;
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--green);
}

.section-dark p,
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .eyebrow {
  color: #e5b976;
}

.section-dark a:not(.button) {
  color: white;
}

.heading-md {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.split-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-block p {
  color: var(--muted);
}

.text-block strong {
  color: var(--ink);
}

.fact-card {
  position: sticky;
  top: 28px;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
}

.fact-card-number {
  display: block;
  margin-bottom: 4px;
  color: #e5b976;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
}

.fact-card-label {
  display: block;
  margin-bottom: 28px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.fact-card .card-link {
  color: white;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.stat {
  padding: 30px;
  background: var(--white);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(18, 35, 31, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.card-number {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.image-panel {
  position: relative;
  margin: 0;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(11, 28, 24, 0.76);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  line-height: 1.5;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--brick);
  content: "✓";
  font-size: 0.72rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.quote footer {
  margin-top: 24px;
  color: #e5b976;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding-block: clamp(74px, 10vw, 125px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f4f0e7 0%, #ebe3d5 100%);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
}

.page-hero p {
  max-width: 750px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span::before {
  margin-right: 8px;
  content: "/";
  color: var(--gold);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(40px, 8vw, 110px);
  justify-content: center;
}

.toc {
  position: sticky;
  top: 24px;
  align-self: start;
}

.toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.toc a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.prose h2 {
  margin-top: 72px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

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

.prose h3 {
  margin-top: 38px;
}

.prose p,
.prose li {
  color: #43514e;
}

.prose a:not(.button) {
  color: var(--green);
  font-weight: 700;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 10px;
  padding-left: 7px;
}

.note {
  margin: 42px 0;
  padding: 28px 30px;
  border-left: 4px solid var(--brick);
  border-radius: 0 16px 16px 0;
  background: var(--white);
}

.note strong {
  display: block;
  margin-bottom: 5px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-block: 30px;
}

.mini-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.mini-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.route-card {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.route-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.route-distance {
  color: #e5b976;
  font-family: var(--serif);
  font-size: 2.2rem;
}

.route-card h3 {
  margin-bottom: 5px;
}

.route-card p {
  margin: 0;
  font-size: 0.89rem;
}

.tag {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  color: white;
  background: var(--brick);
}

.cta-band::before {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.photo-feature {
  position: relative;
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.photo-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(11, 27, 24, 0.7), transparent 55%);
}

.photo-feature figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.timeline {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline time {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.directory-item {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.directory-item .category {
  display: block;
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directory-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
}

.contact-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #faf8f2;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 60, 54, 0.1);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer {
  padding-block: 74px 30px;
  color: rgba(255, 255, 255, 0.75);
  background: #0f2925;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}

.site-footer .brand {
  color: white;
}

.site-footer .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-about {
  max-width: 330px;
  margin-top: 22px;
  font-size: 0.85rem;
}

.site-footer h2 {
  margin: 5px 0 18px;
  color: white;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.site-footer a {
  font-size: 0.85rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.73rem;
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(390px, 90vw);
    height: 100dvh;
    padding: 110px 30px 30px;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(11, 27, 24, 0.16);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
  }

  .main-nav .nav-button {
    margin-top: 24px;
    border-bottom: 0;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 800;
  }

  .split,
  .split-balanced,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fact-card {
    position: static;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 76px);
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(10, 22, 20, 0.9), rgba(10, 22, 20, 0.4)), linear-gradient(0deg, rgba(10, 22, 20, 0.5), transparent 50%);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.8rem);
    line-height: 1.02;
  }

  .hero-note {
    display: none;
  }

  .stat-row,
  .card-grid,
  .mini-grid,
  .directory,
  .field-row {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .image-panel {
    min-height: 440px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-card .tag {
    width: max-content;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline li {
    grid-template-columns: 75px 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .button-row .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    grid-column: 1 !important;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
