@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@100..900&family=Unbounded:wght@600;700;800&display=swap');

:root {
  --primary: #1d8cff;
  --primary-hover: #007bfa;
  --text: #555555;
  --text-light: #888888;
  --accent: #000000;
  --border: #dfe1e7;
  --background: #ffffff;
  --background-light: #f3f5fa;
  --ink: #050505;
  --shadow: 0 26px 55px rgba(0, 0, 0, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 106px;
  background: #000;
}

.site-header-inner {
  width: min(1130px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
}

.nav-close,
.nav-overlay {
  display: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  flex: 1;
}

.nav-item {
  position: relative;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  padding: 44px 0;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-item > button:hover {
  color: var(--primary);
}

.nav-caret {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  transform: translateY(-1px);
}

.nav-caret svg {
  width: 15px;
  height: 15px;
}

.mega-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(1120px, calc(100vw - 80px));
  transform: translateX(-50%) translateY(14px);
  display: grid;
  grid-template-columns: 1.05fr 1.6fr;
  gap: 32px;
  background: #fff;
  color: #000;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  padding: 42px;
}

@media (min-width: 1025px) {
  .mega-panel {
    position: fixed;
    left: 50%;
    top: 106px;
    max-height: calc(100vh - 128px);
    overflow: auto;
  }
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.mega-label::before,
.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--primary);
  content: "";
}

.mega-title {
  margin: 28px 0 18px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 32px;
  line-height: .98;
  color: #000;
  text-transform: uppercase;
}

.mega-copy {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 360px;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
}

.mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 0 0 18px;
  border-bottom: 1px solid #eceef4;
  font-weight: 800;
  transition: color .18s ease, padding .18s ease, background .18s ease;
}

.mega-links svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mega-links a:hover {
  color: var(--primary);
  padding-left: 25px;
  background: #f6f8fb;
}

.call-link {
  white-space: nowrap;
}

.brand-badge {
  width: 108px;
  height: 108px;
  margin-left: auto;
  flex: 0 0 108px;
  border: 5px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 12px;
  line-height: 1.12;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #000, 0 0 0 2px #000;
}

.hero-home {
  position: relative;
  min-height: 870px;
  margin-top: -1px;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.hero-page {
  position: relative;
  min-height: 330px;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: .88;
}

.hero-home .hero-bg::after,
.hero-page .hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72));
}

.hero-page .hero-bg::after {
  background: rgba(0, 0, 0, .58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1290px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-home .hero-content {
  min-height: 870px;
  display: flex;
  align-items: center;
}

.hero-page .hero-content {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}

.hero-title {
  margin: 0;
  max-width: 1180px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(64px, 8.4vw, 132px);
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
}

.hero-title .blue {
  color: var(--primary);
}

.hero-title small {
  display: block;
  margin-top: 24px;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 32px);
  line-height: 1.2;
  text-transform: none;
}

.hero-page-title {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(58px, 7.2vw, 102px);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  overflow-wrap: break-word;
}

.breadcrumbs {
  background: #050505;
  color: rgba(255,255,255,.72);
}

.breadcrumbs ol {
  width: min(1290px, calc(100% - 64px));
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  opacity: .38;
}

.breadcrumbs a {
  color: #fff;
}

.hero-rule {
  position: absolute;
  left: 5.2%;
  right: 5.2%;
  bottom: 142px;
  height: 1px;
  background: rgba(255,255,255,.32);
}

.hero-stars {
  position: absolute;
  z-index: 2;
  right: 22%;
  bottom: 80px;
  color: #d9d9d9;
  font-size: 14px;
}

.hero-stars strong {
  display: block;
  color: var(--primary);
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.book-now {
  position: absolute;
  z-index: 3;
  right: 74px;
  bottom: 46px;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(0,0,0,.22);
  transition: background .18s ease, transform .18s ease;
}

.hero-page .book-now {
  bottom: 52px;
}

.book-now:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.section {
  padding: 110px 0;
  background: #fff;
}

.section.compact {
  padding: 78px 0;
}

.section.light {
  background: var(--background-light);
}

.inner {
  width: min(1290px, calc(100% - 64px));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 800;
}

.eyebrow.blue {
  color: var(--primary);
}

.big-heading {
  margin: 0;
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: .98;
  text-transform: uppercase;
}

.overview-grid {
  display: grid;
  grid-template-columns: .72fr 1.2fr;
  gap: 76px;
  align-items: flex-end;
}

.overview-copy .lead {
  color: #000;
  font-size: 27px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 0 30px;
}

.overview-copy p:not(.lead) {
  font-size: 17px;
  line-height: 1.75;
  max-width: 480px;
}

.overview-visual {
  position: relative;
  padding-top: 84px;
}

.overview-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.stat-stack {
  position: absolute;
  top: 0;
  right: 34px;
  display: grid;
  grid-template-columns: minmax(220px, 252px) minmax(220px, 252px);
  align-items: stretch;
  min-height: 226px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .18);
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-width: 0;
  padding: 30px 30px 28px;
  color: #fff;
  overflow: hidden;
}

.stat::after {
  position: absolute;
  inset: auto -42px -58px auto;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
}

.stat.black {
  background: #000;
}

.stat.blue {
  background: var(--primary);
}

.stat-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 0 6px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 3.7;
}

