/* North Hill — Bootstrap 5
   Content uses .container (540 / 720 / 960 / 1140 / 1320).
   Hero, landscape, and experience images remain full-bleed.
*/

:root {
  --nh-teal: #526d6f;
  --nh-teal-dark: #3e5557;
  --nh-ink: #141414;
  --nh-navy: #16233c;
  --nh-mist: #f6f6f6;
  --nh-muted: #797d82;
  --nh-line: #939598;
  --nh-header: 91px;
  --nh-display: "Cinzel", "Trajan Pro", serif;
  --nh-body: "Inter", system-ui, sans-serif;
  --nh-btn: "Afacad", sans-serif;
  --nh-brand: "Libre Caslon Text", "Big Caslon", serif;
  --caslon: var(--nh-brand);
  --caslon-light: "Source Serif 4", var(--nh-brand);
  --nh-map-label: "Playfair Display", serif;
}

/* —— Reset / base —— */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nh-header);
}

body {
  font-family: var(--nh-body);
  font-size: 21px;
  font-weight: 400;
  line-height: 41px;
  color: var(--nh-ink);
  background: #fff;
  overflow-x: hidden;
}

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

.nh-hero__img,
.nh-chapter__img,
.nh-experience__img,
.nh-thanks__img,
.nh-map__img {
  max-width: none;
}

a {
  color: inherit;
}

/* —— Typography —— */
.nh-display {
  font-family: var(--nh-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--nh-ink);
  letter-spacing: 0.1em;
  line-height: 1.15;
}

.nh-display-xl {
  font-size: clamp(2rem, 5.7vw, 81.9px);
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.nh-display-lg {
  font-size: clamp(1.75rem, 3.7vw, 48.991px);
  letter-spacing: 0.1em;
  line-height: normal;
}

.nh-display-md {
  font-family: var(--nh-display);
  font-size: clamp(1.5rem, 2.6vw, 37px);
  line-height: 44px;
  text-transform: uppercase;
  color: var(--nh-ink);
  letter-spacing: 0.02em;
}

.nh-lede {
  font-size: clamp(1rem, 1.46vw, 21px);
  line-height: 1.95;
  color: var(--nh-ink);
}

/* —— Buttons —— */
.nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208.2px;
  height: 38.5px;
  padding: 5px 16px;
  background: var(--nh-teal);
  color: #fff;
  border: 0;
  border-radius: 0;
  font-family: var(--nh-btn);
  font-weight: 600;
  font-size: 20.833px;
  letter-spacing: 2.0833px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nh-btn:hover,
.nh-btn:focus-visible {
  background: var(--nh-teal-dark);
  color: #fff;
}

.nh-btn:focus-visible {
  outline: 2px solid var(--nh-ink);
  outline-offset: 3px;
}

/* —— Header —— */
.nh-header {
  height: var(--nh-header);
  background: #fff;
  border-bottom: 1px solid #000;
  z-index: 1030;
}

.nh-header.navbar {
  flex-wrap: nowrap;
  padding: 0;
}

.nh-header .container {
  height: 100%;
  gap: 12px;
  flex-wrap: nowrap;
}

.nh-logo {
  width: 256px;
  height: 58.575px;
  flex: 1 1 auto;
  min-width: 0;
}

.nh-logo img {
  width: 256px;
  height: 58.575px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nh-header .nh-btn {
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .nh-header {
    height: 72px;
  }

  .nh-logo,
  .nh-logo img {
    width: 168px;
    height: 38px;
  }

  .nh-header .nh-btn {
    min-width: 0;
    height: 34px;
    padding: 4px 12px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }
}

/* —— Hero —— */
.nh-hero {
  background: #fff;
}

.nh-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 832;
  min-height: 420px;
  overflow: hidden;
  background: #1a1a1a;
}

.nh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.nh-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 16, 8, 0.28) 0%,
    rgba(20, 16, 8, 0.08) 38%,
    rgba(20, 16, 8, 0) 62%
  );
  pointer-events: none;
}

.nh-hero__copy {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  padding: 0 clamp(1.35rem, 3.4vw, 3.25rem);
  max-width: 72%;
}

