﻿:root {
  /* Tokens — Fondos y superficies (dark warm) */
  --bg-primary: #0d0907;
  --bg-warm: #120d0a;
  --surface-1: #16110d;
  --surface-2: #1f1812;
  --surface-3: #2a2019;

  /* Tokens — Texto */
  --text-primary: #f5e9df;
  --text-soft: #c5b6a8;
  --text-muted: #7a6c61;
  --text-mute-2: #524339;

  /* Tokens — Acentos (sin cambios) */
  --precon: #FF6B0F;
  --precon-soft: #ff8a3d;

  /* Tokens — Bordes y opacidades */
  --border: rgba(255,220,200,0.08);
  --border-strong: rgba(255,220,200,0.18);

  /* Back-compat aliases used across the theme */
  --orange: var(--precon);
  --orange-soft: var(--precon-soft);
  --orange-deep: #C24F0E;
  --bg: var(--bg-primary);
  --bg-soft: var(--bg-warm);
  --bg-card: var(--surface-1);
  --line: var(--border-strong);
  --line-soft: var(--border);
  --text: var(--text-primary);
  --text-2: var(--text-soft);
  --text-3: var(--text-muted);
  --text-4: var(--text-mute-2);
  --diana-deep: #0E2A1E;
  --diana-mid: #1F4A35;
  --diana-gold: #E5C68A;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
  cursor: none;
  font-feature-settings: "ss01", "ss02";
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
}

input, select, textarea, button {
  font-family: 'Open Sans', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: overlay;
}

.cursor-blob {
  position: fixed;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, var(--orange) 0%, rgba(255,107,26,0.1) 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.3s;
}
.cursor-blob.expand { width: 80px; height: 80px; opacity: 0.8; }
.cursor-dot.expand { width: 8px; height: 8px; background: var(--orange); }
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-blob, .cursor-dot { display: none; }
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: drift 30s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-duration: 25s;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-deep) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -10s;
  animation-duration: 35s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -80px) scale(1.15); }
  66% { transform: translate(-60px, 60px) scale(0.9); }
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
  z-index: 200;
  transition: width 0.1s linear;
  width: 0;
  box-shadow: 0 0 12px var(--orange);
}

nav.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  background: rgba(13,9,7,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  z-index: 100;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 95;
  display: none;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .nav-overlay {
  display: block;
}

.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.logo svg {
  height: 32px;
  width: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo img {
  height: 32px;
  max-height: 32px;
  width: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo:hover svg,
.logo:hover img { transform: scale(1.05) rotate(-1deg); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  background: rgba(255,255,255,0.03);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active {
  color: var(--text);
  background: var(--orange);
  color: var(--bg);
}

.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 12px 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Open Sans', sans-serif;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--text);
  transform: translateY(-1px);
}
.nav-cta .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.nav-cta:hover .arrow { transform: translateX(4px); }

.nav-links-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 48px;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13,9,7,0.18) 0%, rgba(13,9,7,0.1) 35%, rgba(13,9,7,0.22) 100%),
    radial-gradient(circle at center, rgba(13,9,7,0.04) 0%, rgba(13,9,7,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.hero-content-centered {
  max-width: 980px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-image-kicker,
.hero-image-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
  animation: fadeUp 1s ease 0.2s both;
}

.hero-image-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(38px, 6.4vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 10px 35px rgba(0,0,0,0.28);
  margin: 0;
  animation: fadeUp 1s ease 0.25s both;
}

.hero-image-number {
  color: var(--orange);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: 100px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: blink 2s infinite;
}

.hero-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(32px, 6.4vw, 108px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
  color: var(--text);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-title .line span {
  display: inline-block;
  animation: lineUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.04em;
  background: var(--orange);
  opacity: 0.3;
  animation: underline 1.5s ease 1.5s both;
}
@keyframes underline {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
@keyframes lineUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
  animation: fadeUp 1s ease 1.5s both;
  align-items: end;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-meta-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-2);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.5;
}
.hero-stat-num {
  font-family: 'Titillium Web', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-num em { color: var(--orange); font-style: normal; font-weight: 700; }
.hero-stat-text {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
}

.hero-3d {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  z-index: 2;
  perspective: 1000px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-3d-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 20s linear infinite;
}
@keyframes rotate3d {
  from { transform: rotateY(0deg) rotateX(10deg); }
  to { transform: rotateY(360deg) rotateX(10deg); }
}
.tower-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,107,26,0.3);
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255,107,26,0.1) 30px,
      rgba(255,107,26,0.1) 31px
    );
}
.tower-face.front { transform: translateZ(100px); }
.tower-face.back { transform: translateZ(-100px) rotateY(180deg); }
.tower-face.right { transform: rotateY(90deg) translateZ(100px); width: 200px; left: 50%; margin-left: -100px; }
.tower-face.left { transform: rotateY(-90deg) translateZ(100px); width: 200px; left: 50%; margin-left: -100px; }

@media (max-width: 1100px) {
  .hero-3d { display: none; }
}

.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  transform: translateX(0);
  animation: marquee 10s linear infinite;
  font-family: 'Titillium Web', sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  font-style: normal;
}
.marquee-track .item { display: flex; align-items: center; gap: 80px; }
.marquee-track .star {
  color: var(--orange);
  font-size: 60px;
  font-style: normal;
  display: inline-block;
  animation: spin 8s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

section.block {
  padding: 160px 32px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  scroll-margin-top: 120px;
}

.section-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.section-meta .label {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-meta .label::before {
  content: '\25C6';
  font-size: 8px;
}

.section-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(50px, 8vw, 128px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--text);
}
.section-title em { font-style: normal; font-weight: 700; color: var(--orange); }
.section-title .light { color: var(--text-3); }

.section-intro {
  font-size: 18px;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 80px;
  font-weight: 300;
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.about-visual:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(255,107,26,0.08);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,107,26,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,107,26,0.025) 0%, transparent 50%);
  z-index: 1;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px);
  z-index: 1;
}
.about-visual-tower {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 75%;
  background: linear-gradient(180deg, rgba(255,107,26,0.05) 0%, rgba(18,13,10,0.6) 100%);
  border: 1px solid rgba(255,107,26,0.3);
  border-bottom: none;
  z-index: 2;
}
.about-visual-tower::before {
  content: '';
  position: absolute;
  inset: 16px;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255,107,26,0.2) 24px, rgba(255,107,26,0.2) 25px);
}
.about-visual-tower::after {
  content: '';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 32px;
  background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
}
.editable-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tratamiento visual estándar para fotos de obras (cards + galerías). */
.obra-foto img,
img.obra-foto {
  filter: contrast(1.08) saturate(0.92) brightness(0.96);
}
.obra-foto:hover img,
a:hover img.obra-foto,
.obra-foto:focus-visible img {
  filter: contrast(1.05) saturate(1) brightness(1);
  transition: filter 0.4s ease;
}
.obra-foto {
  position: relative;
}
/* Overlay sutil para legibilidad cuando hay texto encima (ej. galerías). */
.obra-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(13,9,7,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.obra-foto:hover::after { opacity: 1; }
.about-visual.has-image::before,
.about-visual.has-image::after {
  z-index: 2;
}
.about-visual.has-image .editable-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-visual.has-image .about-visual-tower {
  display: none;
}
.visual-question-placeholder,
.bento-question-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,245,0.88);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  line-height: 1;
}
.about-question-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,107,26,0.055), transparent 34%),
    linear-gradient(135deg, var(--surface-2) 0%, var(--bg-primary) 100%);
  font-size: clamp(120px, 18vw, 220px);
}
.about-visual-icon-svg {
  position: relative;
  z-index: 1;
  width: min(42%, 180px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}
.about-question-placeholder::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,107,26,0.26);
  border-radius: 999px;
}

