@font-face {
  font-family: "Business House Arabic";
  src: url("assets/fonts/neo-sans-arabic-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Business House Arabic";
  src: url("assets/fonts/neo-sans-arabic-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Business House Arabic";
  src: url("assets/fonts/neo-sans-arabic-medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Business House Arabic";
  src: url("assets/fonts/neo-sans-arabic-bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #102f59;
  --blue-800: #173f76;
  --blue-700: #20548e;
  --teal-700: #049987;
  --teal-600: #12b6a2;
  --teal-100: #def7f2;
  --gold-600: #c8952f;
  --coral-600: #d95c4a;
  --ink: #17202f;
  --muted: #657286;
  --line: #dce4ee;
  --soft: #f4f8fb;
  --surface: #ffffff;
  --shadow: 0 18px 60px rgba(16, 47, 89, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family: "Business House Arabic", "Neo Sans Arabic", "SF Arabic", "Geeza Pro", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7fbfd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  background:
    linear-gradient(180deg, rgba(222, 247, 242, 0.7), rgba(255, 255, 255, 0) 420px),
    #f7fbfd;
}

body.admin-active {
  background: var(--soft);
}

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

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

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

button,
select,
input,
textarea {
  border: 1px solid var(--line);
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 14px clamp(16px, 3vw, 38px);
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  width: clamp(150px, 19vw, 230px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--blue-800);
  background: var(--soft);
}

.nav-links a.active {
  box-shadow: inset 0 -2px 0 var(--teal-600);
}

.header-actions,
.hero-actions,
.contact-actions,
.submit-row,
.admin-toolbar,
.admin-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.icon-button,
.tab-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.primary-button {
  padding: 12px 18px;
  color: #fff;
  border-color: var(--blue-800);
  background: linear-gradient(135deg, var(--blue-800), var(--teal-700));
  box-shadow: 0 12px 28px rgba(18, 84, 142, 0.2);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.icon-button:hover,
.tab-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  padding: 12px 18px;
  color: var(--blue-800);
  border-color: rgba(23, 63, 118, 0.18);
  background: #fff;
}

.ghost-button {
  padding: 12px 14px;
  color: var(--blue-800);
  background: transparent;
}

.icon-button {
  width: 44px;
  color: var(--blue-800);
  background: var(--teal-100);
}

.section-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: 0.92rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--blue-900);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  line-height: 1.05;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.4vw, 3.35rem);
  line-height: 1.12;
}

h3 {
  color: var(--blue-900);
}

.hero-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.9;
}

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

.metric-strip div,
.operations-panel,
.stage-price,
.future-strip,
.estimate-panel,
.request-form,
.admin-form {
  border: 1px solid rgba(220, 228, 238, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.metric-strip div {
  padding: 18px;
}

.metric-strip strong {
  display: block;
  color: var(--blue-800);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.metric-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1520 / 2688;
  min-height: 580px;
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: var(--shadow);
}

.hero-slideshow {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-media video,
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1100ms ease,
    transform 5800ms ease;
  will-change: opacity, transform;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 47, 89, 0.08), rgba(16, 47, 89, 0.42));
  pointer-events: none;
}

.operations-panel {
  position: absolute;
  z-index: 2;
  inset-inline: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(16, 47, 89, 0.22);
}

.hero-proof-card {
  position: absolute;
  z-index: 2;
  inset-inline-start: 22px;
  top: 22px;
  max-width: 310px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(16, 47, 89, 0.58);
  box-shadow: 0 16px 42px rgba(16, 47, 89, 0.26);
  backdrop-filter: blur(16px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide.is-active {
    opacity: 1;
    transform: none;
  }
}

.hero-proof-card span,
.hero-proof-card strong {
  display: block;
}

.hero-proof-card span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-proof-card strong {
  font-size: 1.25rem;
  line-height: 1.35;
}

.operations-panel p,
.operations-panel span {
  margin: 0;
  color: var(--muted);
}

.operations-panel strong {
  display: inline-block;
  margin-inline-end: 8px;
  color: var(--blue-900);
  font-size: 2.2rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 8px rgba(18, 182, 162, 0.16);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.stage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.stage-section {
  padding-bottom: clamp(26px, 3vw, 40px);
}

.stage-section + .section-band {
  padding-top: clamp(30px, 4vw, 48px);
}

.stage-visual {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 30vw, 460px);
  min-height: 0;
  border-radius: var(--radius);
  background: var(--blue-900);
}

.stage-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.stage-price {
  position: absolute;
  inset-inline: 20px;
  bottom: 20px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(16, 47, 89, 0.18);
}

.stage-price span {
  display: block;
  color: var(--teal-700);
  font-weight: 900;
}

.stage-price strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-900);
}

