:root {
  --bg: #f6f1e9;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f2ebe1;
  --text: #1b2526;
  --text-soft: #5d6a6c;
  --line: rgba(27, 37, 38, 0.1);
  --primary: #0f7a72;
  --primary-strong: #0a5c56;
  --accent: #cb8b4c;
  --shadow: 0 24px 80px rgba(33, 40, 34, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 40px));
  --font-body: "Tajawal", sans-serif;
  --font-heading: "Cairo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="en"] {
  --font-body: "Manrope", sans-serif;
  --font-heading: "Manrope", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  text-align: start;
  background:
    radial-gradient(circle at top right, rgba(15, 122, 114, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(203, 139, 76, 0.07), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, #f1e7da 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 37, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 37, 38, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
  pointer-events: none;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 84px;
}

.top-actions,
.hero-actions,
.details-actions,
.details-overview-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 26px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-self: center;
}

.brand-logo {
  width: clamp(190px, 18vw, 260px);
  height: auto;
}

.top-actions {
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}

.lang-switch {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: 0 10px 30px rgba(27, 37, 38, 0.05);
}

.lang-switch-label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.lang-select {
  appearance: none;
  min-width: 108px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.lang-select:focus {
  outline: none;
}

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

.top-link,
.floating-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: 0 10px 30px rgba(27, 37, 38, 0.05);
}

.top-link-button {
  cursor: pointer;
}

.floating-help {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(10, 92, 86, 0.28);
  cursor: pointer;
  animation: buttonPulse 4.8s ease-in-out infinite;
}

.section-block,
.press-story,
.ornament-shell,
.details-intro-grid,
.details-section {
  margin-top: 34px;
}

.hero-banner {
  position: relative;
  min-height: 82vh;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 20s infinite;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s infinite;
}

.hero-slide.slide-1,
.hero-slide.slide-1 img {
  animation-delay: 0s;
}

.hero-slide.slide-2,
.hero-slide.slide-2 img {
  animation-delay: 5s;
}

.hero-slide.slide-3,
.hero-slide.slide-3 img {
  animation-delay: 10s;
}

.hero-slide.slide-4,
.hero-slide.slide-4 img {
  animation-delay: 15s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 19, 20, 0.74) 0%, rgba(12, 19, 20, 0.28) 55%, rgba(12, 19, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 19, 20, 0.18) 0%, rgba(12, 19, 20, 0.44) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 76px 56px;
  color: #ffffff;
}

.hero-content h1,
.details-overview-first h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  line-height: 1.14;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  color: #ffffff;
}

.hero-eyebrow,
.hero-text {
  color: rgba(255, 255, 255, 0.92);
}

.hero-text {
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.95;
}

.hero-actions {
  margin-top: 22px;
}

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

.hero-point-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-point-card h3 {
  margin: 0;
}

.hero-point-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 8px rgba(15, 122, 114, 0.09);
  animation: pointPulse 4.2s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 0.96rem;
  font-weight: 700;
}

h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.85rem);
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

p,
span,
li {
  color: var(--text-soft);
  line-height: 1.9;
}

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

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 32px rgba(15, 122, 114, 0.24);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.details-overview-first .button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
}

.intro-grid,
.types-grid,
.building-grid,
.feature-grid,
.delivery-grid,
.trust-grid,
.details-intro-grid,
.details-tip-row,
.details-thumb-row,
.details-spec-grid,
.feature-pill-row,
.finish-tag-row,
.project-gallery,
.assurance-cards {
  display: grid;
  gap: 20px;
}

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

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

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

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

.details-intro-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.info-card,
.type-card,
.feature-card,
.delivery-card,
.trust-card,
.building-card,
.press-copy,
.press-video,
.details-cover,
.details-tip,
.details-thumb,
.details-section,
.assurance-card,
.help-dialog {
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card,
.type-card,
.feature-card,
.delivery-card,
.trust-card,
.press-copy,
.details-section,
.help-dialog,
.assurance-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.press-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.press-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 122, 114, 0.08);
  color: var(--text);
  font-weight: 700;
}

.press-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent),
    rgba(255, 251, 245, 0.92);
}

.press-video {
  padding: 18px;
  border-radius: 32px;
}

.press-screen {
  overflow: hidden;
  border-radius: 24px;
  background: #101618;
}

.press-screen-player {
  position: relative;
}

.press-screen-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(15, 122, 114, 0.94), rgba(10, 92, 86, 0.94));
}

.press-screen-bar span,
.press-caption {
  color: rgba(255, 255, 255, 0.92);
}

