/* Горные кварталы — main styles */
:root {
  --orange: #e8742a;
  --orange-deep: #c45a18;
  --teal: #2a4548;
  --teal-soft: #3d5c60;
  --ink: #1a2426;
  --muted: #5c6b6e;
  --sand: #f3efe8;
  --sand-2: #e8e2d8;
  --cream: #faf8f4;
  --white: #ffffff;
  --line: rgba(42, 69, 72, 0.12);
  --shadow: 0 12px 40px rgba(26, 36, 38, 0.12);
  --radius: 999px;
  --radius-md: 20px;
  --header-h: 72px;
  --nav-h: 72px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--teal);
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--teal);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.btn-dark:hover {
  background: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1rem;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.brand-pill,
.nav-pill,
.phone-pill {
  display: flex;
  align-items: center;
  background: rgba(26, 36, 38, 0.82);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-pill {
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  gap: 0.55rem;
}

.brand-pill img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand-pill span {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-pill span em {
  font-style: normal;
  color: var(--orange);
}

.nav-pill {
  display: none;
  gap: 0.15rem;
  padding: 0.35rem;
}

.nav-pill a {
  padding: 0.65rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-pill a:hover,
.nav-pill a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.phone-pill {
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--orange);
}

.phone-pill:hover {
  background: var(--orange-deep);
}

@media (min-width: 1100px) {
  .nav-pill {
    display: flex;
  }
}

@media (max-width: 640px) {
  .phone-pill {
    font-size: 0;
    padding: 0.7rem;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .phone-pill::before {
    content: "☎";
    font-size: 1rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 18, 0.35) 0%, rgba(10, 16, 18, 0.15) 35%, rgba(10, 16, 18, 0.72) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 116, 42, 0.18), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5.5rem;
  padding-top: 7rem;
}

.hero-tag {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.85rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--orange);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-stats span + span::before {
  content: "·";
  margin-right: 1.25rem;
  opacity: 0.5;
}

.hero-next {
  position: absolute;
  right: 1.5rem;
  bottom: 6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (min-width: 960px) {
  .hero-content {
    margin-bottom: 4.5rem;
  }
  .hero-next {
    bottom: 3rem;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.section-dark {
  background: var(--teal);
  color: #e8eeef;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .eyebrow,
.section-dark .lead,
.section-dark p {
  color: rgba(232, 238, 239, 0.78);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
  .split-reverse {
    grid-template-columns: 1.1fr 1fr;
  }
  .split-reverse .split-text {
    order: 2;
  }
}

.split-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

.fact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  min-height: 120px;
}

.fact-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--orange);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.fact-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

.facts-visual {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .facts-visual {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.facts-visual figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.facts-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Location */
.location-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  box-shadow: var(--shadow);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.views-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.views-row figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.views-row a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.views-row a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.views-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.views-row a:hover img {
  transform: scale(1.04);
}

.views-row figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.map-box {
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand-2);
}

.nearby {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.nearby-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.nearby-head h3 {
  margin-bottom: 0.65rem;
}

.nearby-item {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.nearby-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .nearby-item {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  .nearby-item--quad {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .nearby-item--quad .nearby-text {
    order: 2;
  }
}

.nearby-item h3 {
  margin-bottom: 0.75rem;
}

.nearby-meta {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  color: var(--teal);
}

.nearby-meta strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--orange);
  margin-right: 0.35rem;
  font-weight: 600;
}

.nearby-video {
  aspect-ratio: 16 / 10;
}

.nearby-photos {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.75rem;
  min-height: 260px;
}

.nearby-photo {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  background: #111;
}

.nearby-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nearby-photo:hover img {
  transform: scale(1.04);
}

.nearby-photo--wide {
  aspect-ratio: 4 / 3;
}

.nearby-photo--tall {
  aspect-ratio: 3 / 4;
}

@media (min-width: 700px) {
  .nearby-photos {
    min-height: 320px;
  }

  .nearby-photo--wide,
  .nearby-photo--tall {
    aspect-ratio: auto;
    height: 100%;
  }
}

.poi-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.poi-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.poi-list strong {
  display: block;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.poi-list span {
  font-size: 0.92rem;
  color: var(--muted);
}

.poi-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Invest */
.invest-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .invest-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.invest-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.4rem;
}

.invest-card.accent {
  background: linear-gradient(145deg, rgba(232, 116, 42, 0.22), rgba(255, 255, 255, 0.04));
  border-color: rgba(232, 116, 42, 0.35);
}

.invest-card .num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--orange);
  margin: 0.4rem 0 0.6rem;
}

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

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Apartment */
.apt-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 960px) {
  .apt-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.apt-plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.apt-plan--photo {
  padding: 0;
  overflow: hidden;
  background: #f7f7f5;
}

.apt-plan-img {
  width: 100%;
  height: auto;
  display: block;
}

.plan-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.plan-hotspot__dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(232, 116, 42, 0.45);
}

.plan-hotspot.is-active .plan-hotspot__dot,
.plan-hotspot:hover .plan-hotspot__dot {
  background: var(--orange-deep);
  transform: scale(1.12);
}

.plan-hotspot__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(26, 36, 38, 0.88);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.plan-hotspot:hover .plan-hotspot__tip,
.plan-hotspot.is-active .plan-hotspot__tip,
.plan-hotspot:focus-visible .plan-hotspot__tip {
  opacity: 1;
}

.hotspot-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 116, 42, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(232, 116, 42, 0);
  }
}

.apt-view {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow);
}

.apt-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.apt-view-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(26, 36, 38, 0.78);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apt-drone {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
  align-items: center;
}

@media (min-width: 900px) {
  .apt-drone {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.25rem;
  }
}

.apt-drone-video {
  aspect-ratio: 16 / 10;
}

.price-row {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (min-width: 560px) {
  .price-row {
    grid-template-columns: 1fr 1fr;
  }
}

.price-card {
  background: var(--sand);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
}

.price-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--teal);
  margin-top: 0.25rem;
}

.features {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.features li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* Forms */
.form {
  display: grid;
  gap: 0.75rem;
}

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

@media (min-width: 640px) {
  .form-inline {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 116, 42, 0.15);
}

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

.form-msg {
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-msg.ok {
  color: #2f7d4a;
}

.form-msg.err {
  color: #b42318;
}

.lead-box {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
}

.section-dark .lead-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .field label {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  caret-color: #fff;
  -webkit-text-fill-color: #fff;
}

.section-dark .field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
}

.section-dark .field input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark .field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

@media (max-width: 959px) {
  .site-footer {
    /* место под fixed mobile-nav, без белой полосы после футера */
    padding-bottom: calc(2rem + var(--nav-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
  }
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.socials a {
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Mobile bottom nav */
.mobile-nav {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(0.65rem + env(safe-area-inset-bottom));
  z-index: 120;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.15rem;
  padding: 0.45rem 0.35rem;
  background: rgba(26, 36, 38, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 14px;
}

.mobile-nav a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav a.is-active {
  color: var(--orange);
}

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

/* Floating CTA desktop */
.float-cta {
  display: none;
}

@media (min-width: 960px) {
  .float-cta {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    background: rgba(26, 36, 38, 0.9);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .float-cta .btn {
    padding: 0.85rem 1.2rem;
  }

  .float-cta .btn-link {
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 14, 16, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(440px, 100%);
  background: var(--cream);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal.is-open .modal-card {
  transform: none;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-close {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hotspot-pulse {
    animation: none;
  }
}