.about-text h2 { margin-bottom: 32px; }
.about-text p {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
}
.about-quote {
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  font-family: 'Titillium Web', sans-serif;
  font-style: normal;
  font-size: 24px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 100px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,107,26,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-soft);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover .arrow { transform: translateX(4px); }

.stats-banner {
  background: var(--bg-soft);
  padding: 128px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}
.stats-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 0 32px;
  border-left: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-item:hover { transform: translateY(-4px); }

.stat-num {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 700;
  color: var(--text);
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.stat-num em { color: var(--orange); font-style: normal; font-weight: 700; }
.stat-label {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 20px 28px;
  align-items: start;
  color: inherit;
  text-decoration: none;
}
.precon-home-template .bento-card-content,
.precon-home-template .bento-card-icon,
.precon-services-template .bento-card-content,
.precon-services-template .bento-card-icon {
  position: relative;
  z-index: 1;
}
.precon-home-template .bento-card-icon,
.precon-services-template .bento-card-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
}
.bento-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,107,26,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-question-placeholder {
  position: relative;
  z-index: 0;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255,107,26,0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,107,26,0.08), transparent 62%),
    rgba(255,255,255,0.02);
  padding: 22px;
}
.bento-card.large .bento-question-placeholder,
.bento-question-placeholder.is-large {
  width: 180px;
  height: 180px;
  padding: 24px;
}

.service-icon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}

.bento-card.large { grid-column: span 1; grid-row: span 2; min-height: 580px; }
.precon-home-template .bento-card-content,
.precon-services-template .bento-card-content {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  gap: 12px;
}
.precon-home-template .bento-card-content > p,
.precon-services-template .bento-card-content > p {
  margin-bottom: 0;
}
.bento-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento-num::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.bento-card h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.bento-card.large h3 { font-size: clamp(38px, 4.5vw, 54px); }
.bento-card p {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.bento-visual {
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-height: 420px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--orange);
  box-shadow: 0 24px 54px rgba(255,107,26,0.07);
}
.service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-media-img {
  transform: scale(1.08);
  filter: brightness(0.95);
}
.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,9,7,0.05) 0%, rgba(13,9,7,0.85) 100%);
  pointer-events: none;
}
.service-media-missing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,107,26,0.05), transparent 60%),
    linear-gradient(135deg, var(--surface-2) 0%, var(--bg-primary) 100%);
}
.service-media-missing .service-icon-svg {
  width: min(44%, 180px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}
.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.service-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.service-desc {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
.service-cta {
  margin-top: auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card:hover .service-cta { color: var(--orange); }
.service-card--pending-image {}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  aspect-ratio: 4/5;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  color: inherit;
  text-decoration: none;
}
.project-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--orange);
  box-shadow: 0 24px 58px rgba(255,107,26,0.07);
}
.project-card--pending-image {}
.project-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.7);
}
.project-card:hover .project-img { transform: scale(1.08); filter: brightness(0.9); }

.project-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-carousel:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.project-carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  cursor: grab;
}

.project-carousel-track::-webkit-scrollbar {
  display: none;
}

.project-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}

.project-carousel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  pointer-events: none;
}

.project-card:hover .project-carousel-media {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.project-img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,107,26,0.055), transparent 34%),
    linear-gradient(135deg, var(--surface-2) 0%, var(--bg-primary) 100%);
  padding: 24px;
}

.project-img-missing::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,107,26,0.26);
  border-radius: 999px;
}

.project-icon-svg {
  position: relative;
  z-index: 1;
  width: min(48%, 180px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,7,0.95) 0%, rgba(13,9,7,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
}
.project-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.3);
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
  backdrop-filter: blur(10px);
}
.project-info { display: flex; flex-direction: column; gap: 8px; }
.project-info h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.project-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.project-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.project-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.project-card:hover .project-arrow { opacity: 1; transform: scale(1) rotate(0deg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-card);
  padding: 40px;
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 22px 52px rgba(255,107,26,0.06);
}
.testimonial-mark {
  font-family: 'Titillium Web', sans-serif;
  font-size: 96px;
  font-style: normal;
  color: var(--orange);
  line-height: 0.4;
  margin-bottom: 24px;
}
.testimonial p {
  font-family: 'Titillium Web', sans-serif;
  font-size: 22px;
  font-style: normal;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.3;
  font-weight: 400;
}
.testimonial-author {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Titillium Web', sans-serif;
  font-style: normal;
  font-size: 20px;
  color: var(--text);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-role {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

.diana-section {
  background: var(--diana-deep);
  color: var(--text);
  padding: 0;
  margin: 0;
  max-width: none;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.diana-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(229,198,138,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(31,74,53,0.5) 0%, transparent 50%);
}
.diana-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  position: relative;
  z-index: 1;
}
.diana-content {
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.diana-eyebrow {
  font-family: 'Titillium Web', sans-serif;
  font-style: normal;
  color: var(--diana-gold);
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}
.diana-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(56px, 7.2vw, 108px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.diana-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--diana-gold);
}
.diana-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--diana-gold);
  margin-bottom: 40px;
  font-weight: 500;
}
.diana-content p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.5;
}
.btn-diana {
  background: var(--diana-gold);
  color: var(--diana-deep);
  padding: 16px 24px;
  border-radius: 100px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}
