:root {
  --blue: #0a304f;
  --blue-2: #154764;
  --blue-soft: #e9f1f5;
  --gold: #b4874d;
  --gold-2: #8f6839;
  --sage: #5e7866;
  --sage-soft: #edf4ef;
  --pearl: #faf9f5;
  --ivory: #fffdf8;
  --white: #ffffff;
  --text: #152638;
  --muted: #62707d;
  --line: #dce3df;
  --line-strong: #cbd7d2;
  --danger: #9f2f24;
  --success: #2f7454;
  --shadow: 0 22px 46px rgba(10, 48, 79, 0.12);
  --shadow-soft: 0 12px 28px rgba(10, 48, 79, 0.08);
  --radius: 8px;
  --container: 1180px;
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(180, 135, 77, 0.42);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  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:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
}

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

main[id],
section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(220, 227, 223, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(10, 48, 79, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  min-width: 0;
}

.brand-logo {
  width: auto;
  max-width: 76px;
  max-height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.brand-copy strong {
  color: var(--blue);
  font-size: 18px;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
}

.button,
.mobile-bar a,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button-primary,
.mobile-bar a:first-child {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(10, 48, 79, 0.16);
}

.button-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(180, 135, 77, 0.2);
}

.button-secondary,
.mobile-bar a:last-child {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--blue);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
}

.button:hover,
.mobile-bar a:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link::after {
  content: "›";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

h1,
h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4.05rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78dvh;
  padding: 96px 0 78px;
  overflow: hidden;
  background: var(--pearl);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 249, 245, 0.96) 0%, rgba(250, 249, 245, 0.9) 38%, rgba(250, 249, 245, 0.34) 72%, rgba(250, 249, 245, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-lead,
.section-lead,
.page-lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-lead {
  color: #405464;
  font-size: 1.18rem;
}

.hero-actions,
.section-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-note {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 830;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-height: 104px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid span,
.card span,
.route-card span,
.image-card span,
.step-card span,
.mini-metric span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  color: var(--blue);
  line-height: 1.3;
}

.section,
.page-hero {
  padding: 82px 0;
}

.page-hero {
  background: var(--pearl);
}

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

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

.section-sage {
  background: var(--sage-soft);
}

.section-blue {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.82);
}

.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue .eyebrow {
  color: var(--white);
}

.section-blue .section-lead,
.section-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.section-blue .card,
.section-blue .step-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.section-blue .card h3,
.section-blue .step-card h3,
.section-blue .card span,
.section-blue .step-card span {
  color: var(--white);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.split,
.contact-grid,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.grid-2,
.grid-3,
.grid-4,
.route-grid,
.card-grid,
.step-grid,
.metric-grid,
.faq-layout,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.faq-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.card,
.route-card,
.step-card,
.image-card,
.form-card,
.contact-panel,
.soft-panel,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card,
.route-card,
.step-card,
.contact-panel,
.soft-panel,
.legal-box {
  padding: 24px;
}

.card p,
.route-card p,
.step-card p,
.contact-panel p,
.soft-panel p {
  color: var(--muted);
}

.route-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.route-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.image-card {
  overflow: hidden;
}

.image-card img,
.split-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-card-body {
  padding: 22px;
}

.image-card-body p {
  color: var(--muted);
}

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

.split-image figcaption {
  padding: 16px 20px;
  color: var(--blue);
  font-weight: 760;
}

.check-list,
.plain-list,
.quiet-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.quiet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.check-list li::before,
.plain-list li::before,
.quiet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgba(94, 120, 102, 0.22);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 760;
}

.metric-grid {
  align-items: stretch;
}

.mini-metric {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.mini-metric strong {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.form-card {
  padding: 28px;
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

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

.field,
.field-full {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field > span,
.field-full > span,
.privacy-line > span:first-child,
.choice-title {
  color: var(--blue);
  font-size: 14px;
  font-weight: 820;
}

.field input,
.field select,
.field textarea,
.field-full textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.field textarea,
.field-full textarea {
  min-height: 140px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.choice-grid label,
.privacy-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--text);
  font-weight: 650;
}

.choice-grid input,
.privacy-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.privacy-line {
  grid-column: 1 / -1;
}

.privacy-line a,
.footer a,
.legal-box a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.field-error,
.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 720;
}

.form-status {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  background: #eef7f1;
  color: var(--text);
  font-weight: 760;
  white-space: pre-line;
}

.form-status:empty {
  display: none;
}

.form-note {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

[aria-invalid="true"] {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(159, 47, 36, 0.1);
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-style: normal;
}

.contact-lines a,
.contact-lines span {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--blue);
  font-weight: 850;
}

.contact-lines small {
  color: var(--muted);
  font-weight: 680;
}

.advisor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.advisor img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.advisor strong,
.advisor span,
.advisor a {
  display: block;
}

.advisor strong {
  color: var(--blue);
}

.advisor span {
  color: var(--muted);
}

.advisor a {
  margin-top: 2px;
  color: var(--blue);
  font-weight: 850;
}

.cta-band {
  padding: 62px 0;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.84);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: 2.45rem;
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  border-top: 5px solid var(--gold);
  background: #f2f6f4;
  color: var(--text);
}

.footer-grid {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: 46px;
  padding: 54px 0;
}

.footer-company {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

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

.footer-nav > div {
  padding-top: 4px;
  border-top: 1px solid var(--line-strong);
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 15px;
}

.footer-nav a,
.footer-nav span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.footer-nav a:hover {
  color: var(--blue);
}

.mobile-bar {
  display: none;
}

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

  .main-nav {
    gap: 10px;
    font-size: 13.5px;
  }
}

@media (max-width: 1080px) {
  .header-contact {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.5rem;
  }

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

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

@media (max-width: 920px) {
  body {
    padding-bottom: 76px;
  }

  .header-inner {
    min-height: 68px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 18px auto 18px;
    z-index: 260;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    max-height: calc(100dvh - 100px);
    padding: 16px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: var(--blue-soft);
  }

  .hero {
    min-height: auto;
    padding: 82px 0 66px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(250, 249, 245, 0.97) 0%, rgba(250, 249, 245, 0.9) 58%, rgba(250, 249, 245, 0.45) 100%);
  }

  .split,
  .split.reverse,
  .contact-grid,
  .feature-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 320;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(10, 48, 79, 0.13);
  }

  .mobile-bar a {
    min-height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }
}

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

  .container {
    width: calc(100% - 28px);
  }

  .brand-logo {
    max-width: 66px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero {
    padding: 70px 0 58px;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 249, 245, 0.98) 0%, rgba(250, 249, 245, 0.92) 58%, rgba(250, 249, 245, 0.54) 100%),
      linear-gradient(90deg, rgba(250, 249, 245, 0.9), rgba(250, 249, 245, 0.4));
  }

  .hero-lead,
  .section-lead,
  .page-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .actions {
    display: grid;
  }

  .button,
  .text-button {
    width: 100%;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .section-heading,
  .section-heading .eyebrow {
    text-align: left;
    justify-content: flex-start;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .route-grid,
  .card-grid,
  .step-grid,
  .metric-grid,
  .form-grid,
  .choice-grid,
  .trust-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    border-left: 0;
  }

  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .form-card,
  .card,
  .route-card,
  .step-card,
  .contact-panel,
  .soft-panel,
  .legal-box {
    padding: 20px;
  }

  .faq-list summary {
    padding: 18px 48px 18px 18px;
  }

  .faq-list details p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.08rem;
  }

  .brand-copy {
    display: none;
  }
}

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