/*
Theme Name: Sabana Premium
Theme URI: https://example.com/sabana-premium
Author: Depropiedades
Author URI: https://example.com
Description: Theme premium para empresa especializada en desarrollo, consultoria y comercializacion de proyectos inmobiliarios en la Sabana de Bogota.
Version: 1.8.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: sabana-premium
*/

:root {
  --navy: #031225;
  --navy-soft: #071b34;
  --navy-card: #0b223d;
  --ink: #ffffff;
  --ink-muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c9a968;
  --green: #9cb78d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.admin-bar .site-header {
  top: 32px;
}

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(3, 18, 37, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-line {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 300;
}

.nav-menu,
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(201, 169, 104, 0.65);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #061426;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.96) 0%, rgba(3, 18, 37, 0.72) 42%, rgba(3, 18, 37, 0.14) 78%),
    linear-gradient(0deg, var(--navy) 0%, rgba(3, 18, 37, 0) 34%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 15s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  58% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 98px 0 58px;
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-title {
  max-width: 780px;
  font-size: clamp(3.1rem, 8vw, 7.9rem);
  font-weight: 900;
}

.title-light {
  display: block;
  font-weight: 300;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 300;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 112px;
  padding: 24px;
  background: rgba(7, 27, 52, 0.72);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
}

.metric span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.section {
  padding: 104px 0;
}

.section.alt {
  background: var(--navy-soft);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  font-weight: 900;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.04rem;
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 52px;
  align-items: center;
}

.statement {
  padding: 48px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.statement p {
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

.statement strong {
  font-weight: 900;
}

.panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.panel h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

.panel p {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.compact-pillars {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.compact-pillars span {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-panel {
  border-color: rgba(201, 169, 104, 0.42);
  background: rgba(201, 169, 104, 0.075);
}

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

.audience-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--navy-card);
}

.audience-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-top: 58px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 900;
}

.audience-card p {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  counter-reset: roadmap;
}

.road-step {
  min-height: 260px;
  padding: 30px;
  position: relative;
  background: rgba(11, 34, 61, 0.78);
}

.road-step::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.road-step span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.road-step h3 {
  margin-top: 34px;
  font-size: 1.1rem;
  font-weight: 900;
}

.road-step p {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 52px;
  align-items: stretch;
}

.trust-main {
  padding: 48px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 169, 104, 0.13), rgba(255, 255, 255, 0.025)),
    var(--navy-card);
}

.trust-main h3 {
  max-width: 780px;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  font-weight: 900;
}

.trust-main p {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  font-weight: 300;
}

.trust-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-flow span {
  min-height: 118px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background: rgba(3, 18, 37, 0.74);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-panel {
  padding: 38px;
  border: 1px solid rgba(201, 169, 104, 0.42);
  background: rgba(201, 169, 104, 0.075);
}

.legal-panel h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

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

.investment-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.investment-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.investment-card h3 {
  margin-top: 42px;
  font-size: 1.12rem;
  font-weight: 900;
}

.investment-card p {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.legal-note,
.project-risk-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 300;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 270px;
  padding: 32px;
  background: var(--navy-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-card p {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-card {
  min-height: 290px;
  padding: 32px;
  background: var(--navy-card);
}

.method-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(201, 169, 104, 0.16), rgba(255, 255, 255, 0.035)),
    var(--navy-card);
}

.method-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-card h3 {
  margin-top: 42px;
  font-size: clamp(1.25rem, 2.8vw, 2.4rem);
  font-weight: 900;
}

.method-card p {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.compact-method .method-card {
  min-height: 230px;
}

.compact-method .method-card h3 {
  margin-top: 30px;
}

.project-showcase {
  display: grid;
  gap: 18px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-image {
  min-height: 480px;
  background: rgba(255, 255, 255, 0.04);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 44px;
  background: var(--navy-card);
}

.project-content h3 {
  font-size: clamp(1.8rem, 3.5vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
}

.project-content p {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.project-facts {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.project-facts span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.project-visual-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.project-visual-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-visual-grid figcaption {
  padding: 18px 20px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.project-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.option-card {
  min-height: 230px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #071c35;
}

.option-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.option-card h3 {
  margin-top: 30px;
  font-size: 1.05rem;
  font-weight: 900;
}

.option-card p {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

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

.editable-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.editable-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.editable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editable-body {
  padding: 28px;
}

.project-logo-mark {
  max-width: 150px;
  max-height: 58px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.editable-body h3 {
  font-size: 1.12rem;
}

.project-promise {
  color: var(--gold) !important;
  font-size: 0.82rem;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.editable-body p {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

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

.editable-body li {
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.editable-body strong {
  color: var(--ink);
  font-weight: 900;
}

.project-single-hero {
  min-height: 76vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.project-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.98), rgba(3, 18, 37, 0.54)),
    linear-gradient(0deg, var(--navy), rgba(3, 18, 37, 0.1));
}

.project-single-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.project-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-single-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.single-project-logo {
  max-width: 220px;
  max-height: 90px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.project-hero-promise {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.42fr);
  gap: 52px;
  align-items: start;
}

.project-copy {
  margin-top: 28px;
  color: var(--ink-muted);
  font-weight: 300;
}

.project-copy p {
  margin: 0 0 20px;
}

.brand-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.brand-board div {
  min-height: 180px;
  padding: 28px;
  background: var(--navy-card);
}

.brand-board span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-board p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 300;
}

.marketing-story {
  display: grid;
  gap: 28px;
  margin-top: 42px;
  padding: 34px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.marketing-story h3 {
  font-size: 1rem;
  font-weight: 900;
}

.marketing-story p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.secondary-title {
  margin-top: 58px;
}

.project-data-panel {
  padding: 34px;
  border: 1px solid rgba(201, 169, 104, 0.42);
  background: rgba(201, 169, 104, 0.075);
}

.project-data-panel h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.project-data-panel ul {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.project-data-panel li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.project-data-panel strong,
.project-data-panel span {
  display: block;
}

.project-data-panel strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-data-panel span {
  margin-top: 6px;
  color: var(--ink-muted);
  font-weight: 300;
}

.project-risk-note {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.land-section {
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.94), rgba(3, 18, 37, 0.76)),
    radial-gradient(circle at 70% 20%, rgba(156, 183, 141, 0.22), transparent 32%),
    var(--navy);
}

.land-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.land-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.render-tile {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.render-tile.small {
  min-height: 201px;
}

.render-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.render-tile.placeholder {
  display: grid;
  place-items: end start;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 169, 104, 0.16), rgba(156, 183, 141, 0.08)),
    var(--navy-card);
}

.render-label {
  max-width: 280px;
  color: var(--ink-muted);
  font-weight: 300;
}

.render-label strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #020d1c;
}

.cta-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  color: var(--ink-muted);
  background: #020914;
  font-size: 0.86rem;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: var(--ink);
  text-transform: uppercase;
}

.content-page {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.content-page article {
  max-width: 760px;
}

.content-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-menu,
  .nav-menu ul {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .section-head,
  .split,
  .trust-layout,
  .project-feature,
  .project-detail-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .audience-grid,
  .brand-board,
  .editable-projects,
  .investment-grid,
  .method-grid,
  .project-visual-grid,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-card.featured {
    grid-column: span 2;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  body.admin-bar .site-header {
    top: 0;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .display-title {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 18, 37, 0.98), rgba(3, 18, 37, 0.82)),
      linear-gradient(0deg, var(--navy), rgba(3, 18, 37, 0.14));
  }

  .section {
    padding: 74px 0;
  }

  .statement,
  .panel,
  .service-card {
    padding: 26px;
  }

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

  .audience-grid,
  .brand-board,
  .editable-projects,
  .investment-grid,
  .method-grid,
  .project-visual-grid,
  .project-options,
  .roadmap {
    grid-template-columns: 1fr;
  }

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

  .trust-flow {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .trust-main,
  .legal-panel,
  .investment-card,
  .method-card,
  .project-content,
  .option-card,
  .road-step {
    min-height: auto;
    padding: 26px;
  }

  .project-image {
    min-height: 300px;
  }

  .audience-card h3,
  .road-step h3 {
    margin-top: 28px;
  }

  .render-tile,
  .render-tile.small {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide.active {
    opacity: 1;
  }
}