.stat-number {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(36px, 3.15vw, 52px);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
}

.stat-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.32;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.pill-button .circle {
  width: 42px;
  height: 42px;
  margin-right: -16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 24px;
}

.pill-button.no-arrow {
  padding: 0 26px;
}

.pill-button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: .72;
  transition: transform .45s ease, opacity .3s ease;
}

.feature-card:hover img {
  transform: scale(1.07);
  opacity: .5;
}

.feature-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.84));
}

.feature-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #000;
  color: #fff;
}

.split-image {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.split-copy {
  padding: 92px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h2 {
  margin: 0 0 30px;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: .98;
  text-transform: uppercase;
}

.split-copy p {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.8;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.market-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #000;
}

.market-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: .76;
  transition: opacity .25s ease, transform .45s ease;
}

.market-card:hover img {
  transform: scale(1.06);
  opacity: .48;
}

.market-card h3 {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  margin: 0;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 23px;
  line-height: 1.08;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.section-heading-row .lead-index {
  max-width: 520px;
  margin: 0;
}

.locations-showcase {
  background: #080808;
  color: #fff;
}

.locations-showcase .big-heading,
.locations-showcase .eyebrow,
.locations-showcase .lead-index {
  color: #fff;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.location-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #000;
}

.location-tile img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  opacity: .78;
  transition: transform .45s ease, opacity .25s ease;
}

.location-tile:hover img {
  transform: scale(1.08);
  opacity: .54;
}

.location-tile span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0,0,0,.55);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 82px 0;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background: rgba(29, 140, 255, .92);
  content: "";
}

.cta-band .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.cta-band p {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.page-grid {
  display: grid;
  grid-template-columns: 388px 1fr;
  gap: 58px;
  align-items: start;
}

.side-list {
  background: var(--background-light);
  padding: 36px 40px 40px;
}

.side-list h2 {
  margin: 0 0 24px;
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 27px;
}

.side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 14px 18px 22px;
  color: #000;
  font-weight: 800;
  line-height: 1.25;
  transition: color .18s ease, background .18s ease, padding .18s ease;
}

.side-list a::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--primary);
  content: "";
}

.side-list a span:first-child {
  display: flex;
  align-items: center;
}

.side-list a.active,
.side-list a:hover {
  background: #e9edf5;
  color: #000;
  padding-left: 28px;
}

.help-card {
  margin-top: 58px;
  background: #171717;
  color: #fff;
  padding: 36px 40px;
}

.help-card h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.help-card p {
  margin: 0 0 28px;
  color: #9a9a9a;
  line-height: 1.7;
}

.help-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
}

.help-link > span:first-child {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--primary);
}

.help-link svg {
  width: 30px;
  height: 30px;
}

.help-link > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.help-link small {
  display: block;
  color: #999;
  font-weight: 700;
  margin-bottom: 4px;
}

.detail-copy h2 {
  margin: 0 0 28px;
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: .98;
}

