:root {
  --color-primary-navy: #0A2342;
  --color-deep-navy: #001B2A;
  --color-secondary-navy: #153E68;
  --color-warm-gold: #C69C6D;
  --color-champagne: #D4C1A1;
  --color-white: #FFFFFF;
  --color-off-white: #F5F4F6;
  --color-dark-text: #333333;
  --color-muted-text: #6B7280;
  --color-border: #E5E7EB;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-dark-text);
  background: var(--color-off-white);
  font-family: Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body[data-language="zh"] [data-lang="en"],
body[data-language="en"] [data-lang="zh"] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  background: var(--color-deep-navy);
  border-bottom: 1px solid var(--color-secondary-navy);
}

.header-inner {
  width: min(1360px, calc(100% - 48px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--color-champagne);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 200px;
  object-fit: contain;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  flex-shrink: 0;
  gap: 14px;
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1rem;
  white-space: nowrap;
}

.primary-nav a {
  color: var(--color-white);
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--color-champagne);
}

.language-switch {
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 6px;
}

.language-button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.language-button {
  min-width: 60px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--color-white);
  background: transparent;
  font-weight: 700;
  white-space: nowrap;
}

.language-button.is-active {
  color: var(--color-deep-navy);
  background: var(--color-warm-gold);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
}

.button-primary {
  color: var(--color-deep-navy);
  background: var(--color-warm-gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-champagne);
}

.button-secondary {
  color: var(--color-primary-navy);
  background: transparent;
  border-color: var(--color-warm-gold);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--color-white);
  background: var(--color-secondary-navy);
}

.button-secondary-dark {
  color: var(--color-white);
  border-color: var(--color-champagne);
}

.placeholder-link {
  cursor: default;
}

.primary-nav .button {
  min-height: 46px;
  margin-left: 8px;
  padding: 10px 20px;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  border: 1px solid var(--color-champagne);
  border-radius: 6px;
  color: var(--color-white);
  background: transparent;
}

.menu-toggle-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .brand-logo {
    height: 52px;
    max-width: 180px;
  }

  .primary-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .primary-nav .button {
    padding: 8px 14px;
  }

  .language-button {
    min-width: 52px;
  }
}

.page-hero,
.placeholder-section,
.placeholder-cta {
  padding: 72px 0;
}

.page-hero {
  color: var(--color-white);
  background: var(--color-primary-navy);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.1;
}

.page-hero p,
.placeholder-cta p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--color-border);
}

.placeholder-section {
  background: var(--color-white);
}

.placeholder-card {
  max-width: 840px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-off-white);
}

.placeholder-card h2,
.placeholder-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.placeholder-card p {
  margin: 14px 0 0;
  color: var(--color-muted-text);
}

.placeholder-cta {
  color: var(--color-white);
  background: var(--color-secondary-navy);
}

.placeholder-cta h2 {
  color: var(--color-white);
}

.placeholder-cta .button {
  margin-top: 24px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.home-hero::after {
  content: none;
}

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

.home-hero-slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.home-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.home-hero-slide-overlay {
  background-position: center;
  background-size: cover;
}

.home-hero-slide-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-deep-navy) 0%, var(--color-deep-navy) 30%, transparent 78%);
  opacity: 0.94;
}

.home-hero-slide-orion {
  background-image: url("../images/homepage-hero-slide-orion-residence-bg-01.png");
}

.home-hero-slide-rf {
  background-image: url("../images/homepage-hero-slide-rf-princess-cove-01.png");
}

.home-hero-slide-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.home-hero-copy {
  width: min(620px, 54%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero h1,
.home-hero-title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  font-weight: 700;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.home-hero-text {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--color-border);
  font-size: 1rem;
}

.home-hero-slide-promo {
  display: block;
  background: var(--color-deep-navy);
}

.home-hero-promo-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.home-hero-promo-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-hero-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.home-hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.home-hero-dot,
.home-hero-arrow {
  border: 1px solid var(--color-champagne);
  color: var(--color-white);
  background: var(--color-deep-navy);
  cursor: pointer;
}

.home-hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.65;
}

.home-hero-dot.is-active {
  background: var(--color-warm-gold);
  opacity: 1;
}

.home-hero-arrow {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.65rem;
  line-height: 1;
}

.home-hero-dot:focus-visible,
.home-hero-arrow:focus-visible,
.home-hero-promo-link:focus-visible {
  outline: 2px solid var(--color-champagne);
  outline-offset: 3px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.home-hero .button-row {
  margin-top: 24px;
}

.visual-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-champagne);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--color-secondary-navy), var(--color-primary-navy));
}

.visual-placeholder::before,
.visual-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid var(--color-champagne);
  opacity: 0.45;
}

.visual-placeholder::before {
  width: 58%;
  height: 58%;
  right: -14%;
  top: -16%;
  border-radius: 50%;
}

.visual-placeholder::after {
  width: 44%;
  height: 42%;
  left: 10%;
  bottom: 12%;
}

.visual-placeholder-alt {
  background: linear-gradient(145deg, var(--color-primary-navy), var(--color-deep-navy));
}

.visual-placeholder-hero {
  min-height: 470px;
  box-shadow: 28px 28px 0 var(--color-primary-navy);
}

.visual-placeholder-panel {
  position: absolute;
  inset: 14% 12% 18% 18%;
  border: 1px solid var(--color-warm-gold);
  background: var(--color-deep-navy);
  opacity: 0.72;
}

.visual-placeholder-line {
  position: absolute;
  left: 18%;
  right: 20%;
  bottom: 12%;
  height: 3px;
  background: var(--color-warm-gold);
}

.home-section {
  padding: 56px 0;
}

.featured-projects {
  background: var(--color-off-white);
}

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

.home-section .section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.service-copy h2,
.home-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.section-heading > p:last-child,
.service-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

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

.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.project-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-primary-navy);
}

.project-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-card-body {
  padding: 24px;
}

.card-label {
  margin: 0 0 8px;
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: 1.55rem;
}

.project-card-body > p:not(.card-label) {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.project-card .feature-list {
  gap: 8px;
  margin: 16px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-dark-text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--color-warm-gold);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--color-primary-navy);
  font-weight: 700;
}

.project-card .text-link {
  margin-top: 18px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-warm-gold);
}

.process-section {
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.process-strip {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.process-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 156, 109, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(21, 62, 104, 0.28), transparent 62%);
  pointer-events: none;
}

.process-strip > .container {
  position: relative;
  z-index: 1;
}

.section-heading-dark h2 {
  color: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: start;
  gap: 0;
  max-width: 1040px;
  margin-inline: auto;
}

.process-step {
  min-width: 0;
  padding: 0 6px;
  text-align: left;
}

.process-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-warm-gold);
}

.process-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-title-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  background: rgba(0, 27, 42, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.08rem;
  line-height: 1.25;
}

.process-step p {
  margin: 12px 0 0 44px;
  color: var(--color-border);
  font-size: 0.9rem;
  line-height: 1.5;
}

.process-arrow {
  width: 34px;
  height: 14px;
  align-self: start;
  margin-top: 25px;
  background: linear-gradient(var(--color-warm-gold), var(--color-warm-gold)) left 50% / calc(100% - 8px) 2px no-repeat;
}