.layout-grid,
.room-grid,
.service-grid,
.package-grid,
.facility-grid,
.feature-list,
.editable-list,
.notification-list {
  display: grid;
  gap: 14px;
}

.layout-grid {
  align-self: start;
  grid-template-columns: 1fr;
}

.layout-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 47, 89, 0.06);
}

.layout-panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
}

.layout-panel-heading span {
  color: var(--teal-700);
  font-weight: 900;
  white-space: nowrap;
}

.layout-panel-heading strong {
  color: var(--blue-900);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.layout-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.layout-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(220, 228, 238, 0.78);
}

.layout-item:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.layout-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--teal-700));
  font-weight: 900;
  line-height: 1;
}

.layout-body h3 {
  margin: 0 0 5px;
  font-size: 1.18rem;
}

.layout-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.room-grid,
.service-grid,
.package-grid,
.facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.layout-card,
.service-card,
.package-card,
.facility-card,
.feature-card,
.editable-card,
.notification-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 47, 89, 0.06);
}

.card,
.layout-card,
.service-card,
.package-card,
.facility-card,
.feature-card,
.editable-card,
.notification-card {
  padding: 20px;
}

.room-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 390px;
  padding: 0;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 47, 89, 0.08), rgba(16, 47, 89, 0.8)),
    var(--room-image) center / cover;
  box-shadow: 0 18px 44px rgba(16, 47, 89, 0.18);
  isolation: isolate;
}

.room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 153, 135, 0.22), rgba(16, 47, 89, 0.28)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.room-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 390px;
  padding: 22px;
}

.room-card h3,
.room-card p {
  color: #fff;
}

.room-card h3 {
  margin-top: 16px;
  font-size: 1.55rem;
}

.room-card p {
  max-width: 95%;
  min-height: 74px;
  color: rgba(255, 255, 255, 0.88);
}

.room-card .tag {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.room-card .tag.teal {
  color: #fff;
  background: rgba(18, 182, 162, 0.78);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.room-card-footer strong {
  color: #fff;
  font-size: 1.25rem;
}

.room-card .secondary-button {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.94);
}

.custom-request-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(18, 182, 162, 0.24);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 47, 89, 0.96), rgba(4, 153, 135, 0.9)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 34%);
  box-shadow: 0 18px 44px rgba(16, 47, 89, 0.18);
}

.custom-request-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  pointer-events: none;
}

