:root {
  --bg: #050505;
  --bg-soft: #0b0a08;
  --surface: rgba(24, 23, 20, 0.68);
  --surface-strong: rgba(35, 32, 27, 0.78);
  --gold: #d7a843;
  --gold-bright: #ffd67a;
  --gold-soft: #f1c76d;
  --text: #fbf5e6;
  --muted: #c6bcaa;
  --quiet: #8f8779;
  --line: rgba(242, 200, 113, 0.25);
  --line-strong: rgba(255, 216, 127, 0.48);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.56);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --header-h: 78px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 168, 67, 0.16), transparent 28rem),
    radial-gradient(circle at 7% 42%, rgba(255, 214, 122, 0.08), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #070604 52%, #050505 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 216, 127, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 216, 127, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(215, 168, 67, 0.08) 45.2%, transparent 45.7%),
    linear-gradient(140deg, transparent 0 65%, rgba(255, 214, 122, 0.05) 65.2%, transparent 65.8%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 214, 122, 0.34);
  color: #fff8de;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

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

.page-grid {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(242, 200, 113, 0.18);
  background: rgba(6, 6, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 5, 0.9);
  border-color: rgba(242, 200, 113, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gold-bright);
}

.brand.small {
  font-size: 1.35rem;
}

.brand-logo {
  width: clamp(142px, 13vw, 188px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(215, 168, 67, 0.2));
}

.footer-logo {
  width: 132px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 216, 127, 0.18), rgba(255, 216, 127, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 28px rgba(215, 168, 67, 0.22);
  font-size: 1.1rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  color: #120d04;
  background:
    linear-gradient(180deg, #ffe7a4 0%, #f4c35d 46%, #c98a24 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.65),
    0 16px 32px rgba(215, 168, 67, 0.22);
}

.button-ghost {
  color: var(--gold-bright);
  border-color: rgba(255, 216, 127, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.button svg,
.header-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-ghost:hover {
  background: rgba(255, 216, 127, 0.08);
  border-color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-bright);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-band,
.section {
  position: relative;
}

.hero {
  min-height: 86svh;
  padding-top: var(--header-h);
  border-bottom: 1px solid rgba(242, 200, 113, 0.18);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.86;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.76) 38%, rgba(5, 5, 5, 0.3) 72%, rgba(5, 5, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.1) 55%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-content {
  min-height: calc(86svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vh, 124px) 0 clamp(96px, 14vh, 136px);
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(100deg, #fff2c0 0%, #ffd778 35%, #b87518 76%, #fff4c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 12px 46px rgba(215, 168, 67, 0.14));
}

.hero-copy p {
  position: relative;
  max-width: 560px;
  margin: 34px 0 0;
  padding-top: 28px;
  color: #f6edda;
  font-size: clamp(1.13rem, 2.2vw, 1.55rem);
  line-height: 1.6;
}

.hero-copy p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(420px, 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(255, 216, 127, 0));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions .button {
  min-width: 190px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 32px rgba(215, 168, 67, 0.2);
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
  border-bottom: 1px solid rgba(242, 200, 113, 0.13);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(215, 168, 67, 0.06) 42.2%, transparent 42.7%),
    linear-gradient(90deg, transparent 0, rgba(255, 216, 127, 0.02), transparent 85%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading.wide {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2,
.policy-header h2,
.support-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--gold-bright);
}

.section-heading h2::after,
.policy-header h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(255, 216, 127, 0.34);
}

.section-heading p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.glass-panel,
.value-card,
.accordion-list,
.accordion-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -1px rgba(255, 216, 127, 0.08),
    var(--shadow);
  backdrop-filter: blur(18px);
}

.about-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(30px, 5vw, 56px);
}

.panel-icon,
.value-icon {
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 127, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 34px rgba(215, 168, 67, 0.16);
}

.panel-icon.compact {
  width: 72px;
}

.panel-icon svg,
.value-icon svg,
.support-list svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.text-flow p,
.policy-panel > p,
.policy-note,
.support-card p,
.accordion-item p,
.policy-details p {
  margin: 0;
  color: var(--muted);
}

.text-flow p + p,
.policy-panel > p + .policy-details,
.support-card p {
  margin-top: 18px;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 288px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255, 216, 127, 0.12), rgba(255, 255, 255, 0.025)),
    var(--surface-strong);
}

.value-icon {
  width: 72px;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 38px;
  height: 38px;
}