.btn-diana:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(229,198,138,0.3);
}
.diana-visual {
  position: relative;
  background: linear-gradient(135deg, #0E2A1E 0%, #1F4A35 100%);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 560px;
}
.diana-visual::before {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(229,198,138,0.3);
  border-radius: 24px;
  z-index: 2;
}
.diana-visual.has-image .editable-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.diana-visual.has-image::before {
  display: none;
}
.diana-visual.has-image .diana-villa {
  display: none;
}
.diana-villa {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: linear-gradient(180deg, rgba(229,198,138,0.1), rgba(13,9,7,0.4));
  border: 1px solid rgba(229,198,138,0.3);
  border-radius: 8px;
  z-index: 3;
}
.diana-villa::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(229,198,138,0.4);
}
.diana-villa::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  right: 30%;
  height: 30%;
  background: linear-gradient(180deg, rgba(229,198,138,0.2), transparent);
  border-radius: 4px 4px 0 0;
}

@media (max-width: 1024px) {
  .diana-content {
    padding: 88px 32px 40px;
  }

  .diana-eyebrow {
    font-size: clamp(18px, 2.6vw, 22px);
  }

  .diana-title {
    font-size: clamp(42px, 7.4vw, 76px);
    line-height: 0.95;
  }

  .diana-tagline {
    letter-spacing: 0.26em;
    margin-bottom: 28px;
  }

  .diana-content p {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .diana-visual {
    min-height: 420px;
  }

  .precon-services-template .bento-card.large h3 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section-title,
  .diana-title,
  .page-hero h1,
  .cta-banner h2,
  .philosophy h2,
  .project-detail-info h1,
  .project-description h2,
  .project-nav-link strong {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .precon-about-template .page-hero h1 {
    max-width: 10ch;
    font-size: clamp(30px, 9.2vw, 46px);
  }

  .precon-services-template .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(30px, 9.2vw, 46px);
  }

  .precon-services-template .bento-card {
    padding: 28px 24px;
  }

  .precon-services-template .bento-card.large h3 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
  }

  .project-filters-panel {
    padding: 18px;
  }

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

  .project-filter-select {
    min-height: 50px;
    font-size: 12px;
  }

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

  .client-logo {
    padding: 28px 16px;
    font-size: 15px;
    border-radius: 18px;
  }

  .client-logo-img {
    max-height: 52px;
  }

  .contact-form-title {
    font-size: clamp(26px, 8vw, 36px);
    max-width: 10ch;
    margin-bottom: 24px;
  }

  .testimonial p,
  .contact-info-value {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: normal;
  }

  .diana-section {
    scroll-margin-top: 96px;
  }

  .diana-grid {
    gap: 0;
  }

  .diana-content {
    padding: 64px 20px 28px;
  }

  .diana-eyebrow {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .diana-tagline {
    letter-spacing: 0.22em;
    margin-bottom: 24px;
  }

  .diana-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .diana-visual {
    min-height: 300px;
    aspect-ratio: 16 / 11;
  }
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.leader-card {
  cursor: pointer;
  position: relative;
}
.leader-img {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.leader-card:hover .leader-img {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(255,107,26,0.07);
}
.leader-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,107,26,0.05), transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Titillium Web', sans-serif;
  font-size: 88px;
  font-weight: 400;
  font-style: normal;
  color: var(--text-3);
  transition: all 0.5s ease;
  position: relative;
}
.leader-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}
.leader-card:hover .leader-img-placeholder {
  color: var(--orange);
}
.leader-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.leader-name {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.leader-role {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.leader-bio {
  margin-top: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.cta-banner {
  padding: 200px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255,107,26,0.05) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: drift 20s ease-in-out infinite;
}
.cta-banner h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(64px, 10.5vw, 176px);
  margin-bottom: 48px;
  position: relative;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.precon-about-template .cta-banner h2,
.precon-services-template .cta-banner h2,
.precon-projects-template .cta-banner h2,
.precon-testimonials-template .cta-banner h2 {
  font-size: 80px;
}
.cta-banner h2 em { font-style: normal; font-weight: 700; color: var(--orange); }
.cta-banner p {
  font-size: 18px;
  margin-bottom: 48px;
  position: relative;
  color: var(--text-2);
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 auto 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.cta-actions {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn { position: relative; }

footer {
  background: var(--bg);
  color: var(--text-2);
  padding: 100px 32px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 72px;
  min-height: 72px;
  padding: 8px 10px 10px;
  border-radius: 20px;
  background: rgba(13,9,7,0.88);
  border: 1px solid var(--line-soft);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.whatsapp-float:active { transform: translateY(0); }
.whatsapp-float__icon {
  display: grid;
  place-items: center;
}
.whatsapp-float__icon svg { display: block; width: 42px; height: 42px; }
.whatsapp-float__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}
.whatsapp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.whatsapp-cta-link:hover,
.whatsapp-cta-link:focus-visible {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
  color: #fff;
  transform: translateY(-1px);
}
.whatsapp-cta-link__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.whatsapp-cta-link__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.whatsapp-cta-link__arrow {
  display: inline-block;
  margin-left: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer-brand .logo svg,
.footer-brand .logo img { height: 40px; width: auto; display: block; }
.footer-claim { margin-top: 22px; }
.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,107,26,0.35);
  color: #fff;
}
.footer-social-icon.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.footer-social-icon svg { display: block; }
.footer-more { margin-top: 18px; }
.footer-more a { color: var(--text); text-decoration: none; font-size: 13px; letter-spacing: 0.05em; }
.footer-more a:hover { color: var(--orange); }
.footer-brand p {
  font-size: 14px;
  max-width: 320px;
  color: var(--text-2);
  font-weight: 300;
  margin-top: 24px;
  line-height: 1.6;
}
.footer-brand p a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-brand p a:hover { color: var(--orange); }
.footer-col h4 {
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.05em;
}

.precon-map-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
}
.precon-map-iframe {
  display: block;
  width: 100%;
  height: 360px;
  /* Simula dark theme sin usar Google Maps JavaScript API */
  filter: grayscale(0.15) saturate(1.05) contrast(0.9) brightness(0.78) invert(0.92) hue-rotate(180deg);
}

.page-hero {
  padding: 200px 32px 120px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.05), transparent 70%);
  top: -200px;
  right: -100px;
  filter: blur(80px);
  animation: drift 25s ease-in-out infinite;
}
.page-hero-content { position: relative; max-width: 1600px; margin: 0 auto; z-index: 2; }

.page-hero h1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(64px, 9.5vw, 156px);
  font-weight: 700;
  line-height: 0.9;
  margin: 24px 0;
  letter-spacing: -0.04em;
}
.page-hero h1 em { font-style: normal; font-weight: 700; color: var(--orange); }
.page-hero p {
  font-size: 18px;
  max-width: 600px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.5;
}

