@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,600;6..72,700&display=swap");

:root {
  /* Base palette */
  --lake: #163a35;
  --lake-deep: #102420;
  --ink: #1e2422;
  --spruce: #2c4a40;
  --paper: #f5f0e7;
  --paper-light: #fffaf1;
  --paper-deep: #ebe3d4;
  --cedar: #a46f45;
  --copper: #5e7f75;
  --rhyolite: #6f7470;
  --ember: #c84b31;
  --ember-deep: #a63a24;
  --gold: #c9a15a;
  --gold-soft: #d8b97e;
  --line: rgba(30, 36, 34, 0.16);
  --line-strong: rgba(30, 36, 34, 0.28);
  --line-light: rgba(255, 250, 241, 0.18);

  /* Semantic aliases */
  --surface-page: var(--paper);
  --surface-card: var(--paper-light);
  --surface-sunk: var(--paper-deep);
  --surface-dark: var(--lake);
  --surface-ink: var(--ink);
  --text-strong: var(--ink);
  --text-body: rgba(30, 36, 34, 0.78);
  --text-muted: var(--rhyolite);
  --text-on-dark: var(--paper-light);
  --text-on-dark-muted: rgba(255, 250, 241, 0.78);
  --text-eyebrow: var(--gold);
  --text-link: var(--lake);
  --action-primary: var(--ember);
  --action-primary-press: var(--ember-deep);
  --action-dark: var(--lake);
  --action-light: var(--paper-light);
  --status-info: var(--copper);
  --status-warn: var(--cedar);
  --status-alert: var(--ember);

  /* Type */
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --type-display: 76px;
  --type-h1: 60px;
  --type-h2: 46px;
  --type-h3: 28px;
  --type-h4: 22px;
  --type-lede: 22px;
  --type-lg: 20px;
  --type-body: 17px;
  --type-sm: 15px;
  --type-label: 14px;
  --type-eyebrow: 13px;
  --type-fine: 12px;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-heavy: 800;
  --leading-tight: 1.04;
  --leading-snug: 1.2;
  --leading-normal: 1.45;
  --leading-relaxed: 1.65;
  --tracking-normal: 0;

  /* Space and shape */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --measure: 1120px;
  --gutter: 24px;
  --section-y: 96px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --border-hairline: 1px solid var(--line);
  --shadow-sm: 0 6px 20px rgba(22, 58, 53, 0.10);
  --shadow: 0 22px 70px rgba(22, 58, 53, 0.18);
  --shadow-soft: 0 12px 40px rgba(22, 58, 53, 0.12);
  --motion: 160ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-strong);
  background: var(--surface-page);
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
}

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

a {
  color: inherit;
  transition: color var(--motion), filter var(--motion), border-color var(--motion), background-color var(--motion), transform var(--motion), box-shadow var(--motion);
}

::selection {
  color: var(--paper-light);
  background: var(--lake);
}

:focus-visible {
  outline: 3px solid rgba(94, 127, 117, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper-light);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 76px;
  padding: 14px 42px;
  background: rgba(245, 240, 231, 0.94);
  border-bottom: 1px solid rgba(30, 36, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--lake);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 78px;
  height: 44px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.06;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: var(--type-h4);
  font-weight: var(--weight-bold);
}

.brand-place {
  color: var(--rhyolite);
  font-size: var(--type-fine);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--type-label);
  font-weight: var(--weight-medium);
}

.site-nav a {
  color: rgba(30, 36, 34, 0.82);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--lake);
  font-weight: var(--weight-bold);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--lake);
  background: var(--paper-light);
  font: inherit;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--lake);
}

.hero.compact {
  min-height: 520px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 31, 29, 0.86), rgba(16, 31, 29, 0.56) 48%, rgba(16, 31, 29, 0.16)),
    linear-gradient(0deg, rgba(16, 31, 29, 0.72), rgba(16, 31, 29, 0.04) 48%);
  content: "";
}

.hero-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 88px;
  color: var(--paper-light);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--text-eyebrow);
  font-size: var(--type-eyebrow);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

h1 {
  max-width: 840px;
  font-size: var(--type-h1);
}

.hero h1 {
  font-size: var(--type-display);
}

h2 {
  font-size: var(--type-h2);
}

