@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --city-ink: #101817;
  --city-forest: #132823;
  --city-forest-light: #1c3630;
  --city-cream: #f4f1ea;
  --city-paper: #fbfaf7;
  --city-gold: #dbc28e;
  --city-gold-dark: #a17c3c;
  --city-muted: #626e6a;
  --city-line: rgba(16, 24, 23, 0.14);
  --city-serif: "IBM Plex Sans", system-ui, sans-serif;
--city-sans: "IBM Plex Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.city-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--city-ink);
  background: var(--city-paper);
  font-family: var(--city-sans);
  line-height: 1.7;
}

.city-page img {
  display: block;
  max-width: 100%;
}

.city-page h1,
.city-page h2,
.city-page h3,
.city-page h4 {
  font-family: var(--city-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.city-page a {
  color: inherit;
}

/* HEADER */
.city-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  color: #fff;
  background: rgba(9, 22, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.city-page .site-header-inner {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.city-page .header-logo a {
  display: flex;
  align-items: center;
}

.city-page .header-logo img {
  width: 128px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  filter: brightness(1.12);
}

.city-page .main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.city-page .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.city-page .nav-link:hover,
.city-page .nav-link.active {
  color: #fff;
}

.city-page .nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--city-gold);
}

.city-page .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
}

.city-page .mobile-nav {
  display: none;
}

.city-page .mobile-nav.open {
  display: grid;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 14px 24px 24px;
  background: rgba(9, 22, 18, 0.99);
}

.city-page .mobile-nav .nav-link {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* HERO */
.city-page .hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--city-forest);
}

.city-page .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-page .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 16, 12, 0.93) 0%,
      rgba(5, 16, 12, 0.64) 55%,
      rgba(5, 16, 12, 0.27) 100%
    );
}

.city-page .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1120px, calc(100% - 48px));
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: 125px 0 70px;
}

.city-page .hero-content h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.city-page .hero-content > p {
  max-width: 680px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.05rem;
  line-height: 1.8;
}

.city-page .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-page .btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.city-page .btn:hover {
  transform: translateY(-2px);
}

.city-page .btn-primary {
  color: var(--city-forest);
  background: var(--city-gold);
}

.city-page .btn-primary:hover {
  background: #ead5ab;
}

.city-page .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

/* STANDARD CONTENT SECTIONS */
.city-page main {
  display: block;
}

.city-page .section {
  padding: 88px 0;
  background: var(--city-paper);
}

.city-page main > .section:nth-child(even) {
  background: var(--city-cream);
}

.city-page .section-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

/* Existing city HTML contains a few sections nested inside a section. */
.city-page .section .section {
  width: 100%;
  margin-top: 75px;
  padding: 75px 0 0;
  border-top: 1px solid var(--city-line);
  background: transparent;
}

.city-page .section .section .section-inner {
  width: 100%;
}

.city-page .section-title,
.city-page .section h2 {
  max-width: 880px;
  margin: 0 auto 25px;
  color: var(--city-forest);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.08;
  text-align: center;
}

.city-page .section-intro,
.city-page .section > p,
.city-page .section-inner > p {
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--city-muted);
  font-size: 1rem;
  line-height: 1.88;
  text-align: center;
}

.city-page .center-title {
  text-align: center;
}

/* PROPERTY MANAGEMENT */
.city-page .property-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  margin-top: 42px;
}

.city-page .property-text p {
  margin-bottom: 18px;
  color: var(--city-muted);
}

.city-page .property-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.city-page .property-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--city-line);
  color: var(--city-muted);
}

.city-page .property-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--city-gold-dark);
}

.city-page .property-image {
  min-height: 490px;
  overflow: hidden;
}

.city-page .property-image img {
  width: 100%;
  height: 490px;
  object-fit: cover;
}

/* TESTIMONIALS */
.city-page .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.city-page .testimonial-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--city-line);
  background: var(--city-paper);
}

.city-page .testimonial-text {
  color: var(--city-forest);
  font-family: var(--city-serif);
  font-size: 1.17rem;
  font-style: italic;
  line-height: 1.65;
}

