:root {
  --black: #050505;
  --charcoal: #111111;
  --ink: #101114;
  --muted: #5f6266;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #dedede;
  --yellow: #d6a12b;
  --yellow-bright: #f0be3f;
  --shadow: 0 26px 70px rgba(5, 5, 5, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
span,
strong,
button,
label,
input,
textarea,
select {
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.26);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(240, 190, 63, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(5, 5, 5, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(240, 190, 63, 0.34);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: currentColor;
}

.desktop-nav a {
  opacity: 0.78;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--yellow-bright);
}

.site-header.is-scrolled .desktop-nav a:hover {
  color: var(--yellow);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-cta:hover {
  color: var(--black);
  border-color: var(--yellow-bright);
  background: var(--yellow-bright);
}

.hero {
  position: relative;
  min-height: min(820px, 96svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.44) 46%, rgba(5, 5, 5, 0.1)),
    url("assets/images/hero-orbi.jpg") center / cover;
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0) 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0) 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: min(820px, 96svh);
  margin: 0 auto;
  padding: 132px 0 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.media-band .section-kicker,
.finance .section-kicker,
.deal .section-kicker {
  color: var(--yellow-bright);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8.2vw, 118px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--black);
  background: var(--yellow-bright);
}

.button-primary:hover {
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: var(--yellow-bright);
  background: rgba(240, 190, 63, 0.12);
}

.quick-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 40px, var(--max));
  margin: -70px auto 0;
  overflow: hidden;
  border: 1px solid rgba(240, 190, 63, 0.36);
  border-top: 5px solid var(--yellow-bright);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.fact {
  min-height: 126px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 108px 0;
  scroll-margin-top: 108px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 86px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 20px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
}

p {
  margin: 0;
  text-wrap: pretty;
}

p + p {
  margin-top: 18px;
}

h2 + p {
  margin-top: 24px;
}

.lead-copy,
.media-band-content p,
.valuation-copy p,
.finance-copy,
.location-copy p,
.contact-copy p,
.team-copy p,
.deal-copy p {
  color: var(--muted);
  font-size: 18px;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 0;
  border-top: 1px solid rgba(240, 190, 63, 0.28);
  border-bottom: 1px solid rgba(240, 190, 63, 0.28);
  background: var(--black);
}

.media-band-image {
  min-height: 620px;
}

.media-band-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.media-band-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 88px 48px;
  color: var(--white);
}

.media-band-content p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

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

.detail-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.06);
}

.detail-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-card strong {
  display: block;
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.detail-card p {
  margin-top: 18px;
  color: var(--muted);
}

.floor-plan .section-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.floor-plan {
  width: min(100% - 40px, 1360px);
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.plan-stage {
  min-width: 0;
  overflow-x: auto;
  padding: 14px;
  border: 1px solid rgba(240, 190, 63, 0.36);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
  scrollbar-color: var(--yellow-bright) var(--black);
  align-self: start;
}

.hotel-plan {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  border-radius: var(--radius);
  background: var(--white);
}

.plan-canvas {
  position: relative;
  width: max(100%, 1480px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  line-height: 0;
}

.plan-canvas img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-hotspot {
  position: absolute;
  min-height: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(240, 190, 63, 0);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.plan-hotspot:hover,
.plan-hotspot:focus-visible,
.plan-hotspot.is-active {
  border-color: rgba(240, 190, 63, 0.72);
  background: rgba(240, 190, 63, 0.16);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.22);
  outline: none;
}

.plan-hotspot-rooms-top {
  left: 2.8%;
  top: 21.6%;
  width: 92.6%;
  height: 27.2%;
}

.plan-hotspot-rooms-bottom {
  left: 2.8%;
  top: 51.2%;
  width: 78.4%;
  height: 28.4%;
}

.plan-hotspot-common {
  left: 7.6%;
  top: 43.6%;
  width: 80.4%;
  height: 11.2%;
}

.plan-hotspot-reception {
  left: 46.8%;
  top: 29.2%;
  width: 12.4%;
  height: 18.8%;
}

.plan-hotspot-laundry {
  left: 87.8%;
  top: 22.4%;
  width: 4.6%;
  height: 25.8%;
}

.plan-hotspot-kitchen {
  left: 92.4%;
  top: 21.6%;
  width: 6.2%;
  height: 29%;
}

.plan-hotspot-restaurant {
  left: 82.2%;
  top: 52.4%;
  width: 16.4%;
  height: 27.6%;
}

.plan-shell {
  fill: var(--white);
  stroke: var(--black);
  stroke-width: 3;
}

.plan-sea-line {
  fill: var(--yellow-bright);
}

.plan-caption {
  fill: var(--black);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-zone {
  cursor: pointer;
  outline: none;
}

.plan-zone rect,
.plan-zone > path {
  fill: #f5f5f5;
  stroke: var(--black);
  stroke-width: 2;
  transition:
    fill 160ms ease,
    stroke 160ms ease,
    opacity 160ms ease;
}

.plan-zone text {
  fill: var(--black);
  font-size: 15px;
  font-weight: 850;
  pointer-events: none;
  text-transform: uppercase;
}

.plan-zone:hover rect,
.plan-zone:hover > path,
.plan-zone:focus-visible rect,
.plan-zone:focus-visible > path,
.plan-zone.is-active rect,
.plan-zone.is-active > path {
  fill: rgba(240, 190, 63, 0.82);
  stroke: var(--black);
}

.room-cuts path {
  fill: none;
  stroke: var(--black);
  stroke-width: 1.2;
  opacity: 0.28;
}

.plan-zone .plan-callout {
  fill: none;
  stroke: var(--black);
  stroke-width: 1.6;
}

.plan-zone.is-active .room-cuts path,
.plan-zone:hover .room-cuts path,
.plan-zone:focus-visible .room-cuts path {
  opacity: 0.46;
}

.plan-core rect {
  fill: var(--black);
  stroke: var(--yellow-bright);
  stroke-width: 2;
}

.plan-core path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  opacity: 0.78;
}

.plan-core text {
  fill: var(--black);
  font-size: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-info {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 16px 34px;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(240, 190, 63, 0.36);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.plan-info h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
}

.plan-info p:not(.section-kicker) {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
}

.plan-info .section-kicker {
  grid-column: 1 / -1;
  color: var(--yellow-bright);
}

.plan-meta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.plan-meta span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--yellow-bright);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.plan-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.plan-legend-item span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow-bright);
  box-shadow: 0 0 0 3px rgba(240, 190, 63, 0.16);
}

.plan-legend-item:hover,
.plan-legend-item.is-active {
  color: var(--black);
  border-color: var(--yellow-bright);
  background: var(--yellow-bright);
}

.plan-legend-item:hover span,
.plan-legend-item.is-active span {
  background: var(--black);
  box-shadow: none;
}

.valuation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
  padding-top: 42px;
}

