:root {
  --green-950: #0b3324;
  --green-900: #104c34;
  --green-800: #176b45;
  --green-700: #1e7d51;
  --green-100: #ddf2e7;
  --green-50: #eef9f3;
  --lime: #d5f25f;
  --cream: #f6f4ed;
  --white: #ffffff;
  --ink: #17231d;
  --muted: #637169;
  --line: #dfe6e1;
  --warning: #9a5c00;
  --warning-bg: #fff4d6;
  --danger: #a13a32;
  --danger-bg: #fff0ee;
  --shadow-sm: 0 4px 16px rgba(11, 51, 36, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 51, 36, 0.2);
  --radius: 20px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  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: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: calc(10px + env(safe-area-inset-top)) 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 244, 237, 0.94);
  border-bottom: 1px solid rgba(16, 76, 52, 0.09);
  backdrop-filter: blur(14px);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-800);
  color: var(--lime);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(23, 107, 69, 0.22);
}

.brand-name,
.brand-copy {
  margin: 0;
}

.brand-name {
  color: var(--green-950);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brand-copy {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.icon-button,
.close-sheet {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-900);
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

main {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 22px 114px;
  background:
    radial-gradient(circle at 87% 18%, rgba(213, 242, 95, 0.35) 0 54px, transparent 55px),
    linear-gradient(145deg, var(--green-950), var(--green-800));
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -70px;
  z-index: -1;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-700);
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(34px, 10vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.hero-stats {
  margin-top: 26px;
  display: flex;
  gap: 12px;
}

.hero-stats div {
  min-width: 80px;
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  color: var(--lime);
  font-size: 24px;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.search-panel {
  position: relative;
  z-index: 20;
  margin: -72px 14px 0;
  padding: 16px;
  border: 1px solid rgba(16, 76, 52, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.search-box {
  min-height: 58px;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--green-800);
  border-radius: 17px;
  background: var(--white);
}

.search-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 3px solid var(--green-800);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 3px;
  right: -7px;
  bottom: -4px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: var(--green-800);
}

.search-box input {
  min-width: 0;
  width: 100%;
  height: 54px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.search-box input::placeholder {
  color: #829087;
  font-weight: 500;
}

.clear-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-900);
  font-size: 25px;
  line-height: 1;
}

.quick-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.action-button {
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 850;
}

.action-button.primary {
  border: 0;
  background: var(--green-800);
  color: var(--white);
}

.action-button.secondary {
  border: 1px solid var(--line);
  background: var(--green-50);
  color: var(--green-900);
}

.count-badge {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  margin-left: 3px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--green-950);
  font-size: 12px;
}

.chip-scroller {
  margin: 14px -16px -2px;
  padding: 2px 16px 8px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.chip-scroller::-webkit-scrollbar {
  display: none;
}

.region-chip {
  min-height: 44px;
  padding: 9px 16px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.region-chip.active {
  border-color: var(--green-800);
  background: var(--green-800);
  color: var(--white);
}

.advanced-filters {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.advanced-filters fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.advanced-filters legend {
  margin-bottom: 9px;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 900;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.option-grid.two-columns {
  grid-template-columns: 1fr 1fr;
}

.option-grid label {
  position: relative;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  min-height: 46px;
  padding: 9px 6px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.option-grid input:checked + span {
  border-color: var(--green-800);
  background: var(--green-100);
  color: var(--green-950);
}

.option-grid input:focus-visible + span {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.reset-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--cream);
  color: var(--green-900);
  font-weight: 800;
}

.results-section {
  padding: 34px 14px 64px;
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.results-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.sort-control select {
  min-height: 46px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.view-switch {
  margin: 20px 0 16px;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border-radius: 15px;
  background: #e6ebe7;
}

.view-tab {
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.view-tab.active {
  background: var(--white);
  color: var(--green-900);
  box-shadow: 0 2px 8px rgba(11, 51, 36, 0.08);
}

.course-list {
  display: grid;
  gap: 12px;
}

.course-card {
  width: 100%;
  padding: 0;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.course-card:active {
  transform: scale(0.992);
}

.course-card-main {
  padding: 18px;
}

.card-topline,
.card-title-row,
.card-footer {
  display: flex;
  align-items: center;
}

.card-topline {
  justify-content: space-between;
  gap: 10px;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
}

.badge.certified {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge.unknown {
  background: #f0f2f0;
  color: #66726b;
}

.distance {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.card-title-row {
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.course-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.arrow {
  color: var(--green-700);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.address {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-info-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-info {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--cream);
}

.card-info span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.card-info strong {
  margin-top: 2px;
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-footer {
  min-height: 46px;
  padding: 9px 18px;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.source-state {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-state.official {
  color: var(--green-700);
}

.load-more-button {
  width: 100%;
  min-height: 56px;
  margin-top: 16px;
  border: 1px solid var(--green-800);
  border-radius: 16px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 900;
}

.state-card {
  min-height: 170px;
  padding: 30px 22px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px dashed #bfcbc3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  text-align: center;
}

.state-card strong {
  color: var(--green-950);
  font-size: 19px;
}

.state-card p {
  margin: 6px 0 0;
}

.state-card button {
  min-height: 48px;
  margin-top: 14px;
  padding: 10px 22px;
  border: 0;
  border-radius: 13px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 850;
}

.loading-ball {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 6px dotted var(--green-700);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.map-view {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

#map {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 430px;
  background: #dce7df;
}

.map-note {
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.course-marker {
  width: 32px !important;
  height: 32px !important;
  margin: -16px 0 0 -16px !important;
  display: grid !important;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  background: var(--green-800);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 3px 9px rgba(11, 51, 36, 0.3);
  transform: rotate(-45deg);
}

.course-marker span {
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper {
  border-radius: 15px;
}

.leaflet-popup-content {
  min-width: 190px;
  margin: 15px;
  font-family: inherit;
  line-height: 1.5;
}

.map-popup strong,
.map-popup span {
  display: block;
}

.map-popup strong {
  color: var(--green-950);
  font-size: 16px;
}

.map-popup span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.map-popup button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  padding: 28px 22px calc(32px + env(safe-area-inset-bottom));
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer strong {
  color: var(--lime);
  font-size: 16px;
}

.site-footer p {
  max-width: 760px;
  margin: 8px 0 0;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(5, 24, 16, 0.58);
  backdrop-filter: blur(3px);
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  max-height: calc(94dvh - env(safe-area-inset-top));
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
  border-radius: 26px 26px 0 0;
  background: var(--white);
  box-shadow: 0 -16px 52px rgba(5, 24, 16, 0.25);
  overscroll-behavior: contain;
}

.sheet-handle {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 44px;
  height: 5px;
  margin: 9px auto 0;
  border-radius: 99px;
  background: #c7d0ca;
}

.sheet-header {
  position: sticky;
  top: 12px;
  z-index: 4;
  padding: 14px 18px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.sheet-header h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.close-sheet {
  flex: 0 0 auto;
  background: var(--cream);
  box-shadow: none;
}

.sheet-content {
  padding: 18px 18px 30px;
}

.detail-alert {
  padding: 14px 15px;
  border-radius: 14px;
  background: var(--warning-bg);
  color: #6f4706;
  font-size: 13px;
  font-weight: 700;
}

.detail-alert.danger {
  background: var(--danger-bg);
  color: var(--danger);
}

.detail-badges {
  margin: 14px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.detail-section {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.detail-section:first-of-type {
  border-top: 0;
}

.detail-section h3,
.prose h3 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.detail-item {
  min-width: 0;
  padding: 13px;
  border-radius: 13px;
  background: var(--cream);
}

.detail-item.full {
  grid-column: 1 / -1;
}

.detail-item dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-item dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.unknown-value {
  color: #7f8983;
  font-weight: 600;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.detail-actions a,
.detail-actions button {
  min-height: 52px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-800);
  border-radius: 14px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--white);
}

.detail-actions a.primary-link {
  border-color: var(--green-800);
  background: var(--green-800);
  color: var(--white);
}

.detail-actions a.full {
  grid-column: 1 / -1;
}

.verification-box {
  padding: 15px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-950);
  font-size: 13px;
}

.verification-box strong,
.verification-box span {
  display: block;
}

.source-actions {
  margin-top: 10px;
}

.verification-box span {
  margin-top: 4px;
  color: var(--muted);
}

body.sheet-open {
  overflow: hidden;
}

.prose h3:not(:first-child) {
  margin-top: 24px;
}

.prose ul {
  padding-left: 22px;
}

.prose li + li {
  margin-top: 9px;
}

.wide-link {
  min-height: 52px;
  margin-top: 20px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.settings-content {
  display: grid;
  gap: 18px;
}

.settings-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.settings-group legend {
  margin-bottom: 4px;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 900;
}

.settings-description {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.setting-option {
  min-height: 76px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
}

.setting-option + .setting-option {
  margin-top: 10px;
}

.setting-option:has(input:checked) {
  border: 2px solid var(--green-800);
  background: var(--green-50);
}

.setting-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--green-800);
}

.setting-option span,
.setting-option strong,
.setting-option small {
  display: block;
}

.setting-option strong {
  color: var(--green-950);
  font-size: 16px;
}

.setting-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.settings-storage-note {
  margin: 0;
  padding: 13px 14px;
  border-radius: 13px;
  background: var(--cream);
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 3000;
  max-width: 520px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.noscript-message {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 30px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--green-950);
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

@media (min-width: 720px) {
  .site-header {
    padding-left: max(28px, calc((100vw - 1120px) / 2));
    padding-right: max(28px, calc((100vw - 1120px) / 2));
  }

  .hero {
    margin: 20px 20px 0;
    padding: 60px 48px 122px;
    border-radius: 30px;
  }

  .search-panel {
    width: calc(100% - 80px);
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }

  .search-box {
    width: calc(100% - 360px);
    display: inline-flex;
    vertical-align: top;
  }

  .quick-actions {
    width: 344px;
    margin: 0 0 0 12px;
    display: inline-grid;
    vertical-align: top;
  }

  .chip-scroller {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .results-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .course-list {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-sheet {
    left: 50%;
    right: auto;
    width: min(680px, calc(100% - 32px));
    transform: translateX(-50%);
    border-radius: 26px 26px 0 0;
  }
}

@media (min-width: 1060px) {
  .course-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

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

  .card-info-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-item.full {
    grid-column: auto;
  }
}

@media (max-width: 350px) {
  .brand-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