.press-caption {
  margin: 0;
  padding: 16px 18px 18px;
}

.press-quote {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: var(--surface-soft);
  border-inline-start: 4px solid var(--primary);
}

.press-quote strong {
  color: var(--text);
  font-family: var(--font-heading);
}

.video-player {
  width: 100%;
  min-height: 430px;
  border-radius: 24px;
  background: #101617;
}

.press-poster {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.press-poster img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-badge svg {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.25));
  transition: transform 220ms ease;
}

.press-poster:hover .play-badge svg {
  transform: scale(1.06);
}

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

.building-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.building-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(33, 40, 34, 0.12);
}

.building-media {
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
}

.building-media img,
.details-cover img,
.details-thumb img,
.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.building-content {
  padding: 22px;
}

.building-content .button {
  width: 100%;
}

.building-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.building-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(203, 139, 76, 0.14);
  color: var(--text);
  font-weight: 700;
}

.building-summary {
  margin: 14px 0 18px;
}

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

.building-metrics div,
.spec-card,
.details-tip {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(27, 37, 38, 0.06);
}

.building-metrics span,
.spec-card span,
.details-tip span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.building-metrics strong,
.spec-card strong,
.details-tip strong {
  color: var(--text);
  font-family: var(--font-heading);
}

.ornament-shell {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.section-inner {
  position: relative;
  z-index: 1;
  padding: 36px;
  border-radius: 40px;
}

.engineering-shell .section-inner {
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.delivery-shell .section-inner {
  background:
    linear-gradient(135deg, #132224 0%, #163537 52%, #0f7a72 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.delivery-shell .section-inner p,
.delivery-shell .section-inner .eyebrow,
.delivery-shell .delivery-card p,
.delivery-shell .delivery-card h3 {
  color: rgba(255, 255, 255, 0.9);
}

.delivery-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.trust-shell .section-inner {
  background:
    radial-gradient(circle at top left, rgba(203, 139, 76, 0.12), transparent 30%),
    rgba(255, 251, 245, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-card {
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  color: var(--primary);
  background: rgba(15, 122, 114, 0.08);
  border: 1px solid rgba(15, 122, 114, 0.1);
}

.trust-icon svg {
  width: 40px;
  height: 40px;
}

.section-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  backdrop-filter: blur(10px);
  animation: iconFloat 6s ease-in-out infinite;
}

.section-icon svg {
  width: 44px;
  height: 44px;
}

.icon-right {
  right: 18px;
}

.icon-left {
  left: 18px;
  animation-delay: 0.8s;
}

.engineering-shell .section-icon {
  color: var(--primary);
  background: rgba(15, 122, 114, 0.12);
  border: 1px solid rgba(15, 122, 114, 0.14);
}

.delivery-shell .section-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-shell .section-icon {
  color: var(--accent);
  background: rgba(203, 139, 76, 0.12);
  border: 1px solid rgba(203, 139, 76, 0.14);
}

.details-page {
  display: grid;
  gap: 30px;
}

.details-overview-first,
.details-image-section {
  display: grid;
  gap: 18px;
}

.details-tip-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.details-tip-row-inline {
  margin-top: 6px;
}

.details-tip {
  animation: noteFloat 6s ease-in-out infinite;
}

.details-tip:nth-child(2) {
  animation-delay: 0.4s;
}

.details-tip:nth-child(3) {
  animation-delay: 0.8s;
}

.details-tip:nth-child(4) {
  animation-delay: 1.2s;
}

.details-cover {
  min-height: 620px;
  overflow: hidden;
  border-radius: 30px;
}

.details-thumb-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.details-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
}

.details-overview-first h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin: 0 0 18px;
  font-family: var(--font-heading);
  line-height: 1.14;
}

.details-overview-notes {
  margin: 24px 0 26px;
}

.details-overview-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 122, 114, 0.08);
  color: var(--text);
  border: 1px solid rgba(15, 122, 114, 0.08);
}

.details-section {
  overflow: hidden;
}

.details-section-heading {
  margin-bottom: 18px;
}

.details-spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.details-note-band {
  background:
    radial-gradient(circle at top right, rgba(203, 139, 76, 0.22), transparent 28%),
    linear-gradient(135deg, #122123 0%, #163638 50%, #0f7a72 100%);
}

.details-note-band h2,
.details-note-band p,
.details-note-band .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.details-feature-ribbon {
  background: rgba(255, 251, 245, 0.78);
}

.feature-pill-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-pill {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(15, 122, 114, 0.1);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(15, 122, 114, 0.1);
  animation: noteFloat 7s ease-in-out infinite;
}

.feature-pill:nth-child(2) {
  animation-delay: 0.6s;
}

.feature-pill:nth-child(3) {
  animation-delay: 1.2s;
}

.feature-pill:nth-child(4) {
  animation-delay: 1.8s;
}

.details-spec-list-section {
  background:
    linear-gradient(180deg, rgba(203, 139, 76, 0.06), transparent),
    rgba(255, 251, 245, 0.9);
}

.finish-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finish-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(203, 139, 76, 0.12);
  border: 1px solid rgba(203, 139, 76, 0.24);
  color: #8c5c27;
  font-size: 0.9rem;
  font-weight: 700;
}

.project-gallery {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-areas:
    "a b c"
    "a d e";
}

.project-gallery-item {
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(27, 37, 38, 0.08);
  box-shadow: var(--shadow);
}

.project-gallery-item.item-1 {
  grid-area: a;
  min-height: 440px;
}

.project-gallery-item.item-2 {
  grid-area: b;
}

.project-gallery-item.item-3 {
  grid-area: c;
}

.project-gallery-item.item-4 {
  grid-area: d;
}

.project-gallery-item.item-5 {
  grid-area: e;
}

.details-assurance-section {
  background:
    radial-gradient(circle at top left, rgba(15, 122, 114, 0.12), transparent 28%),
    rgba(255, 251, 245, 0.92);
}

.assurance-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-card {
  min-height: 220px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.in-view {
  animation: revealUp 820ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.help-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  overscroll-behavior: contain;
}

.help-modal.is-open {
  display: block;
}

.help-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 17, 0.56);
  backdrop-filter: blur(6px);
}