.valuation-panel {
  padding: 38px;
  border: 1px solid rgba(240, 190, 63, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--black);
  box-shadow: var(--shadow);
}

.valuation-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.price-panel {
  display: grid;
  gap: 24px;
}

.price-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-value {
  color: var(--yellow-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.price-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.price-includes span {
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.rooms-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: stretch;
}

.rooms-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.room-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.room-list div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.room-list strong {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.room-list span {
  margin-top: 8px;
  color: var(--muted);
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.infrastructure-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.06);
}

.infrastructure-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.infrastructure-grid h3,
.infrastructure-grid p {
  padding-inline: 26px;
}

.infrastructure-grid p {
  margin: 0;
  padding-bottom: 26px;
  color: var(--muted);
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: start;
  padding-top: 38px;
}

.team-grid {
  display: grid;
  gap: 12px;
}

.team-grid div {
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow-bright);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(5, 5, 5, 0.05);
}

.team-grid strong,
.team-grid span {
  display: block;
}

.team-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.team-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.finance {
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72)),
    url("assets/images/city-batumi.jpg") center / cover;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 78px;
  align-items: start;
}

.finance-copy {
  color: rgba(255, 255, 255, 0.74);
}

.finance-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.finance-metrics div {
  min-height: 168px;
  padding: 30px;
  border: 1px solid rgba(240, 190, 63, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.finance-metrics span,
.finance-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.finance-metrics strong {
  display: block;
  margin: 12px 0;
  color: var(--yellow-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;
  line-height: 1;
}

.deal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.deal-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.deal-points {
  display: grid;
  gap: 12px;
}

.deal-points div {
  padding: 28px;
  border: 1px solid rgba(240, 190, 63, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.deal-points strong,
.deal-points span {
  display: block;
}

.deal-points strong {
  color: var(--yellow-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.deal-points span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 62px;
  align-items: start;
}

.location-list {
  display: grid;
  gap: 12px;
}

.location-list div {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow-bright);
  border-radius: var(--radius);
  background: var(--white);
}

.location-list strong,
.location-list span {
  display: block;
}

.location-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.location-list span {
  margin-top: 6px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.035);
}

.diligence {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 60px;
  align-items: start;
  padding-top: 42px;
}

.diligence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.diligence-list span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 60px;
  align-items: start;
  padding-top: 42px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(240, 190, 63, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--yellow-bright);
  box-shadow: 0 0 0 3px rgba(240, 190, 63, 0.16);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--yellow-bright);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.image-dialog {
  width: min(94vw, 1100px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.image-dialog::backdrop {
  background: rgba(5, 5, 5, 0.86);
}

.image-dialog img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #000;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .quick-facts,
  .details-grid,
  .finance-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .media-band,
  .valuation,
  .plan-layout,
  .rooms-layout,
  .team,
  .finance-grid,
  .deal,
  .location,
  .diligence,
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .media-band-content {
    max-width: none;
    padding: 56px 24px 64px;
  }

  .media-band-image,
  .media-band-image img {
    min-height: 380px;
    height: 380px;
  }

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

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

  .plan-canvas {
    width: 1240px;
  }

  .plan-info,
  .plan-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: 88svh;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.48)),
      url("assets/images/hero-orbi.jpg") center / cover;
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding: 118px 0 78px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    width: min(100% - 24px, var(--max));
    margin-top: -34px;
  }

  .fact {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 72px 0;
    scroll-margin-top: 86px;
  }

  h2 {
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.08;
  }

  .lead-copy,
  .media-band-content p,
  .valuation-copy p,
  .floor-plan .section-heading p:not(.section-kicker),
  .finance-copy,
  .location-copy p,
  .contact-copy p,
  .team-copy p,
  .deal-copy p {
    font-size: 16px;
  }

  .finance,
  .deal {
    padding: 76px 24px;
  }

  .details-grid,
  .room-list,
  .finance-metrics,
  .price-includes,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .valuation-panel,
  .plan-info,
  .contact-form {
    padding: 26px;
  }

  .plan-stage {
    padding: 12px;
  }

  .plan-canvas {
    width: 1080px;
  }

  .plan-info h3 {
    font-size: 30px;
  }

  .plan-legend {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rooms-image img {
    min-height: 330px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
    width: min(100% - 24px, var(--max));
  }
}
