:root {
  --charcoal: #16120F;
  --ink: #221B16;
  --copper: #B0633B;
  --pale: #D9A97C;
  --cream: #F2EDE6;
  --soft: #E3D9CA;
  --hairline: #3A2E24;
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background-color: #16120F;
  color: #F2EDE6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #B0633B;
  color: #F2EDE6;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #D9A97C;
  outline-offset: 3px;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B0633B;
  color: #F2EDE6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.btn-primary {
  background: #B0633B;
  color: #F2EDE6;
}

.btn-primary:hover {
  background: #C9764A;
}

.btn-outline {
  background: transparent;
  border-color: #D9A97C;
  color: #D9A97C;
}

.btn-outline:hover {
  background: #D9A97C;
  color: #16120F;
}

.btn-dark {
  background: #16120F;
  color: #F2EDE6;
}

.btn-dark:hover {
  background: #2A2118;
}

.bridge-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #16120F;
  border-bottom: 2px solid #B0633B;
}

.bridge-nav.scrolled {
  box-shadow: 0 8px 28px #0A0807;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #D9A97C;
  text-decoration: none;
}

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

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  font-size: 15px;
  font-weight: 500;
  color: #F2EDE6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #D9A97C;
}

.nav-links a.active {
  color: #D9A97C;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: #B0633B;
}

.bridge-mark {
  display: inline-block;
  width: 16px;
  height: 15px;
  position: relative;
  flex-shrink: 0;
}

.bridge-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #B0633B;
  border-radius: 2px 2px 0 0;
}

.bridge-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 2px;
  right: 2px;
  height: 11px;
  background: #B0633B;
  border-radius: 0 0 10px 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #B0633B;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #D9A97C;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.skyline-hero {
  background-color: #16120F;
  padding: 110px 0 120px;
  border-bottom: 1px solid #3A2E24;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.hero-copy {
  flex: 1 1 54%;
  max-width: 640px;
}

.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: #F2EDE6;
  margin: 30px 0 26px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: #E3D9CA;
  max-width: 60ch;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.skyline-graphic {
  flex: 0 1 44%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 260px;
  min-width: 0;
}

.skyline-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.building {
  position: relative;
  width: 22px;
  height: var(--h);
  background: #D9A97C;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 7px 4px;
  padding: 10px 4px 0;
  box-sizing: border-box;
}

.building.copper {
  background: #B0633B;
}

.building .win {
  width: 4px;
  height: 5px;
  background: #16120F;
}

.skyline-base {
  height: 6px;
  background: #B0633B;
  margin-top: 0;
}

.foundation-rows {
  padding: 116px 0 56px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: block;
  color: #D9A97C;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.5px;
  color: #F2EDE6;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #E3D9CA;
}

.foundation-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid #B0633B;
}

.foundation-row:last-child {
  border-bottom: none;
}

.square-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #B0633B;
  margin-top: 9px;
}

.foundation-row h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 25px;
  letter-spacing: -0.3px;
  color: #D9A97C;
  margin-bottom: 12px;
}

.foundation-row p {
  color: #F2EDE6;
  max-width: 80ch;
}

.district-strip {
  background-color: #221B16;
  padding: 88px 0;
  border-top: 2px solid #B0633B;
  border-bottom: 2px solid #B0633B;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.district-item {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid #B0633B;
}

.district-item:first-child {
  border-left: none;
}

.district-num {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #D9A97C;
}

.district-label {
  display: block;
  margin-top: 14px;
  color: #F2EDE6;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tower-rows {
  padding: 116px 0 60px;
}

.tower-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 38px 0;
}

.tower-row h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 25px;
  letter-spacing: -0.3px;
  color: #F2EDE6;
  margin-bottom: 10px;
}

.tower-row p {
  color: #E3D9CA;
  max-width: 80ch;
}

.cta-band {
  background-color: #B0633B;
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  color: #F2EDE6;
}

.cta-inner p {
  color: #F2EDE6;
  font-size: 18px;
  margin: 20px 0 36px;
}

.harbour-footer {
  background-color: #16120F;
  border-top: 2px solid #B0633B;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
}