.help-dialog {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
}

.close-help {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 37, 38, 0.08);
  cursor: pointer;
}

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

.help-form label {
  display: grid;
  gap: 8px;
}

.help-form input,
.help-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 37, 38, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.full-span {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-bottom: 8px;
}

.footer-button {
  min-width: 220px;
}

.footer-logo {
  width: min(180px, 42vw);
  height: auto;
  opacity: 0.92;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  27% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08);
  }
  22% {
    transform: scale(1.14);
  }
  100% {
    transform: scale(1.14);
  }
}

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

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pointPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(15, 122, 114, 0.09);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(15, 122, 114, 0.15);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(10, 92, 86, 0.28);
  }
  50% {
    box-shadow: 0 24px 48px rgba(10, 92, 86, 0.4);
  }
}

@media (max-width: 1100px) {
  .intro-grid,
  .building-grid,
  .types-grid,
  .feature-grid,
  .delivery-grid,
  .trust-grid,
  .details-intro-grid,
  .details-spec-grid,
  .assurance-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-story,
  .details-tip-row,
  .details-thumb-row {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
    padding-top: 16px;
    padding-bottom: 64px;
  }

  .topbar,
  .top-actions,
  .hero-actions,
  .details-actions,
  .details-overview-notes,
  .section-heading-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    display: flex;
  }

  .lang-switch,
  .brand,
  .top-actions {
    justify-self: stretch;
  }

  .lang-switch {
    justify-content: space-between;
  }

  .hero-banner {
    min-height: 78vh;
    border-radius: 28px;
  }

  .hero-content {
    width: 100%;
    padding: 34px 22px 28px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .intro-grid,
  .hero-points,
  .types-grid,
  .building-grid,
  .feature-grid,
  .delivery-grid,
  .trust-grid,
  .details-intro-grid,
  .details-tip-row,
  .details-thumb-row,
  .details-spec-grid,
  .feature-pill-row,
  .project-gallery,
  .assurance-cards,
  .help-form {
    grid-template-columns: 1fr;
  }

  .press-story {
    grid-template-columns: 1fr;
  }

  .press-copy,
  .details-overview-first,
  .details-section,
  .help-dialog,
  .section-inner {
    padding: 24px;
    border-radius: 24px;
  }

  .press-video {
    padding: 14px;
    border-radius: 24px;
  }

  .video-player {
    min-height: 260px;
    border-radius: 18px;
  }

  .press-poster img {
    min-height: 260px;
  }

  .details-cover {
    min-height: 360px;
  }

  .section-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .section-icon svg {
    width: 30px;
    height: 30px;
  }

  .icon-right {
    right: 10px;
  }

  .icon-left {
    left: 10px;
  }

  .project-gallery {
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }

  .project-gallery-item.item-1 {
    min-height: 280px;
  }

  .floating-help {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }
}