.process-arrow::after {
  content: "";
  display: block;
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-warm-gold);
  border-right: 2px solid var(--color-warm-gold);
  transform: translateY(2px) rotate(45deg);
}

.service-preview {
  background: var(--color-white);
}

.service-preview-alt {
  background: var(--color-off-white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
}

.service-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-primary-navy);
  box-shadow: 0 18px 42px rgba(0, 27, 42, 0.14);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual-setup img {
  object-position: center 58%;
}

.service-visual-management img {
  object-position: center 56%;
}

.service-copy {
  min-width: 0;
}

.service-list {
  margin-bottom: 30px;
}

.home-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-deep-navy);
  border-top: 1px solid rgba(216, 184, 112, 0.28);
  border-bottom: 1px solid rgba(216, 184, 112, 0.2);
}

.home-final-cta::before,
.home-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.48), rgba(10, 35, 66, 0.36)),
    url("../images/homepage-final-cta-bg-01.png") center 52% / cover;
  filter: saturate(0.96) brightness(1.08);
  opacity: 0.98;
  transform: scale(1.02);
}

.home-final-cta::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 8%, rgba(216, 184, 112, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(3, 12, 26, 0.08), rgba(3, 12, 26, 0.48));
}

.final-cta-inner {
  position: relative;
  max-width: 850px;
}

.home-final-cta .eyebrow {
  color: var(--color-warm-gold);
}

.home-final-cta h2 {
  color: var(--color-white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.32);
}

.home-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.button-row-center {
  justify-content: center;
}

.inner-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 92px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.projects-page-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 28, 39, 0.92) 0%, rgba(2, 28, 39, 0.72) 42%, rgba(2, 28, 39, 0.32) 100%),
    url("../images/projects-page-hero-bg-01.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.rf-princess-cove-page-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 28, 39, 0.88) 0%, rgba(2, 28, 39, 0.62) 42%, rgba(2, 28, 39, 0.18) 100%),
    url("../images/rf-princess-cove-hero-bg-01.png");
  background-size: 85% auto;
  background-position: center right;
  background-repeat: no-repeat;
}

.inner-page-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 50%;
}

.inner-page-hero-inner {
  position: relative;
  z-index: 1;
}

.inner-page-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.inner-page-hero-text {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--color-border);
  font-size: 1.06rem;
}

.projects-introduction,
.project-listing-section {
  padding: 96px 0;
}

.projects-introduction {
  background: var(--color-white);
}

.projects-intro-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.projects-intro-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.projects-intro-copy h2,
.projects-support-heading h2,
.projects-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.projects-intro-copy > p:last-child {
  margin: 0;
  color: var(--color-muted-text);
}

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

.intro-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-off-white);
}

.intro-card-number {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.intro-card h3 {
  margin: 18px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.18rem;
}

.intro-card p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.projects-introduction .projects-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-color: rgba(216, 184, 112, 0.28);
  background: var(--color-deep-navy);
}

.projects-introduction .projects-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 28, 39, 0.48), rgba(2, 28, 39, 0.62)),
    var(--projects-overview-card-image) center / cover no-repeat;
}

.projects-introduction .projects-overview-card > * {
  position: relative;
  z-index: 1;
}

.projects-introduction .projects-overview-card-featured {
  --projects-overview-card-image: url("../images/projects-overview-card-featured-projects-01.png");
}

.projects-introduction .projects-overview-card-setup {
  --projects-overview-card-image: url("../images/projects-overview-card-setup-direction-01.png");
}

.projects-introduction .projects-overview-card-management {
  --projects-overview-card-image: url("../images/projects-overview-card-rental-management-01.png");
}

.projects-introduction .projects-overview-card h3 {
  color: var(--color-white);
}

.projects-introduction .projects-overview-card p {
  color: rgba(255, 255, 255, 0.82);
}

.project-listing-section {
  background: var(--color-off-white);
  scroll-margin-top: 24px;
}

.projects-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.index-project-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.index-project-card-master {
  border-color: var(--color-champagne);
}

.index-project-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-primary-navy);
}

.index-project-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.index-project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.index-project-body h3 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.index-project-body > p:not(.card-label) {
  margin: 16px 0 0;
  color: var(--color-muted-text);
}

.index-project-body > .button {
  align-self: flex-start;
  margin-top: auto;
}

.index-project-support {
  min-height: 138px;
  display: flex;
  margin: 22px 0 24px;
}

.phase-block-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.phase-block {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-warm-gold);
  border-radius: 8px;
  background: var(--color-off-white);
}

