:root {
  --black: #050504;
  --charcoal: #11100e;
  --ink: #1a1714;
  --ivory: #f8f2e6;
  --muted: #c8bda9;
  --soft: #eee3d0;
  --gold: #d8b35f;
  --gold-deep: #a77d2b;
  --ruby: #b51f2e;
  --moss: #75806b;
  --line: rgba(216, 179, 95, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress::before {
  content: "";
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), #ffe4a0);
  box-shadow: 0 0 18px rgba(216, 179, 95, 0.72);
  transition: width 80ms linear;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(5, 5, 4, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 5, 4, 0.86);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ivory);
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(248, 242, 230, 0.82);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  transition: color 160ms ease;
}

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

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

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

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--black) !important;
  background: linear-gradient(135deg, var(--gold), #f2d78e);
  border-radius: 4px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--ivory);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 6vw, 72px) 56px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px clamp(18px, 4vw, 54px) 38px;
  z-index: 1;
  border: 1px solid rgba(216, 179, 95, 0.2);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  top: 124px;
  z-index: 1;
  width: min(30vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 95, 0.8), transparent);
  animation: goldRail 5.6s ease-in-out infinite;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform-origin: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.92) 0%, rgba(5, 5, 4, 0.62) 42%, rgba(5, 5, 4, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-content > * {
  animation: fadeSlideUp 780ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 270ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 360ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 12vw, 10.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 5.4rem);
}

h3 {
  color: var(--ivory);
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  color: rgba(248, 242, 230, 0.76);
  line-height: 1.75;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.04rem, 2vw, 1.38rem);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 640ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), #f3d88d);
}

