:root {
  --bg: #f7f8f7;
  --surface: #ffffff;
  --ink: #101210;
  --muted: #4a534d;
  --brand: #0f5e3b;
  --brand-deep: #083823;
  --line: #d8dfda;
  --shadow: 0 12px 28px rgba(14, 20, 17, 0.08);
  --section-gap: 1.25rem;
  --divider-pad: 0.95rem;
  --home-logo-progress: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8f7 0%, #f3f5f3 45%, #f7f8f7 100%);
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.15rem 2.2rem;
}

.home-page .page-shell {
  padding-top: 0;
}

.interior-page .page-shell {
  padding-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 0.9rem;
}

.header-row {
  position: relative;
  min-height: 88px;
  padding: 1rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #d6ddd8;
  background: rgba(247, 248, 247, 0.95);
  backdrop-filter: blur(7px);
}

.header-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  pointer-events: none;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 1.15rem;
}

.interior-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 1.15rem;
}

.home-page .header-row {
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  justify-content: flex-end;
}

.interior-page .header-row {
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  justify-content: flex-end;
}

.home-page .header-row::before,
.interior-page .header-row::before {
  background: linear-gradient(180deg, rgba(18, 21, 20, 0.58) 0%, rgba(62, 67, 64, 0.3) 55%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(10px);
}

.home-page .brand-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: clamp(0, calc((var(--home-logo-progress) - 0.42) * 2.2), 1);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.home-page.is-condensed .brand-link {
  pointer-events: auto;
}

.interior-page .brand-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-page .brand-link::after {
  content: "";
  display: block;
  width: 134px;
  height: 38px;
  background: url("/images/logos/logo_new_white.png") center / contain no-repeat;
}

.interior-page .brand-link::after {
  content: "";
  display: block;
  width: 134px;
  height: 38px;
  background: url("/images/logos/logo_new_white.png") center / contain no-repeat;
}

.home-page .tab-button {
  color: rgba(255, 255, 255, 0.92);
}

.interior-page .tab-button {
  color: rgba(255, 255, 255, 0.92);
}

.home-page .tab-button.active {
  color: #ffffff;
}

.interior-page .tab-button.active {
  color: #ffffff;
}

.home-page .tab-button::after {
  background: #ffffff;
}

.interior-page .tab-button::after {
  background: #ffffff;
}

.home-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(7, 16, 11, 0.24);
}

.interior-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(7, 16, 11, 0.24);
}

.home-page .menu-toggle span {
  background: #ffffff;
}

.interior-page .menu-toggle span {
  background: #ffffff;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  max-width: 146px;
  height: auto;
}

.mobile-logo-wrap {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Baskervville", serif;
  margin: 0;
  line-height: 1.2;
}

h1 {
  margin-top: 0.2rem;
  font-size: clamp(1.75rem, 4vw, 2.9rem);
}

h2 {
  margin-top: 0.2rem;
  font-size: clamp(1.45rem, 3.1vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.71rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tab-button {
  border: none;
  background: transparent;
  color: #19231d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0;
  cursor: pointer;
  position: relative;
}

.tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.tab-button:hover::after,
.tab-button:focus-visible::after,
.tab-button.active::after {
  transform: scaleX(1);
}

.tab-button.active {
  color: var(--brand);
}

.tab-button:focus-visible {
  outline: none;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 172px;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(7, 18, 12, 0.94);
  box-shadow: 0 18px 38px rgba(4, 12, 8, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.8rem;
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  color: #edf2ee;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.67rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(79, 209, 141, 0.16);
  color: #ffffff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid #bbc7bf;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.4rem 0.48rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 0.27rem 0;
  transition: 170ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  margin-top: 1.4rem;
}

.home-page main {
  margin-top: 0;
}

.interior-page main {
  margin-top: 6rem;
}

.tab-panel {
  padding-bottom: 0.25rem;
  animation: panel-in 260ms ease;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-slideshow {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #12221a;
}

.slideshow-track,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 10, 0.14) 0%, rgba(5, 15, 10, 0.5) 60%, rgba(5, 15, 10, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 16, 11, 0.7) 0%, rgba(7, 16, 11, 0.2) 48%, rgba(7, 16, 11, 0.08) 100%);
}

.home-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.35rem 1.5rem 2rem;
}

