/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #f5f1e8;
  color: #1b1b1b;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout wrappers */

main {
  padding: 0 1.5rem 3rem;
}

/* HEADER */

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f1e8;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 4px;   /* raises logo to align with text */
}

/* LOGO – THIS CONTROLS SIZE */
.logo-image {
  height: 54px;     /* change this number to make it smaller or larger */
  width: auto;
  display: block;
}

/* Brand text + nav */

.brand-block {
  text-align: left;
}

.brand-main {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

.main-nav {
  margin-top: 0.7rem;
  display: flex;
  gap: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.main-nav a:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

/* HERO */

.hero {
  padding: 2.5rem 0 2.5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.5rem 1.75rem 1.3rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 0.9rem;
}

.hero-panel-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-copy h1 {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-subtitle {
  max-width: 32rem;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #1b1b1b;
  cursor: pointer;
}

.btn.primary {
  background: #1b1b1b;
  color: #f5f1e8;
}

.btn.secondary {
  background: transparent;
}

/* SECTIONS */

.section {
  padding: 2.5rem 0 1.5rem;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

.section-header h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.section-header p {
  margin: 0;
  opacity: 0.85;
}

.section-tenants,
.section-partners {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* GRID + CARDS */

.grid.two {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.card {
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.5rem 1.5rem 2rem;  /* bottom padding increased from 1.25 → 2rem */
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: "Cinzel", serif;
}

.bullet-list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.bullet-list li {
  margin-bottom: 0.45rem;
}

.highlight-box {
  background-color: #ece5d8;
  padding: 1.25rem 1.25rem;
  border-radius: 16px;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  max-width: 620px;  /* ← ADD THIS */
}

.quote-block {
  margin: 0.5rem 0 0.5rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
  font-style: italic;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.2rem 1.5rem 1.5rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .grid.two {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    padding: 1rem;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
  }
    flex-wrap: wrap;

  .brand-main {
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Property page responsive */
  .property-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .property-hero-media {
    order: -1;
  }

  .property-summary-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .property-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

}

@media (max-width: 500px) {
  .property-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.assets-section {
  padding: 4rem 0;
  border-top: 1px solid #ddd2c4;
  margin-top: 3rem;
}

.assets-section h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.asset-card {
  background: #f6f1ea;
  padding: 1.75rem;
  border-radius: 18px;
  margin-bottom: 1.75rem;
  border: 1px solid #e2d6c8;
}

.asset-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.asset-sub {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.asset-meta {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.assets-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.tenant-cta {
  margin-top: 1.5rem;
}

.tenant-cta .btn {
  background: #1b1b1b;
  color: #f5f1e8;
  border: none;
}
.tenant-cta {
  text-align: center;
  margin-top: 1.2rem;
}
/* AVAILABLE OPPORTUNITIES */

.section-availability {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 3rem;
}

.availability-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.availability-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.availability-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.availability-body {
  padding: 1.4rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.availability-body h3 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
}

.availability-meta {
  font-size: 0.86rem;
  opacity: 0.75;
  margin: 0 0 0.4rem;
}

.availability-contact {
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.availability-contact a {
  text-decoration: underline;
}

/* Stack cards nicely on smaller screens */
@media (max-width: 1000px) {
  .availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .availability-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .availability-photo {
    height: 210px;
  }
}
.tenant-application-block {
  max-width: 800px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem;
  background: #ece5d8;
  border-radius: 18px;
  border: 1px solid #e2d6c8;
}

.tenant-application-block h3 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.tenant-application-block p {
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.application-download-btn {
  display: inline-block;
  background: #1b1b1b;
  color: #f5f1e8;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.application-download-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}
/* PROPERTY PAGE — TAMARISK */

.property-page .property-hero {
  padding: 3rem 0 2rem;
  background: #f5f1e8;
}

.property-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
}

.property-hero-copy h1 {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}

.property-hero-location {
  margin-top: -0.4rem;
  font-size: 1rem;
  opacity: 0.85;
}

.property-hero-photo {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.15);
  object-fit: cover;
}

.property-hero-buttons {
  margin: 1.8rem 0 0.8rem;
  display: flex;
  gap: 0.9rem;
}

.property-summary-section {
  padding: 2.5rem 0;
}

.property-summary-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.property-summary-card {
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.12);
}

.property-facts-list {
  padding-left: 1.1rem;
  margin: 0.6rem 0;
}

/* Gallery */
.property-gallery-section {
  padding: 2.5rem 0 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.property-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.property-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.9rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #d8cdbd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

.gallery-note {
  margin-top: 1rem;
  opacity: 0.85;
}

/* CTA */
.property-cta-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.property-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-btn {
  margin-top: 1.2rem;
}

/* Property page responsive - AFTER all base styles */
@media (max-width: 880px) {
  .property-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .property-hero-media {
    order: -1;
  }

  .property-hero-buttons {
    flex-wrap: wrap;
  }

  .property-summary-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .property-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
}

@media (max-width: 500px) {
  .property-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}