/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-soft: rgba(18, 18, 18, 0.84);
  --border: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.22);
  --text: #ece7dc;
  --text-muted: #a8a093;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

::selection {
  background: rgba(212, 175, 55, 0.28);
  color: #fff8e6;
}

.js .page-transition {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 42%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.46));
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.js .page-body > :not(.page-transition):not(script) {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
}

.js .page-body.is-ready > :not(.page-transition):not(script) {
  opacity: 1;
  transform: none;
}

.js .page-body.is-ready .page-transition {
  opacity: 0;
}

.js .page-body.is-leaving > :not(.page-transition):not(script) {
  opacity: 0.08;
  transform: translateY(-8px);
  filter: blur(3px);
}

.js .page-body.is-leaving .page-transition {
  opacity: 1;
  transform: scale(1.01);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 48px;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.nav-brand {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  padding: 8px 18px;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
  position: fixed;
  top: 68px;
  right: 0;
  left: 0;
  z-index: 999;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 12px 48px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ===== PAGE OFFSET ===== */
.page-body {
  padding-top: 68px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 92px;
  border-bottom: 1px solid var(--border);
  background: #050505;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-layer {
  position: absolute;
  inset: -5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform, opacity;
}

.hero-bg-primary {
  background-image: url("../img/hero-gold-mine-1.png");
  animation: heroPrimary 28s ease-in-out infinite;
}

.hero-bg-secondary {
  background-image: url("../img/hero-gold-mine-2.png");
  animation: heroSecondary 28s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.34) 30%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.28) 28%, rgba(5, 5, 5, 0.2) 72%, rgba(5, 5, 5, 0.82) 100%),
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0) 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: soft-light;
  animation: gridDrift 24s linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-glow-left {
  top: 18%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 72%);
  animation: glowFloat 16s ease-in-out infinite alternate;
}

.hero-glow-right {
  right: -120px;
  bottom: 14%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 72%);
  animation: glowFloat 20s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 10px 16px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.34);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: rgba(236, 231, 220, 0.8);
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-logo {
  width: clamp(280px, 30vw, 420px);
  max-width: 86vw;
  margin: 0 auto 28px;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.4));
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-name {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.95s ease 0.32s both;
}

.hero-tagline {
  max-width: 760px;
  margin: 0 auto 42px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.7vw, 1.06rem);
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: rgba(236, 231, 220, 0.78);
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.45s both;
}

.hero-divider {
  width: 56px;
  height: 1px;
  margin: 0 auto 42px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), var(--gold), rgba(212, 175, 55, 0));
  animation: fadeUp 1s ease 0.55s both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1.05s ease 0.65s both;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: rgba(236, 231, 220, 0.55);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 999px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.btn-gold {
  background: var(--gold);
  color: #050505;
}

.btn-gold:hover {
  background: #caa32d;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.18);
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.72);
  color: var(--gold);
  background: rgba(5, 5, 5, 0.18);
}

.btn-outline:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.18);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 48px;
}

.section-label {
  display: block;
  margin-bottom: 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  line-height: 1.3;
}

.section-title span {
  color: var(--gold);
}

.section-text {
  max-width: 620px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.content-visual {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow);
}

.content-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 45%, rgba(5, 5, 5, 0.48) 100%);
  pointer-events: none;
}

.content-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.content-visual:hover img {
  transform: scale(1.07);
}

.content-visual-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.45);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: rgba(236, 231, 220, 0.8);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.section-border-top {
  border-top: 1px solid var(--border);
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--border);
  background: var(--border);
}

.card {
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow: var(--shadow);
}

.card-num {
  margin-bottom: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.card h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: normal;
}

.card p {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ===== INFO ROW ===== */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.info-label {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.info-value {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.info-value a {
  color: var(--text);
}

.info-value a:hover {
  color: var(--gold);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 64px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
  -webkit-appearance: none;
  background: var(--surface-soft);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

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

/* ===== PAGE HEADER ===== */
.page-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0));
}

.page-header h1 {
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: normal;
}

.page-header h1 span {
  color: var(--gold);
}

.page-header p {
  max-width: 560px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== PRICING NOTE ===== */
.pricing-note {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0)),
    var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.pricing-note p {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.pricing-note strong {
  color: var(--text);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 60px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 44%),
    var(--surface);
}

.cta-strip h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: normal;
}

.cta-strip h2 span {
  color: var(--gold);
}

.cta-strip p {
  margin-bottom: 32px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand .footer-name {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 240px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-links h4 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p,
.footer-bottom a {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

/* ===== UTILITY ===== */
.text-gold {
  color: var(--gold);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

/* ===== ANIMATION ===== */
@keyframes heroPrimary {
  0%,
  40% {
    opacity: 0.8;
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50%,
  90% {
    opacity: 0;
    transform: scale(1.11) translate3d(-2%, -1%, 0);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes heroSecondary {
  0%,
  40% {
    opacity: 0;
    transform: scale(1.12) translate3d(2%, 1%, 0);
  }

  50%,
  90% {
    opacity: 0.72;
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1.12) translate3d(2%, 1%, 0);
  }
}

@keyframes glowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -20px, 0) scale(1.08);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-36px, 24px, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: calc(92vh - 68px);
    padding: 92px 24px 72px;
  }

  .hero-kicker {
    max-width: 320px;
    line-height: 1.5;
  }

  .hero-logo {
    width: 260px;
  }

  .hero-name {
    letter-spacing: 0.09em;
  }

  .hero-tagline {
    letter-spacing: 0.05em;
  }

  .hero-scroll {
    display: none;
  }

  .js .page-body > :not(.page-transition):not(script) {
    transform: translateY(10px);
  }

  .section {
    padding: 60px 24px;
  }

  .section-sm {
    padding: 50px 24px;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 40px;
  }

  .contact-grid {
    gap: 48px;
  }

  .page-header {
    padding: 48px 24px 40px;
  }

  .cta-strip {
    padding: 48px 24px;
  }

  .footer {
    padding: 40px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
  }

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

@media (max-width: 480px) {
  .mobile-nav a {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a {
    width: 220px;
    text-align: center;
  }

  .hero-kicker {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .content-visual {
    border-radius: 22px;
  }

  .content-visual-caption {
    left: 16px;
    bottom: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
