:root {
  --nav-bg: rgba(8, 8, 10, 0.78);
  --link: #f5f1ea;
  --link-hover: #d4af37;
  --line: rgba(255, 255, 255, 0.12);
  --page-bg-top: #090a0c;
  --page-bg-bottom: #131619;
  --text: #eee7dd;
  --muted-text: #b5aea4;
  --section-line: rgba(255, 255, 255, 0.06);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #090a0c;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  padding-top: 74px;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, var(--page-bg-top) 0%, var(--page-bg-bottom) 100%);
  color: var(--text);
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  max-width: 100%;
}

.nav-floating {
  position: fixed;
  left: 1rem;
  right: 1rem;
  top: 0.85rem;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.66), rgba(10, 11, 14, 0.42));
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 0.85rem 1.1rem;
  z-index: 30;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    padding 0.3s ease,
    top 0.3s ease;
}

.nav-floating::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%);
  pointer-events: none;
}

.nav-floating.is-scrolled {
  top: 0.55rem;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.84), rgba(10, 11, 14, 0.68));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 0.72rem 1rem;
  transform: translateY(0);
}

.nav-floating .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-width: 0;
}

.logo {
  text-decoration: none;
  color: #fff;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
}

.nav-logo-image {
  display: block;
  width: auto;
  height: 68px;
}

