/* ============================================================================
   RyanKnuppel.com — global styles
   Design tokens live in :root so colors/type are easy to adjust.
   ============================================================================ */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --color-charcoal: #15191e;
  --color-charcoal-soft: #1c2229;
  --color-navy: #17324d;
  --color-navy-deep: #102438;
  --color-green: #427214;
  --color-green-dark: #345a10;
  --color-green-soft: #e8f0dc;
  --color-gold: #ba9447;
  --color-gold-soft: #f4ecdc;
  --color-warm-white: #f7f5f1;
  --color-white: #ffffff;
  --color-muted: #667085;
  --color-border: #e4e0d8;
  --color-text: #1a1f24;
  --color-text-soft: #3d4654;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --container: 1120px;
  --header-h: 5.25rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-soft: 0 14px 32px rgba(21, 25, 30, 0.08);
  --focus: 0 0 0 3px rgba(66, 114, 20, 0.35);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(66, 114, 20, 0.06), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(186, 148, 71, 0.08), transparent 50%),
    var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-green);
}

:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

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

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

.container-narrow {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.section {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

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

.section-dark {
  background:
    linear-gradient(160deg, var(--color-charcoal) 0%, var(--color-navy-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.55rem;
}

.section-dark .eyebrow {
  color: var(--color-gold);
}

.section-intro {
  max-width: 40rem;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border-color: rgba(21, 25, 30, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}

.btn-on-dark {
  background: var(--color-white);
  color: var(--color-charcoal);
}

.btn-on-dark:hover {
  background: var(--color-warm-white);
  color: var(--color-charcoal);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(21, 25, 30, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--color-white);
  padding: 0.15rem 0;
}

.logo {
  width: clamp(148px, 30vw, 188px);
  height: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem 1rem;
}

.nav-links a {
  color: var(--color-text-soft);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.92rem;
  padding: 0.35rem 0;
}

.nav-links a:hover {
  color: var(--color-green-dark);
}

.nav-links .header-cta {
  margin-left: 0.25rem;
  color: var(--color-white);
  min-height: 2.6rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

.nav-links .header-cta:hover {
  color: var(--color-white);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: var(--color-charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.site-header.nav-open .nav-links a {
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--color-border);
}

.site-header.nav-open .nav-links .header-cta {
  margin: 0.85rem 0 0;
  border: none;
  justify-content: center;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(66, 114, 20, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(186, 148, 71, 0.12), transparent 50%),
    linear-gradient(145deg, #10141a 0%, #15191e 45%, #17324d 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(0.75rem, 1.8vw, 1.15rem) 0 0;
}

.hero-inner {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.hero-copy {
  max-width: 36rem;
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin: 0 0 0.25rem;
}

.hero-brand span {
  color: #8fbe4a;
}

.hero .eyebrow {
  color: var(--color-gold);
}

.hero h1 {
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.15rem;
}

.hero-location {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    min-height: min(52vh, 480px);
  }

  .hero-media {
    width: 100%;
    max-width: 420px;
    justify-self: end;
  }
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0.95rem 0;
}

.trust-list {
  display: grid;
  gap: 0.65rem 1.25rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--color-text-soft);
}

.trust-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .trust-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-list li {
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------------------
   Help / services
   -------------------------------------------------------------------------- */
.help-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.help-item {
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-green);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.help-item:hover {
  border-color: rgba(66, 114, 20, 0.35);
  box-shadow: var(--shadow-soft);
}

.help-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.help-item p {
  color: var(--color-text-soft);
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.help-item .text-link {
  font-weight: 650;
  color: var(--color-green-dark);
  text-decoration: none;
}

.help-item .text-link:hover {
  color: var(--color-green);
  text-decoration: underline;
}

.referral-panel {
  margin-top: 1.75rem;
  padding: 1.25rem 1.25rem;
  border: 1px dashed rgba(66, 114, 20, 0.35);
  border-radius: var(--radius-lg);
  background: var(--color-green-soft);
  display: grid;
  gap: 0.85rem;
}

.referral-panel h3 {
  font-size: 1.15rem;
}

.referral-panel p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .referral-panel {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   Service area
   -------------------------------------------------------------------------- */
.areas-layout {
  display: grid;
  gap: 1.75rem;
}

.areas-secondary {
  margin-top: 0.85rem;
}

.areas-media {
  display: grid;
  gap: 0.85rem;
}

.areas-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.areas-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.areas-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(transparent, rgba(16, 20, 26, 0.75));
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 900px) {
  .areas-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
  }

  .areas-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .areas-photo-primary {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   Why / benefits
   -------------------------------------------------------------------------- */
.benefit-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.benefit-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1rem 1rem 1.15rem;
  background: var(--color-warm-white);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.benefit-list h3 {
  font-size: 1.15rem;
  margin: 0;
}

.benefit-list p {
  color: var(--color-text-soft);
  margin: 0;
  font-size: 0.96rem;
}

@media (min-width: 800px) {
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-copy p {
  color: var(--color-text-soft);
  font-size: 0.98rem;
}

.about-copy .personal-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-style: italic;
  color: var(--color-muted);
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.25rem;
  }
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process-steps {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.process-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.process-steps p {
  color: var(--color-text-soft);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-aside {
  color: var(--color-text-soft);
}

.contact-aside .brokerage-line {
  margin-top: 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--color-charcoal);
}

.form-field .req {
  color: var(--color-green-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-warm-white);
  color: var(--color-text);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: var(--focus);
  background: var(--color-white);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #b42318;
}

.field-error {
  display: none;
  font-size: 0.85rem;
  color: #b42318;
}

.form-field.is-invalid .field-error {
  display: block;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  align-items: start;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.consent-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--color-green);
}

.consent-field label {
  font-weight: 500;
}

.consent-field .field-error {
  grid-column: 2;
}

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.form-status.is-error {
  background: #fef3f2;
  color: #b42318;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 3rem;
  }
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
}

.final-cta .section-intro {
  margin: 0 auto 1.5rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-white);
  color: var(--color-text-soft);
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-logo {
  width: min(220px, 75%);
  margin-bottom: 0.85rem;
  background: var(--color-white);
}

.footer-identity {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.footer-contact {
  margin-top: 0.75rem;
}

.footer-contact a,
.footer-links a,
.footer-copy a {
  color: var(--color-green-dark);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-copy a:hover {
  color: var(--color-green);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-address,
.footer-license,
.footer-eho {
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-muted);
  margin-bottom: 0.85rem;
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.footer-built {
  display: inline-block;
  margin-left: 0.35rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
    gap: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   Inner pages (privacy, terms, accessibility, 404)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-content {
  padding: 2.5rem 0 4rem;
}

.page-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.page-content p,
.page-content li {
  color: var(--color-text-soft);
}

.page-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.error-page {
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.error-page h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.error-code {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
}