.button.secondary {
  color: var(--ivory);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary.light {
  border-color: rgba(248, 242, 230, 0.38);
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 42px 0 0;
  padding: 1px;
  background: var(--line);
}

.hero-signals div {
  min-height: 96px;
  padding: 18px;
  background: rgba(5, 5, 4, 0.74);
  transition: background 220ms ease, transform 220ms ease;
}

.hero-signals div:hover {
  background: rgba(216, 179, 95, 0.12);
  transform: translateY(-4px);
}

.hero-signals dt {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-signals dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-console {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: clamp(28px, 7vw, 88px);
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(216, 179, 95, 0.32);
  border-radius: 8px;
  background: rgba(5, 5, 4, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  animation: consoleEnter 880ms cubic-bezier(0.2, 0.72, 0.2, 1) 540ms both;
}

.console-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-console strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

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

.console-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(248, 242, 230, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.86rem;
}

.section,
.intro,
.qr-section {
  padding: clamp(74px, 9vw, 126px) clamp(18px, 5vw, 62px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro {
  color: var(--ink);
  background: var(--ivory);
  padding-top: 54px;
  padding-bottom: 64px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: end;
}

.advisory-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  padding: 1px;
  background: rgba(167, 125, 43, 0.22);
}

.advisory-strip article {
  min-height: 180px;
  padding: 24px;
  background: #fff8eb;
  color: var(--ink);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.advisory-strip article:hover {
  transform: translateY(-6px);
  background: #fffdf7;
  box-shadow: 0 26px 70px rgba(26, 23, 20, 0.14);
}

.advisory-strip span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.advisory-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.advisory-strip p {
  margin-bottom: 0;
  color: rgba(26, 23, 20, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
}

.global-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070605;
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonMove 34s linear infinite;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 30px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  white-space: nowrap;
}

.ribbon-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 30px;
  border-radius: 50%;
  background: var(--gold);
}

.intro h2,
.split-copy h2,
.about-copy h2,
.proof-section h2,
.qr-section h2 {
  color: var(--ink);
}

.intro p,
.split-copy p,
.about-copy p,
.proof-section p,
.qr-section p {
  color: rgba(26, 23, 20, 0.72);
}

.dark-section {
  background:
    linear-gradient(180deg, var(--black), #0d0c0b 48%, var(--charcoal)),
    var(--black);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.service-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.service-card,
.proof-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.service-card:hover,
.proof-grid article:hover,
.area-list span:hover,
.market-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 179, 95, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.service-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.service-card p,
.proof-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.split-section,
.about-section,
.proof-section,
.qr-section {
  background: var(--ivory);
  color: var(--ink);
}

.split-grid,
.about-grid,
.contact-grid,
.buyer-grid,
.qr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.split-copy {
  max-width: 660px;
}

.lux-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(26, 23, 20, 0.82);
}

.lux-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.lux-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 1px;
  background: var(--gold-deep);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf0;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.lead-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}

.lead-form h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(26, 23, 20, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 23, 20, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 14px 13px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(216, 179, 95, 0.25);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(26, 23, 20, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.buyers-section {
  background:
    linear-gradient(135deg, rgba(5, 5, 4, 0.88), rgba(5, 5, 4, 0.72)),
    url("assets/luxury-hero.jpg") center / cover fixed;
}

.curation-panel {
  max-width: 720px;
}

.curation-panel h2 {
  color: var(--ivory);
}

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

.area-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(248, 242, 230, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.international-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(181, 31, 46, 0.12), transparent 28%),
    linear-gradient(180deg, #080706, #13100d 55%, #050504);
}

.international-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: railPulse 4.8s ease-in-out infinite;
}

.international-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.international-grid > * {
  min-width: 0;
}

.international-copy h2 {
  color: var(--ivory);
}

.international-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.investment-panel {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  min-width: 0;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-topline strong {
  color: var(--gold);
}

.route-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 1px;
  background: rgba(216, 179, 95, 0.28);
  overflow: hidden;
}

.route-strip::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 95, 0.34), transparent);
  animation: routeSweep 5.2s ease-in-out infinite;
}

.route-strip span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 56px;
  background: rgba(5, 5, 4, 0.82);
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.market-grid {
  display: grid;
  gap: 12px;
}

.market-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(216, 179, 95, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.market-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-grid h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.market-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.portrait-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(167, 125, 43, 0.2);
  box-shadow: var(--shadow);
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(167, 125, 43, 0.26);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

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

.proof-grid article {
  min-height: 210px;
  color: var(--ink);
  background: #fff8eb;
  border-color: rgba(167, 125, 43, 0.18);
}

.proof-grid h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(181, 31, 46, 0.18), transparent 24%),
    linear-gradient(180deg, var(--charcoal), var(--black));
}

.dark-form {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.dark-form h3,
.dark-form label {
  color: var(--ivory);
}

.dark-form input,
.dark-form select,
.dark-form textarea {
  border-color: rgba(248, 242, 230, 0.18);
  background: rgba(5, 5, 4, 0.44);
  color: var(--ivory);
}

.dark-form .form-note {
  color: var(--muted);
}

.contact-methods {
  margin-top: 28px;
  flex-direction: column;
  color: var(--soft);
}

.contact-methods a {
  color: var(--gold);
  font-weight: 800;
}

.qr-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.qr-grid {
  grid-template-columns: 1fr 220px;
}

.qr-grid img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 38px clamp(18px, 5vw, 62px);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.footer-grid img {
  width: 76px;
  margin-bottom: 12px;
}

.footer-grid p {
  margin-bottom: 8px;
  color: rgba(248, 242, 230, 0.66);
  font-size: 0.9rem;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2),
.proof-grid article:nth-child(2),
.area-list span:nth-child(2),
.market-grid article:nth-child(2) {
  --reveal-delay: 90ms;
}

.service-card:nth-child(3),
.proof-grid article:nth-child(3),
.area-list span:nth-child(3),
.market-grid article:nth-child(3) {
  --reveal-delay: 180ms;
}

.service-card:nth-child(4),
.area-list span:nth-child(4) {
  --reveal-delay: 270ms;
}

.service-card:nth-child(5),
.area-list span:nth-child(5) {
  --reveal-delay: 360ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
}

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

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

@keyframes goldRail {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-8%);
  }

  50% {
    opacity: 0.85;
    transform: translateX(8%);
  }
}

@keyframes consoleEnter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }

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

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes railPulse {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes routeSweep {
  0% {
    transform: translateX(-120%);
  }

  50%,
  100% {
    transform: translateX(330%);
  }
}

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 4, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .nav-call {
    margin-top: 10px;
  }

  .intro-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .buyer-grid,
  .international-grid,
  .advisory-strip,
  .qr-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(460px, 100%);
    margin-top: 30px;
  }

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

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

  .qr-grid img {
    width: min(280px, 100%);
  }
}

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

  .brand small {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 92svh;
    padding: 118px 18px 34px;
  }

  .hero::before {
    inset: 84px 12px 22px;
  }

  .hero::after {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.9), rgba(5, 5, 4, 0.68)),
      linear-gradient(0deg, rgba(5, 5, 4, 0.98), rgba(5, 5, 4, 0.18));
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .international-actions {
    flex-direction: column;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }

  .console-grid,
  .route-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .proof-grid article {
    min-height: auto;
  }

  .section,
  .intro,
  .qr-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }
}
