/* First Stone — company profile */

:root {
  --gold: #b8912a;
  --charcoal: #2d2d2d;
  --hero-bg: #eeecea;
  --frame-bg: #2a2a2a;
  --pill-bg: rgba(255, 255, 255, 0.92);
  --pill-border: rgba(45, 45, 45, 0.14);
  --contact-bar: rgba(255, 255, 255, 0.72);
  --font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-radius: 10px;
  --frame-pad: 8px;
  --section-overlay: rgba(0, 0, 0, 0.85);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--frame-bg);
  padding: var(--frame-pad);
  font-family: var(--font);
  color: var(--charcoal);
}

.site {
  position: relative;
  min-height: calc(1200vh - var(--frame-pad) * 2);
}

/* -------------------------------------------------------------------------- */
/* Hero / header card                                                         */
/* -------------------------------------------------------------------------- */

.section--hero {
  height: calc(100vh - var(--frame-pad) * 2);
  min-height: min(100vh - var(--frame-pad) * 2, 100vw * 9 / 16);
  max-height: calc(100vh - var(--frame-pad) * 2);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--hero-radius);
  background: var(--hero-bg);
}

/* Construction silhouette */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 68%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 12%,
    rgba(0, 0, 0, 0.85) 28%,
    #000 42%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 12%,
    rgba(0, 0, 0, 0.85) 28%,
    #000 42%
  );
}

/* Gradient blend (used on portrait / narrow — mask-image is unreliable on iOS) */
.hero__bg-fade {
  display: none;
}

/* Portrait phones: full-height photo (CSS mask often fails on iOS Safari) */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .hero__bg-img {
    top: 0;
    bottom: 0;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 68%;
    opacity: 0.8;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__bg-fade {
    display: block;
  position: absolute;
  inset: 0;
    z-index: 1;
  background: linear-gradient(
    180deg,
      var(--hero-bg) 0%,
      rgba(238, 236, 234, 0.88) 14%,
      rgba(238, 236, 234, 0.45) 32%,
      rgba(238, 236, 234, 0.12) 52%,
      transparent 68%
    );
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: clamp(0.85rem, 2.2vw, 1.35rem) clamp(1rem, 3vw, 2rem) 0;
}

/* Top bar */
.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.hero__top-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.hero__line {
  flex: 1;
  max-width: 18rem;
  height: 2px;
  background: rgba(45, 45, 45, 0.22);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  font-size: clamp(0.95rem, 1.75vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  min-height: 3.25rem;
}

.pill__star {
  color: var(--gold);
  font-size: 1.35em;
  line-height: 1;
}

.pill--year {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pill__chevron {
  margin-left: 0.15rem;
  font-weight: 700;
  opacity: 0.55;
}

/* Logo — centered, slightly above middle */
.hero__brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vh, 1.5rem) 0;
  margin-top: -2vh;
}

.hero__logo {
  width: min(92vw, 840px);
  height: auto;
  max-height: min(62vh, 840px);
  object-fit: contain;
  object-position: center;
}

/* PC / wide screens — logo 2× (840 → 1680) */
@media (min-width: 901px) {
  .hero__logo {
    width: min(88vw, 1680px);
    max-height: min(72vh, 1680px);
  }

  .hero__brand {
    margin-top: -3vh;
  }
}

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

/* Bottom contact — 3 separate pill buttons (reference design) */
.hero__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  margin: 0 calc(-1 * clamp(1rem, 3vw, 2rem));
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 3vw, 2rem);
  background: var(--contact-bar);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
  min-height: 3.75rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  text-decoration: none;
  text-align: center;
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

a.contact-item:hover {
  color: var(--gold);
  border-color: rgba(184, 145, 42, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-item--static {
  cursor: default;
}

.contact-item__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.contact-item__icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.contact-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

/* Thin line between every section */
.section-divider {
  height: 1px;
  margin: 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

/* -------------------------------------------------------------------------- */
/* Content sections (2–8): construction bg + dark overlay + corner logo     */
/* -------------------------------------------------------------------------- */

.section--scroll {
  --bg-640: url("assets/images/responsive/bg/header-bg-640.webp");
  --bg-828: url("assets/images/responsive/bg/header-bg-828.webp");
  --bg-1200: url("assets/images/responsive/bg/header-bg-1200.webp");
  --bg-1920: url("assets/images/responsive/bg/header-bg-1920.webp");
  --bg-3840: url("assets/images/responsive/bg/header-bg-3840.webp");

  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--frame-bg);
}

/* Construction photo — full bleed */
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section__bg picture,
.section__bg-img {
  display: block;
  width: 100%;
  height: 100%;
}

.section__bg-img {
  object-fit: cover;
  object-position: center;
}

/* Semi-transparent gray overlay (reference slide look) */
.section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--section-overlay);
}

/* Content layer */
.section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: clamp(0.85rem, 2vw, 1.5rem);
}

/* Horizontal logo — top-left, transparent PNG/WebP */
.section__logo {
  display: block;
  width: min(58vw, 380px);
  height: auto;
  max-height: clamp(3.5rem, 14vh, 6.25rem);
  object-fit: contain;
  object-position: left top;
  flex-shrink: 0;
  background: transparent;
  border: none;
}

@media (min-width: 901px) {
  .section__logo {
    width: min(42vw, 480px);
    max-height: clamp(4rem, 16vh, 7.25rem);
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section__logo {
    width: min(78vw, 320px);
    max-height: 5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 2 — Introduction                                                 */
/* -------------------------------------------------------------------------- */

.section--intro .section__inner {
  position: relative;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
}

.intro {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 2.8vw, 2.25rem);
  align-items: center;
  min-height: 0;
  margin-top: clamp(0.35rem, 1.5vh, 1rem);
}

.intro__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  height: 100%;
}

.intro__photo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: cover;
  object-position: center top;
  border-radius: clamp(18px, 2.5vw, 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.intro__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  min-width: 0;
}

.intro__title {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro__title::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 12vw, 5.5rem);
  height: 3px;
  margin-top: 0.45rem;
  background: var(--gold);
  border-radius: 2px;
}