.precon-about-template .page-hero h1 {
  max-width: 9ch;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.precon-services-template .page-hero h1 {
  max-width: 100%;
  text-wrap: balance;
}

.precon-services-template .bento-card.large h3 {
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: normal;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-2); text-decoration: none; cursor: pointer; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

.project-filters-panel {
  margin-bottom: 72px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255,107,26,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 72%),
    var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.project-filters-panel__intro {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.filters-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.project-filters-panel__intro p {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.6;
}
.project-filters-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.project-filter-field {
  display: grid;
  gap: 10px;
}
.project-filter-field span {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-left: 4px;
}
.project-filter-select-wrap {
  position: relative;
}
.project-filter-select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.project-filter-select {
  width: 100%;
  min-height: 54px;
  padding: 0 48px 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  appearance: none;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.project-filter-select:hover,
.project-filter-select:focus {
  border-color: rgba(255,107,26,0.5);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.14);
}
.project-filter-select option {
  text-transform: none;
  color: #111;
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.projects-results {
  position: relative;
  transition: opacity 0.25s ease;
}
.projects-results.is-loading {
  opacity: 0.55;
}
.projects-empty-state {
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,245,245,0.8);
}

.project-detail-hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: 90px;
  border-radius: 24px;
  margin: 90px 16px 0;
}
.project-detail-img {
  position: absolute;
  inset: 0;
  filter: brightness(0.6);
}
.project-detail-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,9,7,0.95), transparent);
  padding: 80px 48px 48px;
  z-index: 2;
}
.project-detail-info h1 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  font-size: clamp(50px, 6.2vw, 108px);
  margin: 16px 0 8px;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.project-detail-body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.spec-card {
  background: var(--bg-card);
  padding: 40px;
  position: sticky;
  top: 120px;
  align-self: start;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
}
.spec-card-kicker {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  color: var(--text-2);
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spec-value {
  font-weight: 500;
  color: var(--text);
  text-align: right;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
}
.spec-value.accent { color: var(--orange); font-style: normal; font-weight: 700; }

.project-description h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.project-description h2 em { font-style: normal; font-weight: 700; color: var(--orange); }
.project-description p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 300;
}

.project-tech-sheet {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.project-tech-sheet-inner {
  background:
    radial-gradient(circle at top right, rgba(255,107,26,0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}

.project-tech-sheet h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(42px, 5vw, 84px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.project-tech-sheet h2 em {
  font-style: normal;
  color: var(--orange);
}

.project-tech-sheet p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 16px;
  max-width: 62ch;
}

.project-tech-list {
  display: grid;
  gap: 12px;
}

.project-tech-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.project-tech-item span {
  color: var(--text-2);
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-tech-item strong {
  color: var(--text);
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.project-gallery {
  max-width: 1600px;
  margin: 0 auto 100px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.gallery-img {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.gallery-img:first-child { aspect-ratio: 16/9; grid-row: span 2; }
.gallery-img:hover { transform: scale(1.02); border-color: var(--orange); }

.project-nav {
  background: var(--bg-soft);
  padding: 80px 32px;
  border-top: 1px solid var(--line);
}
.project-nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.project-nav-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,107,26,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: 30px 32px;
  min-height: 180px;
  width: min(100%, 520px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-nav-link::after {
  content: '→';
  position: absolute;
  right: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.14);
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease;
}
.project-nav-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 18px 42px rgba(255,107,26,0.08);
}
.project-nav-link:hover::after {
  transform: translateX(2px);
  background: rgba(255, 107, 26, 0.22);
}
.project-nav-link span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.project-nav-link strong {
  font-family: 'Titillium Web', sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 12ch;
  line-height: 1.02;
}

.precon-orange-project-template .orange-project-page {
  background: #080604;
  color: var(--text);
  overflow: hidden;
}

.precon-orange-project-template .orange-container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.precon-orange-project-template .orange-project-hero {
  position: relative;
  min-height: 570px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 107, 26, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(8, 6, 4, 1), rgba(8, 6, 4, 0.9), rgba(8, 6, 4, 1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.precon-orange-project-template .orange-project-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 26, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 26, 0.08) 1px, transparent 1px);
  background-size: 360px 120px;
  opacity: 0.45;
  pointer-events: none;
}

.precon-orange-project-template .orange-project-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255, 107, 26, 0.22), rgba(255, 107, 26, 0.035));
  opacity: 0.75;
  pointer-events: none;
}

.precon-orange-project-template .orange-breadcrumb,
.precon-orange-project-template .orange-hero-content {
  position: relative;
  z-index: 2;
}

.precon-orange-project-template .orange-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 50px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 238, 231, 0.38);
}

.precon-orange-project-template .orange-breadcrumb strong {
  color: var(--orange);
  font-weight: 700;
}

.precon-orange-project-template .orange-breadcrumb em {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.precon-orange-project-template .orange-hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 7.5vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  color: var(--text);
}

.precon-orange-project-template .orange-hero-content p {
  margin: 18px 0 0;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.38);
}

.precon-orange-project-template .orange-project-section {
  padding: 76px 0 105px;
  background: #080604;
}

.precon-orange-project-template .orange-project-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.precon-orange-project-template .orange-info-card {
  position: sticky;
  top: 100px;
  padding: 10px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.085);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.precon-orange-project-template .orange-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.precon-orange-project-template .orange-info-row:last-child {
  border-bottom: none;
}

.precon-orange-project-template .orange-info-row span {
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(244, 238, 231, 0.38);
}

.precon-orange-project-template .orange-info-row strong {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.precon-orange-project-template .orange-content {
  display: grid;
  gap: 58px;
}

.precon-orange-project-template .orange-block {
  max-width: 780px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.precon-orange-project-template .orange-block h2 {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--text);
}

.precon-orange-project-template .orange-block p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.85;
}

.precon-orange-project-template .orange-block p:last-child {
  margin-bottom: 0;
}

.precon-orange-project-template .orange-testimonial {
  max-width: 780px;
  padding: 38px 42px;
  border-radius: 28px;
  border: 1px solid rgba(255, 107, 26, 0.2);
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.12), rgba(255, 255, 255, 0.035));
}

.precon-orange-project-template .orange-testimonial .orange-label {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--orange);
}

.precon-orange-project-template .orange-testimonial h3 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--text);
}

