:root {
  --black: #0b0b0b;
  --black-soft: #141414;
  --charcoal: #1d1d1d;
  --gray: #8d8d8d;
  --light-gray: #d8d8d8;
  --white: #ffffff;
  --lime: #a6ce39;
  --lime-dark: #7fa51c;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --container: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--black-soft);
}

.eyebrow {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.section-heading h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  color: var(--light-gray);
  margin-top: 18px;
  max-width: 650px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Temporary crop of the full logo so only the V emblem appears */
.header-brand-icon {
  display: block;
  width: 74px;
  height: auto;
  max-height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: none;
}

.header-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-brand-name strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.header-brand-name small {
  color: var(--lime);
  margin-top: 7px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-navigation a {
  color: var(--light-gray);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.primary-navigation a:hover {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 65px;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  background: url("assets/images/hero-scott-jackie-house.webp") center center /
    cover no-repeat;
  transform: scale(1.04);
  animation: heroCinematicZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 3, 3, 0.9) 0%,
      rgba(3, 3, 3, 0.76) 32%,
      rgba(3, 3, 3, 0.4) 60%,
      rgba(3, 3, 3, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 3, 3, 0.14) 0%,
      rgba(3, 3, 3, 0.06) 55%,
      rgba(3, 3, 3, 0.62) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 60px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 900px;
  margin-top: 4px;
}

.hero h1 span {
  color: var(--lime);
}

.hero-intro {
  margin-top: 22px;
  max-width: 660px;
  color: var(--light-gray);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-slogan {
  margin-top: 24px;
  font-size: 1.05rem;
}

.hero-slogan strong {
  color: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

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

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

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-highlights li {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--light-gray);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.hero-discover {
  display: inline-block;
  margin-top: 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}

.hero-discover:hover {
  transform: translateX(8px);
  color: #ffffff;
}

/* ===========================
   HERO TRUST LIST
=========================== */

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 28px;
  margin-top: 32px;
  padding: 0;
}

.hero-trust li {
  position: relative;
  padding-left: 26px;
  color: #f2f2f2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b4d834;
  font-weight: 700;
}

/* ===========================
   HERO LOGO
=========================== */

.hero-brand-logo {
  display: block;
  width: clamp(300px, 34vw, 475px);
  height: auto;
  margin: 0 0 26px -46px;
  padding: 18px 24px;
  object-fit: contain;
  object-position: left center;
  background: #f6f6f3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(166, 206, 57, 0.05);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content .lead {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.35;
  margin-bottom: 24px;
}

.about-content > p:not(.lead) {
  color: var(--light-gray);
  max-width: 700px;
}

.owner-card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--lime);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.owner-card strong {
  font-size: 1.25rem;
}

.owner-card span {
  color: var(--gray);
}

.owner-card a {
  color: var(--lime);
  margin-top: 8px;
  font-weight: 700;
}

/* ==================================================
   WHY CHOOSE VALTERRA
================================================== */

.why-valterra-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(166, 206, 57, 0.09),
      transparent 32%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-valterra-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.why-valterra-heading h2 {
  max-width: 760px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.why-valterra-heading h2 span {
  display: block;
  color: var(--lime);
}

.why-valterra-intro {
  max-width: 570px;
  color: var(--light-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.why-valterra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card {
  position: relative;
  min-height: 315px;
  padding: 38px 34px 40px;
  background: rgba(255, 255, 255, 0.018);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(166, 206, 57, 0.085),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(166, 206, 57, 0.5);
  border-radius: 50%;
  background: rgba(166, 206, 57, 0.06);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.why-card:hover .why-icon {
  transform: translateY(-3px);
  background: rgba(166, 206, 57, 0.14);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.why-card p {
  color: var(--light-gray);
  font-size: 0.98rem;
  line-height: 1.72;
}

.why-valterra-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-valterra-footer p {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

/* Services */

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

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 206, 57, 0.55);
  background: linear-gradient(
    145deg,
    rgba(166, 206, 57, 0.11),
    rgba(255, 255, 255, 0.02)
  );
}

.service-number {
  display: inline-block;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 44px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--light-gray);
}

/* Projects placeholder */

#proyectos {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.76)),
    url("assets/images/project-background.jpg") center / cover no-repeat;
}

/* Contact */

.contact-section {
  padding: 100px 0;
  background: var(--lime);
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.contact-section .eyebrow {
  color: var(--black);
}

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

.contact-section p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.contact-card {
  padding: 26px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card > * {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card > *:last-child {
  border-bottom: 0;
}

.contact-card span {
  color: var(--gray);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card strong {
  font-size: 1.15rem;
}

.contact-card a:hover strong {
  color: var(--lime);
}

/* Footer */

.site-footer {
  padding: 28px 0;
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--white);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(11, 11, 11, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 14px;
    border-bottom: 1px solid var(--border);
  }

  .primary-navigation a:last-child {
    border-bottom: 0;
  }

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

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

  .about-image {
    max-width: 620px;
  }

  .hero {
    background-position: 60% center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-brand-icon {
    width: 58px;
    height: auto;
    max-height: 46px;
    transform: none;
    clip-path: none;
  }

  .header-brand-name strong {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
  }

  .header-brand-name small {
    font-size: 0.49rem;
    letter-spacing: 0.26em;
  }

  .hero-brand-logo {
    width: min(100%, 360px);
    margin-left: 0;
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 72px;
    background-position: 66% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .about-image::before {
    inset: 14px -10px -14px 10px;
  }

  .about-image img {
    min-height: 420px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 108px;
    height: 46px;
    font-size: 0.9rem;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher a,
.language-switcher span {
  min-width: 34px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher a {
  color: var(--light-gray);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.language-switcher a:hover {
  color: var(--lime);
}

.language-switcher .active-language {
  color: var(--black);
  background: var(--lime);
}

@media (max-width: 900px) {
  .language-switcher {
    margin-left: auto;
  }
}

/* ===========================
   HERO CINEMATIC ZOOM
=========================== */

@keyframes heroCinematicZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.09);
  }
}

/* ===========================
   HERO FADE ANIMATION
=========================== */

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-animate {
  opacity: 0;

  animation: heroFade 0.8s ease forwards;
}

.hero-brand-logo.hero-animate {
  animation-delay: 0.15s;
}

.eyebrow.hero-animate {
  animation-delay: 0.35s;
}

.hero h1.hero-animate {
  animation-delay: 0.55s;
}

.hero-intro.hero-animate {
  animation-delay: 0.75s;
}

.hero-slogan.hero-animate {
  animation-delay: 0.95s;
}

.hero-actions.hero-animate {
  animation-delay: 1.15s;
}

.hero-highlights.hero-animate {
  animation-delay: 1.35s;
}

/* ==================================================
   BRIDGEPOINT STANDARD — PHASE 1
   PREMIUM HEADER REFINEMENT
================================================== */

.site-header {
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header-inner {
  min-height: 68px;
  transition: min-height 0.3s ease;
}

.header-brand-icon {
  width: 62px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  transition:
    width 0.3s ease,
    max-height 0.3s ease;
}

.header-brand-name strong {
  font-size: 0.98rem;
  letter-spacing: 0.19em;
}

.header-brand-name small {
  margin-top: 6px;
  font-size: 0.55rem;
  letter-spacing: 0.33em;
}

.primary-navigation {
  gap: 26px;
}

.primary-navigation a {
  font-size: 0.9rem;
  font-weight: 500;
}

.language-switcher {
  padding: 3px;
}

.language-switcher a,
.language-switcher span {
  min-width: 32px;
  height: 28px;
  font-size: 0.72rem;
}

/* Slightly tighter once the visitor scrolls */

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .header-inner {
  min-height: 60px;
}

.site-header.is-scrolled .header-brand-icon {
  width: 54px;
  max-height: 40px;
}

/* Tablet and mobile corrections */

@media (max-width: 900px) {
  .primary-navigation {
    top: 68px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  @media (max-width: 1000px) {
    .why-valterra-heading {
      grid-template-columns: 1fr;
      gap: 28px;
    }

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

  @media (max-width: 640px) {
    .why-valterra-section {
      padding: 82px 0;
    }

    .why-valterra-heading {
      margin-bottom: 44px;
    }

    .why-valterra-heading h2 {
      font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .why-valterra-intro {
      font-size: 1rem;
    }

    .why-valterra-grid {
      grid-template-columns: 1fr;
    }

    .why-card {
      min-height: auto;
      padding: 32px 26px 34px;
    }

    .why-valterra-footer {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 40px;
    }
  }

  .header-brand-icon {
    width: 50px;
    max-height: 40px;
  }

  .header-brand-name strong {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .header-brand-name small {
    font-size: 0.46rem;
    letter-spacing: 0.23em;
  }

  .primary-navigation {
    top: 64px;
  }

  .language-switcher a,
  .language-switcher span {
    min-width: 29px;
    height: 27px;
    font-size: 0.67rem;
  }
}

/* ==================================================
   BRIDGEPOINT STANDARD
   SCOTT & JACKIE — SIGNATURE PROJECT
================================================== */

.signature-project-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(166, 206, 57, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.signature-project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px
  );
  background-size: 120px 100%;
  opacity: 0.2;
}

/* Heading */

.signature-project-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
}

.signature-project-heading h2 {
  max-width: 950px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.signature-project-heading h2 span {
  display: block;
  color: var(--lime);
}

/* Status card */

.project-status-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 250px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(166, 206, 57, 0.12);
}

.project-status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(166, 206, 57, 0.45);
  border-radius: 50%;
  animation: projectPulse 2.2s ease-out infinite;
}

@keyframes projectPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.project-status-card small,
.project-status-card strong,
.project-status-card span {
  display: block;
}

.project-status-card small {
  margin-bottom: 5px;
  color: var(--light-gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-status-card strong {
  color: var(--white);
  font-size: 1rem;
}

.project-status-card div > span {
  margin-top: 3px;
  color: var(--lime);
  font-size: 0.83rem;
}

/* Main project visual */

.signature-project-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 680px;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.signature-project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.signature-project-hero img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s ease;
}

.signature-project-hero:hover img {
  transform: scale(1.025);
}

.signature-project-hero-overlay {
  position: absolute;
  z-index: 2;
  left: 46px;
  right: 46px;
  bottom: 40px;
}

.signature-project-hero-overlay p {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-project-hero-overlay h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

/* Story and facts */

.signature-project-overview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
  padding: 96px 0 86px;
}

.signature-project-story h3 {
  max-width: 820px;
  margin: 16px 0 30px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.signature-project-story > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--light-gray);
  font-size: 1.04rem;
  line-height: 1.85;
}

.signature-project-facts {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.project-fact {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.project-fact span {
  color: var(--light-gray);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-fact strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Project highlights */

.project-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.project-highlights article {
  position: relative;
  min-height: 300px;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.018);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.project-highlights article::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.project-highlights article:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(166, 206, 57, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.3);
}

.project-highlights article:hover::after {
  transform: scaleX(1);
}

.project-highlights article > span {
  display: block;
  margin-bottom: 68px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.project-highlights h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.25;
}

.project-highlights p {
  color: var(--light-gray);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Tablet */

@media (max-width: 1100px) {
  .signature-project-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-status-card {
    width: fit-content;
  }

  .signature-project-overview {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

/* Mobile */

@media (max-width: 640px) {
  .signature-project-section {
    padding: 88px 0;
  }

  .signature-project-heading {
    margin-bottom: 38px;
  }

  .signature-project-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .project-status-card {
    width: 100%;
    min-width: 0;
  }

  .signature-project-hero {
    min-height: 440px;
    border-radius: 20px;
  }

  .signature-project-hero img {
    min-height: 440px;
  }

  .signature-project-hero-overlay {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .signature-project-overview {
    padding: 70px 0 64px;
  }

  .signature-project-story h3 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .project-fact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .project-highlights article {
    min-height: auto;
    padding: 30px 26px 34px;
  }

  .project-highlights article > span {
    margin-bottom: 42px;
  }
}

/* ==================================================
   BRIDGEPOINT SIGNATURE PROJECT
   SCOTT & JACKIE RESIDENCE
================================================== */

.bp-project {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(166, 206, 57, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #080808 0%, #111111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bp-project > .container {
  position: relative;
  z-index: 1;
}

/* Header */

.bp-project-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}

.bp-project-title h2 {
  max-width: 950px;
  margin: 14px 0 18px;
  color: var(--white);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.bp-project-title h2 span {
  display: block;
  color: var(--lime);
}

.bp-project-subtitle {
  color: var(--light-gray);
  font-size: 1.08rem;
  letter-spacing: 0.05em;
}

/* Status */

.bp-project-status {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 250px;
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bp-project-status-dot {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(166, 206, 57, 0.12);
}

.bp-project-status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(166, 206, 57, 0.48);
  border-radius: 50%;
  animation: bpProjectPulse 2.2s ease-out infinite;
}

@keyframes bpProjectPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.bp-project-status small,
.bp-project-status strong,
.bp-project-status div > span {
  display: block;
}

.bp-project-status small {
  margin-bottom: 4px;
  color: var(--light-gray);
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bp-project-status strong {
  color: var(--white);
  font-size: 1rem;
}

.bp-project-status div > span {
  margin-top: 4px;
  color: var(--lime);
  font-size: 0.84rem;
}

/* Main project image */

.bp-project-hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  margin: 0;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42);
}

.bp-project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.9) 100%);
}

.bp-project-hero > img {
  width: 100%;
  height: 100%;
  min-height: 670px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s ease;
}

.bp-project-hero:hover > img {
  transform: scale(1.025);
}

.bp-project-hero-caption {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 36px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
}

.bp-project-hero-caption span,
.bp-project-hero-caption strong {
  display: block;
}

.bp-project-hero-caption span {
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bp-project-hero-caption strong {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.bp-project-hero-caption > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: right;
}

/* Story and facts */

.bp-project-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 90px;
  align-items: start;
  padding: 100px 0 90px;
}

.bp-project-story h3 {
  max-width: 790px;
  margin: 16px 0 30px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.bp-project-story > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 21px;
  color: var(--light-gray);
  font-size: 1.03rem;
  line-height: 1.84;
}

.bp-project-facts {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bp-project-fact {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bp-project-fact span {
  color: var(--light-gray);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bp-project-fact strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Four pillars */

.bp-project-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 130px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.bp-project-pillar {
  position: relative;
  min-height: 310px;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.018);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.bp-project-pillar::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.bp-project-pillar:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(166, 206, 57, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.3);
}

.bp-project-pillar:hover::after {
  transform: scaleX(1);
}

.bp-project-pillar > span {
  display: block;
  margin-bottom: 68px;
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.bp-project-pillar h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.25;
}

.bp-project-pillar p {
  color: var(--light-gray);
  font-size: 0.94rem;
  line-height: 1.72;
}

/* Shared section headings */

.bp-project-section-heading {
  max-width: 880px;
  margin-bottom: 62px;
}

.bp-project-section-heading h3 {
  margin: 15px 0 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.bp-project-section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.75;
}

/* Responsive */

@media (max-width: 1100px) {
  .bp-project-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bp-project-status {
    width: fit-content;
  }

  .bp-project-overview {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

@media (max-width: 680px) {
  .bp-project {
    padding: 88px 0;
  }

  .bp-project-header {
    margin-bottom: 38px;
  }

  .bp-project-title h2 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .bp-project-status {
    width: 100%;
    min-width: 0;
  }

  .bp-project-hero {
    min-height: 430px;
    border-radius: 20px;
  }

  .bp-project-hero > img {
    min-height: 430px;
  }

  .bp-project-hero-caption {
    left: 23px;
    right: 23px;
    bottom: 24px;
    display: block;
  }

  .bp-project-hero-caption > p {
    margin-top: 14px;
    text-align: left;
  }

  .bp-project-overview {
    padding: 70px 0 65px;
  }

  .bp-project-story h3 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .bp-project-fact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bp-project-pillars {
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .bp-project-pillar {
    min-height: auto;
    padding: 30px 26px 35px;
  }

  .bp-project-pillar > span {
    margin-bottom: 42px;
  }
}

/* ==================================================
   PROJECT CONSTRUCTION TIMELINE
================================================== */

.bp-project-timeline {
  position: relative;
  padding: 30px 0 120px;
}

.bp-project-step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 42px;
  margin-bottom: 140px;
  align-items: start;
}

.bp-project-step:last-child {
  margin-bottom: 0;
}

.bp-step-number {
  position: sticky;
  top: 130px;
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(180deg, #b4df38, #93bc22);

  color: #0c0c0c;

  font-size: 1.2rem;
  font-weight: 800;

  box-shadow: 0 18px 40px rgba(166, 206, 57, 0.3);
}

.bp-step-content {
  max-width: 1100px;
}

.bp-step-image {
  overflow: hidden;

  border-radius: 24px;

  margin-bottom: 34px;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.bp-step-image img {
  width: 100%;

  display: block;

  transition: transform 0.8s ease;
}

.bp-step-image:hover img {
  transform: scale(1.03);
}

.bp-step-title {
  color: white;

  font-size: 2rem;

  margin-bottom: 8px;

  font-weight: 700;
}

.bp-step-subtitle {
  color: var(--lime);

  text-transform: uppercase;

  letter-spacing: 0.18em;

  font-size: 0.72rem;

  margin-bottom: 20px;

  font-weight: 700;
}

.bp-step-description {
  max-width: 760px;

  color: var(--light-gray);

  line-height: 1.9;

  font-size: 1rem;

  margin-bottom: 34px;
}

.bp-step-divider {
  width: 90px;

  height: 2px;

  background: var(--lime);

  margin-bottom: 36px;
}

/* ==================================================
   PROJECT FEATURES
================================================== */

.bp-project-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 80px;

  align-items: start;

  margin: 120px 0;
}

.bp-feature-list {
  list-style: none;

  margin: 0;

  padding: 0;
}

.bp-feature-list li {
  position: relative;

  padding-left: 34px;

  margin-bottom: 24px;

  color: var(--light-gray);

  line-height: 1.8;
}

.bp-feature-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  top: 0;

  color: var(--lime);

  font-weight: 700;
}

.bp-feature-plan {
  overflow: hidden;

  border-radius: 24px;

  background: #0d0d0d;

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.bp-feature-plan img {
  width: 100%;

  display: block;
}

/* ==================================================
   PROJECT CTA
================================================== */

.bp-project-cta {
  text-align: center;

  padding: 120px 0 30px;
}

.bp-project-cta h2 {
  color: white;

  font-size: clamp(2.6rem, 5vw, 4.8rem);

  margin-bottom: 24px;

  line-height: 1.05;
}

.bp-project-cta p {
  max-width: 720px;

  margin: 0 auto 45px;

  color: var(--light-gray);

  line-height: 1.9;
}

.bp-project-cta .btn {
  font-size: 1rem;

  padding: 18px 40px;
}

/* ==================================================
   BRIDGEPOINT PORTFOLIO GRID
================================================== */

.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(166, 206, 57, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.portfolio-section > .container {
  position: relative;
  z-index: 1;
}

/* Heading */

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.portfolio-heading h2 {
  max-width: 900px;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.portfolio-heading h2 span {
  display: block;
  color: var(--lime);
}

.portfolio-intro {
  max-width: 430px;
  margin: 0;
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* Grid */

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 26px;
  background: linear-gradient(145deg, #171717, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.portfolio-card-featured,
.portfolio-card-wide {
  grid-column: 1 / -1;
}

.portfolio-card-featured {
  min-height: 680px;
}

.portfolio-card-wide {
  min-height: 430px;
}

.portfolio-card > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.9s ease,
    filter 0.5s ease;
}

.portfolio-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.portfolio-card-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.25) 38%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(166, 206, 57, 0.09),
    transparent 38%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover::after {
  opacity: 1;
}

/* Placeholder cards */

.portfolio-card-placeholder {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(166, 206, 57, 0.12),
      transparent 32%
    ),
    linear-gradient(135deg, #202020 0%, #101010 100%);
}

.portfolio-card-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

.portfolio-card-placeholder span {
  position: relative;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Card content */

.portfolio-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.portfolio-card-featured .portfolio-card-content {
  padding: 44px;
}

.portfolio-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.portfolio-label,
.portfolio-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.portfolio-label {
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-status {
  color: #0b0b0b;
  background: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
}

.portfolio-status-concept {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
}

.portfolio-card-bottom h3 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.portfolio-card-featured .portfolio-card-bottom h3 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.portfolio-card-bottom p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Buttons */

.portfolio-open-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.portfolio-open-button span {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.portfolio-open-button:hover,
.portfolio-open-button:focus-visible {
  color: #0b0b0b;
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.portfolio-open-button:hover span,
.portfolio-open-button:focus-visible span {
  transform: translateX(4px);
}

/* Closing */

.portfolio-closing {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  margin-top: 70px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-closing p {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2.3vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

/* Tablet */

@media (max-width: 1050px) {
  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-intro {
    max-width: 650px;
  }

  .portfolio-card-featured {
    min-height: 590px;
  }

  .portfolio-card-bottom {
    display: block;
  }

  .portfolio-open-button {
    margin-top: 24px;
  }

  .portfolio-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .portfolio-section {
    padding: 88px 0;
  }

  .portfolio-heading {
    margin-bottom: 44px;
  }

  .portfolio-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

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

  .portfolio-card-featured,
  .portfolio-card-wide {
    grid-column: auto;
  }

  .portfolio-card,
  .portfolio-card-featured,
  .portfolio-card-wide {
    min-height: 500px;
    border-radius: 20px;
  }

  .portfolio-card-content,
  .portfolio-card-featured .portfolio-card-content {
    padding: 24px;
  }

  .portfolio-card-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-card-featured .portfolio-card-bottom h3 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .portfolio-card-bottom h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .portfolio-open-button {
    width: 100%;
    justify-content: center;
  }

  .portfolio-closing {
    margin-top: 50px;
  }
}

/* ==================================================
   BRIDGEPOINT PROJECT MODAL
================================================== */

/* Lock page scrolling while modal is open */

body.modal-open {
  overflow: hidden;
}

/* Modal shell */

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.project-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Dark background behind the project */

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Main modal window */

.project-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  height: min(92vh, 980px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(166, 206, 57, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #101010 0%, #080808 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.72);
  transform: translateY(30px) scale(0.985);
  transition: transform 0.4s ease;
}

.project-modal.is-open .project-modal-dialog {
  transform: translateY(0) scale(1);
}

/* Modal header */

.project-modal-header {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 28px 34px;
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.project-modal-header h2 {
  margin: 8px 0 5px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-modal-header > div > p:last-child {
  margin: 0;
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Close button */

.project-modal-close {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.project-modal-close span {
  display: block;
  margin-top: -4px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.project-modal-close:hover,
.project-modal-close:focus-visible {
  color: #0b0b0b;
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(90deg);
}

/* Scrollable modal interior */

.project-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 34px;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #161616;
}

.project-modal-body::-webkit-scrollbar {
  width: 10px;
}

.project-modal-body::-webkit-scrollbar-track {
  background: #161616;
}

.project-modal-body::-webkit-scrollbar-thumb {
  background: var(--lime);
  border: 2px solid #161616;
  border-radius: 999px;
}

/* Main project visual */

.project-modal-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  border-radius: 24px;
  background: #151515;
}

.project-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.9) 100%);
}

.project-modal-hero img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-modal-hero figcaption {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.project-modal-hero figcaption span,
.project-modal-hero figcaption strong {
  display: block;
}

.project-modal-hero figcaption span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-modal-hero figcaption strong {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  line-height: 1.08;
}

/* Project overview */

.project-modal-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 80px;
  align-items: start;
  padding: 90px 0;
}

.project-modal-story h3 {
  max-width: 760px;
  margin: 14px 0 28px;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.project-modal-story > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.82;
}

/* Facts panel */

.project-modal-facts {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-modal-facts > div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-modal-facts span {
  color: var(--light-gray);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-modal-facts strong {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Shared modal headings */

.project-modal-section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.project-modal-section-heading h3 {
  margin: 14px 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.project-modal-section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.75;
}

/* Construction gallery */

.project-modal-gallery {
  padding: 20px 0 100px;
}

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

.project-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  border-radius: 22px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.project-gallery-item:nth-child(1),
.project-gallery-item:nth-child(6) {
  grid-column: 1 / -1;
  min-height: 600px;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.035);
}

.project-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.project-gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.project-gallery-item figcaption > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #0b0b0b;
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.project-gallery-item figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.12rem;
}

.project-gallery-item figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Technical features */

.project-modal-features {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-modal-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.project-modal-feature-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 100px;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.018);
}

.project-modal-feature-grid span {
  color: var(--lime);
  font-size: 1.1rem;
  font-weight: 800;
}

.project-modal-feature-grid p {
  margin: 0;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.5;
}

/* Architectural plan */

.project-modal-plan {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: center;
  padding: 100px 0;
}

.project-modal-plan-image {
  overflow: hidden;
  padding: 20px;
  background: #e9e9e9;
  border-radius: 22px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.36);
}

.project-modal-plan-image img {
  width: 100%;
  display: block;
}

.project-modal-plan-content h3 {
  margin: 14px 0 24px;
  color: var(--white);
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.project-modal-plan-content > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.8;
}

.project-modal-plan-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-modal-plan-content li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 28px;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-modal-plan-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 800;
}

/* Modal closing statement */

.project-modal-closing {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  align-items: end;
  padding: 75px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.project-modal-closing h3 {
  max-width: 850px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

/* Tablet */

@media (max-width: 1050px) {
  .project-modal {
    padding: 16px;
  }

  .project-modal-dialog {
    height: 94vh;
  }

  .project-modal-overview,
  .project-modal-plan {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .project-gallery-item,
  .project-gallery-item:nth-child(1),
  .project-gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 500px;
  }

  .project-modal-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .project-modal {
    padding: 0;
  }

  .project-modal-dialog {
    width: 100%;
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .project-modal-header {
    padding: 20px;
  }

  .project-modal-header h2 {
    font-size: 1.65rem;
  }

  .project-modal-header > div > p:last-child {
    display: none;
  }

  .project-modal-close {
    width: 46px;
    height: 46px;
  }

  .project-modal-body {
    padding: 20px;
  }

  .project-modal-hero {
    min-height: 440px;
    border-radius: 18px;
  }

  .project-modal-hero img {
    min-height: 440px;
  }

  .project-modal-hero figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .project-modal-overview {
    padding: 65px 0;
  }

  .project-modal-story h3 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .project-modal-facts > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .project-modal-gallery {
    padding-bottom: 75px;
  }

  .project-gallery-item,
  .project-gallery-item:nth-child(1),
  .project-gallery-item:nth-child(6) {
    min-height: 420px;
    border-radius: 18px;
  }

  .project-gallery-item figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

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

  .project-modal-plan {
    padding: 75px 0;
  }

  .project-modal-plan-image {
    padding: 10px;
    border-radius: 16px;
  }

  .project-modal-closing {
    padding-top: 60px;
  }

  .project-modal-closing .button {
    width: 100%;
    text-align: center;
  }
}

/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {
  .project-modal,
  .project-modal-dialog,
  .project-gallery-item img,
  .project-modal-close {
    transition: none;
  }
}

/* ==================================================
   BRIDGEPOINT IMAGE LIGHTBOX
================================================== */

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 7000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  height: min(94vh, 1050px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 18px;
  transform: scale(0.975);
  transition: transform 0.35s ease;
}

.image-lightbox.is-open .image-lightbox-dialog {
  transform: scale(1);
}

.image-lightbox-figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.8);
}

.image-lightbox-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.image-lightbox-figure > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
}

.image-lightbox-caption {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
}

.image-lightbox-caption > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.image-lightbox-caption span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #0b0b0b;
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.image-lightbox-caption strong {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.15;
}

.image-lightbox-caption p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

/* Close button */

.image-lightbox-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 88px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.image-lightbox-close span {
  margin-top: -4px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  color: #0b0b0b;
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(90deg);
}

/* Previous and next arrows */

.image-lightbox-arrow {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.image-lightbox-arrow span {
  font-size: 1.35rem;
}

.image-lightbox-arrow:hover,
.image-lightbox-arrow:focus-visible {
  color: #0b0b0b;
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.06);
}

.image-lightbox-previous {
  justify-self: start;
}

.image-lightbox-next {
  justify-self: end;
}

/* Counter */

.image-lightbox-counter {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 88px;
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Show gallery items are interactive */

.project-gallery-item[data-lightbox-item] {
  cursor: zoom-in;
}

.project-gallery-item[data-lightbox-item]::before {
  content: "View";
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mobile */

@media (max-width: 760px) {
  .image-lightbox {
    padding: 0;
  }

  .image-lightbox-dialog {
    width: 100%;
    height: 100vh;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .image-lightbox-figure {
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .image-lightbox-close {
    top: 16px;
    right: 16px;
  }

  .image-lightbox-counter {
    top: 20px;
    left: 16px;
  }

  .image-lightbox-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.62);
  }

  .image-lightbox-arrow:hover,
  .image-lightbox-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .image-lightbox-previous {
    left: 12px;
  }

  .image-lightbox-next {
    right: 12px;
  }

  .image-lightbox-caption {
    left: 20px;
    right: 20px;
    bottom: 24px;
    display: block;
  }

  .image-lightbox-caption > div {
    margin-bottom: 12px;
  }

  .image-lightbox-caption p {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox-dialog,
  .image-lightbox-close,
  .image-lightbox-arrow {
    transition: none;
  }
}

/* ==================================================
   TORIO HILLS CONCEPT MODAL
================================================== */

.torio-modal-hero img {
  object-fit: cover;
  object-position: center;
}

.concept-project-notice {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 24px;

  align-items: start;

  margin: 55px 0 90px;

  padding: 32px;

  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(166, 206, 57, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(166, 206, 57, 0.18);
}

.concept-project-notice span {
  width: 52px;

  height: 52px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--lime);

  color: #0b0b0b;

  font-size: 1.2rem;

  font-weight: 800;
}

.concept-project-notice strong {
  display: block;

  margin-bottom: 12px;

  color: var(--white);

  font-size: 1.2rem;
}

.concept-project-notice p {
  margin: 0;

  color: var(--light-gray);

  line-height: 1.8;
}

/* ==================================================
   TORIO CONCEPT PROCESS
================================================== */

.torio-concept-section {
  padding: 90px 0;
}

.torio-concept-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
}

.torio-concept-grid article {
  padding: 34px;

  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.01)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.torio-concept-grid article:hover {
  transform: translateY(-6px);

  border-color: rgba(166, 206, 57, 0.35);

  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.torio-concept-grid span {
  display: grid;

  place-items: center;

  width: 54px;

  height: 54px;

  margin-bottom: 28px;

  border-radius: 50%;

  background: var(--lime);

  color: #0b0b0b;

  font-size: 0.82rem;

  font-weight: 800;
}

.torio-concept-grid h4 {
  margin-bottom: 14px;

  color: var(--white);

  font-size: 1.35rem;
}

.torio-concept-grid p {
  margin: 0;

  color: var(--light-gray);

  line-height: 1.8;
}

@media (max-width: 900px) {
  .concept-project-notice {
    grid-template-columns: 1fr;
  }

  .torio-concept-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   CONCEPTS & VISION PORTFOLIO
================================================== */

.concepts-portfolio {
  width: 100%;
  margin: 80px auto 0;
}

.concepts-portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.concepts-portfolio-heading h2 {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.concepts-portfolio-heading h2 span {
  display: block;
  color: var(--lime);
}

.concepts-portfolio-intro p {
  margin: 0 0 18px;
  color: var(--light-gray);
  line-height: 1.8;
}

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

.concept-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: #111;
}

.concept-card-featured {
  grid-column: 1 / -1;
  min-height: 690px;
}

.concept-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.concept-card-featured:hover > img {
  transform: scale(1.035);
}

.concept-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.9));
}

.concept-card-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
}

.concept-card-topline,
.concept-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.concept-card-bottom {
  align-items: end;
}

.concept-study-badge,
.concept-card-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.concept-study-badge {
  color: #0b0b0b;
  background: var(--lime);
}

.concept-card-status {
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.concept-card-category {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-card h3 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.concept-card-bottom > div > p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.concept-card-placeholder {
  display: flex;
  align-items: end;
  padding: 34px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(166, 206, 57, 0.09),
      transparent 35%
    ),
    linear-gradient(145deg, #151515, #090909);
}

.concept-card-placeholder h3 {
  margin: 28px 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

.concept-placeholder-content p {
  max-width: 520px;
  margin: 0;
  color: var(--light-gray);
  line-height: 1.7;
}

/* Concept modal */

.concept-modal-hero img {
  object-fit: cover;
}

.concept-capability-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.concept-capability-image {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: zoom-in;
}

.concept-capability-image img {
  width: 100%;
  display: block;
}

@media (max-width: 920px) {
  .concepts-portfolio-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .concept-card-featured {
    grid-column: auto;
  }

  .concept-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .concepts-portfolio {
    width: min(100% - 32px, 1440px);
    margin-top: 90px;
  }

  .concept-card,
  .concept-card-featured {
    min-height: 560px;
    border-radius: 20px;
  }

  .concept-card-content {
    padding: 24px;
  }

  .concept-card-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .concept-open-button {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================
   CONCEPT PLACEHOLDER CARD REFINEMENT
================================================== */

.concept-card-placeholder {
  align-items: stretch;
}

.concept-placeholder-content {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concept-placeholder-content .concept-card-topline {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
}

.concept-placeholder-content .concept-card-category {
  margin-top: auto;
}

@media (max-width: 680px) {
  .concept-placeholder-content .concept-card-topline {
    top: 24px;
    left: 24px;
    right: 24px;
  }
}

.concept-card > img {
  z-index: 0;
}

.concept-card-overlay {
  z-index: 1;
}

.concept-card-content {
  z-index: 2;
}

/* ==================================================
   CONCEPT TEASER CARDS
================================================== */

.concept-card-teaser {
  min-height: 500px;
}

.concept-card-teaser > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.concept-card-teaser .concept-card-overlay {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 15%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.94) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.04));
}

.concept-card-teaser .concept-card-content {
  position: relative;
  z-index: 2;
}

.concept-card-teaser h3 {
  max-width: 680px;
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.concept-card-teaser:hover > img {
  transform: scale(1.04);
  filter: brightness(1.07);
}

.concept-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.concept-coming-soon::after {
  content: "→";
  margin-left: 12px;
  color: var(--lime);
}

@media (max-width: 920px) {
  .concept-card-teaser {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .concept-card-teaser {
    min-height: 600px;
  }

  .concept-card-teaser .concept-card-bottom {
    align-items: flex-start;
  }

  .concept-coming-soon {
    width: 100%;
  }
}

.concept-card-teaser:last-child {
  grid-column: 1 / -1;
  min-height: 620px;
}

@media (max-width: 920px) {
  .concept-card-teaser:last-child {
    grid-column: auto;
  }
}

/* ==================================================
   CLIENT TESTIMONIALS
================================================== */

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(166, 206, 57, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #0c0c0c, #111);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.testimonials-heading h2 {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.testimonials-heading h2 span {
  display: block;
  color: var(--lime);
}

.testimonials-intro {
  margin: 0;
  color: var(--light-gray);
  font-size: 1.02rem;
  line-height: 1.85;
}

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

.testimonial-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(166, 206, 57, 0.42);
  background: linear-gradient(
    145deg,
    rgba(166, 206, 57, 0.08),
    rgba(255, 255, 255, 0.018)
  );
}

.testimonial-card-featured {
  border: 1px solid rgba(166, 206, 57, 0.35);

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(166, 206, 57, 0.16),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(166, 206, 57, 0.05),
      rgba(255, 255, 255, 0.015)
    );
}

.testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-mark {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 0.75;
}

.testimonial-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 38px 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a0a0a;
  background: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
}

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

.testimonial-card footer strong {
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-card footer span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.testimonials-closing {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-closing p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.83rem;
  line-height: 1.7;
}

.testimonials-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.testimonials-link span {
  color: var(--lime);
  transition: transform 0.25s ease;
}

.testimonials-link:hover span {
  transform: translateX(5px);
}

@media (max-width: 980px) {
  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .testimonial-card {
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .testimonials-section {
    padding: 90px 0;
  }

  .testimonial-card {
    min-height: 360px;
    padding: 25px;
    border-radius: 20px;
  }

  .testimonials-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

.testimonial-status-approved {
  color: var(--lime);
  border-color: rgba(166, 206, 57, 0.35);
  background: rgba(166, 206, 57, 0.06);
}

.testimonial-card blockquote p + p {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .testimonials-grid-two {
    grid-template-columns: 1fr;
  }
}

.testimonial-stars {
  margin: 6px 0 4px;
  color: #b7d93b;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ==================================================
   TESTIMONIAL GRID CORRECTION
================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.testimonial-card {
  min-height: 520px;
  height: 100%;
}

.testimonial-card blockquote {
  margin: 38px 0;
}

.testimonial-card footer {
  margin-top: auto;
}

.testimonial-client {
  min-width: 0;
}

.testimonial-stars {
  margin: 5px 0;
  color: var(--lime);
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.13em;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }
}

/* ==================================================
   FINAL CALL TO ACTION
================================================== */

.final-cta {
  padding: 140px 0;

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(166, 206, 57, 0.08),
      transparent 38%
    ),
    linear-gradient(180deg, #0d0d0d, #090909);
}

.final-cta-panel {
  text-align: center;

  max-width: 920px;

  margin: 0 auto;
}

.final-cta h2 {
  margin: 20px 0;

  color: white;

  font-size: clamp(3rem, 6vw, 5.6rem);

  line-height: 0.98;

  letter-spacing: -0.05em;
}

.final-cta h2 span {
  display: block;

  color: var(--lime);
}

.final-cta-text {
  max-width: 760px;

  margin: 35px auto 0;

  color: var(--light-gray);

  font-size: 1.15rem;

  line-height: 1.9;
}

.final-cta-buttons {
  display: flex;

  justify-content: center;

  gap: 22px;

  margin-top: 50px;

  flex-wrap: wrap;
}

/* ==================================================
   PREMIUM FOOTER
================================================== */

.site-footer {
  position: relative;
  padding: 100px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(166, 206, 57, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #0a0a0a, #050505);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 2px;
  background: var(--lime);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.9fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-socials a:hover {
  color: #0a0a0a;
  border-color: var(--lime);
  background: var(--lime);
}

.footer-heading {
  margin: 3px 0 25px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links a,
.footer-links span,
.footer-contact-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
  line-height: 1.5;
}

.footer-links a,
.footer-contact-link {
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact-link {
  margin-bottom: 12px;
}

.footer-availability {
  margin-top: 22px;
}

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

.footer-availability strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.78rem;
}

.footer-availability span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.83rem;
  line-height: 1.65;
}

.footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-trust-strip span {
  padding: 21px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.footer-trust-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  line-height: 1.6;
}

.bridgepoint-signature {
  text-align: right;
}

.bridgepoint-signature a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.25s ease;
}

.bridgepoint-signature a:hover {
  color: var(--lime);
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 75px;
  }

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

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

  .footer-trust-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-trust-strip span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bridgepoint-signature {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-trust-strip {
    grid-template-columns: 1fr;
  }

  .footer-trust-strip span + span,
  .footer-trust-strip span:nth-child(3),
  .footer-trust-strip span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}

/* ==================================================
   FINAL FOOTER INTRODUCTION
================================================== */

.footer-introduction {
  padding: 90px 0 72px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-introduction-line {
  width: 125px;
  height: 2px;
  margin: 0 auto 34px;
  background: var(--lime);
}

.footer-introduction p {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.85;
}

/* ==================================================
   PREMIUM ARCHITECTURAL FOOTER
================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 105px 0 34px;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(166, 206, 57, 0.07),
      transparent 30%
    ),
    linear-gradient(180deg, #080808, #040404);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - 1440px) / 2));
  width: 125px;
  height: 2px;
  background: var(--lime);
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(320px, 1.55fr)
    minmax(180px, 0.7fr)
    minmax(210px, 0.8fr)
    minmax(220px, 0.9fr);
  gap: clamp(42px, 5vw, 85px);
  padding-bottom: 78px;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 32px;
}

.footer-logo img {
  width: 210px;
  height: auto;
  display: block;
}

.footer-brand-statement {
  max-width: 430px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.footer-brand-description {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.94rem;
  line-height: 1.85;
}

.footer-heading {
  margin: 5px 0 28px;
  color: var(--white);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links,
.footer-location-list,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  gap: 15px;
}

.footer-links a,
.footer-location-list span,
.footer-contact-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
  line-height: 1.55;
}

.footer-links a,
.footer-contact-link {
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-location-list {
  gap: 10px;
}

.footer-service-note {
  max-width: 230px;
  margin: 24px 0 0;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.6;
}

.footer-availability {
  margin-top: 28px;
}

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

.footer-availability strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-availability span {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-contact-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-contact-link span {
  color: var(--lime);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-socials a:hover {
  color: #080808;
  background: var(--lime);
  border-color: var(--lime);
}

/* Trust strip */

.footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-trust-strip > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
}

.footer-trust-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-trust-number {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.footer-trust-strip strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Footer bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 32px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.72rem;
  line-height: 1.7;
}

.bridgepoint-signature {
  max-width: 470px;
  text-align: right;
}

.bridgepoint-signature a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bridgepoint-signature a:hover {
  color: var(--lime);
}

/* Responsive */

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-introduction {
    padding: 70px 0 60px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }

  .footer-brand {
    max-width: none;
  }

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

  .footer-trust-strip > div:nth-child(3),
  .footer-trust-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-trust-strip > div:nth-child(3) {
    border-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }

  .bridgepoint-signature {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-trust-strip {
    grid-template-columns: 1fr;
  }

  .footer-trust-strip > div + div,
  .footer-trust-strip > div:nth-child(3),
  .footer-trust-strip > div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}

/* ==================================================
   CASA JAMIE DETAIL MODAL
================================================== */

.project-modal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.project-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.project-modal-back:hover,
.project-modal-back:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.casa-jaimie-hero {
  position: relative;
  min-height: clamp(470px, 67vw, 780px);
  overflow: hidden;
  background: #151b18;
}

.casa-jaimie-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.casa-jaimie-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 14, 0.05) 25%,
    rgba(12, 16, 14, 0.78) 100%
  );
}

.casa-jaimie-hero-content {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(2rem, 6vw, 5rem);
  max-width: 760px;
  color: #ffffff;
}

.casa-jaimie-hero-content h3 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.casa-jaimie-hero-content > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.casa-jaimie-facts-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(24, 31, 27, 0.12);
  background: #ffffff;
}

.casa-jaimie-facts-strip > div {
  padding: 1.6rem;
  border-right: 1px solid rgba(24, 31, 27, 0.12);
}

.casa-jaimie-facts-strip > div:last-child {
  border-right: 0;
}

.casa-jaimie-facts-strip span,
.casa-jaimie-facts-strip strong {
  display: block;
}

.casa-jaimie-facts-strip span {
  margin-bottom: 0.4rem;
  color: rgba(24, 31, 27, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casa-jaimie-facts-strip strong {
  color: #181f1b;
  font-size: 0.95rem;
}

.casa-jaimie-gallery {
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  background: #f4f1eb;
}

.casa-jaimie-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(1rem, 2vw, 1.75rem);
}

.casa-jaimie-gallery-item {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: #1a211d;
  cursor: zoom-in;
}

.casa-jaimie-gallery-item-large {
  min-height: clamp(520px, 65vw, 820px);
  margin-top: clamp(1rem, 2vw, 1.75rem);
}

.casa-jaimie-gallery
  > .project-modal-section-heading
  + .casa-jaimie-gallery-item {
  margin-top: 2.75rem;
}

.casa-jaimie-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease;
}

.casa-jaimie-gallery-item:hover img {
  transform: scale(1.025);
}

.casa-jaimie-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10, 14, 12, 0.82) 100%
  );
}

.casa-jaimie-gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 3vw, 2.5rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #ffffff;
}

.casa-jaimie-gallery-item figcaption > span {
  flex: 0 0 auto;
  color: var(--accent, #b7d432);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.casa-jaimie-gallery-item h4 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.casa-jaimie-gallery-item figcaption p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .casa-jaimie-facts-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .casa-jaimie-facts-strip > div {
    border-bottom: 1px solid rgba(24, 31, 27, 0.12);
  }

  .casa-jaimie-gallery-row {
    grid-template-columns: 1fr;
  }

  .casa-jaimie-gallery-item {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .project-modal-header-actions {
    align-items: flex-end;
    flex-direction: column-reverse;
  }

  .project-modal-back {
    padding: 0.55rem 0.7rem;
    font-size: 0.75rem;
  }

  .casa-jaimie-hero {
    min-height: 580px;
  }

  .casa-jaimie-hero-content h3 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .casa-jaimie-facts-strip {
    grid-template-columns: 1fr;
  }

  .casa-jaimie-facts-strip > div {
    border-right: 0;
  }

  .casa-jaimie-gallery-item,
  .casa-jaimie-gallery-item-large {
    min-height: 430px;
  }
}

/* ==================================================
   CASA JAMIE — CINEMATIC HERO
================================================== */

.casa-jamie-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
}

.casa-jamie-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.casa-jamie-hero:hover > img {
  transform: scale(1.025);
}

.casa-jamie-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 6, 6, 0.92) 0%,
      rgba(6, 6, 6, 0.7) 38%,
      rgba(6, 6, 6, 0.22) 72%,
      rgba(6, 6, 6, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.casa-jamie-hero-content {
  position: absolute;
  inset: auto 50px 48px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.casa-jamie-hero-heading {
  max-width: 760px;
}

.casa-jamie-hero-heading h3 {
  margin: 10px 0 22px;
  color: var(--white);
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.casa-jamie-hero-heading h3 span {
  display: block;
  margin-top: 14px;
  color: var(--lime);
  font-size: 0.42em;
  line-height: 1;
  letter-spacing: 0.02em;
}

.casa-jamie-hero-heading > p:last-child {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.75;
}

.casa-jamie-hero-facts {
  margin: 0;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.casa-jamie-hero-facts > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.casa-jamie-hero-facts > div:first-child {
  padding-top: 0;
}

.casa-jamie-hero-facts > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.casa-jamie-hero-facts dt {
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casa-jamie-hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 950px) {
  .casa-jamie-hero {
    min-height: 720px;
  }

  .casa-jamie-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .casa-jamie-hero-facts {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .casa-jamie-hero {
    min-height: 690px;
    border-radius: 18px;
  }

  .casa-jamie-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.12) 15%,
      rgba(5, 5, 5, 0.94) 72%
    );
  }

  .casa-jamie-hero-content {
    inset: auto 22px 24px;
    gap: 24px;
  }

  .casa-jamie-hero-heading h3 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .casa-jamie-hero-heading > p:last-child {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .casa-jamie-hero-facts {
    padding: 20px;
  }

  .casa-jamie-hero-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 11px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .casa-jamie-hero > img {
    transition: none;
  }
}

/* ==================================================
   CASA JAMIE — CONSTRUCTION JOURNEY CARDS
================================================== */

.completed-project-journey {
  padding: 88px 0 96px;
}

.completed-project-journey .project-modal-section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

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

.completed-project-journey-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.completed-project-journey-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--lime);
  opacity: 0.85;
}

.completed-project-journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(190, 235, 44, 0.4);
  background: linear-gradient(
    145deg,
    rgba(190, 235, 44, 0.08),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.3);
}

.completed-project-journey-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--lime);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.completed-project-journey-card-content {
  align-self: center;
}

.completed-project-journey-card-content h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.2;
}

.completed-project-journey-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .completed-project-journey-grid {
    grid-template-columns: 1fr;
  }

  .completed-project-journey-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .completed-project-journey {
    padding: 64px 0 72px;
  }

  .completed-project-journey-grid {
    gap: 16px;
  }

  .completed-project-journey-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .completed-project-journey-number {
    font-size: 2rem;
  }

  .completed-project-journey-card-content h4 {
    font-size: 1.12rem;
  }

  .completed-project-journey-card-content p {
    font-size: 0.91rem;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .completed-project-journey-card {
    transition: none;
  }

  .completed-project-journey-card:hover {
    transform: none;
  }
}

/* ==================================================
   CASA JAMIE — GALLERY INTRODUCTION
================================================== */

.casa-jamie-gallery .gallery-introduction {
  position: relative;
  display: grid;
  grid-template-columns: minmax(60px, 1fr) minmax(280px, 720px) minmax(
      60px,
      1fr
    );
  gap: 28px;
  align-items: center;
  margin: 0 0 72px;
  padding: 34px 38px;
  border: 1px solid rgba(190, 235, 44, 0.18);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(190, 235, 44, 0.07),
    rgba(255, 255, 255, 0.025)
  );
}

.casa-jamie-gallery .gallery-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 235, 44, 0.75),
    transparent
  );
}

.casa-jamie-gallery .gallery-kicker {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 800px) {
  .casa-jamie-gallery .gallery-introduction {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 52px;
    padding: 28px 24px;
  }

  .casa-jamie-gallery .gallery-line {
    max-width: 220px;
    margin: 0 auto;
  }

  .casa-jamie-gallery .gallery-kicker {
    font-size: 0.94rem;
  }
}

/* ==================================================
   CASA JAMIE — FEATURED GALLERY IMAGE
================================================== */

.casa-jamie-gallery-featured {
  position: relative;
  min-height: 620px;
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: #111;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
}

.casa-jamie-gallery-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.casa-jamie-gallery-featured img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.casa-jamie-gallery-featured:hover img {
  transform: scale(1.035);
}

.casa-jamie-gallery-featured figcaption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.casa-jamie-gallery-featured figcaption::before {
  content: "CASA JAIME";
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .casa-jamie-gallery-featured {
    min-height: 480px;
  }

  .casa-jamie-gallery-featured img {
    height: 480px;
  }
}

@media (max-width: 620px) {
  .casa-jamie-gallery-featured {
    min-height: 390px;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .casa-jamie-gallery-featured img {
    height: 390px;
  }

  .casa-jamie-gallery-featured figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .casa-jamie-gallery-featured img {
    transition: none;
  }

  .casa-jamie-gallery-featured:hover img {
    transform: none;
  }
}

/* ==================================================
   CASA JAMIE — SUPPORTING GALLERY IMAGES
================================================== */

.casa-jamie-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 34px;
}

.casa-jamie-gallery-supporting {
  position: relative;
  min-width: 0;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  cursor: zoom-in;
}

.casa-jamie-gallery-supporting::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.casa-jamie-gallery-supporting img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.casa-jamie-gallery-supporting:hover img {
  transform: scale(1.045);
}

.casa-jamie-gallery-supporting figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.casa-jamie-gallery-supporting figcaption > span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.casa-jamie-gallery-supporting figcaption h4 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.casa-jamie-gallery-supporting figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Secondary full-width feature image */

.casa-jamie-gallery-featured-secondary {
  margin: 18px 0 34px;
}

.casa-jamie-gallery-featured-secondary figcaption::before {
  content: "RESIDENCIA COMPLETADA";
}

@media (max-width: 820px) {
  .casa-jamie-gallery-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casa-jamie-gallery-supporting {
    min-height: 410px;
  }

  .casa-jamie-gallery-supporting img {
    height: 410px;
  }
}

@media (max-width: 620px) {
  .casa-jamie-gallery-row {
    gap: 16px;
    margin-bottom: 24px;
  }

  .casa-jamie-gallery-supporting {
    min-height: 350px;
    border-radius: 18px;
  }

  .casa-jamie-gallery-supporting img {
    height: 350px;
  }

  .casa-jamie-gallery-supporting figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 12px;
  }

  .casa-jamie-gallery-supporting figcaption h4 {
    font-size: 0.98rem;
  }

  .casa-jamie-gallery-supporting figcaption p {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .casa-jamie-gallery-supporting img {
    transition: none;
  }

  .casa-jamie-gallery-supporting:hover img {
    transform: none;
  }
}

/* ==================================================
   CASA JAMIE — CLOSING GALLERY IMAGE
================================================== */

.casa-jamie-gallery-closing {
  position: relative;
  min-height: 680px;
  margin: 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(190, 235, 44, 0.18);
  border-radius: 28px;
  background: #111;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
  cursor: zoom-in;
}

.casa-jamie-gallery-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 15%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.casa-jamie-gallery-closing img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.casa-jamie-gallery-closing:hover img {
  transform: scale(1.03);
}

.casa-jamie-gallery-closing figcaption {
  position: absolute;
  right: 42px;
  bottom: 38px;
  left: 42px;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.78);
}

.casa-jamie-gallery-closing figcaption > span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.casa-jamie-gallery-closing figcaption h4 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.casa-jamie-gallery-closing figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.65;
}

.casa-jamie-gallery-closing figcaption::after {
  content: "PROYECTO COMPLETADO";
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

@media (max-width: 900px) {
  .casa-jamie-gallery-closing {
    min-height: 520px;
  }

  .casa-jamie-gallery-closing img {
    height: 520px;
  }
}

@media (max-width: 620px) {
  .casa-jamie-gallery-closing {
    min-height: 410px;
    border-radius: 19px;
  }

  .casa-jamie-gallery-closing img {
    height: 410px;
  }

  .casa-jamie-gallery-closing figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
    gap: 12px;
  }

  .casa-jamie-gallery-closing figcaption h4 {
    font-size: 1.08rem;
  }

  .casa-jamie-gallery-closing figcaption p {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .casa-jamie-gallery-closing img {
    transition: none;
  }

  .casa-jamie-gallery-closing:hover img {
    transform: none;
  }
}
