.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 11, 0.50);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  max-width: 640px;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(12, 11, 11, 0.6);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(12, 11, 11, 0.5);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero {
    background: linear-gradient(135deg, #0C0B0B, #0C0B0B);
  }
}

/* On very small screens, give the hero a sensible minimum */
@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }
}

.features {
  padding: 60px 20px;
}

.card {
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(12, 11, 11, 0.1);
}

.map-container iframe {
  border-radius: 10px;
}

/* ── Location Section ── */
.location-section {
  padding: 80px 0;
  background: #fff;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
  min-height: 420px;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-info h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0C0B0B;
  margin-bottom: 10px;
}

.location-tagline {
  color: #0C0B0B;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.location-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-details li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #E74C32;
}

.location-details li strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C0B0B;
  margin-bottom: 3px;
}

.location-details li address,
.location-details li a,
.location-details li span {
  font-style: normal;
  color: #0C0B0B;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.location-details li a:hover {
  color: #E74C32;
}

.location-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(12, 11, 11, 0.10);
  min-height: 380px;
}

.location-map iframe,
.location-map-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

@media (max-width: 768px) {
  .location-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .location-map {
    min-height: 280px;
  }
  .location-map iframe,
  .location-map-canvas {
    min-height: 280px;
  }
}

/* ── Units Section ── */
.units-section {
  padding: 80px 0;
  background: #F6F6F6;
}

.units-intro {
  margin-bottom: 56px;
}

.units-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0C0B0B;
}

.units-subtitle {
  color: #0C0B0B;
  font-size: 1.1rem;
  margin-top: 8px;
}

.units-category {
  margin-bottom: 56px;
}

.units-category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.units-category-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.units-category-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0C0B0B;
  margin: 0 0 6px;
}

.units-category-header p {
  color: #0C0B0B;
  margin: 0;
  font-size: 0.95rem;
}

.unit-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(12, 11, 11, 0.07);
  border: 1px solid #F6F6F6;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.unit-card:hover {
  box-shadow: 0 8px 28px rgba(12, 11, 11, 0.12);
  transform: translateY(-3px);
}

.unit-card--featured {
  border-color: #E74C32;
  box-shadow: 0 4px 20px rgba(231, 76, 50, 0.15);
}

.unit-card--wide {
  flex-direction: row;
  text-align: left;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.unit-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E74C32;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.unit-size {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0C0B0B;
  line-height: 1;
}

.unit-sqft {
  font-size: 0.8rem;
  color: #0C0B0B;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.unit-desc {
  color: #0C0B0B;
  font-size: 0.9rem;
  flex: 1;
  margin: 0;
}

.unit-price {
  font-size: 2rem;
  font-weight: 800;
  color: #E74C32;
  margin-top: 16px;
  line-height: 1;
}

.unit-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #0C0B0B;
}

.unit-availability {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.unit-availability--available {
  background: #F6F6F6;
  color: #E74C32;
}

.unit-availability--occupied,
.unit-availability--maintenance {
  background: #F6F6F6;
  color: #0C0B0B;
}

.unit-card--taken {
  opacity: 0.65;
}

.unit-unavailable-note {
  font-size: 0.8rem;
  color: #0C0B0B;
  font-style: italic;
}

.units-empty {
  color: #0C0B0B;
  padding: 32px 0;
}

.unit-banner {
  background: #fff;
  border: 1px solid #F6F6F6;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(12, 11, 11, 0.07);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.unit-banner--alt {
  background: #F6F6F6;
}

.unit-banner-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.unit-banner-left .unit-size {
  font-size: 2rem;
  white-space: nowrap;
}

.unit-banner-left .unit-size small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0C0B0B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.unit-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unit-perks li {
  font-size: 0.9rem;
  color: #0C0B0B;
  padding-left: 20px;
  position: relative;
}

.unit-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E74C32;
  font-weight: 700;
}

.unit-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.unit-banner-note {
  font-size: 0.85rem;
  color: #0C0B0B;
  margin: 0;
  text-align: right;
  max-width: 220px;
}

@media (max-width: 576px) {
  .unit-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .unit-banner-right {
    align-items: flex-start;
    width: 100%;
  }
  .unit-banner-note {
    text-align: left;
    max-width: 100%;
  }
}

/* ── Contact Section ── */
.contact-section {
  padding: 0;
}

.contact-bg-wrap {
  background: #F6F6F6;
  padding: 80px 0 96px;
}

.contact-bg-wrap .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-headline {
  text-align: center;
  max-width: 780px;
}

.contact-headline h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0C0B0B;
  margin-bottom: 10px;
}