.precon-orange-project-template .orange-testimonial p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.precon-orange-project-template .orange-testimonial-quote {
  margin-top: 22px;
  max-width: 720px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.precon-orange-project-template .orange-project-nav {
  padding: 52px 0 110px;
  background: #080604;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.precon-orange-project-template .orange-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.precon-orange-project-template .orange-nav-card {
  position: relative;
  width: min(100%, 230px);
  min-height: 140px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.085);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.precon-orange-project-template .orange-nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.28);
}

.precon-orange-project-template .orange-nav-card small {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--orange);
}

.precon-orange-project-template .orange-nav-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.precon-orange-project-template .orange-nav-card span {
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.18);
  color: var(--orange);
}

.precon-orange-project-template .orange-nav-card-right {
  text-align: right;
}

.precon-orange-project-template .orange-nav-card-right span {
  left: 22px;
  right: auto;
}

.precon-orange-project-template .orange-cta {
  padding: 125px 0 135px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 107, 26, 0.13), transparent 35%), #080604;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.precon-orange-project-template .orange-cta h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(62px, 10vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: var(--text);
}

.precon-orange-project-template .orange-cta h2 span {
  color: var(--orange);
}

.precon-orange-project-template .orange-cta p {
  max-width: 540px;
  margin: 34px auto 36px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

.precon-orange-project-template .orange-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.precon-orange-project-template .orange-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.precon-orange-project-template .orange-btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.precon-orange-project-template .orange-btn-light {
  background: var(--text);
  color: #080604;
}

.precon-orange-project-template .orange-btn-dark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.085);
  color: var(--text);
}

@media (max-width: 1100px) {
  .precon-orange-project-template .orange-project-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .precon-orange-project-template .orange-info-card {
    position: static;
  }
}

@media (max-width: 780px) {
  .precon-orange-project-template .orange-project-hero {
    min-height: auto;
    padding: 120px 0 76px;
  }

  .precon-orange-project-template .orange-breadcrumb {
    margin-bottom: 34px;
  }

  .precon-orange-project-template .orange-project-section {
    padding: 58px 0 88px;
  }

  .precon-orange-project-template .orange-info-card {
    padding: 8px 20px;
  }

  .precon-orange-project-template .orange-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .precon-orange-project-template .orange-info-row strong {
    text-align: left;
  }

  .precon-orange-project-template .orange-content {
    gap: 40px;
  }

  .precon-orange-project-template .orange-block {
    padding-bottom: 36px;
  }

  .precon-orange-project-template .orange-testimonial {
    padding: 28px;
  }

  .precon-orange-project-template .orange-project-nav {
    padding: 36px 0 84px;
  }

  .precon-orange-project-template .orange-nav-grid {
    flex-direction: column;
  }

  .precon-orange-project-template .orange-nav-card {
    width: 100%;
  }

  .precon-orange-project-template .orange-cta {
    padding: 88px 0 100px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.contact-form {
  background: var(--bg-card);
  padding: 56px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
}

.contact-form-message {
  margin: -8px 0 24px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form-message.is-success {
  border-color: rgba(255, 107, 26, 0.38);
  background: rgba(255, 107, 26, 0.1);
}

.contact-form-message.is-error {
  border-color: rgba(255, 80, 80, 0.4);
  background: rgba(255, 80, 80, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s;
  border-radius: 12px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-soft);
}
.form-field textarea { resize: vertical; min-height: 140px; }

.contact-info-block {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
.contact-info-block:hover { border-color: var(--orange); transform: translateX(2px); box-shadow: 0 16px 34px rgba(255,107,26,0.06); }
.contact-info-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: 'Titillium Web', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
.contact-info-value .contact-social-link {
  color: var(--text);
  text-decoration: none;
  background: transparent;
  border: 0;
}
.contact-info-value .contact-social-link:hover,
.contact-info-value .contact-social-link:focus-visible {
  color: var(--text);
  text-decoration: none;
}

.philosophy {
  background: var(--bg-soft);
  padding: 200px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philosophy::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.05), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(80px);
}
.philosophy-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.philosophy-eyebrow {
  font-family: 'Titillium Web', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 16px;
}
.philosophy h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(70px, 10vw, 176px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.philosophy h2 em { font-weight: 700; font-style: normal; color: var(--orange); }
.philosophy-text p {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.good-living-inner {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 72px;
}
.good-living-eyebrow {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.good-living-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--text);
}
.good-living-lede p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  font-weight: 300;
}
.good-living-lede { margin-top: 25px; }
.good-living-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}
.good-living-pillars-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 6px;
  padding-left: 4px;
}
.good-living-pillar {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}
.good-living-pillar-num {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--orange);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.14);
}
.good-living-pillar-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 2px 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.good-living-pillar-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 300;
}
.good-living-visual {
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(600px 420px at 70% 30%, rgba(255,107,26,0.06), transparent 60%),
    radial-gradient(520px 380px at 25% 80%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, var(--surface-1), var(--bg-warm));
}
.good-living-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}
.good-living--pending-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 26px);
  opacity: 0.45;
  mix-blend-mode: overlay;
}
.good-living--pending-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,0.12);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .good-living-inner { gap: 40px; }
  .good-living-visual { min-height: 240px; }
  .good-living-pillar { grid-template-columns: 44px 1fr; padding: 16px; }
  .good-living-pillar-num { width: 44px; height: 44px; border-radius: 14px; font-size: 16px; }
}