h3 {
  font-size: var(--type-h3);
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.92);
  font-size: var(--type-lede);
  line-height: var(--leading-normal);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  text-decoration: none;
  cursor: pointer;
  transition: filter var(--motion), transform var(--motion), border-color var(--motion), background-color var(--motion);
}

.button.primary {
  color: var(--paper-light);
  background: var(--action-primary);
}

.button.secondary {
  color: var(--paper-light);
  border-color: rgba(255, 250, 241, 0.48);
  background: rgba(255, 250, 241, 0.08);
}

.button.dark {
  color: var(--paper-light);
  background: var(--action-dark);
}

.button.light {
  color: var(--lake);
  background: var(--action-light);
}

.button.sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: var(--type-sm);
}

.button.lg {
  min-height: 56px;
  padding: 14px 22px;
  font-size: var(--type-body);
}

.button:hover {
  filter: brightness(0.93);
}

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

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  filter: none;
}

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

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

.section.paper {
  background: var(--paper-light);
}

.wrap {
  width: min(var(--measure), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head p,
.lead {
  margin: 18px 0 0;
  color: var(--text-body);
  font-size: var(--type-lg);
  line-height: 1.55;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255, 250, 241, 0.78);
}

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

.story-card,
.fact-card,
.trail-card,
.source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 241, 0.72);
  transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.story-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.story-card-content,
.fact-card,
.trail-card,
.source-card {
  padding: 22px;
}

.story-card h3,
.fact-card h3,
.trail-card h3,
.source-card h3 {
  font-size: 24px;
}

.story-card p,
.fact-card p,
.trail-card p,
.source-card p {
  margin: 12px 0 0;
  color: var(--text-body);
}

.story-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--lake);
  font-weight: var(--weight-heavy);
  text-decoration: none;
}

.story-card a::after,
.source-card a::after {
  content: " ->";
}

.story-card:hover {
  border-color: rgba(30, 36, 34, 0.24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.story-card:hover img {
  transform: scale(1.04);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.86fr);
}

.copy p {
  margin: 18px 0 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper-light);
}

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

.caption {
  margin: 0;
  padding: 12px 14px;
  color: rgba(30, 36, 34, 0.72);
  font-size: var(--type-label);
  line-height: 1.4;
}

.band {
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  background: rgba(255, 250, 241, 0.05);
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(201, 161, 90, 0.72);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 0 0 36px 34px;
}

.timeline-item::before {
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline-date {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: var(--type-h3);
  line-height: 1;
}

.timeline-body h3 {
  color: var(--paper-light);
}

.timeline-body p {
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.76);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

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

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ember);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

.book-panel {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.book-cover {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.book-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.book-lede {
  margin: 18px 0 0;
  color: var(--text-body);
  font-size: var(--type-lede);
  line-height: var(--leading-normal);
}

.quote {
  margin: 34px 0 0;
  padding: 24px;
  border-left: 4px solid var(--ember);
  color: rgba(30, 36, 34, 0.78);
  background: rgba(255, 250, 241, 0.68);
}

.route-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.route-step {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.07);
}

.route-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 30px;
}

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

.trail-map-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.trail-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trail-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-light);
  font: inherit;
  font-size: var(--type-label);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: border-color var(--motion), background-color var(--motion), transform var(--motion);
}

.trail-chip::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lake);
  content: "";
}

.trail-chip.indian::before {
  background: var(--ember);
}

.trail-chip.bridle::before {
  background: var(--gold);
}

.trail-chip.carriage::before {
  background: var(--copper);
}

.trail-chip.north::before {
  background: var(--spruce);
}

.trail-chip:hover,
.trail-chip:focus,
.trail-chip.is-active {
  border-color: rgba(30, 36, 34, 0.34);
  background: var(--paper-deep);
}

.trail-chip:active {
  transform: translateY(1px);
}

.trail-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.trail-schematic,
.trail-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
  box-shadow: var(--shadow-soft);
}

.trail-schematic {
  margin: 0;
}

.kineo-map {
  width: 100%;
  aspect-ratio: 900 / 620;
  display: block;
}