.hero-brand-mark {
  position: fixed;
  left: 50%;
  top: calc(50vh - ((50vh - 44px) * var(--home-logo-progress)));
  z-index: 35;
  width: min(36vw, 420px);
  transform: translate(-50%, -50%) scale(calc(1 - (0.64 * var(--home-logo-progress))));
  transform-origin: center;
  opacity: calc(1 - (0.88 * var(--home-logo-progress)));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.hero-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.slideshow-indicators {
  display: flex;
  gap: 0.55rem;
  margin-top: auto;
}

.slideshow-dot {
  width: 40px;
  height: 4px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.slideshow-dot.is-active,
.slideshow-dot:hover,
.slideshow-dot:focus-visible {
  background: #ffffff;
  transform: scaleY(1.25);
}

.slideshow-dot:focus-visible {
  outline: none;
}

.home-info {
  margin-top: 0;
  padding: clamp(1.1rem, 2.8vw, 2.2rem) 0 0;
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: stretch;
}

.home-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(0.4rem, 2vw, 1rem) 0;
}

.home-feature-eyebrow {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-copy h2 {
  max-width: none;
  font-size: clamp(2rem, 4.1vw, 3.55rem);
  line-height: 1.02;
}

.home-feature-copy p {
  max-width: 44ch;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.62;
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.35rem;
}

.home-metric-card {
  padding: 1rem 1rem 0.95rem;
}

.home-feature-copy .home-metric-value {
  margin: 0;
  color: #45b649;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.home-feature-copy .home-metric-value span {
  display: inline-block;
  min-width: 2ch;
  color: #45b649;
}

.home-feature-copy .home-metric-label {
  margin: 0.35rem 0 0;
  color: #45b649;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.home-feature-image {
  min-height: 420px;
}

.home-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.brand-logos-band {
  margin-top: 1.15rem;
  padding-top: 0.6rem;
  border-top: 1px solid #e6ebe7;
}

.brand-logos img {
  width: 100%;
  height: 120px;
  padding: 0.1rem 0.1rem;
  object-fit: contain;
}

.capabilities-section {
  margin-top: 2.2rem;
  padding-top: 0.4rem;
}

.capabilities-header {
  margin-bottom: 0.9rem;
}

.capabilities-header .home-feature-eyebrow {
  color: #45b649;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.portfolio-hero {
  position: relative;
  min-height: clamp(320px, 50vh, 460px);
  width: 100vw;
  margin-top: -6rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 14, 10, 0.18) 0%, rgba(6, 14, 10, 0.52) 100%),
    url("/images/exteriors/fi-denfd-denver-skyline-view-33687-Classic-Hor.jpeg") center / cover no-repeat;
}

.portfolio-intro {
  max-width: 760px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.portfolio-intro h2 {
  margin: 0;
}

.portfolio-intro p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.3rem;
}

.capability-card {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.capability-dash {
  display: block;
  width: 56px;
  height: 6px;
  margin: 0 0 0.7rem;
  background: #45b649;
  border-radius: 999px;
}

.capability-card h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.capability-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-image-missing {
  width: 100%;
  height: 132px;
  display: grid;
  place-items: center;
  background: #eef3ef;
  color: #5f6a63;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.portfolio-meta {
  margin: 0.35rem 0 0;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.73rem;
}

.hotel-details-section {
  margin-top: var(--section-gap);
  padding-top: var(--divider-pad);
  border-top: 1px solid var(--line);
}

.hotel-details {
  margin-top: 0.8rem;
}

.hotel-detail-group + .hotel-detail-group {
  margin-top: 1.35rem;
}

.hotel-detail-group {
  scroll-margin-top: 110px;
}

.hotel-detail-group h3 {
  margin: 0 0 0.85rem;
}

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

.hotel-detail-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: none;
  background: transparent;
  border-radius: 32px;
  overflow: hidden;
  scroll-margin-top: 96px;
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
  position: relative;
  transition: transform 120ms ease;
}

