/* =========================================
   Design tokens (colors, fonts, spacing)
   ========================================= */

:root {
  --navy: #011b42;
  --navy-dark: #01132e;
  --brass: #a97e4e;
  --gold: #c9a227;
  --gold-dark: #a98620;
  --cream: #f7f5ef;
  --warm-white: #f8f7f4;
  --ink: #262420;
  --ink-light: #6b675e;

  --status-available: #1a7a4c;
  --status-leased: #8f2d3f;
  --status-pending: #8f6a40;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* =========================================
   Base
   ========================================= */

body {
  font-family: var(--font-body);
  margin: 0;
  color: var(--ink);
  background-color: var(--warm-white);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

a {
  color: inherit;
}

/* =========================================
   Header & nav
   ========================================= */

header {
  background-color: var(--navy);
  border-bottom: 3px solid var(--brass);
  padding: 20px 20px 16px;
  text-align: center;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 160px;
  height: auto;
  display: block;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.3px;
  margin: 4px 0 0;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--brass);
}

nav a.nav-cta {
  background-color: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 4px;
  border-bottom: none;
  font-weight: 700;
  font-size: 17px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a::after {
  content: '\25BE';
  margin-left: 5px;
  font-size: 10px;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -6px);
  background-color: var(--navy);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  border-bottom: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--brass);
}

nav a.nav-cta:hover {
  background-color: var(--gold-dark);
}

/* =========================================
   Location banner (locations page)
   ========================================= */

.location-banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (max-width: 640px) {
  .location-banner img {
    height: 340px;
  }
}

/* =========================================
   Feature photo
   ========================================= */

.feature-photo {
  text-align: center;
  padding: 16px 20px 0;
}

.feature-photo img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 4px;
}

/* =========================================
   Hero
   ========================================= */

.hero {
  background-color: var(--warm-white);
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 12px 24px 64px;
}

.hero h1 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.address {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
}

.intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-light);
}

.intro.spaced {
  margin-top: 32px;
}

.intro.small {
  font-size: 13px;
}

.hero-inner h2 {
  color: var(--navy);
  font-size: 20px;
  margin: 32px 0 12px;
}

.location-points {
  text-align: left;
  max-width: 480px;
  margin: 24px auto 0;
  padding-left: 20px;
  line-height: 1.9;
  color: var(--ink-light);
  font-size: 15px;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 34px;
  background-color: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background-color: var(--navy-dark);
}

.cta.small {
  padding: 11px 22px;
  margin: 6px 0 3px;
  font-size: 12px;
}

/* =========================================
   Photo carousel
   ========================================= */

.photo-carousel {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 48px;
}

.photo-carousel img {
  flex: 1;
  min-width: 0;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .photo-carousel {
    flex-wrap: wrap;
  }

  .photo-carousel img {
    flex: 1 1 calc(50% - 8px);
    height: 180px;
  }
}

/* =========================================
   Highlight bar
   ========================================= */

.highlight-bar {
  background-color: var(--navy);
  color: white;
  text-align: center;
  padding: 20px 20px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.3px;
}

/* =========================================
   Amenities split (location page)
   ========================================= */

.amenities-split {
  display: flex;
  gap: 48px;
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  flex-wrap: wrap;
}

.amenity-column {
  flex: 1;
  min-width: 300px;
}

.amenity-column h2 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 14px;
}

.amenity-column img {
  width: 100%;
  height: 280px;
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: 4px;
}

.amenity-column ul {
  padding-left: 20px;
  line-height: 1.9;
  color: var(--ink-light);
  font-size: 15px;
}

.column-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.amenity-column h3 {
  color: var(--navy);
  font-size: 16px;
  margin: 32px 0 12px;
}

.tenant-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.9;
  color: var(--ink-light);
  font-size: 15px;
}

.tenant-list a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.tenant-list a:hover {
  color: var(--brass);
}

.signage-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signage-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--navy);
}

.signage-item h4 a {
  color: inherit;
  text-decoration: none;
}

.signage-item h4 a:hover {
  color: var(--brass);
}

.signage-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-light);
}

.signage-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 16px;
}

/* =========================================
   Photo collage (amenities page)
   ========================================= */

.photo-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.photo-collage img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .photo-collage {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   Offices & Meeting Spaces landing
   ========================================= */

.offices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.office-card {
  flex: 1 1 200px;
  text-decoration: none;
  color: inherit;
  background-color: var(--cream);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  transition: background-color 0.2s ease;
}

.office-card:hover {
  background-color: #e4e3e0;
}

.office-card h2 {
  color: var(--navy);
  font-size: 18px;
  margin: 0 0 10px;
}

.office-card p {
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   Private Offices suite grid
   ========================================= */

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.suite-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 12px;
}

.suite-card h3 {
  color: var(--navy);
  font-size: 16px;
  margin: 0 0 4px;
}

.suite-price {
  color: var(--ink-light);
  font-size: 13px;
  margin: 0 0 6px;
}

.status-available,
.status-leased,
.status-pending {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0;
}

.status-available {
  color: var(--status-available);
}

.status-leased {
  color: var(--status-leased);
}

.status-pending {
  color: var(--status-pending);
}

@media (max-width: 720px) {
  .suite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .suite-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Current Tenants grid
   ========================================= */

.tenant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.tenant-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tenant-thumb {
  flex-shrink: 0;
  text-align: center;
}

.tenant-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.tenant-suite {
  font-size: 11px;
  color: var(--ink-light);
  margin: 6px 0 0;
}

.tenant-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}

a.tenant-name:hover {
  color: var(--brass);
}

.tenant-note {
  font-size: 12px;
  color: var(--ink-light);
  margin: 4px 0 0;
}

.tenant-cta {
  text-align: center;
  margin: 0 0 60px;
}

@media (max-width: 720px) {
  .tenant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tenant-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Contact / Apply form
   ========================================= */

.contact-section {
  background-color: var(--cream);
  padding: 60px 24px;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-heading {
  color: var(--navy);
  font-size: 28px;
  text-align: center;
  margin: 0 0 4px;
}

.contact-subheading {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  text-align: center;
  margin: 0 0 36px;
}

.contact-section .address {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8d4c8;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.contact-form button.cta {
  align-self: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================================
   Footer
   ========================================= */

footer {
  background-color: var(--cream);
  padding: 48px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
  border-top: 3px solid var(--brass);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

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

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: var(--navy);
  display: flex;
}

.social-icons a:hover {
  color: var(--brass);
}

.footer-contact {
  text-align: right;
}

.footer-contact .phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.footer-contact .broker {
  font-size: 12px;
  color: var(--ink-light);
  margin: 4px 0 10px;
}

.footer-contact .address-block {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 14px;
  line-height: 1.6;
}