.nh-hero__frame h1 {
  font-family: var(--caslon);
  font-weight: 400;
  color: #fff;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 1rem + 3.4vw, 3.85rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .nh-hero__frame h1 {
    white-space: nowrap;
  }
}

.nh-hero__price {
  margin: 1.15em 0 0;
  color: #fff;
  font-family: var(--caslon-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 0.5rem + 3.25vw, 5.6rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.nh-hero__price-label {
  display: inline-block;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-right: 0.2em;
  vertical-align: 0.55em;
}

@media (max-width: 767.98px) {
  .nh-hero__frame {
    min-height: 60vh;
    aspect-ratio: auto;
    height: 60vh;
  }

  .nh-hero__img {
    object-position: 72% 40%;
  }

  .nh-hero__copy {
    max-width: 86%;
    padding: 0 1.15rem;
  }
}

/* —— Chapter / landscape —— */
.nh-chapter {
  background: #fff;
  padding-top: 5.5rem;
}

.nh-chapter__content {
  padding-bottom: 0.75rem;
}

.nh-chapter__content h2 {
  margin: 0;
}

.nh-chapter__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 810;
  min-height: 320px;
  overflow: hidden;
}

.nh-chapter__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.nh-chapter__frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18%;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .nh-chapter {
    padding-top: 3rem;
  }

  .nh-chapter__content {
    padding-bottom: 0.5rem;
  }

  .nh-chapter__frame {
    aspect-ratio: 16 / 10;
  }
}

/* —— Townhomes —— */
.nh-townhomes {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.nh-townhomes__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 749 / 756;
  max-height: 756px;
  overflow: hidden;
}

.nh-townhomes__photo img {
  position: absolute;
  left: 0;
  top: -28.26%;
  width: 100%;
  height: 130.48%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.nh-townhomes__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 565px;
}

@media (min-width: 992px) {
  .nh-townhomes__copy {
    padding-top: 44px;
  }
}

.nh-townhomes__copy h2 {
  max-width: 541px;
  margin: 0;
}

.nh-townhomes__badge {
  width: 145px;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: left top;
}

@media (max-width: 991.98px) {
  .nh-townhomes__photo {
    max-height: none;
  }
}

/* —— Amenities —— */
.nh-amenities {
  padding-bottom: 3rem;
}

.nh-amenity {
  background: var(--nh-mist);
  padding: 2rem;
  height: 100%;
}

.nh-amenity__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.nh-amenity__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.nh-amenity:hover .nh-amenity__img img {
  transform: scale(1.04);
}

.nh-amenity h3 {
  margin-bottom: 1.5rem;
}

.nh-amenity p {
  margin: 0;
  color: #000;
}

.nh-amenity strong {
  font-weight: 700;
}

/* —— Map / community —— */
.nh-community {
  padding-top: 25px;
  border-top: 1px solid #000;
}

.nh-community__intro {
  margin-bottom: 1rem;
}

.nh-go-logo {
  display: inline-block;
  width: 56px;
  height: 27px;
  object-fit: contain;
  vertical-align: middle;
  margin: 0 6px 4px;
}

.nh-filters-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nh-filters {
  display: flex;
  gap: 8.365px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
  scroll-snap-type: x mandatory;
}

.nh-filters::-webkit-scrollbar {
  display: none;
}

.nh-filters__nav {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--nh-line);
  background: #fff;
  color: var(--nh-teal);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.nh-filters__nav:hover,
.nh-filters__nav:focus-visible {
  background: var(--nh-mist);
  border-color: var(--nh-teal);
  color: var(--nh-teal-dark);
}

.nh-filters__nav:focus-visible {
  outline: 2px solid var(--nh-teal);
  outline-offset: 2px;
}

.nh-filters__nav:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.nh-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  width: 123.305px;
  height: 123.305px;
  background: #fff;
  border: 0.837px solid var(--nh-line);
  padding: 10px 4px 8px;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nh-filter img {
  display: block;
  flex: 0 0 48px;
  width: auto;
  height: 48px;
  max-width: 72%;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
}

.nh-filter--highways img,
.nh-filter--transit img {
  width: auto;
  height: 48px;
}

.nh-filter span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.84em;
  width: 100%;
  height: 3.84em;
  font-family: var(--nh-map-label);
  font-size: 8.51px;
  line-height: 1.28;
  text-transform: uppercase;
  text-align: center;
  color: var(--nh-muted);
  padding: 0 2px;
  overflow-wrap: break-word;
}

