:root {
  --brand-blue: #3d4dff;
  --brand-blue-dark: #2c3bd1;
  --ink: #0f172a;
  --muted: #475569;
  --surface: #f7f9fc;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.wrapper {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid #e2e8f0;
  overflow: visible;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 150px;
  max-height: 60px;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 42px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 70%;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.nav-link {
  color: var(--ink);
}

.nav-link:hover {
  background: #f1f5f9;
}

.nav-button {
  background: var(--brand-blue);
  color: #fff;
  padding-inline: 1.1rem;
  box-shadow: 0 12px 28px rgba(61, 77, 255, 0.22);
}

.nav-button:hover {
  background: var(--brand-blue-dark);
}

.market-bar {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 100;
}

.market-dropdowns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 2px;
}

.dropdown {
  position: static;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.dropdown-toggle:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.dropdown-toggle svg {
  transition: transform 200ms ease;
}

.dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: fixed;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
  z-index: 5001;
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 150ms ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #f1f5f9;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a, #111827);
  color: #fff;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.15));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) 1.25rem;
}

.hero-content-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  width: min(760px, 100%);
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.hero p {
  margin: 0.75rem 0 1.5rem;
  font-size: 1rem;
}

.hero .button,
.button {
  background-color: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 18px 30px rgba(61, 77, 255, 0.25);
  transition: transform 150ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero .button:hover,
.button:hover {
  background-color: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(61, 77, 255, 0.3);
}

.home_link {
  color: #e2e8f0;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 1rem;
}

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

form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  text-align: left;
}

form input,
form select,
form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  min-height: 52px;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}

form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

form select option {
  background: #1e293b;
  color: #fff;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

form label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #e2e8f0;
  margin-top: 0.1rem;
  margin-bottom: -0.25rem;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

form button {
  justify-self: start;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  min-height: 52px;
  box-shadow: 0 10px 28px rgba(61, 77, 255, 0.35);
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

form button:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(61, 77, 255, 0.42);
}

form button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  form input,
  form select,
  form textarea {
    font-size: 16px; /* prevents iOS auto-zoom */
    padding: 0.95rem 1rem;
    border-radius: 12px;
  }

  form button {
    width: 100%;
    justify-self: stretch;
    font-size: 16px;
  }
}

.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem 1.25rem 2.5rem;
  background: #0f172a;
}

.counter {
  background: linear-gradient(180deg, #111827, #0b1323);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.number {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.caption {
  font-size: 1rem;
  color: #cbd5e1;
}

.section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 1.25rem;
  background: #ffffff;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 3px solid #e2e8f0;
  padding-left: 14px;
}

.timeline-entry {
  width: 100%;
  position: relative;
  padding-left: 6px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(61, 77, 255, 0.1);
}

.timeline-entry .year {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: var(--brand-blue);
}

.timeline-entry .title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 4px 0;
}

.timeline-entry .story {
  color: var(--muted);
}

.city-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
  position: relative;
}

.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
}

.city-hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.city-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
}

.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-parent {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-parent span {
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff !important;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.city-content {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 3rem;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.contact img {
  height: 120px;
  width: 120px;
  border-radius: 12px;
  object-fit: cover;
}

/* Landing page custom sections */
.lp-sections {
  max-width: 1180px;
  margin: 3rem auto 4rem;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.lp-section {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.lp-section-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.lp-section-reverse {
  flex-direction: row-reverse;
}

.lp-section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0;
}

.lp-section-heading {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin: 0;
}

.lp-section-body {
  color: var(--muted);
  font-size: 1rem;
}

.lp-section-body p {
  margin-bottom: 0.75rem;
}

.lp-section-body p:last-child {
  margin-bottom: 0;
}

.lp-section-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lp-section-ctas .button {
  padding-inline: 1.1rem;
}

.lp-section-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lp-section-media img {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

footer {
  background-color: #0b1323;
  color: #e2e8f0;
  padding: 3rem 1.5rem;
}

footer .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

footer h2,
footer h3 {
  margin: 0.25rem 0 0.5rem;
}

footer .link {
  color: #cbd5e1;
  display: inline-block;
  margin: 0.25rem 0;
  text-decoration: underline;
  font-weight: 500;
}

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

@media (max-width: 960px) {

  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    z-index: 5002;
  }

  .nav-links.is-open {
    display: flex;
    gap: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-button,
  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .lp-section-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-section-media {
    width: 100%;
  }

  .lp-section-media img {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .city-hero {
    text-align: left;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact img {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    min-height: 70vh;
    text-align: left;
  }

  .home_link {
    display: block;
    margin: 0.75rem 0 0;
  }
}

/* ── Home Blog Grid ── */
.home-blog-section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.home-blog-shell {
  gap: 1rem;
  max-width: 860px;
}

.home-blog-header h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.home-blog-card:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
}

.home-blog-card__date {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}

.home-blog-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #0f172a;
}

.home-blog-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.1rem;
}

.home-blog-actions__button {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-size: 0.92rem;
  box-shadow: none;
}

.home-blog-actions__button:hover {
  background: #f8fafc;
  color: var(--ink);
  box-shadow: none;
}

@media (max-width: 900px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-blog-shell {
    gap: 0.85rem;
  }
}