.phase-label {
  color: var(--color-warm-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-block h4 {
  margin: 5px 0 0;
  color: var(--color-primary-navy);
  font-size: 1rem;
}

.phase-block p {
  margin: 7px 0 0;
  color: var(--color-muted-text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.orion-direction-panel {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-warm-gold);
  border-radius: 8px;
  background: var(--color-off-white);
}

.orion-direction-panel p {
  margin: 0;
  color: var(--color-primary-navy);
  font-weight: 700;
}

.orion-direction-panel span {
  display: block;
  margin-top: 7px;
  color: var(--color-muted-text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.projects-support-strip {
  padding: 88px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.projects-support-strip > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.projects-support-heading h2 {
  color: var(--color-white);
}

.projects-support-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--color-border);
}

.support-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.support-step-list li {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.support-step-number {
  flex: 0 0 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  font-size: 0.78rem;
}

.support-step-list strong {
  color: var(--color-white);
}

.projects-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.projects-final-cta h2 {
  color: var(--color-white);
}

.projects-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.rf-page-hero::before {
  content: "R&F";
  position: absolute;
  right: 7%;
  bottom: -0.2em;
  color: var(--color-primary-navy);
  font-size: clamp(5.25rem, 13.5vw, 12rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.rf-master-overview,
.rf-phase-section,
.rf-location-section {
  padding: 96px 0;
}

.rf-master-overview {
  background: var(--color-white);
}

.rf-overview-copy {
  max-width: 840px;
  margin-bottom: 42px;
}

.rf-overview-copy h2,
.rf-phase-copy h2,
.rf-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.rf-overview-copy > p:last-child,
.rf-phase-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.rf-structure-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 1fr);
  gap: 20px;
}

.rf-structure-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-off-white);
}

.rf-structure-master {
  color: var(--color-white);
  border-color: var(--color-secondary-navy);
  background: var(--color-primary-navy);
}

.rf-structure-number {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.rf-structure-card h3 {
  margin: 18px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.18rem;
}

.rf-structure-master h3 {
  color: var(--color-white);
}

.rf-structure-card p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.rf-structure-master p {
  color: var(--color-border);
}

.rf-phase-section {
  scroll-margin-top: 24px;
}

.rf-phase-two {
  background: var(--color-off-white);
}

.rf-phase-three {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.rf-phase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: center;
}

.rf-phase-layout-reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.rf-phase-copy {
  min-width: 0;
}

.rf-phase-copy > .button {
  margin-top: 28px;
}

.rf-phase-content {
  min-width: 0;
}

.rf-phase-visual {
  min-height: 320px;
}

.rf-phase-gallery {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.rf-phase-three .rf-phase-gallery {
  background: var(--color-off-white);
}

.rf-phase-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.rf-phase-gallery-main {
  grid-row: 1 / -1;
}

.rf-phase-details-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.9), rgba(255, 255, 255, 0.98)),
    var(--color-off-white);
}

.rf-phase-details-section {
  scroll-margin-top: 24px;
}

.rf-phase-details-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.rf-phase-details-heading h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.rf-phase-details-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.rf-phase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.rf-phase-tab {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 6px;
  color: var(--color-primary-navy);
  background: var(--color-white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rf-phase-tab:hover,
.rf-phase-tab:focus-visible {
  border-color: var(--color-warm-gold);
  color: var(--color-primary-navy);
}

.rf-phase-tab.is-active {
  border-color: var(--color-warm-gold);
  color: var(--color-deep-navy);
  background: var(--color-warm-gold);
}

.rf-phase-panel {
  padding: 30px;
  border: 1px solid rgba(198, 156, 109, 0.3);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 22px 52px rgba(2, 28, 39, 0.08);
}

.rf-phase-panel[hidden] {
  display: none;
}

.rf-phase-panel-header {
  margin-bottom: 22px;
}

.rf-phase-panel-header h3 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.rf-phase-detail-grid {
  display: grid;
  gap: 18px;
}

.rf-phase-detail-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-off-white);
}

.rf-phase-detail-card h4 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: 1.08rem;
}

.rf-phase-detail-card p {
  margin: 12px 0 0;
  color: var(--color-muted-text);
}

.rf-phase-site-plan-card {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(198, 156, 109, 0.32);
  border-radius: 8px;
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rf-phase-site-plan-card:hover,
.rf-phase-site-plan-card:focus-visible {
  border-color: rgba(198, 156, 109, 0.72);
  box-shadow: 0 14px 30px rgba(2, 28, 39, 0.08);
}

.rf-phase-site-plan-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.rf-phase-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.rf-phase-placeholder-card {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px dashed rgba(198, 156, 109, 0.55);
  border-radius: 8px;
  color: var(--color-primary-navy);
  background: rgba(255, 255, 255, 0.72);
}

.rf-phase-placeholder-card strong {
  font-size: 0.95rem;
}

.rf-phase-placeholder-card span {
  color: var(--color-muted-text);
  font-size: 0.82rem;
  line-height: 1.35;
}

.rf-phase-floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.rf-phase-floor-plan-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(198, 156, 109, 0.32);
  border-radius: 8px;
  color: var(--color-primary-navy);
  background: var(--color-white);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rf-phase-floor-plan-card:hover,
.rf-phase-floor-plan-card:focus-visible {
  border-color: rgba(198, 156, 109, 0.72);
  box-shadow: 0 14px 30px rgba(2, 28, 39, 0.08);
}

.rf-phase-floor-plan-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-off-white);
}

.rf-phase-floor-plan-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.rf-phase-floor-plan-card strong {
  font-size: 1rem;
}

.rf-phase-floor-plan-card > span:last-child {
  color: var(--color-muted-text);
  font-size: 0.86rem;
  line-height: 1.45;
}

.rf-phase-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.rf-phase-facility-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(198, 156, 109, 0.32);
  border-radius: 8px;
  color: var(--color-primary-navy);
  background: var(--color-white);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rf-phase-facility-card:hover,
.rf-phase-facility-card:focus-visible {
  border-color: rgba(198, 156, 109, 0.72);
  box-shadow: 0 14px 30px rgba(2, 28, 39, 0.08);
}

.rf-phase-facility-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--color-off-white);
}

.rf-phase-facility-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rf-phase-facility-card strong {
  padding: 12px 14px 14px;
  font-size: 0.95rem;
}

.rf-phase-detail-card[data-rf-expandable-group]:not(.is-expanded) .rf-phase-floor-plan-card:nth-child(n + 3),
.rf-phase-detail-card[data-rf-expandable-group]:not(.is-expanded) .rf-phase-facility-card:nth-child(n + 3) {
  display: none;
}

.rf-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 9px 20px;
  border: 1px solid rgba(195, 151, 73, 0.42);
  border-radius: 999px;
  color: var(--color-primary-navy);
  background: var(--color-white);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(2, 28, 39, 0.06);
}

.rf-expand-toggle:hover,
.rf-expand-toggle:focus-visible {
  border-color: rgba(195, 151, 73, 0.76);
  box-shadow: 0 16px 34px rgba(2, 28, 39, 0.1);
}

.rf-expand-label-expanded {
  display: none;
}

.rf-phase-detail-card[data-rf-expandable-group].is-expanded .rf-expand-label-default {
  display: none;
}

.rf-phase-detail-card[data-rf-expandable-group].is-expanded .rf-expand-label-expanded {
  display: inline;
}

.rf-phase-video-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.rf-phase-video-placeholder {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(198, 156, 109, 0.5);
  border-radius: 8px;
  color: rgba(2, 28, 39, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.88)),
    var(--color-off-white);
  font-size: 0.9rem;
  font-weight: 700;
}

.rf-phase-request-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--color-primary-navy);
}

.rf-phase-request-card h4,
.rf-phase-request-card p {
  color: var(--color-white);
}

.rf-phase-request-card p {
  color: var(--color-border);
}

.rf-phase-request-card .button {
  flex-shrink: 0;
}

.rf-location-section {
  background: var(--color-deep-navy);
  color: var(--color-white);
}

.rf-location-section .section-heading h2 {
  color: var(--color-white);
}

.rf-location-section .section-heading > p:last-child {
  color: var(--color-border);
}

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

.rf-location-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 10px;
  background: var(--color-primary-navy);
}

.rf-location-grid article > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.rf-location-grid h3 {
  margin: 18px 0 0;
  color: var(--color-white);
}

.rf-location-grid p {
  margin: 10px 0 0;
  color: var(--color-border);
}

.project-location-section {
  padding: 96px 0;
  color: var(--color-primary-navy);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
}

.project-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.project-location-copy {
  min-width: 0;
}

.project-location-copy h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.project-location-address {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(195, 151, 73, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(2, 28, 39, 0.08);
}

.project-location-address > span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-location-address address {
  margin: 0;
  color: var(--color-muted-text);
  font-style: normal;
  font-size: 1.04rem;
  line-height: 1.8;
}

.project-location-map {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 22px 54px rgba(2, 28, 39, 0.1);
}

.project-location-map img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--color-off-white);
}

.rf-location-section.project-location-section {
  background: linear-gradient(180deg, #f8f5ed 0%, var(--color-white) 100%);
}

.rf-location-section .project-location-layout {
  grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
  align-items: stretch;
}

.rf-location-section .project-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rf-location-section .project-location-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--color-muted-text);
  font-size: 1.02rem;
  line-height: 1.85;
}

.rf-location-section .project-location-address {
  max-width: 520px;
  margin-top: 28px;
  padding: 34px;
  border-color: rgba(195, 151, 73, 0.36);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 62px rgba(2, 28, 39, 0.12);
}

.rf-location-section .project-location-address address {
  color: var(--color-primary-navy);
  font-size: 1.08rem;
  line-height: 1.85;
}