.timeline-section {
  padding: 200px 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.timeline-section-inner { max-width: 1600px; margin: 0 auto; }
.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.timeline-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(255,107,26,0.06);
}
.timeline-year {
  font-family: 'Titillium Web', sans-serif;
  font-size: 56px;
  font-weight: 700;
  font-style: normal;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.timeline-event {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.values-list { list-style: none; padding: 0; margin-top: 32px; }
.values-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  transition: padding 0.3s;
}
.values-list li:last-child { border-bottom: none; }
.values-list li:hover { padding-left: 4px; }
.values-num {
  font-family: 'Titillium Web', sans-serif;
  font-size: 40px;
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.values-text { color: var(--text-2); font-weight: 300; font-size: 16px; line-height: 1.6; }
.value-card {
  padding: 28px;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.value-card:hover {
  border-color: var(--orange);
  transform: translateX(4px) translateY(-2px);
  background: var(--bg-soft);
  box-shadow: 0 18px 40px rgba(255,107,26,0.06);
}
.value-card strong {
  font-family: 'Titillium Web', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}
.value-card span { color: var(--text-2); font-weight: 300; font-size: 15px; line-height: 1.5; }
.value-card--featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 107, 26, 0.38);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    var(--bg-card);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}
.value-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.55), rgba(255, 107, 26, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.value-card--featured .acoprovi-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-card--featured .acoprovi-logo {
  display: block;
  width: min(100%, 240px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}
.value-card--featured strong {
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.value-card--featured span {
  font-size: 14px;
}

.precon-testimonials-template #diferenciales {
  scroll-margin-top: 140px;
}

@media (max-width: 1600px) {
  .precon-testimonials-template #diferenciales .section-title {
    font-size: clamp(42px, 5.6vw, 100px);
    margin-bottom: 24px;
  }

  .precon-testimonials-template #diferenciales .section-intro {
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 56px;
  }

  .precon-testimonials-template #diferenciales .timeline-list {
    margin-top: 56px;
    gap: 14px;
  }

  .precon-testimonials-template #diferenciales .value-card {
    padding: 24px;
    margin-bottom: 0;
  }

  .precon-testimonials-template #diferenciales .value-card strong {
    font-size: 24px;
    line-height: 1.03;
    margin-bottom: 6px;
  }

  .precon-testimonials-template #diferenciales .value-card span {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 1366px) {
  .precon-testimonials-template #diferenciales .section-title {
    font-size: clamp(38px, 4.8vw, 88px);
    margin-bottom: 20px;
  }

  .precon-testimonials-template #diferenciales .section-intro {
    font-size: 15px;
    max-width: 640px;
    margin-bottom: 48px;
  }

  .precon-testimonials-template #diferenciales .timeline-list {
    gap: 12px;
  }

  .precon-testimonials-template #diferenciales .value-card {
    padding: 20px 22px;
  }

  .precon-testimonials-template #diferenciales .value-card strong {
    font-size: 22px;
  }

  .precon-testimonials-template #diferenciales .value-card span {
    font-size: 13px;
    line-height: 1.42;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.client-logo {
  padding: 48px 24px;
  text-align: center;
  color: #111;
  font-size: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}
.client-logo:hover {
  color: var(--orange);
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(255,107,26,0.05);
}

.client-logo:focus-visible {
  outline: 2px solid rgba(255, 107, 26, 0.55);
  outline-offset: 4px;
}

.client-logo-img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.35s ease, opacity 0.35s ease;
  filter: none;
  opacity: 1;
}

.client-logo:hover .client-logo-img,
.client-logo:focus-visible .client-logo-img,
.client-logo.is-active .client-logo-img {
  opacity: 1;
}

.client-logo:hover,
.client-logo:focus-visible,
.client-logo.is-active {
  background: #ffffff;
}

.contact-form-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.svg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.svg-tower {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%231f1812'/%3E%3Cstop offset='1' stop-color='%230d0907'/%3E%3C/linearGradient%3E%3Cradialgradient id='glow' cx='0.5' cy='0.5'%3E%3Cstop offset='0' stop-color='%23FF6B1A' stop-opacity='0.15'/%3E%3Cstop offset='1' stop-color='%23FF6B1A' stop-opacity='0'/%3E%3C/radialgradient%3E%3C/defs%3E%3Crect width='800' height='1000' fill='url(%23sky)'/%3E%3Cellipse cx='400' cy='300' rx='400' ry='200' fill='url(%23glow)'/%3E%3Cg transform='translate(280, 80)'%3E%3Crect width='240' height='800' fill='%2316110d' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.3'/%3E%3Cg fill='%23FF6B1A' opacity='0.2'%3E%3Crect x='30' y='40' width='180' height='2'/%3E%3Crect x='30' y='100' width='180' height='2'/%3E%3Crect x='30' y='160' width='180' height='2'/%3E%3Crect x='30' y='220' width='180' height='2'/%3E%3Crect x='30' y='280' width='180' height='2'/%3E%3Crect x='30' y='340' width='180' height='2'/%3E%3Crect x='30' y='400' width='180' height='2'/%3E%3Crect x='30' y='460' width='180' height='2'/%3E%3Crect x='30' y='520' width='180' height='2'/%3E%3Crect x='30' y='580' width='180' height='2'/%3E%3Crect x='30' y='640' width='180' height='2'/%3E%3Crect x='30' y='700' width='180' height='2'/%3E%3Crect x='30' y='760' width='180' height='2'/%3E%3C/g%3E%3Cg fill='%23FFAA66' opacity='0.7'%3E%3Crect x='40' y='160' width='40' height='30'/%3E%3Crect x='100' y='280' width='40' height='30'/%3E%3Crect x='160' y='400' width='40' height='30'/%3E%3Crect x='40' y='520' width='40' height='30'/%3E%3Crect x='160' y='640' width='40' height='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.svg-corporate {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='cbg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%2316110d'/%3E%3Cstop offset='1' stop-color='%230d0907'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='1000' fill='url(%23cbg)'/%3E%3Cg%3E%3Crect x='100' y='200' width='600' height='700' fill='%2316110d' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.3'/%3E%3Cg opacity='0.25'%3E%3Crect x='100' y='300' width='600' height='1' fill='%23FF6B1A'/%3E%3Crect x='100' y='400' width='600' height='1' fill='%23FF6B1A'/%3E%3Crect x='100' y='500' width='600' height='1' fill='%23FF6B1A'/%3E%3Crect x='100' y='600' width='600' height='1' fill='%23FF6B1A'/%3E%3Crect x='100' y='700' width='600' height='1' fill='%23FF6B1A'/%3E%3Crect x='100' y='800' width='600' height='1' fill='%23FF6B1A'/%3E%3C/g%3E%3Crect x='380' y='200' width='40' height='700' fill='%23FF6B1A' opacity='0.25'/%3E%3C/g%3E%3C/svg%3E");
}

.svg-water {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='wsky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23161616'/%3E%3Cstop offset='1' stop-color='%230A0F14'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23wsky)'/%3E%3Crect y='600' width='800' height='400' fill='%230A0F14'/%3E%3Cg opacity='0.7'%3E%3Crect x='0' y='450' width='320' height='200' fill='%23161616'/%3E%3Crect x='480' y='450' width='320' height='200' fill='%23161616'/%3E%3Crect x='0' y='600' width='800' height='40' fill='%23111'/%3E%3C/g%3E%3Cg opacity='0.6'%3E%3Cline x1='320' y1='500' x2='320' y2='650' stroke='%23FF6B1A' stroke-width='3'/%3E%3Cline x1='480' y1='500' x2='480' y2='650' stroke='%23FF6B1A' stroke-width='3'/%3E%3C/g%3E%3Cg opacity='0.4'%3E%3Cline x1='0' y1='700' x2='800' y2='700' stroke='%23888' stroke-width='1'/%3E%3Cline x1='0' y1='780' x2='800' y2='780' stroke='%23888' stroke-width='1' stroke-dasharray='4,8'/%3E%3Cline x1='0' y1='860' x2='800' y2='860' stroke='%23888' stroke-width='1' stroke-dasharray='2,12'/%3E%3C/g%3E%3C/svg%3E");
}

