:root {
  --bg: #f6f3ef;
  --paper: #ffffff;
  --ink: #151313;
  --muted: #68615c;
  --line: #ded8d1;
  --dark: #171412;
  --red: #c82127;
  --red-dark: #981a20;
  --soft: #ebe5dd;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(23, 20, 18, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}

.nav a:hover {
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: auto;
  padding: clamp(48px, 6vw, 82px) clamp(18px, 4vw, 56px);
  background: #f6f3ee;
  color: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.3vw, 6.4rem);
  line-height: 0.92;
  font-weight: 860;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(35, 28, 23, 0.14);
}

.hero-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.hero-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  padding: 18px;
  background: #fff;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  margin-bottom: 5px;
}

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

section {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--paper);
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.18rem;
}

.section-head {
  max-width: 780px;
}

.gallery {
  background: var(--dark);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  margin-top: 28px;
}

.gallery-grid figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tenant-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.tenant-card {
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.tenant-type {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tenant-card p {
  min-height: 54px;
  color: var(--muted);
}

.tenant-card a {
  color: var(--red-dark);
  font-weight: 760;
  text-decoration: none;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1.24fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 10px 0 24px;
  list-style: none;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
}

.map-frame {
  min-height: 430px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

.leasing .split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.leasing p,
.contact p {
  color: var(--muted);
}

.leasing-box {
  padding: 24px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.leasing-box strong,
.leasing-box span {
  display: block;
}

.leasing-box span {
  margin-top: 8px;
  color: var(--muted);
}

.leasing-button {
  margin-top: 20px;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf8;
}

.map-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.small-note {
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--dark);
  color: #fff;
}

.footer strong,
.footer span {
  display: block;
}

.footer span,
.footer a {
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  min-height: calc(100vh - 105px);
}

.legal-page .band {
  max-width: 920px;
  margin: 0 auto;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 1.35rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    width: 64px;
    height: 64px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .location,
  .gallery-grid,
  .leasing .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 0;
  }

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

@media (max-width: 620px) {
  .nav {
    font-size: 0.86rem;
  }

  .quick-info,
  .tenant-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