.value-card h3 {
  margin: 0 0 14px;
  color: #fff6df;
  font-size: 1.04rem;
  line-height: 1.35;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section-mission {
  overflow: hidden;
}

.mission-layout {
  display: grid;
  grid-template-columns: 0.8fr minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.mission-orbit {
  position: absolute;
  left: max(22px, calc((100vw - var(--container)) / 2));
  top: 50%;
  width: min(360px, 36vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.6;
}

.mission-orbit::before,
.mission-orbit span {
  content: "";
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 216, 127, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.mission-orbit::before {
  width: 54%;
  height: 54%;
  background: radial-gradient(circle, rgba(255, 216, 127, 0.3), transparent 5px);
  box-shadow: 0 0 80px rgba(255, 216, 127, 0.16);
}

.mission-orbit span:nth-child(1) {
  width: 76%;
  height: 76%;
}

.mission-orbit span:nth-child(2) {
  width: 100%;
  height: 100%;
}

.mission-orbit span:nth-child(3) {
  width: 132%;
  height: 132%;
}

.mission-card {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(30px, 5vw, 54px);
  color: #fff3cf;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.75;
}

.accordion-list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(242, 200, 113, 0.15);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.accordion-item:last-child {
  border-bottom: 0;
}

.accordion-item summary,
.policy-details summary {
  list-style: none;
  cursor: pointer;
}

.accordion-item summary::-webkit-details-marker,
.policy-details summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 0 24px;
  color: #fff4d8;
  font-weight: 700;
}

.accordion-item summary svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 180ms ease;
}

.accordion-item[open] summary svg {
  transform: rotate(45deg);
}

.accordion-item p {
  max-width: 940px;
  padding: 0 24px 24px;
  font-size: 0.98rem;
}

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

.policy-panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 38px);
}

.policy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.policy-header p {
  margin: 12px 0 0;
  color: var(--quiet);
  font-weight: 700;
}

.policy-details {
  display: grid;
  gap: 10px;
}

.policy-details details {
  border: 1px solid rgba(242, 200, 113, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.policy-details summary {
  padding: 14px 16px;
  color: #fff1d1;
  font-size: 0.95rem;
  font-weight: 800;
}

.policy-details details[open] summary {
  border-bottom: 1px solid rgba(242, 200, 113, 0.12);
}

.policy-details p,
.policy-details ul {
  padding: 0 16px 16px;
}

.policy-details ul {
  margin: 0;
  color: var(--muted);
}

.policy-details li + li {
  margin-top: 6px;
}

.policy-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 200, 113, 0.14);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-intro {
  max-width: 760px;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 32px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(242, 200, 113, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(198, 188, 170, 0.52);
}

input:focus,
textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(215, 168, 67, 0.12);
  background: rgba(0, 0, 0, 0.48);
}

.contact-form .button {
  justify-self: start;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.92rem;
}

.support-card {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: clamp(24px, 4vw, 36px);
}

.support-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.support-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.support-list a,
.support-list div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: var(--muted);
}

.support-list svg {
  width: 28px;
  height: 28px;
  color: var(--gold-bright);
}

.support-list strong {
  display: block;
  margin-bottom: 2px;
  color: #fff4d8;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(242, 200, 113, 0.22);
  background: rgba(3, 3, 3, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-inner a:hover {
  color: var(--gold-bright);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 20px;
    right: 20px;
    justify-self: stretch;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 8, 7, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.nav-open .site-nav a {
    display: block;
    padding: 14px;
    border-bottom: 1px solid rgba(242, 200, 113, 0.12);
    text-align: left;
  }

  .site-header.nav-open .site-nav a:last-child {
    border-bottom: 0;
  }

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

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

  .support-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 70px;
  }

  .container,
  .page-grid {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 1.55rem;
  }

  .brand-mark {
    width: 36px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.74) 65%, rgba(5, 5, 5, 0.8) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.22) 55%, rgba(5, 5, 5, 0.98) 100%);
  }

  .hero-content {
    min-height: calc(78svh - var(--header-h));
    align-items: end;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 7.5rem);
  }

  .hero-copy p {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .split-layout,
  .about-panel,
  .mission-layout,
  .values-grid,
  .policy-layout,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 24px;
  }

  .panel-icon {
    width: 76px;
  }

  .section-heading.wide {
    margin-bottom: 22px;
  }

  .mission-orbit {
    right: -12%;
    left: auto;
    width: 260px;
    opacity: 0.32;
  }

  .value-card {
    min-height: auto;
  }

  .accordion-item summary {
    min-height: 60px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .accordion-item p {
    padding: 0 16px 20px;
  }

  .policy-header {
    align-items: center;
  }

  .footer-inner {
    align-items: start;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .policy-header {
    display: grid;
  }

  .panel-icon.compact {
    width: 62px;
  }

  .support-list a,
  .support-list div {
    grid-template-columns: 30px minmax(0, 1fr);
  }
}

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