.custom-request-card span {
  position: relative;
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.custom-request-card h3,
.custom-request-card p,
.custom-request-card a {
  position: relative;
}

.custom-request-card h3 {
  max-width: 360px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.18;
}

.custom-request-card p {
  max-width: 380px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.custom-request-card .primary-button {
  width: fit-content;
  border-color: #fff;
  color: var(--blue-900);
  background: #fff;
  box-shadow: none;
}

.card h3,
.layout-card h3,
.service-card h3,
.package-card h3,
.facility-card h3,
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p,
.layout-card p,
.service-card p,
.package-card p,
.facility-card p,
.feature-card p,
.editable-card p,
.notification-card p {
  color: var(--muted);
  line-height: 1.7;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--blue-800);
  background: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.tag.teal {
  color: #006d61;
  background: var(--teal-100);
}

.tag.gold {
  color: #7f570d;
  background: #fff2d6;
}

.status-badge.pending {
  color: #7f570d;
  background: #fff2d6;
}

.status-badge.approved,
.status-badge.accepted {
  color: #006d61;
  background: var(--teal-100);
}

.status-badge.declined,
.status-badge.rejected {
  color: #9c2c20;
  background: #ffe8e4;
}

.status-badge.cancelled,
.status-badge.reviewed {
  color: #516072;
  background: #eef2f6;
}

.booking-section {
  width: min(1240px, calc(100% - 32px));
}

.booking-workspace,
.incubator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.request-form,
.admin-form {
  padding: 22px;
}

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

.booking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}

.booking-steps li.active {
  color: #fff;
  border-color: var(--blue-800);
  background: var(--blue-800);
}

.booking-steps li.complete:not(.active) {
  color: var(--teal-700);
  border-color: rgba(18, 182, 162, 0.34);
  background: var(--teal-100);
}

.booking-block,
.stage-basis-picker,
.slot-picker {
  display: grid;
  gap: 12px;
  margin: 4px 0 18px;
}

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

.segmented-control label {
  margin: 0;
}

.segmented-control input,
.basis-card input,
.slot-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-800);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.segmented-control input:checked + span {
  color: #fff;
  border-color: var(--blue-800);
  background: linear-gradient(135deg, var(--blue-800), var(--teal-700));
}

.space-picker {
  display: grid;
  gap: 12px;
  margin: 4px 0 18px;
}

.picker-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue-900);
  font-weight: 900;
}

.picker-heading strong {
  color: var(--teal-700);
  font-size: 1.15rem;
}

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

.basis-card-grid,
.slot-grid {
  display: grid;
  gap: 10px;
}

.basis-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.basis-card,
.slot-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 116px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 47, 89, 0.05);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.basis-card:hover,
.slot-card:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 182, 162, 0.48);
}

.basis-card.selected,
.slot-card.selected {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(18, 182, 162, 0.12);
}

.basis-card span,
.slot-card span {
  color: var(--blue-900);
  font-weight: 900;
}

.basis-card strong,
.slot-card strong {
  color: var(--teal-700);
  font-size: 1.15rem;
  line-height: 1.2;
}

.basis-card small,
.slot-card small {
  color: var(--muted);
  line-height: 1.55;
}

.slot-card {
  min-height: 96px;
  padding: 13px;
}

.slot-card.disabled {
  cursor: not-allowed;
  opacity: 0.52;
  background: #f4f6f8;
}

.space-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-height: 118px;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 47, 89, 0.05);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.space-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 182, 162, 0.48);
  box-shadow: 0 14px 32px rgba(16, 47, 89, 0.1);
}

.space-choice-card.selected {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(18, 182, 162, 0.12);
}

.space-choice-card input {
  position: absolute;
  inset-inline-start: 14px;
  top: 14px;
  z-index: 2;
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--teal-700);
}

.choice-thumb {
  min-height: 100px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.choice-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.choice-body strong {
  color: var(--blue-900);
  font-size: 1.2rem;
  line-height: 1.2;
}

.choice-body span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.choice-body b {
  margin-top: 10px;
  color: var(--teal-700);
  font-size: 1.08rem;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

label span,
legend {
  color: var(--blue-900);
  font-weight: 900;
}

fieldset {
  padding: 0;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(18, 182, 162, 0.24);
  outline-offset: 2px;
}

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

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.addon-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.addon-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-900);
}

.addon-option span {
  color: var(--muted);
  font-weight: 700;
}

.submit-row {
  justify-content: space-between;
  margin-top: 12px;
}

.submit-row p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.estimate-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.summary-hero {
  padding: 16px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.summary-hero span,
.summary-hero small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.summary-hero strong {
  display: block;
  margin: 7px 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.summary-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px 0 4px;
}

.summary-detail-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.summary-detail-grid span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.summary-detail-grid strong {
  color: var(--blue-900);
  line-height: 1.5;
}

.estimate-line,
.estimate-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.estimate-total {
  border-bottom: 0;
}

.estimate-total strong {
  color: var(--blue-900);
  font-size: 1.4rem;
}

.estimate-panel > p,
.approval-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.approval-note {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--blue-800);
  background: var(--soft);
  font-weight: 800;
}