.nav-logo-text {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-inner {
  position: relative;
  margin-left: auto;
  min-width: 0;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.nav-links a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.2;
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links > li {
  flex: 0 0 auto;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--link-hover);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 26px;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, #f9e498 0%, #d4af37 50%, #996515 100%);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 11px;
}

.menu-toggle span:nth-child(3) {
  top: 22px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.nav-socials {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

.demo-content {
  width: 100%;
}

.site-footer {
  padding: 3rem 0 1.6rem;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: clip;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "brand map"
    "details details";
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.9rem;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 54px;
}

.footer-logo-text {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.footer-copy {
  text-align: right;
}

.footer-copy p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
}

.footer-brand,
.footer-details,
.footer-map {
  min-width: 0;
  height: 100%;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  grid-area: brand;
}

.footer-description {
  margin: 1rem 0 1.25rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.footer-socials a {
  color: var(--gold);
  text-decoration: none;
}

.footer-details {
  grid-area: details;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-content: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.footer-details .footer-column:last-child {
  grid-column: 1 / -1;
}

.footer-heading {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a,
.map-link {
  margin: 0;
  color: var(--muted-text);
  text-decoration: none;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.map-link:hover {
  color: var(--text);
}

.footer-column a {
  transition: color 0.2s ease;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
  background: #0c0d0f;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06), rgba(5, 6, 8, 0.14)),
    radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.12), transparent 44%);
  mix-blend-mode: multiply;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.95) invert(0.88) hue-rotate(180deg) saturate(0.5) brightness(0.82) contrast(1.02);
}

.map-link {
  display: inline-flex;
  margin-top: 0.9rem;
}

.footer-map {
  grid-area: map;
  display: flex;
  flex-direction: column;
}

.footer-map .map-frame {
  flex: 1;
}

.footer-map .map-link {
  margin-top: 1rem;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 196, 93, 0.82);
}

.hero-panel,
.content-panel,
.story-panel {
  position: relative;
  border-bottom: 1px solid var(--section-line);
  isolation: isolate;
  z-index: 0;
}

.hero-panel {
  min-height: calc(100vh - 74px);
  padding: 5rem 0 4rem;
  overflow-x: clip;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.88));
}

.hero-backdrop {
  position: absolute;
  top: 2.6rem;
  right: 0;
  width: min(40vw, 500px);
  height: min(68vh, 620px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 25% 18%, rgba(212, 175, 55, 0.3), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.9;
  filter: saturate(1.1);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 10% -8% -10% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 62%);
  filter: blur(24px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.section-heading,
.feature-card,
.parallax-stage,
.story-copy,
.story-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-title,
.section-heading h2,
.story-title {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.hero-title span {
  display: block;
  color: var(--gold);
}

.hero-text,
.section-heading p,
.parallax-copy p,
.story-text,
.feature-card p {
  color: var(--muted-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.15rem;
}

.hero-kicker {
  margin: 0 0 1.2rem;
  color: rgba(238, 231, 221, 0.72);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hero-meta-item {
  min-width: 220px;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(238, 231, 221, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #e2c45d 0%, #c69b28 100%);
  border-color: rgba(212, 175, 55, 0.5);
  color: #131313;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-visual {
  width: 100%;
  min-height: 640px;
  overflow-x: clip;
}

.hero-photo-frame {
  position: absolute;
  inset: 0.55rem 0.6rem 2.25rem -1.1rem;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.18);
  background: #0b0d0f;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.02), rgba(7, 8, 10, 0.28)),
    linear-gradient(90deg, rgba(7, 8, 10, 0.08), transparent 30%, rgba(7, 8, 10, 0.1));
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  mix-blend-mode: screen;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% top;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #e2c45d;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.float-card {
  position: absolute;
  width: min(238px, 70%);
  padding: 0.82rem 0.92rem 0.9rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 16, 18, 0.56), rgba(14, 16, 18, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.card-top {
  top: 0.4rem;
  left: -2.7rem;
}

.card-mid {
  top: 22%;
  right: -2.8rem;
}

.card-bottom {
  bottom: -0.3rem;
  left: -0.4rem;
}

.card-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.float-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
}

.float-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), transparent);
}

.content-panel {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 8rem 0;
  overflow-x: clip;
  background: linear-gradient(180deg, rgba(13, 15, 18, 0.9), rgba(13, 15, 18, 0.94));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.story-title {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  min-height: 250px;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-media {
  margin: -0.7rem -0.7rem 1.25rem;
  height: 220px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-number {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 1.35rem;
  font-family: Georgia, serif;
}

.feature-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.parallax-panel {
  overflow-x: clip;
  overflow: clip;
  padding-top: 7rem;
  padding-bottom: 7rem;
  border-radius: 32px;
}

.parallax-stage {
  position: relative;
  min-height: 70vh;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1013;
}

.parallax-layer {
  position: absolute;
  inset: 0;
}

.layer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.5);
  transform: scale(1.08);
}

.layer-back {
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  transform: scale(1.12);
}

.layer-glow {
  background:
    radial-gradient(circle at 50% 70%, rgba(212, 175, 55, 0.18), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 55%, transparent 100%);
  mix-blend-mode: screen;
}

.parallax-copy {
  position: absolute;
  inset: auto 2rem 2rem auto;
  width: min(430px, calc(100% - 4rem));
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(8, 8, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.story-panel {
  overflow-x: clip;
  min-height: 210vh;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.98), rgba(10, 11, 14, 1));
}

.story-pin {
  position: relative;
  width: min(1120px, 92%);
  margin: 0 auto;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
  z-index: 1;
}

.story-frame {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.44) saturate(0.9);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.7s ease;
}

.story-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-step {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.42s ease, transform 0.52s ease;
}

.story-step.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 1181px) {
  .footer-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    grid-template-areas:
      "brand map"
      "details details";
  }

  .footer-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.2rem;
  }

  .footer-details .footer-column:last-child {
    grid-column: auto;
  }
}