.rf-location-section .project-location-map {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-color: rgba(195, 151, 73, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(2, 28, 39, 0.13);
}

.rf-location-section .project-location-map img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.rf-support-section {
  padding: 88px 0;
  color: var(--color-primary-navy);
  background: linear-gradient(180deg, var(--color-off-white) 0%, #f4efe3 100%);
}

.rf-support-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.rf-support-section .projects-support-heading h2 {
  color: var(--color-primary-navy);
}

.rf-support-section .projects-support-heading > p:last-child {
  color: var(--color-muted-text);
}

.rf-support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rf-support-steps li {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(9, 54, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(2, 28, 39, 0.08);
}

.rf-support-steps li > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  font-size: 0.75rem;
}

.rf-support-steps strong {
  color: var(--color-primary-navy);
}

.rf-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.rf-final-cta h2 {
  color: var(--color-white);
}

.rf-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.orion-page-hero {
  background-color: var(--color-deep-navy);
  background-image: url("../images/orion-residence/orion-residence-hero-bg-02.png");
  background-position: 72% 42%;
  background-size: cover;
}

.orion-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 43, 0.98) 0%, rgba(7, 20, 43, 0.9) 42%, rgba(7, 20, 43, 0.28) 76%, rgba(7, 20, 43, 0.08) 100%);
  pointer-events: none;
}

.orion-page-hero::after {
  content: none;
}

.orion-overview-section,
.orion-positioning-section,
.orion-layout-section,
.orion-gallery-section,
.orion-documents-section {
  padding: 96px 0;
}

.orion-overview-section {
  background: var(--color-white);
  scroll-margin-top: 24px;
}

.orion-overview-copy {
  max-width: 850px;
  margin-bottom: 42px;
}

.orion-overview-copy h2,
.orion-positioning-copy h2,
.orion-documents-copy h2,
.orion-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.orion-overview-copy > p:last-child,
.orion-positioning-copy > p:not(.eyebrow),
.orion-documents-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.orion-info-grid,
.orion-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.orion-info-grid article,
.orion-layout-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-off-white);
}

.orion-info-grid article:first-child {
  color: var(--color-white);
  border-color: var(--color-secondary-navy);
  background: var(--color-primary-navy);
}

.orion-info-grid article > span,
.orion-layout-grid article > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.orion-info-grid h3,
.orion-layout-grid h3 {
  margin: 18px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.18rem;
}

.orion-info-grid article:first-child h3 {
  color: var(--color-white);
}

.orion-info-grid p,
.orion-layout-grid p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.orion-info-grid article:first-child p {
  color: var(--color-border);
}

.orion-positioning-section {
  background: var(--color-off-white);
}

.orion-positioning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.orion-positioning-copy {
  min-width: 0;
}

.orion-positioning-list {
  margin-top: 26px;
}

.orion-city-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 10px;
  background: var(--color-deep-navy);
}

.orion-city-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.orion-layout-section {
  background: var(--color-white);
}

.orion-layout-grid article {
  border-top: 3px solid var(--color-warm-gold);
}

.orion-gallery-section {
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.orion-gallery-section .section-heading h2 {
  color: var(--color-white);
}

.orion-gallery-section .section-heading > p:last-child {
  color: var(--color-border);
}

.orion-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.8fr));
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.orion-gallery-grid > div {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.orion-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.orion-gallery-grid > div:nth-child(2) img {
  object-position: center 48%;
}

.orion-gallery-main {
  grid-row: 1 / 3;
}

.orion-documents-section {
  background: var(--color-off-white);
}

.orion-documents-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: center;
}

.orion-documents-copy > .button {
  margin-top: 28px;
}

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

.orion-request-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.orion-request-panel h3 {
  margin: 8px 0 18px;
  color: var(--color-primary-navy);
  font-size: 1.08rem;
}

.orion-contain-area,
.orion-document-area {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed var(--color-champagne);
  background: var(--color-off-white);
}

.orion-contain-area span {
  width: 68%;
  height: 76%;
  border: 1px solid var(--color-secondary-navy);
  background: var(--color-white);
}

.orion-document-area {
  align-content: center;
  gap: 14px;
}

.orion-document-area span {
  width: 42%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--color-secondary-navy);
  background: var(--color-white);
}

.orion-document-area i {
  width: 55%;
  height: 2px;
  display: block;
  background: var(--color-champagne);
}

.orion-facility-layouts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.orion-facility-layouts-heading h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.orion-facility-layouts-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.orion-facility-layouts-heading .button {
  flex-shrink: 0;
}

.orion-layout-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.orion-layout-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary-navy);
  background: var(--color-white);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color var(--transition-standard),
    background var(--transition-standard),
    border-color var(--transition-standard),
    transform var(--transition-standard);
}

.orion-layout-tab:hover,
.orion-layout-tab:focus-visible {
  color: var(--color-primary-navy);
  border-color: var(--color-warm-gold);
  transform: translateY(-1px);
}

.orion-layout-tab.is-active {
  color: var(--color-white);
  border-color: var(--color-primary-navy);
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-deep-navy));
  box-shadow: 0 14px 28px rgba(2, 28, 39, 0.16);
}

.orion-layout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(195, 151, 73, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 54px rgba(2, 28, 39, 0.08);
}

.orion-layout-panel[hidden] {
  display: none;
}

.orion-layout-visual {
  min-width: 0;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.orion-layout-visual img {
  display: block;
  width: 100%;
  max-height: 590px;
  object-fit: contain;
}

.orion-layout-info {
  min-width: 0;
  padding: 26px;
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-primary-navy);
}

.orion-layout-info h3 {
  margin: 8px 0 20px;
  color: var(--color-white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.18;
}

.orion-layout-facilities {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-border);
  line-height: 1.55;
}

.orion-layout-facilities li::marker {
  color: var(--color-warm-gold);
  font-weight: 700;
}

.orion-unit-floor-plans-section {
  padding: 96px 0;
  color: var(--color-primary-navy);
  background: var(--color-white);
}

.orion-unit-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.orion-unit-heading h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.orion-unit-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.orion-unit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.orion-unit-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary-navy);
  background: var(--color-off-white);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color var(--transition-standard),
    background var(--transition-standard),
    border-color var(--transition-standard),
    transform var(--transition-standard);
}

.orion-unit-tab:hover,
.orion-unit-tab:focus-visible {
  color: var(--color-primary-navy);
  border-color: var(--color-warm-gold);
  transform: translateY(-1px);
}

.orion-unit-tab.is-active {
  color: var(--color-white);
  border-color: var(--color-primary-navy);
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-deep-navy));
  box-shadow: 0 14px 28px rgba(2, 28, 39, 0.16);
}

.orion-unit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(195, 151, 73, 0.22);
  border-radius: 12px;
  background: var(--color-off-white);
  box-shadow: 0 22px 54px rgba(2, 28, 39, 0.08);
}

.orion-unit-panel[hidden] {
  display: none;
}

