/* ============================================================
   FlexPoint Business Space — Shared Stylesheet
   Design System: Navy Dark #0f1d47, Navy #1B2D6B, Accent #2E4BAD, Highlight #6B8FE8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@300;400;500;600;700;800&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Variables ---- */
:root {
  --navy-dark: #0f1d47;
  --navy: #1B2D6B;
  --accent: #2E4BAD;
  --highlight: #6B8FE8;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef0f6;
  --mid-gray: #ccd1e4;
  --text: #1a1e3c;
  --text-muted: #5a6380;
  --success: #22c55e;
  --font-body: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --max-w: 1200px;
  --section-pad: 80px 24px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(15,29,71,0.12);
  --shadow-lg: 0 12px 48px rgba(15,29,71,0.2);
  --transition: 0.25s ease;
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ---- Nav ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--highlight);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--highlight); transform: translateY(-1px); color: var(--white); }

/* ---- Nav Dropdown ---- */
.nav-links li {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,29,71,0.98);
  backdrop-filter: blur(10px);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  padding: 8px 0;
  z-index: 200;
  border: 1px solid rgba(107,143,232,0.15);
  list-style: none;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(15,29,71,0.98);
  border-left: 1px solid rgba(107,143,232,0.15);
  border-top: 1px solid rgba(107,143,232,0.15);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown li { width: 100%; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: none;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { color: var(--white); background: rgba(107,143,232,0.12); }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }
.has-dropdown > a::after { display: none; }
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.has-dropdown > a .chevron {
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--transition);
  margin-top: 2px;
}
.has-dropdown:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }

@media (max-width: 768px) {
  .nav-dropdown {
    display: block;
    position: static;
    transform: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: unset;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown a { font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .has-dropdown > a .chevron { display: none; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; border-bottom: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,71,0.88) 0%, rgba(27,45,107,0.6) 60%, rgba(15,29,71,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(107,143,232,0.4);
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 80px);
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--highlight);
  border-color: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,75,173,0.35);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  color: var(--white);
}

/* ---- Section Utility ---- */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-light { background: var(--off-white); }

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 14px;
}

.section-dark .section-label,
.section-navy .section-label { color: var(--highlight); }

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.section-dark .section-sub,
.section-navy .section-sub { color: rgba(255,255,255,0.72); }
.section-dark .section-title,
.section-navy .section-title { color: var(--white); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(107,143,232,0.2);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,143,232,0.5);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ---- Locations ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.location-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-img img { transform: scale(1.05); }

.location-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.badge-available { background: var(--success); color: var(--white); }
.badge-coming { background: var(--accent); color: var(--white); }

.location-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.location-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.location-body h3 {
  font-size: 26px;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.location-address {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.location-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.location-spec {
  text-align: center;
}

.spec-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.large img { height: 300px; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item img, .gallery-item.large img { height: 200px; }
}

/* ---- Contact / Form ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--highlight);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 28px;
}

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

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,75,173,0.12);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6380' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---- Suite Table ---- */
.suite-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.suite-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.suite-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.suite-table thead {
  background: var(--navy-dark);
  color: var(--white);
}

.suite-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  white-space: nowrap;
}

.suite-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: middle;
}

.suite-table tbody tr:last-child td { border-bottom: none; }
.suite-table tbody tr:nth-child(even) { background: var(--off-white); }
.suite-table tbody tr:hover { background: #eef2ff; }

.suite-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.status-available { background: #dcfce7; color: #15803d; }
.status-leased { background: #fee2e2; color: #b91c1c; }
.status-reserved { background: #fef9c3; color: #a16207; }

.suite-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-dark);
}

.inquiry-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 5px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.inquiry-btn:hover { background: var(--highlight); }
.inquiry-btn:disabled, .inquiry-btn.leased {
  background: var(--mid-gray);
  color: var(--text-muted);
  cursor: default;
}

/* ---- Floor Plan ---- */
.floorplan-wrap {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 20px;
}

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

.floorplan-suite {
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  padding: 14px 6px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.floorplan-suite.leased {
  background: var(--mid-gray);
  color: var(--text-muted);
}

.floorplan-suite:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(46,75,173,0.35);
  border-color: var(--highlight);
}

.fp-suite-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: block;
}

.fp-suite-sf {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.open .faq-a {
  max-height: 800px;
  padding-bottom: 20px;
}

/* ---- Coming Soon ---- */
.coming-soon-hero {
  min-height: 60vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.coming-soon-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 16px;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ---- Map ---- */
.map-embed {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  display: block;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  max-width: 200px;
  height: auto;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
   