.hotel-detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 32px;
  pointer-events: none;
  transition: border-color 120ms ease;
}

.hotel-detail-card:hover,
.hotel-detail-card:focus-visible,
.hotel-detail-card:focus-within {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.hotel-detail-card:hover::after,
.hotel-detail-card:focus-visible::after,
.hotel-detail-card:focus-within::after {
  border-color: #45b649;
}

.detail-image img,
.detail-image .portfolio-image-missing {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.hotel-detail-card:hover .detail-image img,
.hotel-detail-card:hover .detail-image .portfolio-image-missing,
.hotel-detail-card:focus-visible .detail-image img,
.hotel-detail-card:focus-visible .detail-image .portfolio-image-missing,
.hotel-detail-card:focus-within .detail-image img,
.hotel-detail-card:focus-within .detail-image .portfolio-image-missing {
  border-radius: 38px;
}

.detail-copy h4 {
  margin: 0;
  font-family: "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.detail-rooms {
  margin: 0.35rem 0 0;
  color: #16231c;
  font-weight: 700;
  font-size: 0.86rem;
}

.detail-additional-info {
  margin: 0.35rem 0 0;
  color: #45b649;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.detail-reveal {
  display: none;
  margin-top: 0.2rem;
}

.detail-reveal-body {
  overflow: visible;
}

.hotel-detail-card:hover .detail-reveal,
.hotel-detail-card:focus-visible .detail-reveal,
.hotel-detail-card:focus-within .detail-reveal {
  display: block;
}

.detail-sentence {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-section {
  margin-top: var(--section-gap);
  padding-top: var(--divider-pad);
  border-top: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hotel-map {
  position: relative;
  width: 100%;
  height: clamp(320px, 58vh, 620px);
  margin-top: 0;
  background: linear-gradient(180deg, #0c120f 0%, #121d18 100%);
  overflow: hidden;
  contain: layout paint;
}

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(69, 182, 73, 0.16) 0%, rgba(69, 182, 73, 0) 28%),
    linear-gradient(180deg, rgba(12, 18, 15, 0.94) 0%, rgba(18, 29, 24, 0.98) 100%);
  place-items: center;
  color: rgba(244, 247, 245, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.hotel-map.is-loaded .map-loading {
  opacity: 0;
  visibility: hidden;
}

.map-loading-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(244, 247, 245, 0.18);
  border-top-color: #7edc92;
  border-radius: 999px;
  animation: map-loading-spin 900ms linear infinite;
}

@keyframes map-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.map-error {
  margin: 0;
  padding: 1rem;
  color: #5b5f5d;
  font-weight: 600;
}

.hotel-map-popup {
  color: #f4f7f5;
  font-size: 14px;
  line-height: 1.42;
  width: min(320px, calc(100vw - 36px));
  background: linear-gradient(180deg, rgba(16, 24, 20, 0.96) 0%, rgba(9, 14, 11, 0.98) 100%);
  white-space: normal;
  cursor: default;
}

.hotel-map-popup .media {
  position: relative;
  overflow: hidden;
}

.hotel-map-popup .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 8, 0.04) 0%, rgba(5, 10, 8, 0.42) 100%);
}

.hotel-map-popup .copy {
  padding: 0.95rem 1rem 1rem;
}

.hotel-map-popup .eyebrow {
  margin: 0 0 0.35rem;
  color: #7edc92;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.hotel-map-popup .name {
  font-family: "Baskervville", serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.hotel-map-popup .meta {
  color: rgba(231, 238, 233, 0.74);
  margin-top: 0.45rem;
  line-height: 1.45;
  font-size: 0.84rem;
}

.hotel-map-popup .action {
  display: inline-flex;
  margin-top: 0.7rem;
  color: #9ff0ad;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hotel-map-popup .action:hover,
.hotel-map-popup .action:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.hotel-map-popup img.hotel-img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.hotel-map .mapboxgl-canvas {
  outline: none;
}

.hotel-map .mapboxgl-ctrl-group {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(216, 223, 218, 0.32);
  background: rgba(10, 17, 13, 0.82);
}

.hotel-map .mapboxgl-ctrl-group button {
  background: transparent;
}

.hotel-map .mapboxgl-ctrl-group button .mapboxgl-ctrl-icon {
  filter: invert(92%) sepia(10%) saturate(129%) hue-rotate(84deg) brightness(107%) contrast(89%);
}

.hotel-map .mapboxgl-ctrl-bottom-left,
.hotel-map .mapboxgl-ctrl-bottom-right {
  bottom: 14px;
}

.hotel-map .mapboxgl-ctrl-attrib {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  margin: 0 14px 0 0;
  padding: 2px 10px;
}

.hotel-map .mapboxgl-ctrl-attrib a {
  color: #203127;
}

.hotel-map .mapboxgl-popup-content {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(114, 149, 124, 0.22);
  box-shadow: 0 22px 48px rgba(5, 10, 8, 0.42);
  background: transparent;
}

.hotel-map .mapboxgl-popup-tip {
  border-top-color: rgba(9, 14, 11, 0.98);
}

.team-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.5rem max(1.15rem, calc((100vw - 1180px) / 2 + 1.15rem)) 3rem;
  background: #1c3126;
}

.team-card {
  position: relative;
  border: none;
  padding: 0.9rem;
  background: transparent;
  overflow: hidden;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.team-card:hover,
.team-card:focus-visible,
.team-card:focus-within {
  box-shadow: none;
  outline: none;
  transform: translateY(-2px);
}

.team-photo-wrap {
  position: relative;
  width: 90%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 0.6rem;
  overflow: hidden;
  border-radius: 22px;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3,
.team-card .role {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.team-card h3 {
  color: #ffffff;
}

.team-card p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.team-bio {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42%;
  margin: 0 auto;
  padding: 1.15rem;
  background: rgba(5, 10, 8, 0.8);
  color: #fff;
  font-size: clamp(0.66rem, 0.9vw, 0.82rem);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  line-height: 1.42;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.team-card .team-bio {
  color: #fff;
}

.team-card:hover .team-bio,
.team-card:focus-visible .team-bio,
.team-card:focus-within .team-bio {
  opacity: 1;
  transform: translateY(0);
}

.role {
  color: #ffffff;
  font-weight: 700;
}

.team-page-title {
  text-align: center;
  max-width: none;
  margin: 0.25rem auto 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.team-subtitle {
  max-width: 720px;
  margin: 0.35rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.45;
  text-align: center;
}

.contact-layout {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: var(--divider-pad);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

label {
  font-size: 0.85rem;
  font-weight: 700;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd9cf;
  border-radius: 0;
  padding: 0.62rem 0.72rem;
  background: #fff;
}

button[type="submit"] {
  margin-top: 0.25rem;
  width: fit-content;
  border: none;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.68rem 1.2rem;
  cursor: pointer;
}

button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  opacity: 0.92;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-slideshow,
  .home-hero-overlay {
    min-height: 78vh;
  }

  .hero-brand-mark {
    width: min(50vw, 360px);
  }

  .home-feature {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-feature-copy h2,
  .home-feature-copy p {
    max-width: none;
  }

  .home-metrics {
    grid-template-columns: 1fr;
  }

  .home-metric-card {
    padding-left: 0;
    padding-right: 0;
  }

  .home-feature-image {
    min-height: 340px;
  }

  .brand-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .brand-logos img {
    height: 96px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  main {
    margin-top: 1.1rem;
  }

  .tab-panel {
    padding-bottom: 0.1rem;
  }

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

  .tabs {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 41;
    border: 1px solid #1f3127;
    background: #07160e;
    box-shadow: var(--shadow);
    padding: 0.85rem;
    display: none;
    gap: 0.45rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu {
    display: block;
  }

  .tabs.is-open {
    display: flex;
  }

  .mobile-logo-wrap {
    display: flex;
    justify-content: center;
    padding: 0.3rem 0 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .light-logo {
    max-width: 124px;
  }

  .tab-button {
    display: block;
    width: 100%;
    color: #edf2ee;
    text-align: left;
    letter-spacing: 0.09em;
    padding: 0.63rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tab-button::after {
    bottom: 0.2rem;
    background: #4fd18d;
  }

  .tab-button:last-child {
    border-bottom: none;
  }

  .tab-button.active {
    color: #81e6b0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: -0.2rem 0 0.2rem 0.7rem;
    padding: 0 0 0.1rem 0.75rem;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu a {
    padding: 0.44rem 0;
    color: #cfe7d7;
    font-size: 0.64rem;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    background: transparent;
    color: #ffffff;
  }

  .portfolio-image-missing {
    height: 220px;
  }

  .hotel-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-slideshow,
  .home-hero-overlay {
    min-height: 100vh;
  }

  .home-hero-overlay {
    padding: 1.15rem;
  }

  .hero-brand-mark {
    width: min(62vw, 300px);
  }

  .slideshow-indicators {
    gap: 0.4rem;
  }

  .slideshow-dot {
    width: 30px;
  }

  .detail-image img,
  .detail-image .portfolio-image-missing {
    height: 250px;
  }

  .detail-reveal {
    display: block;
    margin-top: 0.2rem;
  }

  .team-grid,
  .contact-layout,
  .map-section,
  .hotel-details-section,
  .home-info {
    margin-top: 1.05rem;
  }

  .team-grid,
  .contact-layout {
    padding-top: 0.78rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 0.4rem;
  }

  .header-row {
    min-height: 70px;
    padding: 0.62rem 0;
  }

  .brand-logo {
    max-width: 122px;
  }

  .home-page .site-header {
    padding: 0 0.8rem;
  }

  .interior-page .site-header {
    padding: 0 0.8rem;
  }

  .home-page .header-row {
    min-height: 70px;
  }

  .interior-page .header-row {
    min-height: 70px;
  }

  h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .home-feature-copy p,
  .detail-sentence,
  .team-card p,
  .contact-card p {
    line-height: 1.55;
  }

  .brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logos img {
    height: 84px;
  }

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

  .home-metric-value {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
  }

  .home-page .brand-link::after {
    width: 112px;
    height: 32px;
  }

  .interior-page .brand-link::after {
    width: 112px;
    height: 32px;
  }

  .hero-brand-mark {
    width: min(72vw, 250px);
  }

  .team-card {
    padding: 0.72rem;
  }

  .team-bio {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 0;
    margin: 0;
    padding: 1rem;
    background: rgba(5, 10, 8, 0.82);
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
  }

  .contact-form {
    gap: 0.5rem;
  }

  input,
  textarea {
    padding: 0.54rem 0.64rem;
  }

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

  .hotel-map {
    height: clamp(300px, 50vh, 430px);
  }

  .hotel-detail-grid {
    grid-template-columns: 1fr;
  }

  .hotel-map-popup {
    min-width: 0;
    max-width: 290px;
    font-size: 13px;
    padding: 4px 8px 8px;
  }

  .hotel-map-popup .name {
    font-size: 15px;
  }

  .hotel-map-popup img.hotel-img {
    height: 150px;
  }

}