.detail-copy p {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.detail-copy ul {
  margin: 34px 0 42px;
  padding: 0;
  list-style-position: inside;
}

.detail-copy li {
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.25;
  margin: 4px 0;
}

.detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.taxonomy-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 430px;
  background: #fff;
  border: 1px solid #ebedf2;
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.taxonomy-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.taxonomy-card-body {
  padding: 28px;
}

.taxonomy-card h3 {
  margin: 0 0 14px;
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 21px;
  line-height: 1.12;
}

.taxonomy-card p {
  margin: 0 0 20px;
  color: #5d5d5d;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 800;
}

.text-link:hover {
  color: var(--primary);
}

.about-story {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  margin-top: 70px;
}

.story-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 86px;
  border-bottom: 1px solid #d7dbe4;
}

.story-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #888;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 0 16px;
  cursor: pointer;
}

.story-tab::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 13px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #cfd3dc;
  content: "";
}

.story-tab.active {
  color: #000;
}

.story-tab.active::after {
  background: var(--primary);
}

.story-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: start;
  z-index: 1;
}

.story-photo-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 2px solid #fff;
}

.story-panel {
  background: var(--background-light);
  padding: 70px 78px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-panel h3 {
  margin: 0 0 24px;
  color: #000;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
}

.story-panel p {
  color: #5a5a5a;
  font-size: 17px;
  line-height: 1.75;
}

.about-buildout .section-heading-row {
  align-items: start;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-card {
  min-height: 300px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e1e5ef;
  color: #000;
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.about-card > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--primary);
}

.about-card svg {
  width: 58px;
  height: 58px;
}

.about-card h3 {
  margin: 0 0 14px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 21px;
  line-height: 1.1;
}

.about-card p {
  margin: 0;
  color: #5a5a5a;
  line-height: 1.65;
}

.about-split .split-image {
  background-position: center;
}

.contact-intro {
  padding-bottom: 42px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid #d8dce5;
  border-radius: 999px;
  color: #000;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-direct svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.7fr .7fr;
  gap: 70px;
  align-items: start;
}

.contact-panel {
  background: var(--background-light);
  padding: 80px 74px;
  min-height: 850px;
}

.contact-panel p {
  margin: 0 0 36px;
  color: #000;
  font-size: 17px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 11px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #5a5a5a;
  font-size: 16px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d8dce5;
  border-radius: 0;
  background: #fff;
  font: inherit;
  padding: 16px 18px;
  outline: 0;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 210px;
  resize: vertical;
}

.submit-button {
  width: max-content;
  border: 1px solid #d8dce5;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
  padding: 13px 30px;
  cursor: pointer;
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside h2,
.contact-aside h3 {
  margin: 0;
  color: #000;
  font-family: Unbounded, Inter, sans-serif;
  line-height: 1.12;
}

.contact-aside h2 {
  font-size: 25px;
  margin-bottom: 12px;
}

.contact-aside h3 {
  font-size: 26px;
  margin: 34px 0 8px;
}

.contact-aside p {
  color: #555;
  font-weight: 700;
  line-height: 1.55;
}

.contact-aside a {
  color: var(--primary);
  font-size: 27px;
  font-weight: 900;
}

.contact-map,
.footer-map {
  width: 100%;
  overflow: hidden;
  background: #101010;
}

.contact-map iframe,
.footer-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-map iframe {
  min-height: 620px;
}

.footer-map iframe {
  min-height: 250px;
}

.site-footer {
  background: #050505;
  color: #fff;
  padding: 76px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, .78fr));
  gap: 42px;
}

.footer-brand .brand-badge {
  margin: 0 0 28px;
}

.footer-brand p {
  color: #a7a7a7;
  line-height: 1.8;
  max-width: 430px;
}