.contact-headline p {
  color: #0C0B0B;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #F6F6F6;
  color: #0C0B0B;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.contact-quick-link:hover {
  border-color: #E74C32;
  color: #E74C32;
  box-shadow: 0 0 0 3px rgba(231, 76, 50, 0.1);
}

.contact-quick-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.contact-form-wrap {
  width: 100%;
  max-width: 780px;
  padding: 0;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C0B0B;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #F6F6F6;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0C0B0B;
  background: #F6F6F6;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #0C0B0B;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #E74C32;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(231, 76, 50, 0.12);
}

.contact-field textarea {
  resize: vertical;
}

.contact-recaptcha {
  margin-bottom: 20px;
}

.contact-submit {
  width: 100%;
  padding: 13px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: #E74C32;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.contact-submit:hover {
  background: #0C0B0B;
  color: #fff;
}

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


/* ── Apply / Rent Page ── */
.apply-page {
  min-height: 80vh;
}

.apply-hero {
  background: #0C0B0B;
  color: #fff;
  padding: 64px 0 48px;
}

.apply-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.apply-hero p {
  color: #0C0B0B;
  font-size: 1rem;
  margin: 0;
}

.apply-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.apply-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C0B0B;
}

.apply-field .req {
  color: #E74C32;
}

.apply-field input,
.apply-field select {
  padding: 11px 14px;
  border: 1px solid #F6F6F6;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0C0B0B;
  background: #F6F6F6;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: inherit;
}

.apply-field input::placeholder {
  color: #0C0B0B;
}

.apply-field input:focus,
.apply-field select:focus {
  border-color: #E74C32;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(231, 76, 50, 0.12);
}

.apply-success {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  color: #E74C32;
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.apply-hint {
  font-size: 0.8rem;
  color: #0C0B0B;
  margin-top: 2px;
}

/* Size selector cards */
.apply-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.apply-fieldset legend {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C0B0B;
  margin-bottom: 12px;
  float: left;
  width: 100%;
}

.apply-card-option {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  margin-bottom: 10px;
}

.apply-card-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.apply-card-body {
  display: grid;
  grid-template-columns: 90px 110px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #F6F6F6;
  border-radius: 10px;
  background: #F6F6F6;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.apply-card-option input[type="radio"]:checked + .apply-card-body {
  border-color: #E74C32;
  background: #F6F6F6;
  box-shadow: 0 0 0 3px rgba(231, 76, 50, 0.1);
}

.apply-card-option:hover .apply-card-body {
  border-color: #E74C32;
  background: #fff;
}

.apply-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0C0B0B;
}

.apply-card-size {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E74C32;
}

.apply-card-desc {
  font-size: 0.82rem;
  color: #0C0B0B;
}

.apply-recaptcha {
  margin-bottom: 24px;
}

.apply-submit {
  align-self: center;
  padding: 13px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: #E74C32;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.apply-submit:hover {
  background: #0C0B0B;
}

@media (max-width: 600px) {
  .apply-row {
    grid-template-columns: 1fr;
  }
  .apply-card-body {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .apply-submit {
    width: 100%;
  }
}


/* ── Tenant Portal ── */
.portal-page {
  background: #F6F6F6;
  min-height: 80vh;
  padding: 48px 0 80px;
}

.portal-header {
  margin-bottom: 32px;
}

.portal-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0C0B0B;
  margin-bottom: 4px;
}

.portal-header p {
  color: #0C0B0B;
  margin: 0;
}

.portal-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0C0B0B;
  margin: 32px 0 16px;
}

.portal-units {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portal-unit-card {
  background: #fff;
  border: 1px solid #F6F6F6;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.portal-unit-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0C0B0B;
}

.portal-unit-meta {
  font-size: 0.85rem;
  color: #0C0B0B;
  margin-top: 2px;
}

.portal-rate {
  font-size: 1.5rem;
  font-weight: 800;
  color: #E74C32;
}

.portal-rate-per {
  color: #0C0B0B;
  font-size: 0.9rem;
}

.portal-pay-note {
  font-size: 0.85rem;
  color: #0C0B0B;
  margin: 0;
  font-style: italic;
}

.portal-empty {
  color: #0C0B0B;
  background: #fff;
  border: 1px dashed #F6F6F6;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #F6F6F6;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}

.portal-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0C0B0B;
  background: #F6F6F6;
  padding: 12px 16px;
  border-bottom: 1px solid #F6F6F6;
}

.portal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F6F6F6;
  color: #0C0B0B;
}

.portal-table tr:last-child td {
  border-bottom: none;
}

.portal-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
}