.nh-filter:hover,
.nh-filter:focus-visible,
.nh-filter.is-active {
  background: var(--nh-mist);
  border-color: var(--nh-teal);
}

.nh-filter:focus-visible {
  outline: 2px solid var(--nh-teal);
  outline-offset: 2px;
}

@media (max-width: 1199.98px) {
  .nh-filters__nav {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {
  .nh-filters {
    overflow: visible;
    scroll-snap-type: none;
  }

  .nh-filter {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: auto;
    aspect-ratio: 1;
    scroll-snap-align: unset;
    padding: 8px 3px;
    gap: 6px;
  }

  .nh-filter img,
  .nh-filter--highways img,
  .nh-filter--transit img {
    flex: 0 0 44px;
    height: 44px;
    max-height: 44px;
  }

  .nh-filter span {
    font-size: clamp(7px, 0.62vw, 8.51px);
    line-height: 1.22;
    flex-basis: 3.66em;
    height: 3.66em;
  }
}

.nh-community__hint {
  margin-bottom: 0;
}

.nh-map {
  position: relative;
  width: 100%;
  margin-top: 8px;
  background: #ececec;
}

.nh-map__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 823;
  min-height: 420px;
  overflow: hidden;
}

.nh-map__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #e8e8e8;
}

.nh-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--nh-body);
  background: #e8e8e8;
}

.nh-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(1.08) brightness(1.04);
}

.nh-map .leaflet-control-zoom {
  border: 0;
  box-shadow: none;
  margin: 16px 16px 0 0;
}

.nh-map .leaflet-control-zoom a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: var(--nh-teal);
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(82, 109, 111, 0.28);
  font-size: 18px;
}

.nh-map .leaflet-control-zoom a:hover {
  background: #fff;
  color: var(--nh-teal-dark);
}

.nh-map .leaflet-control-zoom-in {
  border-bottom: 0;
}

.nh-map .leaflet-control-attribution {
  background: rgba(255, 252, 247, 0.88);
  color: #6a6e72;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.nh-map .leaflet-control-attribution a {
  color: var(--nh-teal);
}

.nh-marker-wrap {
  background: none;
  border: 0;
  overflow: visible;
}

.nh-map .leaflet-marker-icon {
  cursor: pointer;
}

.nh-marker-wrap--site {
  cursor: default;
}

.nh-marker {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nh-marker--pin {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: var(--nh-pin, #526d6f);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nh-marker--pin.is-active {
  transform: scale(1.35);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--nh-pin, #526d6f) 32%, transparent);
}

.nh-marker:focus-visible {
  outline: 2px solid var(--nh-teal);
  outline-offset: 3px;
}

.nh-marker--site {
  pointer-events: none;
  position: relative;
}

.nh-marker--site img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.nh-marker--site .nh-marker__badge {
  position: absolute;
  left: 12%;
  top: 8%;
  width: 76%;
  height: 62%;
  object-fit: contain;
}

.nh-map.is-filtered .leaflet-marker-icon:has(.nh-marker--pin:not(.is-on)) {
  opacity: 0.2;
}

.nh-map.is-filtered .nh-marker--pin.is-on,
.nh-map.is-filtered .nh-marker--pin.is-active {
  opacity: 1;
  filter: drop-shadow(0 6px 12px rgba(20, 20, 20, 0.3));
}

.nh-map__card[hidden] {
  display: none !important;
}

.nh-map__card {
  position: absolute;
  z-index: 5;
  left: 18px;
  bottom: 18px;
  width: min(340px, calc(100% - 36px));
  padding: 1.15rem 1.25rem 1.05rem;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(82, 109, 111, 0.22);
  box-shadow: 0 18px 40px rgba(22, 35, 60, 0.16);
  backdrop-filter: blur(10px);
  color: var(--nh-ink);
}

.nh-map__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--nh-route, var(--nh-teal));
}

.nh-map__card-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--nh-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.nh-map__card-close:hover,
.nh-map__card-close:focus-visible {
  color: var(--nh-ink);
}

.nh-map__card-cat {
  margin: 0 0 0.35rem;
  font-family: var(--nh-map-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nh-teal);
}

