/* Munna Tower — Dark + Gold Design System */
:root {
  --bg-deep: #0a0908;
  --bg: #12100e;
  --bg-elevated: #1a1714;
  --bg-card: #1f1b17;
  --bg-card-hover: #27221c;
  --border: rgba(212, 175, 106, 0.14);
  --border-strong: rgba(212, 175, 106, 0.32);
  --gold: #d4af6a;
  --gold-bright: #e8c98a;
  --gold-dim: #a8894a;
  --gold-glow: rgba(212, 175, 106, 0.22);
  --text: #f3ebe0;
  --text-muted: #a89b8a;
  --text-dim: #6e6358;
  --white: #fffaf3;
  --danger: #c45c4a;
  --success: #6a9e6e;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Ambient background ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.bg-glow::before {
  width: 55vw;
  height: 55vw;
  top: -18vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(212, 175, 106, 0.28), transparent 70%);
}

.bg-glow::after {
  width: 40vw;
  height: 40vw;
  bottom: 10vh;
  left: -15vw;
  background: radial-gradient(circle, rgba(120, 80, 30, 0.22), transparent 70%);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 106, 0.35);
}

.logo-mark span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-bright);
  line-height: 1;
  font-weight: 600;
}

.logo em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

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

.nav a {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-bright);
  background: rgba(212, 175, 106, 0.08);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: #1a1208;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 0 0 0 transparent;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

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

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  min-height: 48px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: #1a1208;
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 106, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--gold-bright);
}

.btn-ghost:hover {
  background: rgba(212, 175, 106, 0.08);
  border-color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: pretty;
  margin-bottom: 1.25rem;
}

.hero h1 .line-gold {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 34ch;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.1;
}

.meta-item span {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card {
  background: linear-gradient(160deg, rgba(31, 27, 23, 0.95), rgba(18, 16, 14, 0.9));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tower-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 9, 8, 0.55) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      rgba(212, 175, 106, 0.06) 18px,
      rgba(212, 175, 106, 0.06) 19px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 22px,
      rgba(212, 175, 106, 0.05) 22px,
      rgba(212, 175, 106, 0.05) 23px
    ),
    linear-gradient(165deg, #2a231a 0%, #14110e 45%, #0c0a08 100%);
  border: 1px solid var(--border);
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.tower-visual .spire {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 42%;
  height: 78%;
  background: linear-gradient(180deg, #3a3228 0%, #1c1814 100%);
  clip-path: polygon(18% 100%, 0 12%, 50% 0, 100% 12%, 82% 100%);
  border: 1px solid rgba(212, 175, 106, 0.2);
  box-shadow: 0 0 40px rgba(212, 175, 106, 0.12);
}

.tower-visual .spire::after {
  content: "";
  position: absolute;
  inset: 12% 22% 8%;
  background: repeating-linear-gradient(
    0deg,
    rgba(232, 201, 138, 0.08) 0 2px,
    transparent 2px 14px
  );
}

.tower-visual .beacon {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px var(--gold), 0 0 40px var(--gold-glow);
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.85);
  }
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 560;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.hero-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.card-rows {
  display: grid;
  gap: 0.65rem;
}

.card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 250, 243, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.card-row svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.card-row strong {
  display: block;
  color: var(--text);
  font-weight: 550;
  font-size: 0.88rem;
}

.card-row span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* ---------- Sections ---------- */
section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-wrap: pretty;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(180deg, transparent, rgba(26, 23, 20, 0.55) 20%, rgba(26, 23, 20, 0.55) 80%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-copy .lead {
  color: var(--text);
  font-size: 1.15rem;
}

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

.pillar {
  padding: 1.35rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.pillar:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.pillar-num {
  font-family: var(--font-display);
  color: var(--gold-dim);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 560;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Features / Spaces ---------- */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.space-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.space-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.space-card.featured {
  grid-column: span 1;
  background:
    linear-gradient(160deg, rgba(212, 175, 106, 0.1), transparent 55%),
    var(--bg-card);
  border-color: rgba(212, 175, 106, 0.28);
}

.space-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.15rem;
  background: rgba(212, 175, 106, 0.06);
}

.space-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 560;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.space-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.space-tag {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 550;
}

/* ---------- Location strip ---------- */
.location-band {
  padding: 0;
}

.location-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--bg-elevated);
}

.location-copy {
  padding: 2.75rem 2.5rem;
}

.location-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}

.location-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

.address-block {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.address-line {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.98rem;
}

.address-line svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.address-line a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 175, 106, 0.4);
}

.address-line a:hover {
  text-decoration-color: var(--gold);
}

.map-panel {
  min-height: 320px;
  background:
    radial-gradient(circle at 40% 45%, rgba(212, 175, 106, 0.15), transparent 45%),
    linear-gradient(145deg, #1f1b17, #0f0d0b);
  position: relative;
  border-left: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.map-frame {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  position: relative;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(212, 175, 106, 0.05) 24px, rgba(212, 175, 106, 0.05) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(212, 175, 106, 0.05) 24px, rgba(212, 175, 106, 0.05) 25px),
    #14110e;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 0 8px rgba(212, 175, 106, 0.15), 0 0 24px var(--gold);
  animation: pulse 2.8s ease-in-out infinite;
  transform: none;
}

.map-pin label {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 9, 8, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.map-link {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.map-link:hover {
  border-bottom-color: var(--gold);
}

/* ---------- Tenants / hub ---------- */
.tenants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tenant {
  padding: 1.25rem 1.15rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: border-color 0.2s, color 0.2s;
}

.tenant:hover {
  border-color: var(--border-strong);
  color: var(--gold-bright);
}

.tenant strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-weight: 560;
}

/* ---------- Contact ---------- */
.contact {
  padding-bottom: 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.contact-panel > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(212, 175, 106, 0.06);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 550;
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item p {
  color: var(--text);
  font-size: 0.98rem;
}

.contact-item a:hover {
  color: var(--gold-bright);
}

.hours {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  background: rgba(212, 175, 106, 0.04);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hours strong {
  color: var(--gold-bright);
  font-weight: 600;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  font-weight: 550;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23d4af6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: rgba(106, 158, 110, 0.12);
  border: 1px solid rgba(106, 158, 110, 0.35);
  color: #b5d7b8;
}

.form-status.err {
  background: rgba(196, 92, 74, 0.12);
  border: 1px solid rgba(196, 92, 74, 0.35);
  color: #e8b0a6;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: #0a0908;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand .logo {
  font-size: 1.15rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tower-visual .beacon,
  .map-pin .dot {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-layout,
  .location-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 280px;
  }

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

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

  .hero {
    align-items: center;
    padding-top: calc(var(--header-h) + 2rem);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 9, 8, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
  }

  .header-cta {
    display: none;
  }

  .spaces-grid,
  .tenants-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 1.15rem;
  }

  .location-copy {
    padding: 2rem 1.5rem;
  }

  .contact-panel {
    padding: 1.5rem;
  }
}