.portal-status--succeeded { background: #F6F6F6; color: #E74C32; }
.portal-status--pending { background: #F6F6F6; color: #E74C32; }
.portal-status--failed { background: #F6F6F6; color: #E74C32; }
.portal-status--refunded { background: #F6F6F6; color: #0C0B0B; }

@media (max-width: 576px) {
  .portal-unit-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .portal-table {
    display: block;
    overflow-x: auto;
  }
}


/* ── Auth Page ── */
.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  padding: 48px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #F6F6F6;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(12, 11, 11, 0.06);
  padding: 40px 36px;
}

.auth-card h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0C0B0B;
  margin-bottom: 6px;
}

.auth-sub {
  color: #0C0B0B;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.auth-error {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  color: #E74C32;
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.auth-submit {
  width: 100%;
  align-self: stretch;
}


/* ── Privacy / Policy Pages ── */
.policy-page {
  min-height: 80vh;
}

.policy-hero {
  background: #0C0B0B;
  color: #fff;
  padding: 64px 0 48px;
  margin-bottom: 0;
}

.policy-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-hero p {
  color: #0C0B0B;
  font-size: 0.9rem;
  margin: 0;
}

.policy-body {
  max-width: 740px;
  padding: 56px 0 80px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0C0B0B;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F6F6F6;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0C0B0B;
  margin: 18px 0 8px;
}

.policy-section p,
.policy-section li {
  color: #0C0B0B;
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-section ul {
  padding-left: 20px;
  margin: 8px 0;
}

.policy-section li {
  margin-bottom: 4px;
}

.policy-section a {
  color: #E74C32;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-contact-list {
  list-style: none;
  padding: 0;
}

.policy-contact-list li {
  margin-bottom: 6px;
}


.navbar {
  background: #111;
  padding: 0 15px;
  position: relative;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 56px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-close {
  display: none;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #F6F6F6;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: rgba(246, 246, 246, 0.08);
  color: #fff;
}

.nav-logout-form {
  display: inline-flex;
  margin: 0;
}

.nav-logout-btn {
  background: none;
  border: none;
  color: #F6F6F6;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-logout-btn:hover {
  background: rgba(246, 246, 246, 0.08);
  color: #fff;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-hamburger:hover {
  background: rgba(246, 246, 246, 0.08);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    height: 100dvh;
    min-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(160deg, #0C0B0B 0%, #0C0B0B 100%);
    padding: 84px 0 36px;
    gap: 8px;
    z-index: 99;

    /* hidden state */
    visibility: hidden;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition:
      clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1),
      opacity 0.4s ease,
      visibility 0s linear 0.5s;
  }

  .nav-links--open {
    visibility: visible;
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition:
      clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1),
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }

  .nav-links a {
    padding: 16px 24px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-radius: 0;
    letter-spacing: 0.02em;

    /* hidden state for stagger */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.15s, color 0.15s;
  }

  .nav-links--open a:nth-of-type(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
  .nav-links--open a:nth-of-type(2) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
  .nav-links--open a:nth-of-type(3) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
  .nav-links--open a:nth-of-type(4) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
  .nav-links--open a:nth-of-type(5) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
  .nav-links--open .nav-logout-form,
  .nav-links--open a:nth-of-type(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

  .nav-logout-form {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    justify-content: center;
    width: 100%;
  }

  .nav-logout-btn {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 16px 24px;
    width: 100%;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin: 0 12px 8px 0;
    padding: 0;
    border: none;
    background: none;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;

    opacity: 0;
    transform: translateY(12px);
  }

  .nav-links--open .nav-close {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease 0.14s, transform 0.35s ease 0.14s;
  }

  .nav-close:hover {
    opacity: 0.8;
  }

  .nav-links a:hover {
    background: rgba(246, 246, 246, 0.06);
    color: #fff;
  }
}


/* ── Footer ── */
.site-footer {
  background: #111;
  color: #F6F6F6;
  font-size: 0.875rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.footer-tagline {
  margin-top: 8px;
  color: rgba(246, 246, 246, 0.82);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.footer-col li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #F6F6F6;
}

.footer-col a {
  color: #F6F6F6;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #E74C32;
}

.footer-col address {
  font-style: normal;
  color: rgba(246, 246, 246, 0.82);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #0C0B0B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(246, 246, 246, 0.88);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F6F6F6;
  transition: color 0.15s;
}

.footer-social a:hover { color: #E74C32; }
.footer-social a[aria-label="Instagram"]:hover { color: #E74C32; }
.footer-social a[aria-label="Facebook"]:hover  { color: #E74C32; }
.footer-social a[aria-label="Yelp"]:hover      { color: #E74C32; }

/* ── Home Theme Refresh ── */
:root {
  --surface: #F6F6F6;
  --surface-alt: #F6F6F6;
  --ink-strong: #0C0B0B;
  --ink-mid: #0C0B0B;
  --ink-soft: rgba(12, 11, 11, 0.72);
  --brand: #E74C32;
  --brand-deep: #E74C32;
  --line-soft: rgba(12, 11, 11, 0.18);
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgba(12, 11, 11, 0.08);
  --shadow-hover: 0 16px 34px rgba(12, 11, 11, 0.14);
}

body {
  background: #F6F6F6;
  color: var(--ink-mid);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

a {
  color: var(--brand);
}

a:hover {
  color: var(--ink-strong);
}

.navbar {
  background: #0C0B0B;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 76, 50, 0.55);
  position: sticky;
  top: 0;
}

.navbar .container {
  min-height: 66px;
}

.logo {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.nav-links a,
.nav-logout-btn {
  font-size: 0.92rem;
  font-weight: 600;
  color: #F6F6F6;
}

.hero {
  min-height: min(92vh, 780px);
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(12, 11, 11, 0.88) 0%, rgba(12, 11, 11, 0.72) 50%, rgba(12, 11, 11, 0.8) 100%),
    radial-gradient(circle at 20% 25%, rgba(231, 76, 50, 0.2), transparent 45%);
}

.hero-content {
  max-width: 780px;
  padding: 32px 22px;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F6F6F6;
  background: rgba(231, 76, 50, 0.86);
  border: 1px solid rgba(231, 76, 50, 1);
}

.hero-content h1 {
  margin-bottom: 0.9rem;
}

.hero-content p {
  color: rgba(246, 246, 246, 0.92);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-1px);
}

.hero-actions .btn-outline-light {
  border: 1px solid #E74C32;
  color: #F6F6F6;
  background: rgba(12, 11, 11, 0.35);
}

.hero-actions .btn-outline-light:hover {
  background: #E74C32;
  color: #F6F6F6;
}

.units-section,
.location-section,
.contact-bg-wrap {
  position: relative;
}

.units-section {
  padding: 82px 0;
  background: transparent;
}

.units-intro h2,
.location-info h2,
.contact-headline h2 {
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

.units-subtitle,
.location-tagline,
.contact-headline p {
  color: var(--ink-soft);
}

.units-highlights {
  margin: 0 0 2.2rem;
}

.units-highlight-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(246, 246, 246, 0.88);
  backdrop-filter: blur(6px);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.units-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.units-highlight-card h3 {
  font-size: 1.03rem;
  color: #0C0B0B;
  margin-bottom: 0.45rem;
}

.units-highlight-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.units-category {
  margin-bottom: 3rem;
}

.units-category-header {
  margin-bottom: 1.05rem;
}

.units-category-icon {
  margin-top: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 50, 0.12);
  border: 1px solid rgba(231, 76, 50, 0.38);
}

.unit-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.unit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.unit-price {
  color: var(--brand-deep);
}

.location-section {
  padding: 78px 0;
  background: #F6F6F6;
}

.location-inner {
  gap: 34px;
}

.location-map {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.contact-bg-wrap {
  background: #F6F6F6;
  padding: 84px 0 94px;
  border-top: 1px solid rgba(12, 11, 11, 0.15);
}

.contact-form-wrap {
  background: rgba(246, 246, 246, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.contact-field input,
.contact-field textarea {
  border-radius: 10px;
}

.contact-submit {
  background: #E74C32;
  border-color: #E74C32;
  color: #F6F6F6;
}

.contact-submit:hover {
  background: #0C0B0B;
  border-color: #0C0B0B;
  color: #F6F6F6;
}

.site-footer {
  background: #0C0B0B;
  border-top: 1px solid rgba(231, 76, 50, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(231, 76, 50, 0.35);
}

.btn-primary,
.btn-danger {
  background: #E74C32;
  border-color: #E74C32;
  color: #F6F6F6;
}

.btn-primary:hover,
.btn-danger:hover {
  background: #0C0B0B;
  border-color: #0C0B0B;
  color: #F6F6F6;
}

@media (max-width: 992px) {
  .units-section,
  .location-section,
  .contact-bg-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: 74vh;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 28px 16px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .units-category-header {
    align-items: center;
  }

  .units-category-icon {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.45rem;
  }

  .unit-card {
    padding: 26px 18px;
  }

  .contact-form-wrap {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .navbar .container {
    min-height: 60px;
  }

  .nav-links a,
  .nav-logout-btn {
    font-size: 1.2rem;
  }

  .location-info h2,
  .units-intro h2,
  .contact-headline h2 {
    font-size: 1.65rem;
  }
}