.trail-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.map-land {
  fill: url(#mapLand);
}

.map-waterline {
  fill: rgba(255, 250, 241, 0.28);
}

.map-shore {
  fill: none;
  stroke: rgba(22, 58, 53, 0.42);
  stroke-width: 3;
}

.map-cliff {
  fill: none;
  stroke: rgba(94, 127, 117, 0.68);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 12;
}

.map-contour,
.map-fairway {
  fill: none;
  stroke: rgba(94, 127, 117, 0.24);
  stroke-linecap: round;
  stroke-width: 2;
}

.map-fairway {
  stroke: rgba(201, 161, 90, 0.45);
  stroke-width: 5;
}

.map-point {
  fill: var(--paper-light);
  stroke: var(--lake);
  stroke-width: 4;
}

.map-point.summit {
  fill: var(--gold);
}

.map-label,
.map-water-label {
  fill: var(--lake);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: var(--weight-heavy);
}

.map-water-label {
  fill: rgba(22, 58, 53, 0.58);
  font-family: var(--font-serif);
  font-size: 30px;
}

.trail-route {
  cursor: pointer;
  outline: none;
  transition: opacity var(--motion), filter var(--motion);
}

.trail-route path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 12;
  transition: stroke-width var(--motion), filter var(--motion), opacity var(--motion);
}

.trail-route.carriage path {
  stroke: var(--copper);
}

.trail-route.indian path {
  stroke: var(--ember);
}

.trail-route.bridle path {
  stroke: var(--gold);
}

.trail-route.north path {
  stroke: var(--spruce);
}

.trail-route:hover path,
.trail-route:focus path {
  stroke-width: 18;
  filter: url(#trailGlow);
}

.trail-map-panel[data-active-trail="indian"] .trail-route:not(.indian),
.trail-map-panel[data-active-trail="bridle"] .trail-route:not(.bridle),
.trail-map-panel[data-active-trail="carriage"] .trail-route:not(.carriage),
.trail-map-panel[data-active-trail="north"] .trail-route:not(.north) {
  opacity: 0.24;
}

.trail-map-panel[data-active-trail="indian"] .trail-route.indian path,
.trail-map-panel[data-active-trail="bridle"] .trail-route.bridle path,
.trail-map-panel[data-active-trail="carriage"] .trail-route.carriage path,
.trail-map-panel[data-active-trail="north"] .trail-route.north path {
  stroke-width: 18;
  filter: url(#trailGlow);
}

.notice {
  padding: 24px;
  border: 1px solid rgba(200, 75, 49, 0.28);
  border-radius: var(--radius);
  background: rgba(200, 75, 49, 0.08);
}

.notice strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--ember-deep);
  font-family: var(--font-serif);
  font-size: var(--type-h4);
  line-height: var(--leading-snug);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--lake);
  background: rgba(255, 250, 241, 0.72);
  font-size: var(--type-fine);
  font-weight: var(--weight-bold);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(30, 36, 34, 0.82);
  font-size: var(--type-label);
  font-weight: var(--weight-heavy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper-light);
  font: inherit;
  transition: border-color var(--motion), box-shadow var(--motion), background-color var(--motion);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: none;
  box-shadow: 0 0 0 4px rgba(94, 127, 117, 0.18);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  min-height: 26px;
  margin: 0;
  color: var(--rhyolite);
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 250, 241, 0.74);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  padding: 42px 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.footer-mark {
  width: 94px;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.92;
}

.footer-title {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--font-serif);
  font-size: var(--type-h3);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
}

.source-list {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(30, 36, 34, 0.72);
  font-size: 14px;
}

.source-list a {
  color: var(--lake);
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-light);
    box-shadow: var(--shadow);
  }

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

  h1 {
    font-size: 52px;
  }

  .hero h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero,
  .hero.compact {
    min-height: 620px;
  }

  .section-head,
  .split,
  .split.reverse,
  .book-panel,
  .trail-map-layout {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .facts,
  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .site-header {
    padding: 12px 16px;
  }

  .brand-place {
    display: none;
  }

  .site-nav {
    left: 16px;
    right: 16px;
  }

  .wrap,
  .hero-content {
    width: min(100% - 32px, var(--measure));
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .hero-content {
    padding: 96px 0 58px;
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-lede,
  .section-head p,
  .lead {
    font-size: 18px;
  }

  .section {
    padding: 68px 0;
  }

  .story-grid,
  .facts,
  .route-map,
  .trail-grid,
  .source-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .trail-embed iframe {
    min-height: 360px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}