.intro__panel {
  display: flex;
  gap: clamp(0.65rem, 1.2vw, 0.9rem);
  padding: clamp(0.9rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.5rem);
  border-radius: clamp(14px, 2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.intro__dots {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.35rem;
  flex-shrink: 0;
}

.intro__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.intro__text {
  min-width: 0;
}

.intro__text p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
}

.intro__text p:last-child {
  margin-bottom: 0;
}

/* Slide pager — bottom right */
.section__pager {
  position: absolute;
  right: clamp(0.85rem, 2vw, 1.5rem);
  bottom: clamp(0.85rem, 2vh, 1.35rem);
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 5.5rem;
  height: 2.65rem;
  padding-left: 1.1rem;
  padding-right: 0.2rem;
  border-radius: 999px;
  background: rgba(48, 48, 48, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.section__pager-track {
  flex: 1;
  height: 1px;
  margin-right: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
}

.section__pager-num {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1100px) {
  .intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
  }

  .intro__photo {
    max-height: min(62vh, 520px);
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .intro {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .intro__media {
    order: 1;
  }

  .intro__photo {
    max-width: min(88vw, 380px);
    max-height: min(42vh, 420px);
    margin: 0 auto;
  }

  .intro__content {
    order: 2;
  }

  .intro__title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .intro__panel {
    flex-direction: row;
  }

  .section--intro .section__inner {
    padding-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .intro__text p {
    font-size: 0.7rem;
    line-height: 1.55;
  }

  .intro__photo {
    border-radius: 16px;
    max-height: 38vh;
  }

  .section__pager {
    min-width: 4.75rem;
    height: 2.35rem;
    padding-left: 0.85rem;
  }

  .section__pager-num {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 3 — Company background                                             */
/* -------------------------------------------------------------------------- */

.section--company-bg .section__inner {
  position: relative;
  display: block;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
}

.section--company-bg .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

/* Top-left — About card (below logo, taller, more gap to detail image) */
.company-bg__card {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: 2.5%;
  width: 35%;
  min-height: 36%;
  max-height: 50%;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: clamp(1rem, 1.75vw, 1.4rem) clamp(1.05rem, 2vw, 1.5rem);
  overflow: auto;
  border-radius: 16px;
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Top-right — main photo (~55% width) */
.company-bg__figure--main {
  position: absolute;
  z-index: 2;
  top: 13%;
  left: 40%;
  width: 55%;
  height: 46%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  background: #3a3a3a;
}

/* Bottom-left — detail photo (~35% width) */
.company-bg__figure--detail {
  position: absolute;
  z-index: 2;
  top: 66%;
  left: 2.5%;
  width: 35%;
  height: 30%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  background: #3a3a3a;
}

.company-bg__figure picture {
  position: absolute;
  inset: 0;
  display: block;
}

.company-bg__figure .company-bg__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-bg__figure--main .company-bg__img {
  object-position: 55% 42%;
}

.company-bg__figure--detail .company-bg__img {
  object-position: center center;
}

.company-bg__dots {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.company-bg__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a017;
}

.company-bg__card-body {
  min-width: 0;
}

.company-bg__card-title {
  margin: 0 0 0.6rem;
  font-size: clamp(0.9rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
}

.company-bg__card-body p {
  margin: 0;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.9);
}

/* Bottom-right — COMPANY BACKGROUND title */
.company-bg__headline {
  position: absolute;
  z-index: 3;
  right: 2.5%;
  bottom: 11%;
  left: auto;
  width: 55%;
  margin: 0;
  padding: 0;
  text-align: right;
  pointer-events: none;
}

.company-bg__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.company-bg__title-word {
  display: block;
}

.company-bg__title-word--accent::after {
  content: "";
  display: block;
  width: clamp(2.5rem, 28%, 4.5rem);
  height: 3px;
  margin-top: 0.25rem;
  margin-left: auto;
  background: #d4a017;
  border-radius: 2px;
}

/* Mobile — full-width stack, no slide container */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--company-bg.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--company-bg .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.35rem, 5vw, 1.85rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--company-bg .section__logo {
    position: static;
    order: 1;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .company-bg__card {
    position: static;
    order: 2;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
    margin-inline: auto;
    padding: clamp(0.9rem, 2vw, 1.25rem) clamp(1rem, 2.2vw, 1.35rem);
    box-sizing: border-box;
  }

  /* Figures as normal full-width cards */
  .company-bg__figure {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
  }

  .company-bg__figure picture {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 0;
  }

  .company-bg__figure .company-bg__img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    vertical-align: top;
  }

  .company-bg__figure--main {
    order: 3;
    max-height: none;
  }

  .company-bg__figure--main .company-bg__img {
    width: 100%;
    max-width: 100%;
    max-height: min(48vh, 420px);
    aspect-ratio: 1024 / 771;
    object-fit: cover;
    border-radius: 0;
  }

  .company-bg__headline {
    position: static;
    order: 4;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    pointer-events: auto;
  }

  .company-bg__figure--detail {
    order: 5;
    max-height: none;
  }

  .company-bg__figure--detail .company-bg__img {
    width: 100%;
    max-width: 100%;
    max-height: min(44vh, 400px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
  }

  .section--company-bg .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }

  .company-bg__title {
    align-items: center;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .company-bg__title-word--accent::after {
    margin-inline: auto;
  }

  .company-bg__card-title {
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  }

  .company-bg__card-body p {
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }
}

/* Narrow landscape phones — same card stack, no bg-style images */
@media (max-width: 900px) and (orientation: landscape) {
  .section--company-bg .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 4.5rem;
    box-sizing: border-box;
  }

  .section--company-bg .section__logo,
  .company-bg__card,
  .company-bg__figure,
  .company-bg__headline {
    position: static;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    margin-inline: auto;
  }

  .company-bg__figure picture,
  .company-bg__figure .company-bg__img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-inline: auto;
  }

  .company-bg__figure--main .company-bg__img {
    aspect-ratio: 16 / 10;
    max-height: 38vh;
    object-fit: cover;
  }

  .company-bg__figure--detail .company-bg__img {
    aspect-ratio: 4 / 5;
    max-height: 36vh;
    object-fit: cover;
  }

  .company-bg__title {
    align-items: center;
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .company-bg__title-word--accent::after {
    margin-inline: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 4 — Vision & mission (same quadrant layout as section 3)           */
/* -------------------------------------------------------------------------- */

.section--vision-mission .section__inner {
  position: relative;
  display: block;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
}

.section--vision-mission .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.vm__card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: clamp(1rem, 1.75vw, 1.4rem) clamp(1.05rem, 2vw, 1.5rem);
  overflow: auto;
  border-radius: 16px;
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.vm__card--vision {
  top: 20%;
  left: 2.5%;
  width: 35%;
  min-height: 34%;
  max-height: 48%;
}

.vm__card--mission {
  top: 61%;
  left: 40%;
  width: 55%;
  min-height: 28%;
  max-height: 34%;
}

.vm__figure {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  background: #3a3a3a;
}

.vm__figure--building {
  top: 13%;
  left: 40%;
  width: 55%;
  height: 42%;
}

.vm__figure--truck {
  top: 66%;
  left: 2.5%;
  width: 35%;
  height: 30%;
}

.vm__figure picture {
  position: absolute;
  inset: 0;
  display: block;
}

.vm__figure .vm__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm__figure--building .vm__img {
  object-position: center center;
}

.vm__figure--truck .vm__img {
  object-position: center 55%;
}

.vm__dots {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.vm__dots span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #d4a017;
}

.vm__card-body {
  min-width: 0;
}

.vm__card-title {
  margin: 0 0 0.6rem;
  font-size: clamp(0.9rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.vm__card-body p {
  margin: 0;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.9);
}

.vm__gold-line {
  position: absolute;
  z-index: 3;
  left: 40%;
  bottom: 8%;
  width: 55%;
  height: 3px;
  background: #d4a017;
  border-radius: 2px;
  pointer-events: none;
}

/* Mobile — stacked cards (logo → vision → building → truck → mission) */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--vision-mission.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--vision-mission .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.35rem, 5vw, 1.85rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--vision-mission .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
  }

  .vm__card,
  .vm__figure {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
    height: auto;
    margin-inline: auto;
  }

  .vm__figure picture {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 0;
  }

  .vm__figure .vm__img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .vm__figure--building .vm__img {
    aspect-ratio: 427 / 355;
    max-height: min(48vh, 420px);
  }

  .vm__figure--truck .vm__img {
    aspect-ratio: 782 / 213;
    max-height: min(32vh, 280px);
  }

  .vm__gold-line {
    position: static;
    order: 6;
    width: 100%;
    max-width: 100%;
    margin-top: -0.5rem;
  }

  .section--vision-mission .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }

  .vm__card-title {
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  }

  .vm__card-body p {
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--vision-mission .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 4.5rem;
    box-sizing: border-box;
  }

  .section--vision-mission .section__logo,
  .vm__card,
  .vm__figure,
  .vm__gold-line {
    position: static;
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-height: auto;
    max-height: none;
    height: auto;
  }

  .vm__figure picture,
  .vm__figure .vm__img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .vm__figure--building .vm__img {
    max-height: 38vh;
    object-fit: cover;
    aspect-ratio: 427 / 355;
  }

  .vm__figure--truck .vm__img {
    max-height: 28vh;
    object-fit: cover;
    aspect-ratio: 782 / 213;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 5 — Our services                                                   */
/* -------------------------------------------------------------------------- */

.section--services .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--services .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  margin-top: clamp(4.25rem, 11vh, 5.25rem);
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
  padding: 0;
  flex-shrink: 0;
}

.services__headline {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  min-width: 0;
}

.services__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.services__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.services__headline-white::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.services__tagline {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  flex-shrink: 0;
  max-width: min(38vw, 320px);
  margin: 0;
  padding: clamp(0.75rem, 1.4vw, 1rem) clamp(0.85rem, 1.6vw, 1.15rem);
  border-radius: 16px;
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.services__dots {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.services__dots span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #d4a017;
}

.services__tagline p {
  margin: 0;
  font-size: clamp(0.78rem, 1.15vw, 0.98rem);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.services__panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.15rem, 2.1vw, 1.75rem);
  border-radius: clamp(18px, 2.2vw, 24px);
  background: rgba(118, 118, 118, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.services__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  height: auto;
  overflow: hidden;
}

.services__item-title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.28;
  color: #d4a017;
  flex-shrink: 0;
}

.services__item-text {
  margin: 0 0 clamp(0.5rem, 0.9vw, 0.75rem);
  font-size: clamp(0.72rem, 0.98vw, 0.86rem);
  font-weight: 500;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

/* Square images — equal size per column (width drives 1:1 height) */
.services__figure {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #3a3a3a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
  contain: layout;
}

.services__figure picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.services__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.services__item:nth-child(1) .services__img {
  object-position: center 42%;
}

.services__item:nth-child(2) .services__img {
  object-position: center 35%;
}

.services__item:nth-child(3) .services__img {
  object-position: center center;
}

@media (max-width: 1100px) {
  .services__tagline {
    max-width: min(42vw, 280px);
  }

  .services__tagline p {
    font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  }
}

/* Portrait / tall phone — stacked cards (landscape rules below stay unchanged) */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--services.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--services .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--services .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .services__header {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
    gap: 1.15rem;
    flex-shrink: 0;
  }

  .services__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .services__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .services__tagline {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .services__tagline p {
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }

  .services__panel {
    flex: none;
    width: 100%;
    min-height: auto;
    overflow: visible;
    padding: clamp(1rem, 3vw, 1.35rem);
    container-type: normal;
  }

  .services__grid {
    display: flex;
    flex-direction: column;
    flex: none;
    min-height: auto;
    overflow: visible;
    gap: clamp(1.75rem, 6vw, 2.25rem);
  }

  .services__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
    gap: 0.35rem;
  }

  .services__item + .services__item {
    padding-top: clamp(1.5rem, 5vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .services__item-title {
    margin: 0 0 0.5rem;
    font-size: clamp(0.92rem, 4vw, 1.08rem);
  }

  .services__item-text {
    margin: 0 0 1rem;
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
    line-height: 1.55;
  }

  .services__figure {
    position: relative;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 0;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }

  .services__figure picture {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
  }

  .services__img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
  }

  .section--services .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--services .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .services__panel {
    overflow: hidden;
    justify-content: flex-start;
  }

  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    flex: 0 0 auto;
    min-height: auto;
    align-items: start;
    row-gap: 0;
    column-gap: 0.85rem;
    overflow: visible;
  }

  .services__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    overflow: visible;
  }

  .services__item-title {
    grid-row: 1;
    margin-bottom: 0.4rem;
  }

  .services__item-text {
    grid-row: 2;
  }

  .services__figure {
    grid-row: 3;
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: none;
    overflow: hidden;
    border-radius: 16px;
  }

  .services__header {
    margin-top: clamp(3.5rem, 10vh, 4.5rem);
  }

  .services__panel {
    min-height: auto;
    padding: 0.85rem;
  }

  .services__item-text {
    margin-bottom: 0.5rem;
  }
}

/* Laptop / desktop — aligned rows, identical square images */
@media (min-width: 901px) {
  .section--services .section__inner {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .services__panel {
    justify-content: flex-start;
    overflow: hidden;
    border-radius: clamp(18px, 2.2vw, 24px);
    isolation: isolate;
  }

  .services__grid {
    grid-template-rows: auto auto auto;
    flex: 0 0 auto;
    min-height: auto;
    row-gap: 0;
    column-gap: clamp(1rem, 2vw, 1.5rem);
    overflow: visible;
  }

  .services__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    overflow: visible;
  }

  .services__item-title {
    grid-row: 1;
    align-self: start;
    margin: 0 0 0.55rem;
  }

  .services__item-text {
    grid-row: 2;
    align-self: start;
    margin: 0 0 clamp(0.55rem, 0.85vw, 0.7rem);
  }

  .services__figure {
    grid-row: 3;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
  }
}

@supports not (grid-template-rows: subgrid) {
  @media (min-width: 901px) {
    .services__figure {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
    }
  }
}

/* -------------------------------------------------------------------------- */
/* Section 6 — Construction project lifecycle (slide 5)                       */
/* -------------------------------------------------------------------------- */

.section--lifecycle .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--lifecycle .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.lifecycle {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
  min-height: 0;
  margin-top: clamp(4rem, 10.5vh, 5.25rem);
}

.lifecycle__main {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  min-width: 0;
  min-height: 0;
}

.lifecycle__headline {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  flex-shrink: 0;
}

.lifecycle__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.lifecycle__headline-gold::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.lifecycle__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.lifecycle__panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.45rem) clamp(1.05rem, 2.1vw, 1.55rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lifecycle__timeline {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0.15rem 1.65rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.lifecycle__timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  background: #d4a017;
  border-radius: 1px;
}

.lifecycle__step {
  display: grid;
  grid-template-columns: minmax(6.75rem, 38%) minmax(0, 1fr);
  gap: 0.5rem clamp(0.65rem, 1.2vw, 1rem);
  align-items: start;
  position: relative;
}

.lifecycle__step::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.38rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4a017;
  box-shadow: 0 0 0 3px rgba(55, 55, 55, 0.72);
  z-index: 1;
}

.lifecycle__step-title {
  margin: 0;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.lifecycle__step-text {
  margin: 0;
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.lifecycle__figure {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2.8vw, 36px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.lifecycle__figure picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  line-height: 0;
}

.lifecycle__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: clamp(20px, 2.8vw, 36px);
}

/* Laptop / large screens — larger timeline copy inside the card */
@media (min-width: 901px) {
  .lifecycle__panel {
    padding: clamp(1.25rem, 2.4vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
    justify-content: center;
  }

  .lifecycle__timeline {
    flex: 1;
    justify-content: space-between;
    gap: clamp(1rem, 2.4vh, 1.65rem);
    padding: 0.35rem 0 0.35rem 1.85rem;
  }

  .lifecycle__step {
    grid-template-columns: minmax(7.5rem, 42%) minmax(0, 1fr);
    gap: 0.55rem clamp(0.85rem, 1.5vw, 1.25rem);
  }

  .lifecycle__step::before {
    left: -1.85rem;
    top: 0.42rem;
    width: 10px;
    height: 10px;
  }

  .lifecycle__step-title {
    font-size: clamp(0.92rem, 1.35vw, 1.1rem);
    line-height: 1.32;
  }

  .lifecycle__step-text {
    font-size: clamp(0.84rem, 1.15vw, 1.02rem);
    line-height: 1.58;
  }
}

@media (min-width: 1200px) {
  .lifecycle__panel {
    padding: clamp(1.45rem, 2.6vw, 2.1rem) clamp(1.4rem, 2.8vw, 2rem);
  }

  .lifecycle__timeline {
    gap: clamp(1.2rem, 3vh, 2.1rem);
    padding-left: 2rem;
  }

  .lifecycle__step {
    grid-template-columns: minmax(8.25rem, 44%) minmax(0, 1fr);
    gap: 0.6rem clamp(1rem, 1.8vw, 1.4rem);
  }

  .lifecycle__step::before {
    left: -2rem;
    width: 11px;
    height: 11px;
  }

  .lifecycle__step-title {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.34;
  }

  .lifecycle__step-text {
    font-size: clamp(0.92rem, 1vw, 1.1rem);
    line-height: 1.6;
  }
}

@media (min-width: 1600px) {
  .lifecycle__step-title {
    font-size: 1.22rem;
  }

  .lifecycle__step-text {
    font-size: 1.12rem;
    line-height: 1.62;
  }

  .lifecycle__timeline {
    gap: 2.15rem;
  }
}

/* Portrait — stacked layout */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--lifecycle.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--lifecycle .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--lifecycle .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .lifecycle {
    display: flex;
    flex-direction: column;
    gap: clamp(1.15rem, 4vw, 1.65rem);
    margin-top: 0;
    flex: none;
  }

  .lifecycle__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .lifecycle__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .lifecycle__panel {
    flex: none;
    overflow: visible;
  }

  .lifecycle__step {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .lifecycle__figure {
    width: 100%;
    max-width: min(100%, 420px);
    height: auto;
    margin-inline: auto;
  }

  .lifecycle__img {
    width: 100%;
    height: auto;
    max-height: min(48vh, 420px);
    aspect-ratio: 591 / 900;
    object-fit: cover;
  }

  .section--lifecycle .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--lifecycle .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .lifecycle {
    margin-top: clamp(3.25rem, 9vh, 4.25rem);
    gap: 0.85rem;
  }

  .lifecycle__panel {
    padding: 0.85rem 1rem;
  }

  .lifecycle__step {
    grid-template-columns: minmax(5.5rem, 34%) 1fr;
    gap: 0.35rem 0.65rem;
  }

  .lifecycle__img {
    max-height: min(62vh, 520px);
  }
}

/* -------------------------------------------------------------------------- */
/* Section 7 — Our values (slide 6)                                           */
/* -------------------------------------------------------------------------- */

.section--values .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--values .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.values {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin-top: clamp(4rem, 10.5vh, 5.25rem);
}

.values__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  min-height: 0;
}

.values__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.values__col--media {
  gap: 0;
  align-self: start;
  padding-top: clamp(1.5rem, 4vh, 2.75rem);
}

.values__headline {
  margin: clamp(1.5rem, 3.5vh, 2.5rem) 0 0;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
  flex-shrink: 0;
}

.values__headline::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: clamp(0.9rem, 2.2vh, 1.5rem);
  background: #d4a017;
  border-radius: 2px;
}

.values__col--content {
  gap: clamp(1.15rem, 2.5vw, 2rem);
  height: 100%;
  min-height: 0;
}

.values__figure {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2.8vw, 36px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.values__figure picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.values__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(36vh, 320px);
  aspect-ratio: 660 / 900;
  object-fit: cover;
  object-position: center 35%;
  border-radius: clamp(20px, 2.8vw, 36px);
}

.values__panel {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  min-height: min(48vh, 420px);
  padding: clamp(1.25rem, 2.4vw, 2rem) clamp(1.15rem, 2.4vw, 1.85rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: clamp(1rem, 2.2vh, 1.65rem) clamp(1.1rem, 2.2vw, 1.65rem);
  align-content: space-between;
  height: 100%;
  min-height: 100%;
}

.values__item-title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.3;
  color: #d4a017;
}

.values__item-text {
  margin: 0;
  font-size: clamp(0.76rem, 1.05vw, 0.92rem);
  font-weight: 500;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
}

.values__tagline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: clamp(0.7rem, 1.3vw, 0.95rem) clamp(0.9rem, 1.6vw, 1.2rem);
  border-radius: 999px;
  background: rgba(118, 118, 118, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
  box-sizing: border-box;
}

.values__dots {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.values__dots span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #d4a017;
}

.values__tagline p {
  margin: 0;
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .values__layout {
    gap: clamp(2.25rem, 4.5vw, 4rem);
  }

  .values__col--content {
    align-self: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .values__col--media {
    padding-top: clamp(2.75rem, 8vh, 5.5rem);
  }

  .values__headline {
    margin-top: clamp(2.25rem, 5.5vh, 4rem);
  }

  .values__headline::after {
    margin-top: clamp(1.35rem, 3.2vh, 2.5rem);
  }

  .values__img {
    max-height: min(34vh, 300px);
  }

  .values__panel {
    min-height: min(58vh, 540px);
    padding: clamp(1.65rem, 3vw, 2.35rem) clamp(1.45rem, 2.8vw, 2.1rem);
  }

  .values__grid {
    gap: clamp(1.35rem, 3.2vh, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  }

  .values__item-title {
    font-size: clamp(1.02rem, 1.4vw, 1.22rem);
    margin-bottom: 0.6rem;
  }

  .values__item-text {
    font-size: clamp(0.88rem, 1.15vw, 1.05rem);
    line-height: 1.62;
  }
}

@media (min-width: 1200px) {
  .values__col--media {
    padding-top: clamp(3.25rem, 9vh, 6rem);
  }

  .values__headline {
    margin-top: clamp(2.75rem, 6vh, 4.5rem);
  }

  .values__headline::after {
    margin-top: clamp(1.5rem, 3.5vh, 2.75rem);
  }

  .values__img {
    max-height: min(38vh, 340px);
  }

  .values__panel {
    min-height: min(62vh, 580px);
    padding: clamp(1.85rem, 3.2vw, 2.5rem) clamp(1.65rem, 3vw, 2.35rem);
  }

  .values__item-title {
    font-size: 1.28rem;
    margin-bottom: 0.65rem;
  }

  .values__item-text {
    font-size: 1.1rem;
    line-height: 1.65;
  }

  .values__tagline p {
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--values.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--values .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--values .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .values {
    margin-top: 0;
    flex: none;
    gap: clamp(1.15rem, 4vw, 1.65rem);
  }

  .values__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 4vw, 1.35rem);
  }

  .values__col--media {
    width: 100%;
    padding-top: clamp(0.5rem, 2vh, 1rem);
  }

  .values__headline {
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
  }

  .values__headline::after {
    margin-top: clamp(0.75rem, 2.5vw, 1.15rem);
  }

  .values__figure {
    width: 100%;
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .values__img {
    max-height: min(40vh, 360px);
    width: 100%;
    height: auto;
  }

  .values__headline {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
    max-width: min(100%, 420px);
    margin-inline: auto;
    width: 100%;
  }

  .values__col--content {
    width: 100%;
    height: auto;
    gap: clamp(1rem, 4vw, 1.35rem);
  }

  .values__panel {
    min-height: auto;
    padding: clamp(1rem, 3vw, 1.35rem);
  }

  .values__grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    align-content: start;
    gap: clamp(1rem, 4vw, 1.25rem);
  }

  .values__layout {
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .values__tagline {
    width: 100%;
    border-radius: 16px;
    white-space: normal;
  }

  .values__tagline p {
    white-space: normal;
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }

  .section--values .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--values .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .values {
    margin-top: clamp(3.25rem, 9vh, 4.25rem);
  }

  .values__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 0.85rem;
  }

  .values__img {
    max-height: min(32vh, 260px);
  }

  .values__panel {
    padding: 0.85rem 1rem;
  }

  .values__grid {
    gap: 0.65rem 0.85rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 8 — Our services catalog (slide 7)                                 */
/* -------------------------------------------------------------------------- */

.section--services-catalog .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--services-catalog .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.svc-cat__header {
  flex-shrink: 0;
  margin: clamp(4rem, 10.5vh, 5.25rem) 0 clamp(1rem, 2.2vw, 1.5rem);
  padding: 0;
}

.svc-cat__title {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.svc-cat__title::after {
  content: "";
  display: block;
  width: min(72vw, 100%);
  max-width: 100%;
  height: 3px;
  margin-top: 0.4rem;
  background: #d4a017;
  border-radius: 2px;
}

.svc-cat__grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
  align-items: end;
  min-height: 0;
}

.svc-cat__list-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.15rem, 2.2vw, 1.75rem) clamp(1rem, 2vw, 1.45rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.svc-cat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: clamp(0.55rem, 1.4vh, 0.95rem);
}

.svc-cat__list li {
  font-size: clamp(0.82rem, 1.15vw, 1.02rem);
  font-weight: 700;
  line-height: 1.3;
  color: #d4a017;
}

.svc-cat__figure {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.svc-cat__figure picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.svc-cat__figure--workers {
  align-self: end;
  width: 100%;
  max-height: min(68vh, 620px);
}

.svc-cat__figure--workers .svc-cat__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 620px);
  aspect-ratio: 637 / 1024;
  object-fit: cover;
  object-position: center center;
  border-radius: clamp(18px, 2.5vw, 32px);
}

.svc-cat__ops {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  min-width: 0;
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.45rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.svc-cat__ops-copy {
  flex-shrink: 0;
}

.svc-cat__ops-title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.28;
  color: #d4a017;
}

.svc-cat__ops-text {
  margin: 0;
  font-size: clamp(0.68rem, 0.95vw, 0.84rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.svc-cat__figure--excavator {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.svc-cat__figure--excavator .svc-cat__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(120px, 18vh, 200px);
  max-height: min(28vh, 220px);
  object-fit: cover;
  object-position: center center;
  border-radius: clamp(14px, 2vw, 20px);
}

@media (min-width: 901px) {
  .svc-cat__list li {
    font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  }

  .svc-cat__ops-title {
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  }

  .svc-cat__ops-text {
    font-size: clamp(0.76rem, 1vw, 0.92rem);
  }

  .svc-cat__figure--excavator .svc-cat__img {
    max-height: min(32vh, 240px);
  }
}

@media (min-width: 1200px) {
  .svc-cat__list li {
    font-size: 1.12rem;
  }

  .svc-cat__ops-title {
    font-size: 1.15rem;
  }

  .svc-cat__ops-text {
    font-size: 0.94rem;
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--services-catalog.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--services-catalog .section__inner {
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--services-catalog .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
  }

  .svc-cat__header {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .svc-cat__title {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .svc-cat__title::after {
    width: 100%;
  }

  .svc-cat__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 4vw, 1.35rem);
    flex: none;
    align-items: stretch;
  }

  .svc-cat__list-panel {
    align-self: auto;
  }

  .svc-cat__list {
    gap: 0.65rem;
    justify-content: flex-start;
  }

  .svc-cat__figure--workers {
    max-width: min(100%, 420px);
    margin-inline: auto;
    max-height: min(48vh, 420px);
  }

  .svc-cat__figure--workers .svc-cat__img {
    max-height: min(48vh, 420px);
  }

  .section--services-catalog .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--services-catalog .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .svc-cat__header {
    margin-top: clamp(3.25rem, 9vh, 4.25rem);
  }

  .svc-cat__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.65fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .svc-cat__list-panel,
  .svc-cat__ops {
    padding: 0.85rem 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section — Safety in construction (slide 8)                                 */
/* -------------------------------------------------------------------------- */

.section--safety .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding: clamp(0.85rem, 2vw, 1.5rem);
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.safety {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
  min-height: 0;
  margin-top: clamp(0.35rem, 1.5vh, 1rem);
}

.safety__figure {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2.8vw, 36px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.safety__figure picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  line-height: 0;
}

.safety__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: clamp(20px, 2.8vw, 36px);
}

.safety__logo {
  position: absolute;
  z-index: 2;
  top: clamp(0.85rem, 2vw, 1.35rem);
  left: clamp(0.85rem, 2vw, 1.35rem);
  width: min(42vw, 380px);
  height: auto;
  max-height: clamp(3.5rem, 14vh, 6.25rem);
  object-fit: contain;
  object-position: left top;
  background: transparent;
  border: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.safety__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  min-width: 0;
  min-height: 0;
  padding-top: clamp(3.5rem, 9vh, 4.75rem);
}

.safety__headline {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  flex-shrink: 0;
}

.safety__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.safety__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.safety__headline-white::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.safety__panel {
  flex: 1 1 auto;
  display: flex;
  gap: clamp(0.65rem, 1.2vw, 0.9rem);
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.45rem) clamp(1.05rem, 2.1vw, 1.55rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.safety__dots {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.35rem;
  flex-shrink: 0;
}

.safety__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a017;
}

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

.safety__panel-title {
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1.32;
  color: #d4a017;
}

.safety__panel-text {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 500;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 901px) {
  .safety__panel {
    padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.35rem, 2.8vw, 2rem);
  }

  .safety__panel-title {
    font-size: clamp(1.08rem, 1.55vw, 1.35rem);
    margin-bottom: clamp(0.85rem, 1.8vw, 1.15rem);
    line-height: 1.34;
  }

  .safety__panel-text {
    font-size: clamp(0.92rem, 1.25vw, 1.1rem);
    line-height: 1.68;
  }
}

@media (min-width: 1200px) {
  .safety__panel-title {
    font-size: 1.42rem;
    margin-bottom: 1.2rem;
  }

  .safety__panel-text {
    font-size: 1.14rem;
    line-height: 1.72;
  }
}

@media (min-width: 1600px) {
  .safety__panel-title {
    font-size: 1.5rem;
  }

  .safety__panel-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--safety.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--safety .section__inner {
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5.5rem;
  }

  .safety {
    display: flex;
    flex-direction: column;
    gap: clamp(1.15rem, 4vw, 1.65rem);
    margin-top: 0;
    flex: none;
  }

  .safety__figure {
    width: 100%;
    max-width: min(100%, 420px);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
    max-height: min(48vh, 420px);
  }

  .safety__img {
    min-height: 100%;
  }

  .safety__logo {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    width: min(78vw, 320px);
    max-height: 5rem;
  }

  .safety__content {
    padding-top: 0;
  }

  .safety__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .safety__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .safety__panel {
    flex: none;
  }

  .section--safety .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--safety .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .safety {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.85rem;
    margin-top: 0;
  }

  .safety__content {
    padding-top: clamp(2.5rem, 8vh, 3.5rem);
  }

  .safety__panel {
    padding: 0.85rem 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 9 — Sustainability in construction (slide 9)                         */
/* -------------------------------------------------------------------------- */

.section--sustainability .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--sustainability .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.sustain {
  --sustain-gap: clamp(0.65rem, 1.4vw, 1.1rem);
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) repeat(3, minmax(0, 1fr));
  column-gap: var(--sustain-gap);
  row-gap: clamp(0.85rem, 1.8vw, 1.25rem);
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  min-height: 0;
  margin-top: clamp(5.5rem, 14vh, 6.75rem);
}

.sustain__header {
  display: contents;
}

.sustain__headline {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  min-width: 0;
  align-self: start;
  padding-top: clamp(0.5rem, 1.5vh, 1rem);
}

.sustain__headline-gold,
.sustain__headline-white {
  display: block;
}

.sustain__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.sustain__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.sustain__headline-white::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.sustain__intro {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  box-sizing: border-box;
  width: calc(
    (1.5 / 3.82) * (100% - 3 * var(--sustain-gap)) + var(--sustain-gap) * 0.5
  );
  min-height: clamp(5.5rem, 13vh, 8.25rem);
  margin: 0;
  padding: clamp(1.1rem, 2.1vw, 1.75rem) clamp(1.15rem, 2vw, 1.5rem);
  border-radius: clamp(16px, 2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
}

.sustain__intro p {
  margin: 0;
  font-size: clamp(0.8rem, 1.12vw, 0.98rem);
  font-weight: 500;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
}

.sustain__grid {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) repeat(3, minmax(0, 1fr));
  column-gap: var(--sustain-gap);
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

@supports (grid-template-columns: subgrid) {
  .sustain__grid {
    grid-template-columns: subgrid;
  }
}

.sustain__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  align-self: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(1rem, 1.8vw, 1.35rem) clamp(0.85rem, 1.5vw, 1.15rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sustain__dots {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sustain__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a017;
}

.sustain__aside-title {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.sustain__card {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 0.9vw, 0.65rem);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.sustain__figure {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(14px, 1.8vw, 18px);
  background: #3a3a3a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
  contain: layout;
}

.sustain__figure picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.sustain__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(14px, 1.8vw, 18px);
}

.sustain__card:nth-child(2) .sustain__img {
  object-position: center 45%;
}

.sustain__card:nth-child(3) .sustain__img {
  object-position: center 40%;
}

.sustain__card:nth-child(4) .sustain__img {
  object-position: center 35%;
}

.sustain__card-body {
  flex: 0 0 auto;
  padding: clamp(0.75rem, 1.3vw, 1rem) clamp(0.8rem, 1.4vw, 1.05rem);
  border-radius: clamp(14px, 1.8vw, 18px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sustain__card-title {
  margin: 0 0 0.4rem;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 700;
  line-height: 1.28;
  color: #d4a017;
}

.sustain__card-text {
  margin: 0;
  font-size: clamp(0.7rem, 0.95vw, 0.84rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1200px) {
  .sustain__intro {
    min-height: 8.5rem;
    padding: 1.75rem 1.55rem;
  }

  .sustain__intro p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .sustain__aside-title {
    font-size: 1.05rem;
  }

  .sustain__card-title {
    font-size: 1.05rem;
  }

  .sustain__card-text {
    font-size: 0.88rem;
  }
}

@media (max-width: 1100px) {
  .sustain__intro p {
    font-size: clamp(0.72rem, 1.2vw, 0.86rem);
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--sustainability.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--sustainability .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--sustainability .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .sustain {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: clamp(1rem, 4vw, 1.5rem);
  }

  .sustain__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    flex-shrink: 0;
  }

  .sustain__headline {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    padding-top: clamp(0.35rem, 2vw, 0.75rem);
  }

  .sustain__headline-white {
    white-space: nowrap;
  }

  .sustain__intro {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    min-height: clamp(4.5rem, 18vw, 6.5rem);
  }

  .sustain__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .sustain__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .sustain__intro p {
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  }

  .sustain__grid {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    flex: none;
    min-height: auto;
    overflow: visible;
    gap: clamp(1.25rem, 5vw, 1.75rem);
    align-items: stretch;
  }

  .sustain__aside {
    align-self: stretch;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.9rem, 3vw, 1.15rem) clamp(1rem, 3.5vw, 1.25rem);
  }

  .sustain__aside-title {
    font-size: clamp(0.88rem, 3.8vw, 1.02rem);
  }

  .sustain__card {
    gap: 0.65rem;
  }

  .sustain__card + .sustain__card {
    padding-top: clamp(0.5rem, 2vw, 0.85rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sustain__figure {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: min(42vh, 360px);
  }

  .sustain__figure picture {
    position: absolute;
    inset: 0;
  }

  .sustain__card-title {
    font-size: clamp(0.92rem, 4vw, 1.05rem);
  }

  .sustain__card-text {
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  .section--sustainability .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--sustainability .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .sustain {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) repeat(3, minmax(0, 1fr));
    margin-top: clamp(4.75rem, 12vh, 5.75rem);
  }

  .sustain__header {
    display: contents;
  }

  .sustain__intro {
    justify-self: end;
    width: calc(
      (1.5 / 3.52) * (100% - 3 * var(--sustain-gap)) + var(--sustain-gap) * 0.5
    );
    min-height: clamp(4.25rem, 16vh, 5.75rem);
  }

  .sustain__grid {
    grid-template-columns: minmax(0, 0.75fr) repeat(3, minmax(0, 1fr));
    column-gap: var(--sustain-gap);
  }

  .sustain__figure {
    aspect-ratio: 3 / 2;
  }

  .sustain__card-body {
    padding: 0.65rem 0.75rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive tweaks                                                          */
/* -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .hero__line {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Phone / portrait — dedicated professional layout                           */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .hero__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__top {
    gap: 0.5rem;
  }

  .pill {
    padding: 0.55rem 0.9rem;
    font-size: 0.62rem;
    min-height: 2.15rem;
    letter-spacing: 0.12em;
  }

  .hero__logo {
    width: min(88vw, 380px);
    max-height: min(46vh, 380px);
  }

  .hero__brand {
    margin-top: 0;
    padding: 0.25rem 0 0.5rem;
  }

  /* Stacked contact card — full text, centered, clear tap targets */
  .hero__contact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0 -1rem;
    padding: 0.9rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(45, 45, 45, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .contact-item {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.85rem 1.15rem;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(45, 45, 45, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .contact-item span {
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
  }

  .contact-item__icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  a.contact-item:active {
    background: rgba(184, 145, 42, 0.08);
    border-color: rgba(184, 145, 42, 0.3);
  }
}

@media (max-width: 480px) {
  .pill {
    padding: 0.5rem 0.75rem;
    font-size: 0.58rem;
  }

  .contact-item {
    font-size: 0.76rem;
    min-height: 3.15rem;
    padding: 0.8rem 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Section 11 — Let's build the future together (slide 11)                      */
/* -------------------------------------------------------------------------- */

.section--cta .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--cta .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.cta {
  --cta-gap: clamp(0.75rem, 1.5vw, 1.15rem);
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.28fr) minmax(0, 0.36fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  grid-template-areas:
    "headline headline building"
    "card worker building"
    "accent worker building"
    "contact contact contact";
  gap: var(--cta-gap);
  align-content: stretch;
  min-height: 0;
  margin-top: clamp(5.5rem, 14vh, 6.75rem);
}

.cta__headline {
  grid-area: headline;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  align-self: start;
  min-width: 0;
  padding-top: clamp(0.35rem, 1vh, 0.65rem);
}

.cta__headline-gold,
.cta__headline-white {
  display: block;
}

.cta__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.cta__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.cta__headline-white::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.cta__card {
  grid-area: card;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.2vw, 0.9rem);
  align-self: start;
  margin: 0;
  padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1rem, 1.8vw, 1.25rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta__dots {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.cta__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a017;
}

.cta__card-text {
  margin: 0;
  min-width: 0;
  font-size: clamp(0.95rem, 1.45vw, 1.22rem);
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
}

.cta__accent {
  grid-area: accent;
  display: flex;
  align-items: center;
  align-self: start;
  min-width: 5.5rem;
  height: 2.65rem;
  padding-left: 0.2rem;
  padding-right: 1.1rem;
  border-radius: 999px;
  background: rgba(48, 48, 48, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cta__accent-dot {
  display: block;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #d4a017;
}

.cta__accent-track {
  flex: 1;
  height: 1px;
  margin-left: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
}

.cta__figure {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #3a3a3a;
}

.cta__figure picture {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.cta__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(18px, 2.5vw, 32px);
}

.cta__figure--worker {
  grid-area: worker;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  max-height: min(50vh, 460px);
  min-height: min(36vh, 320px);
}

.cta__figure--worker .cta__img {
  object-position: center 35%;
}

.cta__figure--building {
  grid-area: building;
  grid-row: 1 / 4;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  min-height: min(62vh, 560px);
  max-height: min(82vh, 700px);
  margin-top: clamp(-0.25rem, -0.8vh, 0);
}

.cta__figure--building .cta__img {
  object-position: center 22%;
  filter: grayscale(100%);
}

.cta__contact {
  grid-area: contact;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.5rem, 1.2vw, 0.85rem);
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta__contact .contact-item {
  min-height: clamp(3.15rem, 8vh, 3.75rem);
  padding: 0.85rem 0.95rem;
  border-radius: 999px;
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  font-size: clamp(0.76rem, 1.1vw, 0.92rem);
  font-weight: 700;
  color: #d4a017;
}

.cta__contact a.contact-item:hover {
  color: #fff;
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.cta__contact .contact-item__icon {
  color: #d4a017;
}

.cta__contact a.contact-item:hover .contact-item__icon {
  color: #fff;
}

@media (min-width: 1200px) {
  .cta__card-text {
    font-size: 1.2rem;
    line-height: 1.38;
  }

  .cta__contact .contact-item {
    font-size: 0.94rem;
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--cta.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--cta .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--cta .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .cta {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: clamp(1rem, 4vw, 1.35rem);
    flex: none;
    grid-template-areas: none;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .cta__headline {
    padding-top: 0;
  }

  .cta__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .cta__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .cta__card {
    width: 100%;
    box-sizing: border-box;
  }

  .cta__card-text {
    font-size: clamp(0.95rem, 4.2vw, 1.12rem);
  }

  .cta__accent {
    align-self: flex-start;
  }

  .cta__figure--worker,
  .cta__figure--building {
    width: 100%;
    max-width: min(100%, 420px);
    margin-inline: auto;
    height: auto;
    min-height: auto;
    max-height: min(44vh, 380px);
    aspect-ratio: 3 / 4;
  }

  .cta__figure--building {
    margin-top: 0;
    max-height: min(56vh, 500px);
    aspect-ratio: 3 / 4.5;
  }

  .cta__contact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
  }

  .cta__contact .contact-item {
    width: 100%;
    min-height: 3.35rem;
    justify-content: center;
    font-size: clamp(0.78rem, 3.4vw, 0.88rem);
  }

  .section--cta .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--cta .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .cta {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.26fr) minmax(0, 0.4fr);
    margin-top: clamp(4.5rem, 12vh, 5.5rem);
  }

  .cta__figure--worker {
    max-height: min(40vh, 300px);
  }

  .cta__figure--building {
    grid-row: auto;
    max-height: min(56vh, 420px);
    min-height: min(48vh, 360px);
  }

  .cta__contact .contact-item {
    min-height: 2.85rem;
    font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  }
}

/* -------------------------------------------------------------------------- */
/* Section 10 — Emerging technologies (slide 10)                                */
/* -------------------------------------------------------------------------- */

.section--emerging .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding-bottom: clamp(3.5rem, 8vh, 4.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.section--emerging .section__logo {
  position: absolute;
  z-index: 4;
  top: clamp(0.85rem, 2vw, 1.5rem);
  left: clamp(0.85rem, 2vw, 1.5rem);
}

.emerging {
  --emerging-gap: clamp(0.75rem, 1.5vw, 1.15rem);
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.24fr) minmax(0, 0.36fr) minmax(0, 0.4fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "tagline plans printer"
    "panel panel printer"
    ". . headline";
  gap: var(--emerging-gap);
  align-content: stretch;
  min-height: 0;
  margin-top: clamp(5.5rem, 14vh, 6.75rem);
}

.emerging__tagline {
  grid-area: tagline;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  max-width: min(100%, 11.5rem);
  margin: 0;
  padding: clamp(0.95rem, 1.65vw, 1.35rem) clamp(0.85rem, 1.4vw, 1rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  align-self: start;
  justify-self: start;
}

.emerging__dots {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  flex-shrink: 0;
}

.emerging__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a017;
}

.emerging__tagline-text {
  margin: 0;
  font-size: clamp(0.92rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.38;
  color: #fff;
}

.emerging__figure {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #3a3a3a;
}

.emerging__figure picture {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.emerging__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(18px, 2.5vw, 32px);
}

.emerging__figure--plans {
  grid-area: plans;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  height: min(46vh, 420px);
  min-height: min(40vh, 360px);
  aspect-ratio: auto;
}

.emerging__figure--plans picture {
  height: 100%;
}

.emerging__figure--plans .emerging__img {
  object-position: center 42%;
}

.emerging__panel {
  grid-area: panel;
  display: flex;
  align-items: flex-start;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  min-height: clamp(8.5rem, 24vh, 12.5rem);
  padding: clamp(1.25rem, 2.2vw, 1.85rem) clamp(1.15rem, 2.1vw, 1.65rem);
  border-radius: clamp(16px, 2.2vw, 22px);
  background: rgba(55, 55, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.emerging__panel-text {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: clamp(0.72rem, 0.98vw, 0.88rem);
  font-weight: 500;
  line-height: 1.64;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: break-word;
}

.emerging__figure--printer {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.emerging__figure--printer .emerging__img {
  object-position: center 35%;
}

.emerging__headline {
  grid-area: headline;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  justify-self: end;
  align-self: end;
  min-width: 0;
  padding-bottom: 0.1rem;
}

.emerging__headline-gold,
.emerging__headline-white {
  display: block;
}

.emerging__headline-gold {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a017;
}

.emerging__headline-gold::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 14vw, 6.5rem);
  height: 3px;
  margin-top: 0.35rem;
  background: #d4a017;
  border-radius: 2px;
}

.emerging__headline-white {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .emerging__tagline {
    max-width: 12.5rem;
  }

  .emerging__tagline-text {
    font-size: 1.22rem;
    line-height: 1.4;
  }

  .emerging__figure--plans {
    height: min(48vh, 440px);
    min-height: 400px;
  }

  .emerging__panel {
    min-height: 12rem;
    padding: 1.85rem 1.65rem;
  }

  .emerging__panel-text {
    font-size: 0.92rem;
    line-height: 1.68;
  }
}

@media (min-width: 1600px) {
  .emerging__panel-text {
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .section--emerging.section--scroll {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .section--emerging .section__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    padding-bottom: 5.5rem;
    box-sizing: border-box;
  }

  .section--emerging .section__logo {
    position: static;
    align-self: flex-start;
    width: min(78vw, 320px);
    max-width: 100%;
    flex-shrink: 0;
  }

  .emerging {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: clamp(1rem, 4vw, 1.35rem);
    flex: none;
    grid-template-areas: none;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .emerging__tagline {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .emerging__figure--plans {
    width: 100%;
    max-width: min(100%, 420px);
    margin-inline: auto;
    height: auto;
    min-height: auto;
    max-height: min(42vh, 360px);
    aspect-ratio: 650 / 560;
  }

  .emerging__figure--printer {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 680;
    max-height: min(48vh, 420px);
  }

  .emerging__panel {
    width: 100%;
    min-height: clamp(6.5rem, 28vw, 10rem);
    box-sizing: border-box;
  }

  .emerging__panel-text {
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  .emerging__headline {
    align-self: flex-start;
    justify-self: auto;
    padding-top: 0.25rem;
  }

  .emerging__headline-gold {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .emerging__headline-white {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .section--emerging .section__pager {
    position: absolute;
    right: clamp(0.85rem, 2vw, 1.5rem);
    bottom: clamp(0.85rem, 2vh, 1.35rem);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .section--emerging .section__inner {
    overflow-y: auto;
    padding-bottom: 4.5rem;
  }

  .emerging {
    grid-template-columns: minmax(0, 0.24fr) minmax(0, 0.34fr) minmax(0, 0.42fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "tagline plans printer"
      "panel panel printer"
      ". . headline";
    margin-top: clamp(4.5rem, 12vh, 5.5rem);
  }

  .emerging__figure--plans {
    height: min(38vh, 320px);
    min-height: min(34vh, 280px);
  }

  .emerging__panel {
    padding: 0.85rem 1rem;
  }

  .emerging__panel-text {
    font-size: clamp(0.68rem, 1.1vw, 0.8rem);
    line-height: 1.55;
  }
}

/* -------------------------------------------------------------------------- */
/* Interactions — image guard, motion, back to top (no layout redesign)       */
/* -------------------------------------------------------------------------- */

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

picture,
figure {
  -webkit-touch-callout: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Motion keyframes */
@keyframes fs-hero-bg-in {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 0.78;
    transform: scale(1);
  }
}

@keyframes fs-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fs-scroll-hint-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fs-section-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Hero — open / load entrance (CSS animations — reliable on first paint) */
@media (prefers-reduced-motion: no-preference) {
  .js .hero__bg-img {
    animation: fs-hero-bg-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
  }

  .js .hero__top {
    animation: fs-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  }

  .js .hero__brand {
    animation: fs-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
  }

  .js .hero__contact {
    animation: fs-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  }

  .js .hero__scroll-hint {
    animation: fs-scroll-hint-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
  }

  .js .section--scroll:not(.is-inview) .section__inner {
    opacity: 0;
    transform: translateY(30px);
  }

  .js .section--scroll.is-inview .section__inner {
    animation: fs-section-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .section--scroll .section__inner {
    opacity: 1;
    transform: none;
  }
}

/* Scroll-down hint (hero only) */
.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: calc(clamp(3.75rem, 10vh, 4.75rem) + 0.35rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateX(-50%);
  transition: color 0.2s ease;
}

.hero__scroll-hint:hover {
  color: var(--gold);
}

.hero__scroll-hint:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.hero__scroll-hint-chevron {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  .js .hero__scroll-hint-chevron {
    animation:
      hero-scroll-bounce 1.65s cubic-bezier(0.45, 0, 0.55, 1) 1.1s infinite;
  }
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(-2px);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

@media (max-width: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-aspect-ratio: 10/16) {
  .hero__scroll-hint {
    bottom: calc(clamp(11.5rem, 28vh, 13rem) + 0.25rem);
  }

  .js .hero__bg-img {
    animation-name: fs-hero-bg-in-portrait;
  }
}

@keyframes fs-hero-bg-in-portrait {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: calc(var(--frame-pad) + clamp(0.85rem, 2vw, 1.35rem));
  bottom: calc(var(--frame-pad) + clamp(4rem, 11vh, 4.75rem));
  z-index: 50;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(48, 48, 48, 0.92);
  color: var(--gold);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s,
    background 0.2s ease,
    color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.back-to-top__icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 480px) {
  .back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    right: calc(var(--frame-pad) + 0.65rem);
    bottom: calc(var(--frame-pad) + 0.65rem);
  }
}