.svg-road {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='rsky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%231f1812'/%3E%3Cstop offset='1' stop-color='%23120d0a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='500' fill='url(%23rsky)'/%3E%3Crect y='500' width='800' height='500' fill='%230d0907'/%3E%3Cpolygon points='0,500 800,500 600,1000 200,1000' fill='%2316110d'/%3E%3Cg fill='%23FF6B1A' opacity='0.3'%3E%3Crect x='395' y='600' width='10' height='40'/%3E%3Crect x='392' y='700' width='16' height='40'/%3E%3Crect x='388' y='820' width='24' height='40'/%3E%3Crect x='382' y='950' width='36' height='50'/%3E%3C/g%3E%3Cline x1='0' y1='500' x2='800' y2='500' stroke='%23FF6B1A' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
}

.svg-resort {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='rsk' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%231A2A3A'/%3E%3Cstop offset='1' stop-color='%230A0F18'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='700' fill='url(%23rsk)'/%3E%3Crect y='700' width='800' height='300' fill='%230F1410'/%3E%3Cg opacity='0.7'%3E%3Crect x='150' y='500' width='500' height='200' fill='%231F1F1F'/%3E%3Cpolygon points='150,500 400,420 650,500' fill='%23252525'/%3E%3C/g%3E%3Cg opacity='0.7' fill='%23FF6B1A'%3E%3Crect x='200' y='540' width='80' height='6'/%3E%3Crect x='320' y='540' width='80' height='6'/%3E%3Crect x='440' y='540' width='80' height='6'/%3E%3Crect x='560' y='540' width='80' height='6'/%3E%3C/g%3E%3Cline x1='0' y1='700' x2='800' y2='700' stroke='%23FF6B1A' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E");
}