.footer-zone {
  border-left: 1px solid #B0633B;
  padding: 0 36px;
}

.footer-zone:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-zone:last-child {
  padding-right: 0;
  text-align: right;
}

.footer-brand {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #D9A97C;
}

.footer-company {
  display: block;
  margin-top: 8px;
  color: #F2EDE6;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-zone:last-child .footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: #F2EDE6;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D9A97C;
  text-decoration: underline;
}

.footer-contact {
  font-size: 14px;
  color: #F2EDE6;
  line-height: 1.9;
}

.footer-contact a {
  color: #F2EDE6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #D9A97C;
}

.footer-bottom {
  background-color: #B0633B;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #F2EDE6;
  font-size: 14px;
}

.footer-bottom a {
  color: #F2EDE6;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #16120F;
}

.page-hero {
  background-color: #16120F;
  padding: 96px 0 88px;
  border-bottom: 1px solid #3A2E24;
}

.page-hero h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: #F2EDE6;
  margin-top: 26px;
  max-width: 20ch;
}

.page-hero .hero-sub {
  margin-top: 24px;
}

.section-block {
  padding: 104px 0 56px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 46px 0;
  border-bottom: 1px solid #B0633B;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: #D9A97C;
  margin-bottom: 14px;
}

.service-row p {
  color: #F2EDE6;
  max-width: 82ch;
  margin-bottom: 14px;
}

.service-row p:last-child {
  margin-bottom: 0;
}

.process-overview {
  background-color: #221B16;
  border-top: 2px solid #B0633B;
  border-bottom: 2px solid #B0633B;
  padding: 96px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step-num {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #B0633B;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 20px;
  color: #D9A97C;
  margin-bottom: 10px;
}

.process-step p {
  color: #E3D9CA;
  font-size: 15px;
  line-height: 1.7;
}

.contact-layout {
  padding: 96px 0 40px;
}

.contact-grid-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #D9A97C;
  margin: 20px 0 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #221B16;
  border: 1px solid #5A4633;
  color: #F2EDE6;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #B0633B;
  outline: none;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 20px;
  background: #221B16;
  border: 1px solid #B0633B;
  color: #F2EDE6;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.info-panel {
  background-color: #221B16;
  border: 1px solid #3A2E24;
  border-radius: 16px;
  padding: 40px;
  align-self: start;
}

.info-panel h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  color: #D9A97C;
  margin-bottom: 20px;
}

.info-panel p {
  color: #F2EDE6;
  margin-bottom: 16px;
}

.info-panel a {
  color: #D9A97C;
  text-decoration: none;
}

.info-panel a:hover {
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  margin-top: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #3A2E24;
  padding: 12px 0;
  color: #F2EDE6;
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.faq-block {
  padding: 80px 0 110px;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #B0633B;
}

.faq-item:first-child {
  border-top: 1px solid #B0633B;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 8px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 20px;
  color: #F2EDE6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #D9A97C;
}

.faq-question::after {
  content: "+";
  font-size: 30px;
  line-height: 1;
  color: #B0633B;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 8px 26px;
  color: #E3D9CA;
  max-width: 78ch;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

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

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #221B16;
    border-bottom: 2px solid #B0633B;
    padding: 16px 24px 28px;
    display: none;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
    font-size: 16px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 56px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .skyline-graphic {
    align-self: stretch;
    height: 210px;
  }

  .skyline-row {
    justify-content: flex-start;
  }

  .district-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 0;
  }

  .district-item:nth-child(odd) {
    border-left: none;
  }

  .district-num {
    font-size: 46px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0;
  }

  .footer-zone {
    border-left: none;
    border-top: 1px solid #B0633B;
    padding: 28px 0;
    text-align: left;
  }

  .footer-zone:first-child {
    border-top: none;
    padding-top: 0;
  }

  .footer-zone:last-child {
    text-align: left;
  }

  .footer-zone:last-child .footer-links {
    justify-content: flex-start;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .contact-grid-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .district-grid {
    grid-template-columns: 1fr;
  }

  .district-item {
    border-left: none;
    border-bottom: 1px solid #B0633B;
    padding: 28px 0;
  }

  .district-item:last-child {
    border-bottom: none;
  }
}