.incubator-copy {
  display: grid;
  gap: 14px;
}

.future-strip {
  padding: 20px;
  border-inline-start: 5px solid var(--gold-600);
}

.future-strip span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-600);
  font-weight: 900;
}

.future-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-table-wrap,
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pricing-table,
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

th {
  color: var(--blue-900);
  background: #eef6f9;
  font-weight: 900;
}

td {
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-900);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: #fff;
}

.contact-section h2 {
  max-width: 680px;
}

.admin-view {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-header h1 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat-card strong {
  display: block;
  color: var(--blue-900);
  font-size: 2rem;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.admin-tabs {
  margin-bottom: 16px;
}

.tab-button {
  padding: 12px 14px;
  color: var(--blue-800);
  background: #fff;
}

.tab-button.active {
  color: #fff;
  border-color: var(--blue-800);
  background: var(--blue-800);
}

.admin-panel {
  display: none;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-panel.active {
  display: block;
}

.admin-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-toolbar h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-button {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--blue-800);
  background: var(--soft);
  font-weight: 900;
}

.small-button.approve {
  color: #006d61;
  background: var(--teal-100);
}

.small-button.decline {
  color: #9c2c20;
  background: #ffe8e4;
}

.editable-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.editable-card {
  display: grid;
  gap: 10px;
}

.editable-card h3,
.notification-card h3 {
  margin-bottom: 0;
}

.editable-card p,
.notification-card p {
  margin-bottom: 0;
}

.notification-list {
  grid-template-columns: 1fr;
}

.toast {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(520px, calc(100% - 32px));
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid rgba(18, 182, 162, 0.28);
  border-radius: var(--radius);
  color: var(--blue-900);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

[hidden] {
  display: none !important;
}

html[dir="ltr"] body {
  text-align: left;
}

html[dir="ltr"] .future-strip {
  border-inline-start: 5px solid var(--gold-600);
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .stage-layout,
  .booking-workspace,
  .incubator-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media,
  .hero-media video,
  .hero-photo {
    min-height: 520px;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .stage-visual {
    height: 520px;
  }

  .estimate-panel {
    position: static;
  }

  .room-grid,
  .service-grid,
  .package-grid,
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding: 12px;
  }

  .brand {
    width: 148px;
  }

  .header-actions {
    justify-content: flex-end;
    max-width: calc(100% - 160px);
  }

  .header-actions .primary-button {
    display: none;
  }

  .ghost-button,
  .secondary-button,
  .primary-button {
    min-height: 40px;
    padding: 10px 12px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.94rem;
  }

  .section-band,
  .booking-section,
  .admin-view {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .metric-strip,
  .booking-steps,
  .layout-grid,
  .room-grid,
  .service-grid,
  .package-grid,
  .facility-grid,
  .form-grid,
  .space-choice-grid,
  .basis-card-grid,
  .slot-grid,
  .addon-checklist,
  .editable-list,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .space-choice-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .choice-body strong {
    font-size: 1.08rem;
  }

  .layout-panel {
    padding: 16px;
  }

  .layout-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .layout-item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .layout-item .tag {
    grid-column: 2;
    width: fit-content;
  }

  .hero-media,
  .hero-media video,
  .hero-photo,
  .stage-visual,
  .stage-visual img {
    min-height: 420px;
  }

  .stage-visual {
    height: 420px;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .hero-proof-card {
    inset-inline: 14px;
    top: 14px;
  }

  .segmented-control {
    grid-template-columns: 1fr;
  }

  .request-form,
  .admin-form,
  .estimate-panel,
  .admin-panel {
    padding: 16px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section {
    padding: 22px;
  }

  .submit-row,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-row .primary-button,
  .contact-actions .primary-button,
  .contact-actions .secondary-button,
  .contact-actions .ghost-button {
    width: 100%;
  }
}