@media (min-width: 761px) {
  .footer-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-details .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "brand map"
      "details details";
  }
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "details"
      "map";
  }

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

  .footer-details .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .nav-floating {
    left: 0.85rem;
    right: 0.85rem;
    padding: 0.78rem 0.9rem;
  }

  .nav-logo-image {
    height: 60px;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0.68rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.75rem;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-photo-frame {
    inset: 0.85rem 0.35rem 2rem 0;
  }

  .card-top {
    left: -1.2rem;
  }

  .card-mid {
    right: -1.4rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .story-pin {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 4rem 0 3rem;
  }

  .hero-copy {
    width: min(700px, 100%);
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-text {
    max-width: 62ch;
  }

  .hero-meta-item {
    min-width: min(240px, 48%);
  }

  .hero-visual {
    min-height: 620px;
    margin-top: 1rem;
  }

  .hero-backdrop {
    top: 4.5rem;
    right: 2rem;
    width: min(82vw, 620px);
    height: 31rem;
  }

  .hero-photo-frame {
    inset: 1.2rem 0.75rem 2.8rem 0.75rem;
  }

  .float-card {
    width: min(248px, 60vw);
  }

  .card-top {
    top: 0;
    left: 0;
  }

  .card-mid {
    top: 19%;
    right: 0;
  }

  .card-bottom {
    bottom: 0;
    left: 2rem;
  }

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

  .story-panel {
    min-height: 260vh;
  }

  .story-pin {
    gap: 1rem;
    min-height: 100vh;
    align-items: center;
    padding: 5rem 0;
  }
}

@media (max-width: 1040px) {
  .nav-floating {
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.88rem 0.78rem;
    border-radius: 20px;
  }

  .nav-logo-image {
    height: 54px;
  }

  .menu-toggle {
    display: block;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle:focus,
  .menu-toggle:active,
  .menu-toggle:focus-visible {
    outline: none;
    box-shadow: none;
  }

  .nav-links {
    position: fixed;
    top: calc(5rem + env(safe-area-inset-top, 0px));
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: auto;
    min-height: calc(100dvh - 5.7rem - env(safe-area-inset-top, 0px));
    padding: 1.2rem 0.9rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.94), rgba(10, 10, 12, 0.86));
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  }

  .nav-links > li {
    opacity: 0;
    transform: translateY(16px);
  }

  .nav-links.open > li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open > li:nth-child(1) {
    transition-delay: 0.05s;
  }

  .nav-links.open > li:nth-child(2) {
    transition-delay: 0.1s;
  }

  .nav-links.open > li:nth-child(3) {
    transition-delay: 0.15s;
  }

  .nav-links.open > li:nth-child(4) {
    transition-delay: 0.2s;
  }

  .nav-links.open > li:nth-child(5) {
    transition-delay: 0.26s;
  }

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

  .nav-links a {
    font-size: 1.08rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-socials {
    display: flex;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: calc(70px + env(safe-area-inset-top, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .nav-floating {
    left: 0.65rem;
    right: 0.65rem;
    top: calc(0.55rem + env(safe-area-inset-top, 0px));
    padding: 1rem 0.75rem;
    border-radius: 18px;
  }

  .nav-logo-image {
    height: 50px;
  }
  .nav-links a {
    font-size: 1.15rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero-panel {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }

  .hero-backdrop {
    width: calc(100vw - 1.8rem);
    height: 22rem;
    top: 14rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 0.5rem;
  }

  .float-card {
    width: min(210px, 64vw);
    padding: 0.72rem 0.8rem 0.82rem;
  }

  .hero-photo-frame {
    inset: 0.35rem 0 4.75rem 0;
    border-radius: 28px;
  }

  .hero-photo-badge {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .card-top {
    top: -0.15rem;
    left: 0;
  }

  .card-mid {
    top: 18%;
    right: 0.1rem;
  }

  .card-bottom {
    bottom: -0.15rem;
    left: 0.35rem;
  }

  .content-panel {
    padding: 5rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

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

  .feature-media {
    height: 210px;
  }

  .parallax-stage {
    min-height: 58vh;
  }

  .story-pin {
    padding: 4rem 0;
    min-height: 100vh;
  }

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

@media (max-width: 560px) {
  .container,
  .content-panel {
    width: min(100%, calc(100% - 1.2rem));
  }

  .hero-panel {
    padding: 2.35rem 0 2rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-kicker,
  .hero-text,
  .section-heading p,
  .story-text,
  .feature-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions,
  .hero-meta {
    gap: 0.8rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-meta-item {
    min-width: 100%;
  }

  .hero-backdrop {
    top: 12.6rem;
    height: 19rem;
    border-radius: 28px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo-frame {
    inset: 0.5rem 0 4.2rem 0;
  }

  .float-card {
    width: min(190px, 58vw);
  }

  .card-label {
    font-size: 0.62rem;
  }

  .float-card strong {
    font-size: 0.84rem;
  }

  .card-top {
    left: 0;
  }

  .card-mid {
    top: 19%;
    right: 0;
  }

  .card-bottom {
    left: 0;
  }

  .story-frame {
    min-height: 340px;
  }

  .story-frame {
    min-height: 280px;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    gap: 0.75rem;
  }

  .footer-logo-image {
    height: 48px;
  }

  .footer-logo-text {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 240px;
    height: 240px;
  }
}