.svg-industrial {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000' preserveAspectRatio='xMidYMid slice'%3E%3Crect width='800' height='1000' fill='%23111'/%3E%3Cg opacity='0.6'%3E%3Cpolygon points='100,200 700,200 700,800 100,800' fill='%23161616'/%3E%3Cpolygon points='100,200 400,100 700,200' fill='%23222'/%3E%3C/g%3E%3Cg opacity='0.5' stroke='%23333' stroke-width='1' fill='none'%3E%3Cline x1='200' y1='200' x2='200' y2='800'/%3E%3Cline x1='300' y1='200' x2='300' y2='800'/%3E%3Cline x1='400' y1='200' x2='400' y2='800'/%3E%3Cline x1='500' y1='200' x2='500' y2='800'/%3E%3Cline x1='600' y1='200' x2='600' y2='800'/%3E%3Cline x1='100' y1='400' x2='700' y2='400'/%3E%3Cline x1='100' y1='600' x2='700' y2='600'/%3E%3C/g%3E%3Crect x='380' y='700' width='40' height='100' fill='%23FF6B1A' opacity='0.5'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(n+7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }

body.admin-bar nav.navbar { top: 48px; }
body.admin-bar .progress { top: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar nav.navbar { top: 54px; }
  body.admin-bar .progress { top: 46px; }
}

@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.large { grid-row: auto; min-height: 280px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 1024px) {
  .about-grid, .diana-grid, .philosophy-inner, .contact-grid, .project-detail-body, .values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-grid, .leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; padding-left: 0; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
  .projects-grid, .projects-full-grid, .testimonials-grid, .timeline-list, .services-grid { grid-template-columns: repeat(2, 1fr); }
  nav.navbar {
    padding: 12px 16px;
    top: 8px;
    left: 8px;
    right: 8px;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
  }
  .nav-cta {
    margin-left: auto;
  }
  section.block, .stats-banner, .cta-banner, .philosophy, .timeline-section { padding: 100px 24px; }
  .hero { padding: 100px 24px 32px; }
  .marquee-track { font-size: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 1024px) {
  nav.navbar {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body:not(.js-ready) .nav-links {
    display: none;
  }

  body:not(.js-ready) .nav-links a {
    display: none;
  }

  body:not(.js-ready) .nav-links-cta {
    display: none;
  }

  body:not(.js-ready) .nav-links-cta .nav-cta {
    display: none;
  }

  body.js-ready .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body.js-ready .nav-cta {
    display: none;
  }

  body.js-ready.nav-open nav.navbar {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    padding: 40px 32px calc(50px + env(safe-area-inset-bottom));
    align-items: flex-start;
    align-content: flex-start;
    border: 0;
    border-radius: 0;
    background: rgba(13,9,7,0.96);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    box-shadow: none;
    overflow: hidden;
    z-index: 150;
  }

  body.admin-bar.js-ready.nav-open nav.navbar {
    top: 0;
    height: 100dvh;
  }

  body.js-ready.nav-open .logo {
    position: relative;
    z-index: 152;
    margin-bottom: 35px;
  }

  body.js-ready.nav-open .logo svg,
  body.js-ready.nav-open .logo img {
    height: 42px;
    max-height: 42px;
  }

  body.js-ready.nav-open .nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 58px;
    height: 58px;
    margin-left: 0;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    z-index: 153;
  }

  body.js-ready .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: clamp(116px, 17dvh, 148px) 32px calc(120px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 100dvh;
    z-index: 151;
  }

  body.admin-bar.js-ready .nav-links {
    max-height: 100dvh;
  }

  body.js-ready.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 14px;
    padding-bottom: 10px;
  }

  .nav-links a {
    width: 100%;
    min-height: 0;
    border-radius: 0;
    justify-content: flex-start;
    padding: 0;
    font-family: 'Titillium Web', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .nav-links a:hover {
    background: transparent;
    color: var(--orange);
  }

  .nav-links a.active {
    background: transparent;
    color: var(--orange);
    border-bottom-color: rgba(255,107,26,0.42);
  }

  body.js-ready .nav-links-cta {
    display: block;
    margin: 38px auto 0;
    padding-top: 28px;
    padding-bottom: 34px;
    width: 100%;
    max-width: 560px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  body.js-ready .nav-links-cta .nav-cta {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: none;
    background: transparent;
    border: 0;
    border-bottom: 0;
    color: var(--text);
  }

  .nav-toggle span:nth-child(1),
  .nav-toggle span:nth-child(3) {
    width: 16px;
  }

  body.js-ready.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 18px;
  }

  body.js-ready.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.js-ready.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 18px;
  }
}
@media (max-width: 640px) {
  .stats-grid, .leaders-grid, .projects-grid, .projects-full-grid, .testimonials-grid, .footer-grid, .bento, .timeline-list, .services-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .precon-map-iframe { height: 240px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  body.js-ready .nav-links,
  body:not(.js-ready) .nav-links {
    gap: 8px;
  }
  body:not(.js-ready) .nav-links {
    display: none;
  }
  body:not(.js-ready) .nav-links a {
    display: none;
    font-size: 11px;
    padding: 14px 16px;
  }
  body.js-ready .nav-links {
    gap: 0;
    padding: clamp(108px, 16dvh, 132px) 32px calc(120px + env(safe-area-inset-bottom));
  }
  body.js-ready .nav-links a {
    min-height: 0;
    padding: 0;
    font-size: 22px;
    letter-spacing: 0.08em;
  }
  body.js-ready .nav-links-cta .nav-cta {
    min-height: 0;
    padding: 0;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
  }
  body:not(.js-ready) .nav-links-cta .nav-cta,
  body:not(.js-ready) > .nav-cta,
  nav.navbar > .nav-cta {
    padding: 12px 16px;
    font-size: 11px;
  }
  body:not(.js-ready) .nav-links-cta .nav-cta {
    display: none;
  }

  .precon-home-template .bento-card,
  .precon-services-template .bento-card {
    padding: 24px 20px;
    gap: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .precon-home-template .bento-question-placeholder,
  .precon-services-template .bento-question-placeholder {
    justify-self: end;
    align-self: start;
    width: 74px;
    height: 74px;
    margin: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .precon-home-template .bento-card.large .bento-question-placeholder,
  .precon-home-template .bento-question-placeholder.is-large,
  .precon-services-template .bento-card.large .bento-question-placeholder,
  .precon-services-template .bento-question-placeholder.is-large {
    justify-self: end;
    align-self: start;
    width: 88px;
    height: 88px;
    margin: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .precon-home-template .service-icon-svg {
    width: 100%;
    height: 100%;
  }

  .services-grid {
    gap: 14px;
  }

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

  .service-media {
    height: 200px;
  }

  .service-body {
    padding: 22px 20px 24px;
  }

  .service-title {
    font-size: clamp(26px, 8vw, 34px);
  }

  .precon-home-template .bento-card h3,
  .precon-services-template .bento-card h3 {
    max-width: 100%;
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .precon-home-template .bento-card-icon,
  .precon-services-template .bento-card-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .precon-home-template .bento-card-content,
  .precon-services-template .bento-card-content {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .project-detail-hero {
    height: auto;
    min-height: 62vh;
    margin: 80px 16px 0;
    border-radius: 20px;
  }

  .project-detail-info {
    padding: 56px 24px 24px;
  }

  .project-detail-info h1 {
    font-size: clamp(34px, 8vw, 72px);
  }

  .project-detail-body {
    padding: 72px 24px;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .spec-card {
    position: static;
    top: auto;
    padding: 28px 22px;
  }

  .spec-row {
    gap: 16px;
  }

  .project-tech-sheet {
    padding: 0 24px 72px;
  }

  .project-tech-sheet-inner {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .project-tech-item {
    gap: 12px;
  }

  .project-tech-item strong {
    font-size: 15px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    padding: 0 24px;
    margin-bottom: 72px;
  }

  .gallery-img {
    aspect-ratio: 4 / 3;
  }

  .gallery-img:first-child {
    aspect-ratio: 4 / 3;
    grid-row: auto;
  }

  .project-nav {
    padding: 64px 24px;
  }

  .project-nav-inner {
    flex-direction: column;
    gap: 32px;
  }

  .project-nav-inner > div {
    width: 100%;
  }

  .project-nav-link {
    width: 100%;
    min-height: 160px;
    padding: 26px 24px;
  }

  .project-nav-inner > div:last-child {
    text-align: left !important;
    display: flex;
    justify-content: flex-start;
  }

  .project-nav-link strong {
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1;
  }
}

@media (max-width: 640px) {
  .project-detail-hero {
    min-height: 56vh;
    margin: 72px 12px 0;
    border-radius: 18px;
  }

  .project-detail-info {
    padding: 44px 18px 18px;
  }

  .project-detail-info .breadcrumb {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  .project-detail-info h1 {
    font-size: clamp(30px, 9vw, 48px);
  }

  .project-detail-body {
    padding: 56px 16px;
    gap: 24px;
  }

  .spec-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .spec-value {
    text-align: left;
    font-size: 15px;
  }

  .project-description h2 {
    font-size: clamp(34px, 9vw, 48px);
    margin-bottom: 24px;
  }

  .project-description p {
    font-size: 15px;
  }

  .project-tech-sheet {
    padding: 0 16px 56px;
  }

  .project-tech-sheet-inner {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .project-tech-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .project-tech-item strong {
    text-align: left;
  }

  .project-gallery {
    padding: 0 16px;
    margin-bottom: 56px;
  }

  .gallery-img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .project-nav {
    padding: 52px 16px;
  }

  .project-nav-link {
    min-height: 148px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .project-nav-link::after {
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .project-nav-link span {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .project-nav-link strong {
    font-size: clamp(22px, 8vw, 34px);
  }
}

body,
p,
li,
a,
span,
small,
label,
input,
select,
textarea,
button,
.nav-links a,
.nav-cta,
.eyebrow,
.section-meta,
.hero-manifesto,
.hero-stat-label,
.about-copy,
.quote-attribution,
.expertise-meta,
.service-number,
.project-meta,
.stat-label,
.testimonial-role,
.testimonial-text,
.client-logo,
.breadcrumb,
.timeline-year,
.timeline-desc,
.leader-role,
.contact-label,
.contact-info-value,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.footer-links a,
.footer-bottom,
.footer-contact,
.footer-copy {
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.page-hero h1,
.project-info h3,
.diana-title,
.leader-name,
.testimonial-name,
.contact-info-value,
.cta-title,
.about-title,
.philosophy-title,
.timeline-title,
.footer-brand,
.project-detail-title,
.project-detail-value {
  font-family: 'Titillium Web', sans-serif;
}

h2,
h3,
.section-title,
.project-info h3,
.diana-title,
.leader-name,
.testimonial-name,
.contact-info-value,
.cta-title,
.about-title,
.philosophy-title,
.timeline-title,
.footer-brand,
.project-detail-title,
.project-detail-value {
  font-weight: 600;
}