.orion-unit-layout-visual {
  min-width: 0;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.orion-unit-layout-visual img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.orion-unit-info {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.orion-unit-info h3 {
  margin: 8px 0 20px;
  color: var(--color-primary-navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.18;
}

.orion-unit-specs {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.orion-unit-specs div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.orion-unit-specs dt {
  color: var(--color-muted-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.orion-unit-specs dd {
  margin: 0;
  color: var(--color-primary-navy);
  font-weight: 700;
}

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

.orion-unit-key-plan {
  min-width: 0;
  margin: 0;
  padding: 12px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-off-white);
}

.orion-unit-key-plan img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: var(--color-white);
}

.orion-unit-key-plan figcaption {
  color: var(--color-muted-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.orion-support-section {
  padding: 88px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.orion-support-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.orion-support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orion-support-steps li {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.orion-support-steps li > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  font-size: 0.75rem;
}

.orion-support-steps strong {
  color: var(--color-white);
}

.orion-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.orion-final-cta h2 {
  color: var(--color-white);
}

.orion-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.setup-page-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 27, 42, 0.96) 0%, rgba(0, 27, 42, 0.82) 38%, rgba(0, 27, 42, 0.24) 72%, rgba(0, 27, 42, 0.08) 100%),
    url("../images/ready-to-rent-setup/ready-to-rent-setup-hero-01.png");
  background-position: center right;
  background-size: cover;
}

.setup-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 42, 0.48) 0%, rgba(0, 27, 42, 0.22) 42%, rgba(0, 27, 42, 0) 76%);
  pointer-events: none;
}

.setup-hero-decor {
  position: absolute;
  right: 7%;
  bottom: -0.2em;
  z-index: 0;
  color: var(--color-primary-navy);
  font-size: clamp(5.25rem, 13.5vw, 12rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.setup-overview-section,
.setup-scope-section,
.setup-connection-section,
.setup-packages-section {
  padding: 96px 0;
}

.setup-overview-section {
  background: var(--color-white);
}

.setup-overview-layout,
.management-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 48px;
  align-items: center;
  margin-bottom: 42px;
}

.setup-overview-copy,
.management-overview-copy,
.setup-package-heading {
  max-width: 850px;
}

.setup-package-heading,
.management-scenarios-heading {
  margin-bottom: 42px;
}

.service-page-image {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(198, 156, 109, 0.36);
  border-radius: 14px;
  background: var(--color-deep-navy);
  box-shadow: 0 22px 54px rgba(0, 27, 42, 0.16);
}

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

.service-page-image-portrait {
  aspect-ratio: 4 / 5;
}

.service-page-image-portrait img {
  object-position: center;
}

.setup-overview-copy h2,
.setup-connection-copy h2,
.setup-package-heading h2,
.setup-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.setup-overview-copy > p:last-child,
.setup-connection-copy > p:not(.eyebrow),
.setup-package-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

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

.setup-overview-grid article,
.setup-scope-grid article,
.setup-package-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-off-white);
}

.setup-overview-grid article:first-child {
  color: var(--color-white);
  border-color: var(--color-secondary-navy);
  background: var(--color-primary-navy);
}

.setup-overview-grid article > span,
.setup-scope-grid article > span,
.setup-package-grid article > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.setup-overview-grid h3,
.setup-scope-grid h3,
.setup-package-grid h3 {
  margin: 18px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.18rem;
}

.setup-overview-grid article:first-child h3 {
  color: var(--color-white);
}

.setup-overview-grid p,
.setup-scope-grid p,
.setup-package-grid p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.setup-overview-grid article:first-child p {
  color: var(--color-border);
}

.setup-scope-section {
  background: var(--color-off-white);
  scroll-margin-top: 24px;
}

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

.setup-scope-grid article {
  border-top: 3px solid var(--color-warm-gold);
  background: var(--color-white);
}

.setup-scope-grid .setup-scope-card {
  padding: 0;
  overflow: hidden;
  border-top: 0;
  box-shadow: 0 18px 42px rgba(0, 27, 42, 0.08);
}

.setup-scope-image {
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  background: var(--color-deep-navy);
}

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

.setup-scope-body {
  padding: 22px;
}

.setup-scope-body > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.setup-scope-body h3 {
  margin-top: 12px;
}

.setup-process-section {
  padding: 88px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.setup-process-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.setup-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-process-list li {
  min-width: 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.setup-process-list li > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  font-size: 0.75rem;
}

.setup-process-list strong {
  color: var(--color-white);
}

.setup-connection-section {
  background: var(--color-white);
}

.setup-connection-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.setup-connection-copy > .button {
  margin-top: 28px;
}

.setup-connection-visual,
.management-bridge-visual {
  aspect-ratio: 4 / 3;
  min-height: 360px;
}

.setup-packages-section {
  background: var(--color-off-white);
}

.setup-package-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.setup-package-content {
  min-width: 0;
  max-width: 620px;
}

.setup-package-heading {
  margin-bottom: 28px;
}

.setup-package-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.setup-package-heading > p:last-child {
  margin-top: 14px;
}

.setup-package-grid {
  display: grid;
  gap: 12px;
}

.setup-package-grid article {
  padding: 22px;
  border-top: 3px solid var(--color-champagne);
  background: var(--color-white);
}

.setup-package-grid h3 {
  margin-top: 12px;
}

.setup-package-grid p {
  margin-top: 8px;
}

.setup-package-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-package-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(198, 156, 109, 0.36);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(0, 27, 42, 0.12);
}

.setup-package-visual-large {
  grid-column: 1 / -1;
}

.setup-package-visual img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.setup-package-visual-large img {
  height: 300px;
}

.setup-package-visual figcaption {
  padding: 12px 16px;
  color: var(--color-primary-navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.setup-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.setup-final-cta h2 {
  color: var(--color-white);
}

.setup-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.management-page-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 27, 42, 0.96) 0%, rgba(0, 27, 42, 0.78) 38%, rgba(0, 27, 42, 0.24) 72%, rgba(0, 27, 42, 0.08) 100%),
    url("../images/rental-management/rental-management-hero-bg-02.png");
  background-position: center right;
  background-size: cover;
}

.management-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 42, 0.46) 0%, rgba(0, 27, 42, 0.2) 42%, rgba(0, 27, 42, 0) 76%);
  pointer-events: none;
}

.management-overview-section,
.management-framework-section,
.management-bridge-section,
.management-scenarios-section {
  padding: 96px 0;
}

.management-overview-section,
.management-bridge-section {
  background: var(--color-white);
}

.management-scenarios-heading {
  max-width: 850px;
}