.city-page .testimonial-author {
  margin-top: 24px;
  color: var(--city-gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-page .testimonial-author span {
  display: block;
  margin-top: 5px;
  color: var(--city-muted);
}

/* BENEFITS, SERVICES AND FAQ */
.city-page .why-us-grid,
.city-page .services-grid,
.city-page .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.city-page .why-us-item,
.city-page .service-card,
.city-page .faq-item {
  padding: 30px;
  border: 1px solid var(--city-line);
  border-radius: 0;
  background: var(--city-paper);
}

.city-page .why-us-item::before,
.city-page .service-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 21px;
  background: var(--city-gold-dark);
}

.city-page .why-us-item h3,
.city-page .service-card h3,
.city-page .faq-item h3 {
  margin-bottom: 11px;
  color: var(--city-forest);
  font-size: 1.45rem;
  line-height: 1.2;
}

.city-page .why-us-item p,
.city-page .service-card p,
.city-page .faq-item p {
  color: var(--city-muted);
}

.city-page .service-card {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  align-items: flex-start;
}

.city-page .service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--city-gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

/* CONTACT CTA */
.city-page .section-contact {
  color: #fff;
  background: var(--city-forest) !important;
}

.city-page .section-contact h2,
.city-page .section-contact .section-title {
  color: #fff;
}

.city-page .section-contact p,
.city-page .section-contact .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.city-page .section-contact p a {
  color: var(--city-gold);
}

.city-page .section-contact .btn {
  display: flex;
  width: max-content;
  margin: 26px auto 0;
}

/* FOOTER */
.city-page .site-footer {
  padding: 70px 0 22px;
  color: #fff;
  background: #091512;
}

.city-page .footer-container {
  display: grid;
  width: min(1160px, calc(100% - 48px));
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 65px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.city-page .footer-logo {
  width: 145px;
  height: auto;
  margin-bottom: 20px;
}

.city-page .footer-column h4 {
  margin-bottom: 17px;
  color: var(--city-gold);
  font-family: var(--city-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.city-page .footer-column p,
.city-page .footer-column li,
.city-page .footer-column a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  text-decoration: none;
}

.city-page .footer-column ul {
  list-style: none;
}

.city-page .footer-column li {
  margin: 8px 0;
}

.city-page .footer-phone {
  margin-top: 15px;
}

.city-page .footer-bottom {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  text-align: center;
}

/* MOBILE CALL BAR */
.city-page .mobile-bottom-bar {
  display: none;
}

@media (max-width: 850px) {
  .city-page {
    padding-bottom: 64px;
  }

  .city-page .site-header {
    height: 70px;
  }

  .city-page .main-nav {
    display: none;
  }

  .city-page .nav-toggle {
    display: block;
  }

  .city-page .hero,
  .city-page .hero-content {
    min-height: 680px;
  }

  .city-page .hero-content {
    padding: 115px 0 65px;
  }

  .city-page .section {
    padding: 70px 0;
  }

  .city-page .section .section {
    margin-top: 60px;
    padding-top: 60px;
  }

  .city-page .property-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .city-page .property-image,
  .city-page .property-image img {
    height: 420px;
    min-height: 0;
  }

  .city-page .testimonial-grid,
  .city-page .why-us-grid,
  .city-page .services-grid,
  .city-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .city-page .footer-container {
    grid-template-columns: 1.4fr 1fr;
  }

  .city-page .mobile-bottom-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: grid;
    min-height: 64px;
    grid-template-columns: 1fr 1fr;
    background: var(--city-gold);
  }

  .city-page .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--city-forest);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .city-page .mobile-bar-primary {
    color: #fff;
    background: var(--city-forest);
  }
}

@media (max-width: 560px) {
  .city-page .site-header-inner,
  .city-page .hero-content,
  .city-page .section-inner,
  .city-page .footer-container,
  .city-page .footer-bottom {
    width: calc(100% - 34px);
  }

  .city-page .hero-content h1 {
    font-size: 3.15rem;
  }

  .city-page .hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .city-page .hero-ctas .btn {
    width: 100%;
  }

  .city-page .section-title,
  .city-page .section h2 {
    font-size: 2.25rem;
  }

  .city-page .property-image,
  .city-page .property-image img {
    height: 330px;
  }

  .city-page .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.city-page,
.city-page p,
.city-page a,
.city-page span,
.city-page li,
.city-page button {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.city-page h1,
.city-page h2,
.city-page h3,
.city-page h4 {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}