.nh-map__card-title {
  margin: 0;
  font-family: var(--nh-display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  padding-right: 1.5rem;
}

.nh-map__card-addr {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--nh-muted);
}

.nh-map__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.nh-map__card-stats div {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(147, 149, 152, 0.45);
}

.nh-map__card-stats dt {
  font-family: var(--nh-map-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-muted);
}

.nh-map__card-stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--caslon);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--nh-ink);
}

.nh-map__card-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--nh-muted);
}

.nh-map__card-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid rgba(147, 149, 152, 0.35);
  max-height: 9.5rem;
  overflow-y: auto;
}

.nh-map__card-list[hidden] {
  display: none !important;
}

.nh-map__card-place {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--nh-ink);
}

.nh-map__card-place em {
  flex: 0 0 auto;
  font-style: normal;
  color: var(--nh-teal);
  font-size: 0.75rem;
}

.nh-map__card-place:hover,
.nh-map__card-place.is-current {
  color: var(--nh-teal-dark);
}

.nh-route-casing {
  cursor: default;
}

.nh-route-line {
  stroke-dasharray: 14 10;
  animation: nh-route-flow 1.4s linear infinite;
}

@keyframes nh-route-flow {
  to {
    stroke-dashoffset: -48;
  }
}

@media (max-width: 767.98px) {
  .nh-map__stage {
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }

  .nh-map__card {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 0.95rem 1rem 0.9rem;
  }

  .nh-map__card-stats dd {
    font-size: 1.15rem;
  }
}

/* —— Experience —— */
.nh-experience {
  background: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.nh-experience__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 1024;
  min-height: 420px;
  overflow: hidden;
  background: #111;
}

.nh-experience__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.nh-experience__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.nh-experience__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  width: min(100%, 448px);
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.25rem);
}

.nh-experience__copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.nh-experience__copy p {
  color: #fff;
  margin: 0;
}

@media (max-width: 991.98px) {
  .nh-experience__frame {
    aspect-ratio: auto;
    min-height: 70vh;
  }

  .nh-experience__copy {
    width: 100%;
    max-width: 36rem;
  }
}

/* —— Register —— */
.nh-register {
  padding-top: 80px;
  padding-bottom: 72px;
}

.nh-register h2 {
  margin-bottom: 8px;
}

.nh-field {
  width: 100%;
  height: 54px;
  border: 1px solid #000;
  border-radius: 0;
  padding: 4px 8px;
  font-family: var(--nh-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 45.8px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  appearance: none;
}

.nh-field::placeholder {
  color: #000;
  opacity: 1;
}

.nh-field:focus {
  outline: 2px solid var(--nh-teal);
  outline-offset: 2px;
  border-color: var(--nh-teal);
}

.nh-field:disabled {
  opacity: 0.45;
  background: var(--nh-mist);
  cursor: not-allowed;
}

.nh-select {
  position: relative;
}

.nh-select select {
  padding-right: 62px;
}

.nh-select__arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nh-select__arrow img {
  width: 27px;
  height: 54px;
  transform: rotate(90deg);
}

.nh-broker-q {
  font-family: var(--nh-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 45.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.nh-radios {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
}

.nh-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.391px;
  letter-spacing: 1.97px;
  text-transform: uppercase;
  margin: 0;
}

.nh-radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.nh-radio__mark {
  width: 21.35px;
  height: 21.35px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  flex-shrink: 0;
}

.nh-radio input:checked + .nh-radio__mark {
  background: var(--nh-teal);
  border-color: var(--nh-teal);
  box-shadow: inset 0 0 0 4px #fff;
}

.nh-radio input:focus-visible + .nh-radio__mark {
  outline: 2px solid var(--nh-teal);
  outline-offset: 2px;
}

.nh-disclaimer {
  font-size: 12px;
  line-height: 16px;
  margin-top: 16px;
}

.nh-disclaimer a {
  text-decoration: underline;
}

.nh-form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--nh-mist);
  border-left: 4px solid var(--nh-teal);
  font-size: 16px;
  line-height: 1.5;
}

.nh-form-status.is-visible {
  display: block;
}