.management-overview-copy h2,
.management-bridge-copy h2,
.management-scenarios-heading h2,
.management-final-cta h2 {
  margin: 0;
  color: var(--color-primary-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.management-overview-copy > p:last-child,
.management-bridge-copy > p:not(.eyebrow),
.management-scenarios-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

.management-overview-grid,
.management-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.management-overview-grid article,
.management-framework-grid article,
.management-scenarios-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.management-overview-grid article {
  background: var(--color-off-white);
}

.management-overview-grid article:first-child {
  color: var(--color-white);
  border-color: var(--color-secondary-navy);
  background: var(--color-primary-navy);
}

.management-overview-grid article > span,
.management-framework-grid article > span,
.management-scenarios-grid article > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.management-overview-grid h3,
.management-framework-grid h3,
.management-scenarios-grid h3 {
  margin: 18px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.18rem;
}

.management-overview-grid article:first-child h3 {
  color: var(--color-white);
}

.management-overview-grid p,
.management-framework-grid p,
.management-scenarios-grid p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.management-overview-grid article:first-child p {
  color: var(--color-border);
}

.management-framework-section {
  background: var(--color-off-white);
  scroll-margin-top: 24px;
}

.management-framework-grid article {
  border-top: 3px solid var(--color-warm-gold);
}

.management-framework-grid .management-framework-card {
  padding: 0;
  overflow: hidden;
  border-top: 0;
  box-shadow: 0 18px 42px rgba(0, 27, 42, 0.08);
}

.management-framework-image {
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  background: var(--color-deep-navy);
}

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

.management-framework-body {
  padding: 24px;
}

.management-framework-body > span {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.management-framework-body h3 {
  margin-top: 12px;
}

.management-process-section {
  padding: 88px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.management-process-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.management-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.management-process-list li {
  min-width: 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.management-process-list li > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-warm-gold);
  border-radius: 50%;
  color: var(--color-warm-gold);
  font-size: 0.75rem;
}

.management-process-list strong {
  color: var(--color-white);
}

.management-bridge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.management-bridge-copy > .button {
  margin-top: 28px;
}

.management-scenarios-section {
  background: var(--color-off-white);
}

.management-scenarios-grid article {
  border-top: 3px solid var(--color-champagne);
}

.management-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.management-final-cta h2 {
  color: var(--color-white);
}

.management-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.contact-page-hero::before {
  content: "CONTACT";
  position: absolute;
  right: 3%;
  bottom: -0.12em;
  color: var(--color-primary-navy);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
}

.contact-page-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 27, 42, 0.96) 0%, rgba(0, 27, 42, 0.78) 38%, rgba(0, 27, 42, 0.24) 72%, rgba(0, 27, 42, 0.08) 100%),
    url("../images/contact/contact-hero-bg-01.png");
  background-position: center right;
  background-size: cover;
}

.contact-directions-section,
.contact-method-section,
.contact-form-section {
  padding: 96px 0;
}

.contact-directions-section {
  background: var(--color-white);
  scroll-margin-top: 24px;
}

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

.contact-direction-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-warm-gold);
  border-radius: 10px;
  background: var(--color-off-white);
}

.contact-direction-grid .contact-direction-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-color: rgba(216, 184, 112, 0.3);
  background: var(--color-deep-navy);
}

.contact-direction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 28, 39, 0.26) 0%, rgba(2, 28, 39, 0.58) 48%, rgba(2, 28, 39, 0.86) 100%),
    var(--contact-direction-card-image) center / cover no-repeat;
}

.contact-direction-card > * {
  position: relative;
  z-index: 1;
}

.contact-direction-card-rf {
  --contact-direction-card-image: url("../images/contact/contact-direction-rf-princess-cove-01.png");
}

.contact-direction-card-orion {
  --contact-direction-card-image: url("../images/contact/contact-direction-orion-residence-01.png");
}

.contact-direction-card-setup {
  --contact-direction-card-image: url("../images/contact/contact-direction-ready-to-rent-setup-01.png");
}

.contact-direction-card-management {
  --contact-direction-card-image: url("../images/contact/contact-direction-rental-management-01.png");
}

.contact-card-label {
  color: var(--color-warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direction-grid h3 {
  margin: 16px 0 0;
  color: var(--color-primary-navy);
  font-size: 1.35rem;
}

.contact-direction-card h3 {
  color: var(--color-white);
}

.contact-direction-grid p {
  margin: 10px 0 0;
  color: var(--color-muted-text);
}

.contact-direction-card p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-direction-card .text-link {
  color: var(--color-champagne);
}

.contact-method-section {
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.contact-method-layout,
.contact-form-layout,
.contact-quick-links-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 72px;
  align-items: center;
}

.contact-method-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.contact-method-copy h2,
.contact-form-copy h2,
.contact-final-cta h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.contact-method-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--color-border);
}

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

.contact-method-points > div {
  min-width: 0;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.contact-method-points span {
  color: var(--color-warm-gold);
  font-size: 0.76rem;
}

.contact-method-points strong {
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.contact-method-visual {
  aspect-ratio: 4 / 3;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 156, 109, 0.36);
  border-radius: 14px;
  background: var(--color-deep-navy);
  box-shadow: 0 22px 54px rgba(0, 27, 42, 0.24);
}

.contact-method-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-placeholder-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 10px;
  background: var(--color-primary-navy);
}

.contact-placeholder-panel > div {
  min-width: 0;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-deep-navy);
}

.contact-placeholder-panel span {
  color: var(--color-warm-gold);
  font-size: 0.76rem;
}

.contact-placeholder-panel strong {
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.contact-form-section {
  background: var(--color-off-white);
}

.contact-form-layout {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.contact-form-visual {
  aspect-ratio: 4 / 3;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 156, 109, 0.36);
  border-radius: 14px;
  background: var(--color-deep-navy);
  box-shadow: 0 22px 54px rgba(0, 27, 42, 0.14);
}

.contact-form-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form-copy h2 {
  color: var(--color-primary-navy);
}

.contact-form-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--color-muted-text);
}

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

.contact-form-action-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-warm-gold);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(0, 27, 42, 0.08);
}

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

.contact-form-action-card > span {
  color: var(--color-warm-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-action-card strong {
  display: block;
  margin-top: 12px;
  color: var(--color-primary-navy);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-form-action-card p {
  margin: 8px 0 0;
  color: var(--color-muted-text);
  overflow-wrap: anywhere;
}

.contact-form-action-card:hover,
.contact-form-action-card:focus-visible {
  border-color: var(--color-warm-gold);
}

.contact-form-details {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(0, 27, 42, 0.08);
}

.contact-form-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-warm-gold);
  border-radius: 8px;
  background: var(--color-off-white);
}

.contact-form-card > span {
  color: var(--color-warm-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-card strong {
  display: block;
  margin-top: 12px;
  color: var(--color-primary-navy);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-form-card p {
  margin: 8px 0 0;
  color: var(--color-muted-text);
  overflow-wrap: anywhere;
}

.contact-placeholder-form {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
}

.contact-placeholder-form > p {
  margin: 0 0 22px;
  color: var(--color-muted-text);
  font-size: 0.92rem;
}

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

.contact-form-grid label {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: var(--color-primary-navy);
  font-weight: 700;
}

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

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-muted-text);
  background: var(--color-off-white);
  font: inherit;
}

.contact-form-grid textarea {
  min-height: 130px;
  resize: none;
}

.contact-placeholder-form .button {
  margin-top: 22px;
}

.contact-placeholder-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.contact-quick-links-section {
  padding: 88px 0;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.contact-quick-links {
  display: grid;
  gap: 10px;
}

.contact-quick-links a {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid var(--color-secondary-navy);
  border-radius: 8px;
  background: var(--color-primary-navy);
}

.contact-quick-links a:hover,
.contact-quick-links a:focus-visible {
  border-color: var(--color-warm-gold);
}

.contact-quick-links a > span {
  flex: 0 0 38px;
  color: var(--color-warm-gold);
  font-size: 0.76rem;
}

.contact-quick-links strong {
  color: var(--color-white);
}

.contact-final-cta {
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-navy);
}

.contact-final-cta > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-border);
}

