:root {
  --bg: #0b0d10;
  --bg-soft: #11161d;
  --surface: rgba(18, 22, 29, 0.82);
  --surface-2: #141921;
  --surface-3: #171d26;
  --text: #f4efe5;
  --muted: #b9b2a2;
  --muted-2: #8d8990;
  --line: rgba(245, 215, 155, 0.16);
  --gold: #d9b36c;
  --gold-soft: #f1d59a;
  --success: #92d4a6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 179, 108, 0.08), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(217, 179, 108, 0.06), transparent 24%),
    linear-gradient(180deg, #0a0c0f 0%, #0e1318 55%, #0a0d11 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(217, 179, 108, 0.08), transparent 26%),
    linear-gradient(180deg, #0c1015, #0b0d10);
}

.eyebrow,
.panel-kicker {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

h1,
h2,
h3,
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

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

h1 {
  font-size: clamp(2.75rem, 6vw, 6rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  max-width: 15ch;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 215, 155, 0.22);
  background: linear-gradient(135deg, rgba(241, 213, 154, 0.16), rgba(217, 179, 108, 0.28));
  color: var(--text);
  font-weight: 600;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 215, 155, 0.45);
  background: linear-gradient(135deg, rgba(241, 213, 154, 0.24), rgba(217, 179, 108, 0.42));
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.button--full {
  width: 100%;
}

.glass {
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.88), rgba(14, 17, 23, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cursor-glow {
  position: fixed;
  inset: 0 auto auto 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 179, 108, 0.18) 0%, rgba(217, 179, 108, 0.04) 40%, transparent 70%);
  filter: blur(20px);
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
  opacity: 0.8;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 12, 15, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand span {
  display: grid;
  gap: 0.12rem;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  color: rgba(244, 239, 229, 0.88);
  font-size: 0.98rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  overflow: clip;
}

.hero__media,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s ease;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.84) 0%, rgba(6, 8, 10, 0.56) 38%, rgba(6, 8, 10, 0.48) 100%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.24), rgba(6, 8, 10, 0.58));
}

.hero__grid {
  background-image: url("../images/pattern-grid.svg");
  background-size: 520px;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.62fr;
  gap: 1.5rem;
  align-items: end;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 3rem;
}

.hero__copy {
  display: grid;
  gap: 1.4rem;
  align-self: center;
}

.hero__lead {
  max-width: 56ch;
  font-size: 1.05rem;
  color: #d6cfbf;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.tag-chip {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  color: #efe8da;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tag-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 215, 155, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero__panel,
.hero__stats {
  border-radius: var(--radius-lg);
}

.hero__panel {
  padding: 1.4rem;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.panel-heading h2 {
  font-size: 1.45rem;
  max-width: none;
}

.pulse-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--success);
  font-size: 0.88rem;
  white-space: nowrap;
}

.pulse-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(146, 212, 166, 0.7);
  animation: pulse 1.8s infinite;
}

.search-form {
  display: grid;
  gap: 0.95rem;
}

.search-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #efe8da;
  font-size: 0.92rem;
}

.search-form input,
.search-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  min-height: 50px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.search-form input:focus,
.search-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 215, 155, 0.38);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(217, 179, 108, 0.08);
}

.hero__stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-family: Georgia, "Times New Roman", serif;
}

.stat-card span,
.stat-card p {
  color: #d1c6b4;
}

.featured-spotlight {
  min-height: 150px;
  background:
    linear-gradient(180deg, rgba(217, 179, 108, 0.18), rgba(11, 14, 18, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 1rem 0;
  animation: marquee 32s linear infinite;
}

.marquee span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: #d9c9a8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.section-meta {
  max-width: 30ch;
  text-align: right;
}

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

.property-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 24, 31, 0.92), rgba(11, 14, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  transform-style: preserve-3d;
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 215, 155, 0.22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.property-card.is-hidden {
  display: none;
}

.property-card__media {
  position: relative;
  aspect-ratio: 1.15;
  overflow: hidden;
}

.property-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.24) 100%);
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.property-card:hover .property-card__media img {
  transform: scale(1.06);
}

.pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card__body {
  padding: 1.4rem 1.35rem 1.45rem;
  display: grid;
  gap: 1rem;
}

.property-card__topline,
.property-card__meta,
.property-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.property-card__topline,
.property-card__meta {
  font-size: 0.86rem;
  color: var(--muted);
}

.property-card__meta span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.property-card__footer strong {
  color: var(--gold-soft);
  font-size: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
}