.nh-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.nh-locmap {
  border: 1px solid #000;
  position: relative;
  overflow: hidden;
  min-height: 519px;
  background: #dfe6d4;
}

.nh-locmap img {
  width: 100%;
  height: 519px;
  object-fit: cover;
  object-position: center 70%;
}

.nh-locmap__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 103px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nh-brand);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.3vw, 61.69px);
  line-height: 1;
  color: var(--nh-teal);
  letter-spacing: 0.02em;
}

/* —— Thank you —— */
.nh-thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.nh-thanks-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nh-thanks {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nh-header));
  overflow: hidden;
  background: #fff;
}

.nh-thanks__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nh-thanks__img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 68%;
  object-fit: cover;
  object-position: center 72%;
  animation: nh-thanks-drift 28s ease-out forwards;
}

.nh-thanks__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 26%,
    rgba(255, 255, 255, 0.96) 36%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.12) 64%,
    transparent 78%
  );
}

@keyframes nh-thanks-drift {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.nh-thanks .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.75rem, 9vh, 6.25rem);
  padding-bottom: 2.5rem;
}

.nh-thanks__copy {
  max-width: 38rem;
}

.nh-thanks__copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 1.1rem + 4vw, 4.4rem);
  letter-spacing: 0.12em;
  line-height: 1.12;
}

.nh-thanks__note {
  max-width: 26rem;
  margin: 1.35rem 0 0;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--nh-ink);
}

.nh-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.nh-thanks .nh-btn {
  min-width: 13.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (max-width: 575.98px) {
  .nh-thanks .nh-btn {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    letter-spacing: 1.4px;
  }

  .nh-thanks__img {
    height: 52%;
  }
}

@media (max-width: 991.98px) {
  .nh-locmap,
  .nh-locmap img {
    min-height: 360px;
    height: 360px;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--nh-navy);
  color: #fff;
  padding: 2.85rem 0 1.7rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer__top {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__logo {
  width: 222px;
  max-width: 100%;
  height: auto;
}

.site-footer__tagline {
  font-family: var(--caslon);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.site-footer__contact {
  text-align: center;
}

.site-footer__contact .site-footer__heading {
  margin-bottom: 0.3rem;
}

.site-footer__contact .site-footer__text {
  font-size: 0.9375rem;
  font-weight: 400;
}

.site-footer__badge {
  width: 140px;
  height: auto;
  margin-left: auto;
  display: block;
}

.site-footer__contact-row {
  padding: 2.35rem 0 1.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__heading {
  font-family: var(--nh-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  color: #fff;
  line-height: 1.3;
}

.site-footer__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #fff;
}

.site-footer__link {
  color: #fff;
  text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__hours {
  margin: 0;
}

.site-footer__hours-item {
  margin-bottom: 0.95rem;
}

.site-footer__hours-item:last-child {
  margin-bottom: 0;
}

.site-footer__hours dt {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
  margin: 0;
}

.site-footer__hours dd {
  margin: 0.08rem 0 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer__meta-row {
  padding-top: 1.5rem;
}

.site-footer__social {
  position: relative;
  width: 189.24px;
  height: 34.11px;
}

.site-footer__social img {
  width: 189.24px;
  height: 34.11px;
}

.site-footer__social a {
  position: absolute;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.site-footer__social a:nth-child(2) { left: 0; }
.site-footer__social a:nth-child(3) { left: 51px; }
.site-footer__social a:nth-child(4) { left: 103px; }
.site-footer__social a:nth-child(5) { left: 155px; }

.site-footer__social a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.site-footer__copyright {
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.site-footer__copyright .site-footer__link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 991.98px) {
  .site-footer__badge {
    margin: 0.35rem 0 0;
    width: 118px;
  }

  .site-footer__copyright {
    text-align: left !important;
  }
}

/* —— Reveal —— */
.nh-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: nh-rise 0.8s ease forwards;
}

.nh-reveal-d1 { animation-delay: 0.08s; }
.nh-reveal-d2 { animation-delay: 0.16s; }
.nh-reveal-d3 { animation-delay: 0.24s; }

@keyframes nh-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nh-reveal,
  .nh-amenity__img img,
  .nh-pin,
  .nh-btn,
  .nh-thanks__img,
  .nh-route-line,
  .nh-marker,
  .nh-filters__nav {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