.projects-final-cta,
.rf-final-cta,
.orion-final-cta,
.setup-final-cta,
.management-final-cta,
.contact-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-deep-navy);
  border-top: 1px solid rgba(216, 184, 112, 0.28);
  border-bottom: 1px solid rgba(216, 184, 112, 0.2);
}

.projects-final-cta::before,
.rf-final-cta::before,
.orion-final-cta::before,
.setup-final-cta::before,
.management-final-cta::before,
.contact-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/homepage-final-cta-bg-01.png") center 52% / cover;
}

.projects-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/projects-final-cta-bg-01.png") center 52% / cover;
}

.rf-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/rf-princess-cove-final-cta-bg-01.png") center 52% / cover;
}

.orion-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/orion-residence/orion-residence-final-cta-bg-01.png") center 52% / cover;
}

.setup-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/ready-to-rent-setup/ready-to-rent-setup-cta-bg-03.png") center 52% / cover;
}

.management-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/rental-management/rental-management-final-cta-bg-01.png") center 52% / cover;
}

.contact-final-cta::before {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.58), rgba(10, 35, 66, 0.44)),
    url("../images/contact/contact-final-cta-bg-01.png") center 52% / cover;
}

.projects-final-cta > .container,
.rf-final-cta > .container,
.orion-final-cta > .container,
.setup-final-cta > .container,
.management-final-cta > .container,
.contact-final-cta > .container {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 36px;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 14px;
  color: var(--color-champagne);
  font-size: 1rem;
}