.link-arrow {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--text);
  font-weight: 600;
}

.link-arrow span {
  transition: transform 0.25s ease;
}

.link-arrow:hover span {
  transform: translate(3px, -3px);
}

.empty-state {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

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

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 12, 0.1), rgba(6, 9, 12, 0.82) 78%);
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-card__content {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.destination-card__content span {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.destination-card__content p {
  color: #ddd6c9;
}

.signature-layout,
.faq-contact__layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.signature-copy {
  display: grid;
  gap: 1.35rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.65rem;
}

.feature-list article {
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.feature-list strong,
.contact-mini-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  font-size: 1.14rem;
}

.signature-visual {
  min-height: 640px;
  position: relative;
}

.stack-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card--large {
  inset: 4% 8% 8% 0;
}

.stack-card--small {
  width: 42%;
  height: 38%;
  right: 0;
}

.stack-card--small.top {
  top: 0;
}

.stack-card--small.bottom {
  bottom: 0;
}

.showcase-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.35rem;
}

.showcase-main {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.showcase-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.1) 0%, rgba(8, 10, 13, 0.62) 100%);
}

.showcase-overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 1;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  display: grid;
  gap: 0.55rem;
}

.showcase-label {
  color: var(--gold-soft);
}

.showcase-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.showcase-specs span {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #efe8da;
}

.showcase-thumbs {
  display: grid;
  gap: 0.9rem;
}

.showcase-thumb {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.showcase-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.showcase-thumb span {
  color: var(--text);
  font-weight: 600;
}

.showcase-thumb.is-active,
.showcase-thumb:hover {
  transform: translateX(4px);
  border-color: rgba(245, 215, 155, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

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

.process-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.process-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 179, 108, 0.14);
  color: var(--gold-soft);
  font-weight: 700;
}

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

.metric {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong,
.metric span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--gold-soft);
  line-height: 1;
}

.metric span {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.metric p {
  margin-top: 1rem;
  max-width: 26ch;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.editorial-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.editorial-card--wide {
  grid-column: span 2;
}

.editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.06), rgba(8, 10, 13, 0.8));
}

.editorial-card span {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  color: var(--text);
  font-weight: 600;
}

.editorial-card:hover img {
  transform: scale(1.06);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.faq-question span {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-soft);
  transition: transform 0.28s ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.2rem 1.2rem;
}

.contact-shell {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 1.3rem;
}

.contact-shell__intro {
  display: grid;
  gap: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.contact-mini-grid article {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.35rem;
}

.contact-mini-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  padding: 1.8rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.85fr;
  gap: 1.5rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-links a,
.footer-note p {
  color: var(--muted);
}

.lightbox {
  width: min(92vw, 1100px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(8, 10, 13, 0.96);
  padding: 1.25rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox img {
  max-height: 72vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.8rem;
}

#lightboxTitle {
  margin-top: 0.9rem;
  color: var(--text);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  max-width: 420px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(18, 24, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: translateY(130%);
  transition: transform 0.32s ease;
}

.toast.is-visible {
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(146, 212, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(146, 212, 166, 0);
  }
}

@media (max-width: 1180px) {
  .hero__content,
  .signature-layout,
  .showcase-shell,
  .faq-contact__layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 1.2rem;
    padding-bottom: 2rem;
  }

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

  .destination-grid,
  .property-grid,
  .process-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .editorial-card--wide {
    grid-column: span 1;
  }

  .signature-visual {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    border-radius: 24px;
    background: rgba(8, 11, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 4rem);
  }

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

  .showcase-main {
    min-height: 520px;
  }

  .showcase-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .contact-mini-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 5.5rem 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-meta {
    text-align: left;
  }

  .property-grid,
  .destination-grid,
  .process-grid,
  .metrics-grid,
  .editorial-grid,
  .showcase-thumbs {
    grid-template-columns: 1fr;
  }

  .showcase-thumb {
    grid-template-columns: 96px 1fr;
  }

  .signature-visual {
    min-height: 380px;
  }

  .stack-card--large {
    inset: 0 0 0 0;
  }

  .stack-card--small {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .hero__panel,
  .hero__stats,
  .contact-shell {
    border-radius: 24px;
  }

  .showcase-main {
    min-height: 420px;
  }

  .destination-card {
    min-height: 360px;
  }

  .lightbox {
    width: min(96vw, 1100px);
    padding: 0.9rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