.footer-contact-line {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.footer-contact-line a {
  color: #fff;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer-col h3 {
  margin: 0 0 24px;
  color: #fff;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 6px;
}

.footer-map-col {
  min-width: 0;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #888;
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 28px;
  bottom: 44px;
  display: none;
  gap: 13px;
}

.float-button {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #08b8f6;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.24);
}

.float-button svg {
  width: 28px;
  height: 28px;
}

.not-found {
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .site-header {
    height: 90px;
  }

  .site-header-inner {
    width: calc(100% - 32px);
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 42;
  }

  .primary-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(430px, 100vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #000;
    padding: 82px 24px 34px;
    overflow-y: auto;
    transform: translateX(-104%);
    transition: transform .28s ease;
    z-index: 44;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 31px;
    line-height: 1;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 43;
    display: block;
    background: rgba(0,0,0,.64);
    backdrop-filter: blur(3px);
  }

  .nav-overlay[hidden] {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-item > a,
  .nav-item > button {
    width: 100%;
    justify-content: space-between;
    padding: 17px 0;
  }

  .mega-panel {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-item.open .mega-panel {
    max-height: 900px;
    padding: 24px;
    transform: none;
  }

  .mega-title {
    font-size: 24px;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .brand-badge {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 8px;
  }

  .call-link {
    display: block;
  }

  .call-link a {
    margin-top: 12px;
    justify-content: center;
    padding: 18px 16px;
    background: var(--primary);
    color: #fff;
  }

  .hero-home {
    min-height: 328px;
  }

  .hero-home .hero-content {
    min-height: 328px;
    width: 100%;
    padding-left: 16px;
    align-items: start;
    padding-top: 58px;
  }

  .hero-title {
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
    font-size: 30px;
    line-height: 1.05;
    white-space: normal;
  }

  .hero-title small {
    margin-top: 12px;
    font-size: 17px;
  }

  .hero-rule {
    left: 16px;
    right: 16px;
    bottom: 90px;
  }

  .hero-stars,
  .book-now {
    display: none;
  }

  .hero-page {
    min-height: 310px;
  }

  .hero-page .hero-content {
    width: calc(100% - 32px);
    min-height: 310px;
    padding-bottom: 42px;
  }

  .hero-page-title {
    font-size: clamp(27px, 7.8vw, 31px);
    line-height: 1.08;
    max-width: calc(100vw - 32px);
  }

  .section,
  .section.compact {
    padding: 72px 0;
  }

  .inner {
    width: auto;
    max-width: min(calc(100vw - 32px), 358px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .breadcrumbs ol {
    width: calc(100% - 32px);
    font-size: 12px;
  }

  .overview-grid,
  .split-band,
  .page-grid,
  .about-story,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    gap: 24px;
    align-items: start;
  }

  .overview-copy .lead {
    width: 100%;
    max-width: 100%;
    font-size: 23px;
    overflow-wrap: break-word;
  }

  .overview-copy p:not(.lead) {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .overview-copy,
  .detail-copy,
  .taxonomy-card-body,
  .contact-panel,
  .contact-aside {
    min-width: 0;
  }

  .overview-visual {
    padding-top: 0;
  }

  .overview-visual img {
    height: 360px;
  }

  .stat-stack {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
  }

  .stat-icon svg {
    width: 26px;
    height: 26px;
  }

  .services-strip,
  .market-grid,
  .card-grid,
  .locations-grid,
  .about-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    padding: 58px 24px;
  }

  .split-image {
    min-height: 360px;
  }

  .side-list {
    padding: 28px;
  }

  .detail-copy li {
    font-size: 24px;
  }

  .detail-image {
    height: 330px;
  }

  .story-tabs {
    margin-bottom: 44px;
    gap: 16px;
    font-size: 12px;
  }

  .story-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-panel {
    padding: 42px 28px;
    min-height: auto;
  }

  .contact-panel {
    padding: 44px 28px;
    min-height: auto;
  }

  .contact-direct a {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .footer-map iframe {
    min-height: 210px;
  }

  .floating-actions {
    display: grid;
    right: 16px;
    bottom: 20px;
  }
}


/* Internal "Explore More" related-links section (generated deep pages) */
.internal-links {
  margin: 48px auto;
  max-width: 1180px;
  padding: 0 22px;
}

.internal-links h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 16px;
}

.internal-links ul {
  display: grid;
  gap: 8px 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links a {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
}

.internal-links a:hover {
  text-decoration: underline;
}

/* brand-logo-css */
.brand-badge:has(.brand-logo){width:auto;height:auto;flex:0 0 auto;border:0;border-radius:0;box-shadow:none;padding:0;display:inline-flex;align-items:center}
.brand-logo{height:34px;width:auto;display:block;max-width:340px}
.footer-brand .brand-badge .brand-logo{height:40px}
@media (max-width:760px){.brand-logo{height:28px}.footer-brand .brand-badge .brand-logo{height:34px}}