.footer-column p {
  margin: 0;
  color: var(--color-border);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--color-border);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-champagne);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-secondary-navy);
  color: var(--color-border);
  font-size: 0.9rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .contact-method-layout,
  .contact-form-layout,
  .contact-quick-links-layout,
  .management-process-section > .container,
  .management-bridge-layout,
  .setup-process-section > .container,
  .setup-connection-layout,
  .setup-package-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .management-overview-layout,
  .setup-overview-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .management-process-list,
  .setup-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .management-framework-grid,
  .setup-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orion-positioning-layout,
  .orion-documents-layout,
  .project-location-layout,
  .orion-support-section > .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rf-location-section .project-location-layout {
    grid-template-columns: 1fr;
  }

  .rf-location-section .project-location-map {
    width: 100%;
  }

  .orion-facility-layouts-heading,
  .orion-layout-panel,
  .orion-unit-panel {
    grid-template-columns: 1fr;
  }

  .orion-facility-layouts-heading {
    align-items: start;
  }

  .orion-support-steps {
    grid-template-columns: 1fr;
  }

  .orion-support-steps li {
    min-height: 92px;
  }

  .rf-phase-layout,
  .rf-phase-layout-reverse,
  .rf-support-section > .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rf-phase-layout-reverse .rf-phase-content {
    order: 2;
  }

  .rf-phase-layout-reverse .rf-phase-copy {
    order: 1;
  }

  .rf-structure-grid {
    grid-template-columns: 1fr;
  }

  .rf-support-steps {
    grid-template-columns: 1fr;
  }

  .rf-support-steps li {
    min-height: 92px;
  }

  .projects-intro-copy,
  .projects-support-strip > .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .projects-intro-copy .eyebrow {
    margin-bottom: -20px;
  }

  .projects-index-grid {
    grid-template-columns: 1fr;
  }

  .index-project-support {
    min-height: 0;
  }

  .split-layout,
  .split-layout-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .home-hero-slide-inner {
    min-height: 570px;
  }

  .home-hero-copy {
    width: min(620px, 76%);
  }

  .service-visual {
    aspect-ratio: 2 / 1;
  }

  .visual-placeholder-hero {
    min-height: 360px;
  }

  .visual-placeholder-hero {
    box-shadow: 18px 18px 0 var(--color-primary-navy);
  }

  .project-card-grid {
    gap: 20px;
  }

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

  .process-arrow {
    display: none;
  }

  .service-preview-alt .service-copy {
    order: 2;
  }

  .service-preview-alt .service-visual {
    order: 1;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 20px max(16px, calc((100% - 1120px) / 2));
    background: var(--color-deep-navy);
    border-top: 1px solid var(--color-secondary-navy);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-actions {
    margin-left: auto;
  }

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

@media (max-width: 767px) {
  .home-section {
    padding: 40px 0;
  }

  .home-final-cta {
    padding: 42px 0;
  }

  .home-section .section-heading {
    margin-bottom: 20px;
  }

  .home-section .section-heading h2,
  .home-section .service-copy h2,
  .home-final-cta h2 {
    font-size: clamp(1.55rem, 6.6vw, 1.9rem);
    line-height: 1.12;
  }

  .home-section .eyebrow,
  .home-final-cta .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .home-section .section-heading > p:last-child,
  .home-section .service-copy > p:not(.eyebrow) {
    margin-top: 9px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

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

  .home-hero-slide-inner {
    min-height: 450px;
    padding-top: 28px;
    padding-bottom: 62px;
  }

  .home-hero h1,
  .home-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  .home-hero-text {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .home-hero .button-row {
    gap: 8px;
    margin-top: 16px;
  }

  .home-hero .button {
    min-height: 44px;
    padding-block: 7px;
  }

  .home-hero-promo-link {
    inset: 0;
  }

  .home-hero-controls {
    bottom: 8px;
    gap: 8px;
  }

  .home-hero-dots {
    gap: 6px;
  }

  .home-hero-dot {
    width: 22px;
  }

  .home-hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .project-card-visual,
  .service-visual {
    aspect-ratio: 1.85 / 1;
  }

  .project-card-body {
    padding: 18px;
  }

  .project-card h3 {
    font-size: 1.25rem;
  }

  .project-card-body > p:not(.card-label) {
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .project-card .feature-list {
    gap: 6px;
    margin-top: 12px;
  }

  .project-card .text-link {
    margin-top: 16px;
  }

  .project-card-grid {
    gap: 16px;
  }

  .process-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 0;
  }

  .process-number {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .process-step h3 {
    font-size: 1.1rem;
  }

  .process-step p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .split-layout,
  .split-layout-reverse {
    gap: 18px;
  }

  .service-list {
    gap: 6px;
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
  }

  .service-copy > .button {
    min-height: 44px;
    padding-block: 7px;
  }

  .home-final-cta > .container > p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .home-final-cta .button-row {
    gap: 8px;
    margin-top: 18px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-grid {
    gap: 18px;
    padding-bottom: 22px;
  }

  .footer-bottom {
    padding-top: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  .brand {
    max-width: 140px;
  }

  .brand-logo {
    height: 40px;
    max-width: 140px;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .language-button {
    min-width: 58px;
    padding-inline: 8px;
  }

  .page-hero,
  .placeholder-section,
  .placeholder-cta {
    padding: 56px 0;
  }

  .inner-page-hero,
  .projects-introduction,
  .project-listing-section,
  .projects-support-strip,
  .projects-final-cta {
    min-height: 460px;
    padding: 64px 0;
  }

  .rf-master-overview,
  .rf-phase-section,
  .rf-phase-details-section,
  .rf-location-section,
  .rf-support-section,
  .rf-final-cta {
    padding: 64px 0;
  }

  .orion-overview-section,
  .orion-positioning-section,
  .project-location-section,
  .orion-layout-section,
  .orion-unit-floor-plans-section,
  .orion-gallery-section,
  .orion-documents-section,
  .orion-support-section,
  .orion-final-cta {
    padding: 64px 0;
  }

  .setup-overview-section,
  .setup-scope-section,
  .setup-process-section,
  .setup-connection-section,
  .setup-packages-section,
  .setup-final-cta,
  .management-overview-section,
  .management-framework-section,
  .management-process-section,
  .management-bridge-section,
  .management-scenarios-section,
  .management-final-cta,
  .contact-directions-section,
  .contact-method-section,
  .contact-form-section,
  .contact-quick-links-section,
  .contact-final-cta {
    padding: 64px 0;
  }

  .rf-location-section .project-location-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .rf-location-section .project-location-address {
    padding: 24px;
  }

  .rf-location-section .project-location-map img {
    height: 100%;
    min-height: 0;
  }

  .contact-method-layout,
  .contact-form-layout,
  .contact-quick-links-layout,
  .management-process-section > .container,
  .management-bridge-layout,
  .setup-process-section > .container,
  .setup-connection-layout {
    gap: 32px;
  }

  .contact-direction-grid,
  .management-overview-grid,
  .management-framework-grid,
  .management-process-list,
  .management-scenarios-grid,
  .setup-overview-grid,
  .setup-scope-grid,
  .setup-process-list,
  .setup-package-grid {
    grid-template-columns: 1fr;
  }

  .contact-placeholder-panel,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wide {
    grid-column: auto;
  }

  .contact-placeholder-form .button {
    width: 100%;
  }

  .management-process-list li,
  .setup-process-list li {
    min-height: 92px;
  }

  .management-bridge-copy > .button,
  .setup-connection-copy > .button,
  .setup-packages-section > .container > .button {
    width: 100%;
  }

  .management-bridge-visual,
  .setup-connection-visual,
  .contact-method-visual,
  .contact-form-visual {
    width: 100%;
    min-height: 0;
  }

  .orion-positioning-layout,
  .orion-documents-layout,
  .orion-support-section > .container {
    gap: 32px;
  }

  .orion-info-grid,
  .orion-layout-grid,
  .orion-request-grid {
    grid-template-columns: 1fr;
  }

  .orion-city-visual {
    min-height: 280px;
  }

  .orion-page-hero {
    background-position: 64% center;
  }

  .orion-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 220px);
  }

  .orion-gallery-main {
    grid-row: auto;
    grid-column: auto;
  }

  .orion-documents-copy > .button {
    width: 100%;
  }

  .orion-facility-layouts-heading .button {
    width: 100%;
  }

  .orion-layout-tabs {
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    margin-inline: 0;
    padding: 0 12px 8px;
    overflow-x: auto;
  }

  .orion-layout-tab {
    flex: 0 0 auto;
  }

  .orion-unit-tabs {
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    margin-inline: 0;
    padding: 0 12px 8px;
    overflow-x: auto;
  }

  .orion-unit-tab {
    flex: 0 0 auto;
  }

  .orion-layout-panel {
    padding: 16px;
  }

  .orion-unit-panel {
    padding: 16px;
  }

  .orion-layout-info {
    padding: 22px;
  }

  .orion-unit-info {
    padding: 22px;
  }

  .orion-layout-visual img {
    max-height: 420px;
  }

  .orion-unit-layout-visual img {
    max-height: 440px;
  }

  .orion-unit-key-plans,
  .orion-unit-specs div {
    grid-template-columns: 1fr;
  }

  .orion-contain-area,
  .orion-document-area {
    min-height: 220px;
  }

  .rf-phase-layout,
  .rf-phase-layout-reverse,
  .rf-support-section > .container {
    gap: 32px;
  }

  .rf-phase-visual {
    min-height: 250px;
  }

  .rf-phase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .rf-phase-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .rf-phase-gallery img:not(.rf-phase-gallery-main) {
    aspect-ratio: 4 / 3;
  }

  .rf-phase-placeholder-grid,
  .rf-phase-floor-plan-grid,
  .rf-phase-facility-grid,
  .rf-phase-video-placeholder-grid,
  .rf-location-grid {
    grid-template-columns: 1fr;
  }

  .rf-phase-copy > .button {
    width: 100%;
  }

  .rf-phase-panel {
    padding: 22px;
  }

  .rf-phase-site-plan-card {
    height: 260px;
  }

  .rf-phase-tab,
  .rf-phase-request-card .button {
    width: 100%;
  }

  .rf-phase-request-card {
    align-items: stretch;
    flex-direction: column;
  }

  .inner-page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .intro-card-grid,
  .phase-block-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .index-project-body {
    padding: 24px;
  }

  .index-project-visual {
    min-height: 0;
  }

  .index-project-body > .button {
    width: 100%;
  }

  .projects-support-strip > .container {
    gap: 30px;
  }

  .split-layout,
  .split-layout-reverse {
    gap: 24px;
  }

  .home-hero {
    min-height: 450px;
    padding: 0;
  }

  .home-hero-slide-inner {
    min-height: 450px;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 62px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-slide-overlay {
    background-position: 64% center;
  }

  .home-hero-slide-overlay::before {
    background: linear-gradient(90deg, var(--color-deep-navy) 0%, var(--color-deep-navy) 58%, transparent 100%);
    opacity: 0.96;
  }

  .home-hero h1,
  .home-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .home-hero-text {
    font-size: 0.88rem;
  }

  .home-hero-slide-promo {
    padding: 0;
  }

  .home-hero-promo-link {
    inset: 0;
  }

  .home-hero-promo-link img {
    height: 100%;
  }

  .home-hero-controls {
    bottom: 8px;
  }

  .home-hero-arrow {
    width: 40px;
    height: 40px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .visual-placeholder-hero {
    min-height: 280px;
  }

  .visual-placeholder-hero {
    box-shadow: 10px 10px 0 var(--color-primary-navy);
  }

  .project-card-grid {
    grid-template-columns: 1fr;
  }

  .project-card-body,
  .process-step {
    padding: 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .placeholder-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-width: 0;
  }

  .brand {
    max-width: 112px;
    flex: 1 1 auto;
  }

  .brand-logo {
    height: 36px;
    max-width: 112px;
  }

  .header-actions {
    min-width: 0;
    gap: 8px;
  }

  .language-button {
    min-width: 54px;
    padding-inline: 7px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    padding: 8px;
  }

  .home-section {
    padding: 36px 0;
  }

  .home-final-cta {
    padding: 38px 0;
  }

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

  .home-hero-slide-inner {
    min-height: 420px;
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .home-hero h1,
  .home-hero-title {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.7vw, 2.05rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .home-hero-text {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .home-hero .button-row {
    margin-top: 14px;
  }

  .home-hero-promo-link {
    inset: 0;
  }

  .home-section .section-heading h2,
  .home-section .service-copy h2,
  .home-final-cta h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 6.3vw, 1.75rem);
    overflow-wrap: anywhere;
  }

  .project-card-body {
    padding: 16px;
  }

  .process-step {
    padding: 0;
  }

  .service-list {
    margin-bottom: 14px;
  }

  .site-footer {
    padding: 30px 0 18px;
  }
}
