@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}

:root {
  --bg: #061635;
  --bg-deep: #041128;
  --bg-soft: #0c234e;
  --panel: rgba(8, 23, 54, 0.88);
  --panel-soft: rgba(13, 33, 76, 0.72);
  --panel-elevated: #0b1f47;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(228, 182, 87, 0.18);
  --line-strong: rgba(228, 182, 87, 0.34);
  --gold: #e4b657;
  --gold-soft: #f1cf85;
  --gold-wash: rgba(228, 182, 87, 0.12);
  --emerald: #52c797;
  --indigo: #8aa1ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.18);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --container: 1280px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 36px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;
  --space-10: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 182, 87, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(116, 155, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #05112a 0%, #061635 35%, #071b40 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 75%);
  opacity: 0.16;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.site-shell {
  position: relative;
}

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

.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 33, 76, 0.92), rgba(7, 21, 48, 0.92));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 36%);
}

.content-shell {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  padding: 32px;
}

.surface--soft {
  background: linear-gradient(180deg, rgba(16, 37, 82, 0.82), rgba(8, 24, 56, 0.72));
}

.surface--glass {
  background: rgba(10, 23, 54, 0.6);
  backdrop-filter: blur(18px);
}

.section {
  padding: var(--space-9) 0;
}

.section-heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  max-width: 760px;
}

.section-heading :is(h2, h3) {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(228, 182, 87, 0.26);
  background: rgba(228, 182, 87, 0.08);
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.eyebrow__icon {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  border-radius: 999px;
  background: rgba(228, 182, 87, 0.14);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.button--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a1531;
  box-shadow: 0 18px 40px rgba(228, 182, 87, 0.26);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(228, 182, 87, 0.34);
  background: rgba(228, 182, 87, 0.08);
}

.button--small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.94rem;
}

.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.button--block {
  width: 100%;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 240;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #061635;
  transform: translateY(-160%);
  transition: transform 180ms ease;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(5, 18, 42, 0.78);
  border-bottom: 1px solid rgba(228, 182, 87, 0.12);
}

.site-header--transparent {
  background: rgba(5, 18, 42, 0.42);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 18px 0;
}

.partner-strip {
  padding: 14px 0 0;
}

.partner-strip > .container {
  width: 100%;
}

.partner-strip__viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px clamp(18px, 3vw, 36px);
  border: 0;
  background: transparent;
}

.partner-strip__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: partner-strip-scroll 28s linear infinite;
}

.partner-strip__lane {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: max-content;
  padding-inline: 0;
}

.partner-strip__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 6px 8px;
  border: 0;
  background: transparent;
}

.partner-strip__item img {
  width: auto;
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

.partner-strip__item--larsen-toubro img {
  max-height: 32px;
  transform: scale(1.16);
  transform-origin: center;
}

.partner-strip__viewport:hover .partner-strip__track {
  animation-play-state: paused;
}

@keyframes partner-strip-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(56px, 7vw, 72px);
  aspect-ratio: 1;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-nav__links a {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 180ms ease;
}

.site-nav__links a[aria-current="page"] {
  color: var(--text);
}

.site-nav__links a[aria-current="page"]::after,
.site-nav__links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.compare-badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(228, 182, 87, 0.18);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.stat-grid,
.grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

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

.stat-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(228, 182, 87, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.value-card,
.location-card,
.article-card {
  padding: 28px;
}

.answer-summary {
  gap: 22px;
}

.answer-summary .section-heading {
  margin-bottom: 0;
}

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

.answer-summary__item {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.answer-summary__item h3 {
  font-size: 1.5rem;
}

.answer-summary__item p {
  color: var(--muted);
}

.value-card h3,
.location-card h3,
.article-card h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.value-card p,
.location-card p,
.article-card p {
  color: var(--muted);
}

.location-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.location-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.location-card__metrics div {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-card__metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.location-card__metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
}

.list-check {
  display: grid;
  gap: 12px;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--gold) 0, var(--gold) 45%, transparent 46%);
  box-shadow: 0 0 0 5px rgba(228, 182, 87, 0.12);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}

.chip-list li,
.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 182, 87, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 33, 76, 0.92), rgba(7, 21, 48, 0.92));
  box-shadow: var(--shadow-soft);
}

.project-card--featured .project-card__media {
  min-height: 360px;
}

.project-card--compact .project-card__media {
  min-height: 260px;
}

.project-card__media {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 37, 0.08), rgba(5, 16, 37, 0.76)),
    linear-gradient(0deg, rgba(5, 16, 37, 0.86), transparent 42%);
}

.project-card__badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 22, 53, 0.62);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
}

.badge--ghost {
  color: var(--text);
}

.badge.is-gold {
  color: #09152f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
}

.badge.is-emerald {
  background: rgba(82, 199, 151, 0.15);
  color: #aef0d2;
}

.badge.is-indigo {
  background: rgba(138, 161, 255, 0.16);
  color: #d2dbff;
}

.project-card__body {
  display: grid;
  gap: 16px;
  padding: 24px 24px 16px;
}

.project-card__meta {
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-card__body h3 {
  font-size: 2rem;
}

.project-card__body p {
  color: var(--muted);
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px 24px;
}

.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.lead-panel {
  padding: 28px;
}

.lead-panel__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.lead-panel__intro h3 {
  font-size: 2rem;
}

.lead-panel__intro p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select option {
  color: #061635;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(228, 182, 87, 0.48);
  box-shadow: 0 0 0 4px rgba(228, 182, 87, 0.14);
}

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

.lead-form__actions {
  display: grid;
  gap: 12px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 140;
}

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

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 20, 0.72);
  backdrop-filter: blur(18px);
}

.lead-modal__dialog {
  position: relative;
  width: min(calc(100% - 32px), 760px);
  margin: min(8vh, 48px) auto;
  z-index: 1;
}

.lead-modal__dialog .lead-panel {
  padding-top: 60px;
}

.lead-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero,
.page-hero,
.detail-hero,
.article-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 88px 0 96px;
}

.hero::before,
.page-hero::before,
.detail-hero::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(228, 182, 87, 0.18), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(116, 155, 255, 0.16), transparent 22%);
  pointer-events: none;
}

.hero__grid,
.page-hero__grid,
.detail-hero__grid,
.article-layout,
.editorial-split,
.contact-grid,
.compare-layout {
  display: grid;
  gap: var(--space-5);
}

.editorial-split > * {
  min-width: 0;
}

.editorial-split .section-heading {
  margin-bottom: 22px;
}

.editorial-split .section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 0.98;
  max-width: 14ch;
}

.editorial-split .insights-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.editorial-split .location-grid,
.editorial-split .news-card-grid,
.editorial-split .news-card-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.editorial-split .location-card,
.editorial-split .news-card {
  display: grid;
  align-content: start;
  height: 100%;
}

.editorial-split .location-card__metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-split .article-card {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
}

.editorial-split .article-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1;
}

.editorial-split .article-card p {
  font-size: 1rem;
  line-height: 1.72;
}

.editorial-split .article-card .text-link {
  margin-top: auto;
}

.hero__grid,
.page-hero__grid,
.detail-hero__grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
}

.hero__content,
.page-hero__content,
.detail-hero__content,
.article-layout__body {
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.hero__headline,
.page-hero__headline,
.detail-hero__headline,
.article-layout__body h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.hero__copy,
.page-hero__copy,
.detail-hero__copy,
.article-layout__body > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero__actions,
.cta-band__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.detail-source-links {
  margin-top: 6px;
}

.hero__brand-card,
.hero__project-spotlight,
.spotlight-card,
.page-aside,
.detail-aside,
.article-quote,
.contact-card {
  padding: 28px;
}

.hero__brand-card {
  display: grid;
  gap: 16px;
}

.hero__brand-card img {
  width: min(290px, 100%);
}

.hero__brand-card p {
  color: var(--muted);
  max-width: 36ch;
}

.hero__media-stack {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero__project-spotlight,
.spotlight-card {
  display: grid;
  gap: 18px;
}

.hero__spotlight-media {
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  min-height: 360px;
}

.hero__spotlight-media img,
.media-frame img,
.detail-gallery img,
.detail-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__spotlight-media::after,
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 40, 0.05), rgba(4, 17, 40, 0.6));
}

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

.hero__quick-facts div,
.metric-card,
.mini-stat {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__quick-facts span,
.metric-card span,
.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__quick-facts strong,
.metric-card strong,
.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.brand-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-6);
}

.brand-band .footer-pill {
  background: rgba(255, 255, 255, 0.05);
}

.editorial-split {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.stack {
  display: grid;
  gap: var(--space-4);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline__item strong {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(228, 182, 87, 0.24);
  color: var(--gold-soft);
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
}

.timeline__item h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.timeline__item p {
  color: var(--muted);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.project-grid,
.location-grid,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.page-hero,
.detail-hero,
.article-hero {
  padding: 72px 0 40px;
}

.page-aside,
.detail-aside,
.article-quote,
.contact-card {
  display: grid;
  gap: 18px;
  align-self: start;
}

.page-aside p,
.detail-aside p,
.article-quote p,
.contact-card p {
  color: var(--muted);
}

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

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.detail-gallery .media-frame {
  min-height: clamp(260px, 46vw, 520px);
}

.media-frame,
.detail-gallery img,
.detail-map {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.detail-summary {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.detail-summary h2,
.page-aside h2,
.detail-aside h2,
.article-quote h2,
.contact-card h2 {
  font-size: 2.1rem;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list li {
  list-style: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-strong);
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.article-layout__body {
  gap: 28px;
}

.article-layout__body h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.article-layout__body h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.article-layout__body p,
.article-layout__body li {
  color: var(--muted);
}

.article-layout__body ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.policy-copy {
  display: grid;
  gap: 24px;
}

.policy-copy section {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-copy section:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-copy h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.policy-copy p {
  color: var(--muted);
  max-width: 80ch;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.5em;
  border-right: 2px solid rgba(120, 137, 170, 0.72);
  border-bottom: 2px solid rgba(120, 137, 170, 0.72);
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::before {
  transform: translateY(1px) rotate(45deg);
}

.faq-item p {
  padding: 0 22px 22px 46px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 32px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: var(--muted);
  max-width: 60ch;
}

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

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
}

.compare-empty,
.compare-shell {
  padding: 28px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: var(--muted-strong);
  vertical-align: top;
}

.compare-table th {
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: var(--space-9) 0 var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--space-10);
  background: linear-gradient(180deg, rgba(4, 17, 40, 0.12), rgba(4, 17, 40, 0.7));
}

.site-footer__keywords {
  margin-bottom: var(--space-7);
}

.site-footer__keyword-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-5);
}

.site-footer__keyword-group {
  min-width: 0;
}

.site-footer__keyword-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}

.site-footer__keyword-group summary::-webkit-details-marker {
  display: none;
}

.site-footer__keyword-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: currentColor;
  opacity: 0.72;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.site-footer__keyword-group[open] summary::after {
  content: "-";
}

.site-footer__keyword-links {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.site-footer__keyword-links a {
  display: block;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: var(--space-6);
}

.site-footer__brand {
  display: grid;
  gap: 16px;
}

.site-footer__brand img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: contain;
}

.site-footer__brand p,
.site-footer__bottom,
.site-footer__grid a,
.site-footer__keyword-links a {
  color: var(--muted);
}

.site-footer__keywords-title,
.site-footer__keyword-group h4,
.site-footer__grid h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.site-footer__keyword-group h4 {
  margin-bottom: 0;
}

.site-footer__grid a {
  display: block;
  margin-bottom: 10px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__rera {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__rera strong {
  color: #ffffff;
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.buyers-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buyers-search-links .footer-pill {
  margin-bottom: 0;
}

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

@media (min-width: 721px) {
  .site-footer__keyword-group summary {
    cursor: default;
  }

  .site-footer__keyword-group summary::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-footer__keyword-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__keyword-grid {
    gap: 18px;
  }

  .site-footer__keyword-group {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__keyword-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer__keyword-group summary {
    min-height: 44px;
  }

  .site-footer__keyword-links {
    padding-top: 12px;
  }
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(228, 182, 87, 0.16);
  background: rgba(5, 18, 42, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-cta a,
.mobile-cta button {
  min-height: 48px;
  border-radius: 16px;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
}

.mobile-cta button {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a1531;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero__grid,
  .page-hero__grid,
  .detail-hero__grid,
  .contact-grid,
  .article-layout,
  .editorial-split,
  .compare-layout {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .location-grid,
  .insights-grid,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .editorial-split .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    align-items: center;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(5, 18, 42, 0.95);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav__links a[aria-current="page"] {
    color: #ffffff;
  }

  .site-nav__links a:hover,
  .site-nav__links a:focus-visible {
    color: rgba(255, 255, 255, 0.88);
  }

  .site-nav__actions .button {
    width: 100%;
  }

  .hero__headline,
  .page-hero__headline,
  .detail-hero__headline,
  .article-layout__body h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .editorial-split .location-grid,
  .editorial-split .location-card__metrics {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .metric-cluster,
  .location-card__metrics,
  .hero__quick-facts,
  .grid--2,
  .form-grid,
  .project-grid,
  .location-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .content-shell,
  .lead-panel,
  .hero__brand-card,
  .hero__project-spotlight,
  .project-card__body,
  .project-card__actions,
  .value-card,
  .location-card,
  .article-card,
  .detail-summary,
  .page-aside,
  .detail-aside,
  .article-quote,
  .contact-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    width: 100%;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item summary {
    gap: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .faq-item summary::before {
    flex-basis: 8px;
    width: 8px;
    height: 8px;
  }

  .faq-item p {
    padding: 0 16px 16px 36px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero__actions,
  .cta-band__actions,
  .contact-actions {
    width: 100%;
  }
}

.section--tight {
  padding-top: 0;
  padding-bottom: var(--space-8);
}

.section-heading--compact {
  margin-bottom: 0;
  max-width: none;
}

.discovery-panel {
  display: grid;
  gap: var(--space-6);
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.discovery-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.discovery-card:hover,
.discovery-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(20, 42, 90, 0.92), rgba(10, 26, 58, 0.92));
}

.discovery-card:hover,
.discovery-card:focus-visible {
  color: #ffffff;
}

.discovery-card:hover h3,
.discovery-card:focus-visible h3,
.discovery-card:hover strong,
.discovery-card:focus-visible strong {
  color: #ffffff;
}

.discovery-card:hover p,
.discovery-card:focus-visible p {
  color: rgba(255, 255, 255, 0.88);
}

.discovery-card:hover .location-card__tag,
.discovery-card:focus-visible .location-card__tag {
  color: rgba(255, 255, 255, 0.72);
}

.brand-plaque {
  display: inline-grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 28px;
  border: 1px solid rgba(228, 182, 87, 0.18);
  background:
    radial-gradient(circle at top left, rgba(228, 182, 87, 0.2), transparent 52%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.brand-plaque img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.stack--compact {
  gap: 12px;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.floorplan-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.media-frame--map img {
  min-height: 280px;
  object-fit: cover;
}

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

@media (max-width: 720px) {
  .discovery-grid,
  .floorplan-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #061635;
  --bg-deep: #f3efe6;
  --bg-soft: #f7f3ec;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.82);
  --panel-elevated: #ffffff;
  --text: #0d1d39;
  --muted: rgba(13, 29, 57, 0.64);
  --muted-strong: rgba(13, 29, 57, 0.82);
  --line: rgba(6, 22, 53, 0.08);
  --line-strong: rgba(6, 22, 53, 0.16);
  --gold: #e4b657;
  --gold-soft: #efd8a2;
  --gold-wash: rgba(228, 182, 87, 0.12);
  --shadow: 0 28px 80px rgba(13, 29, 57, 0.12);
  --shadow-soft: 0 18px 42px rgba(13, 29, 57, 0.08);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 182, 87, 0.18), transparent 24%),
    radial-gradient(circle at 92% 6%, rgba(6, 22, 53, 0.05), transparent 16%),
    linear-gradient(180deg, #faf7f2 0%, #f6f2ea 35%, #fdfcf9 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(6, 22, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 22, 53, 0.03) 1px, transparent 1px);
  opacity: 0.06;
}

.surface,
.project-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96));
  border-color: rgba(6, 22, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.surface::before {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.78), transparent 36%);
}

.surface--soft,
.surface--glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 235, 0.94));
}

.site-header {
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid rgba(6, 22, 53, 0.08);
}

.site-header--transparent {
  background: rgba(250, 247, 242, 0.74);
}

.site-nav__links a {
  color: var(--muted);
}

.eyebrow {
  border-color: rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.eyebrow__icon {
  background: rgba(6, 22, 53, 0.06);
  color: var(--bg);
}

.button--gold {
  background: linear-gradient(135deg, #061635, #15335f);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(6, 22, 53, 0.18);
}

.button--ghost {
  border-color: rgba(6, 22, 53, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(6, 22, 53, 0.16);
  background: rgba(6, 22, 53, 0.04);
}

.text-link {
  color: var(--bg);
}

.stat-card,
.hero__quick-facts div,
.metric-card,
.mini-stat,
.location-card__metrics div,
.detail-list li,
.compare-shell,
.compare-empty,
.field input,
.field select,
.field textarea,
.filter-bar,
.filter-bar input,
.filter-bar select,
.chip-list li,
.footer-pill {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(6, 22, 53, 0.08);
  color: var(--muted-strong);
}

.stat-card strong,
.project-card__meta,
.article-card__meta,
.location-card__tag,
.compare-table th {
  color: var(--bg);
}

.project-card__wash {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(9, 21, 47, 0.18)),
    linear-gradient(0deg, rgba(9, 21, 47, 0.2), transparent 42%);
}

.project-card__body p,
.section-heading p,
.hero__copy,
.page-hero__copy,
.detail-hero__copy,
.article-layout__body > p,
.lead-panel__intro p,
.page-aside p,
.detail-aside p,
.article-quote p,
.contact-card p,
.policy-copy p,
.cta-band p,
.article-layout__body p,
.article-layout__body li,
.timeline__item p {
  color: var(--muted);
}

.badge {
  border-color: rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.badge.is-gold {
  background: #061635;
  color: #ffffff;
}

.badge.is-emerald {
  background: rgba(82, 199, 151, 0.12);
  color: #0c5c45;
}

.badge.is-indigo {
  background: rgba(138, 161, 255, 0.14);
  color: #304594;
}

.project-card__badges .badge.is-indigo {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(31, 54, 140, 0.92);
  color: #ffffff;
}

.field span {
  color: var(--muted-strong);
}

.field input,
.field select,
.field textarea,
.filter-bar input,
.filter-bar select {
  background: #ffffff;
  color: var(--text);
  border-color: rgba(6, 22, 53, 0.1);
}

.lead-modal__backdrop,
.unlock-modal__backdrop {
  background: rgba(12, 18, 31, 0.42);
  backdrop-filter: blur(12px);
}

.lead-modal__close {
  border-color: rgba(6, 22, 53, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.lead-panel--modal {
  padding: 32px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(228, 182, 87, 0.16), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(21, 51, 95, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.98));
  box-shadow: 0 28px 90px rgba(7, 22, 54, 0.18);
  color: #081834;
  overflow: hidden;
}

.lead-panel--modal::before {
  display: none;
}

.lead-panel--modal .lead-panel__intro {
  gap: 10px;
  margin-bottom: 22px;
}

.lead-panel--modal .lead-panel__intro h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #081834;
}

.lead-panel--modal .lead-panel__intro p {
  color: rgba(8, 24, 52, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.lead-panel__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 22, 53, 0.08);
}

.lead-panel__brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.lead-panel__brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.lead-panel__brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.lead-panel__eyebrow {
  color: #102652;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-panel__brand-copy p {
  color: rgba(8, 24, 52, 0.62);
  font-size: 0.96rem;
}

.lead-form--modal {
  gap: 22px;
}

.field--light span {
  color: rgba(8, 24, 52, 0.72);
}

.field--light input,
.field--light select,
.field--light textarea {
  min-height: 58px;
  border: 1px solid rgba(6, 22, 53, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #081834;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.field--light textarea {
  min-height: 136px;
}

.field--light input::placeholder,
.field--light textarea::placeholder {
  color: rgba(8, 24, 52, 0.46);
}

.field--light select {
  color: #081834;
}

.field--minimal {
  position: relative;
}

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

.lead-panel__support {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 22, 53, 0.08);
}

.lead-panel__support-copy {
  display: grid;
  gap: 6px;
}

.lead-panel__support-copy strong {
  color: #081834;
  font-size: 1.12rem;
}

.lead-panel__support-copy p {
  color: rgba(8, 24, 52, 0.64);
  font-size: 0.98rem;
}

.lead-panel__support-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lead-panel__support-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(6, 22, 53, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 26px rgba(8, 24, 52, 0.06);
  color: #081834;
}

.lead-panel__support-links a span {
  color: rgba(8, 24, 52, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-panel__support-links a strong {
  font-size: 0.98rem;
  line-height: 1.35;
  word-break: break-word;
}

.lead-modal__dialog {
  width: min(calc(100% - 32px), 760px);
}

.lead-modal__dialog .lead-panel {
  padding-top: 32px;
}

.lead-modal__close {
  top: 20px;
  right: 20px;
  min-height: 46px;
  width: 46px;
  padding: 0;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  color: #081834;
  box-shadow: 0 12px 24px rgba(8, 24, 52, 0.08);
}

.unlock-modal__backdrop {
  background: rgba(7, 15, 29, 0.56);
  backdrop-filter: blur(14px);
}

.unlock-modal__dialog {
  width: min(calc(100% - 32px), 580px);
  padding: 0 32px 30px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background:
    radial-gradient(circle at top center, rgba(228, 182, 87, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 244, 236, 0.985));
  color: #081834;
  box-shadow: 0 34px 90px rgba(6, 22, 53, 0.18);
  overflow: hidden;
}

.unlock-modal__dialog::before {
  display: none;
}

.unlock-modal__close {
  top: 18px;
  right: 18px;
  width: 44px;
  min-height: 44px;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  color: #081834;
  box-shadow: 0 12px 24px rgba(8, 24, 52, 0.08);
}

.unlock-modal__brand {
  display: grid;
  place-items: center;
  gap: 6px;
  margin: 0 -32px 24px;
  padding: 34px 32px 20px;
  border-bottom: 1px solid rgba(6, 22, 53, 0.08);
}

.unlock-modal__label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  color: #081834;
}

.unlock-modal__sub {
  color: rgba(8, 24, 52, 0.56);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: none;
}

.unlock-modal__copy {
  gap: 10px;
  margin-bottom: 24px;
}

.unlock-modal__copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: #081834;
}

.unlock-modal__copy p {
  max-width: 28ch;
  margin: 0 auto;
  color: rgba(8, 24, 52, 0.64);
  font-size: 1rem;
  line-height: 1.7;
}

.unlock-form .field--light input {
  min-height: 56px;
}

.unlock-form__safe {
  color: rgba(8, 24, 52, 0.58);
  text-align: center;
  font-size: 0.96rem;
}

.hero::before,
.page-hero::before,
.detail-hero::before,
.article-hero::before {
  background:
    radial-gradient(circle at 16% 16%, rgba(228, 182, 87, 0.14), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(6, 22, 53, 0.05), transparent 22%);
}

.hero--catalog {
  padding-top: 44px;
  padding-bottom: 44px;
}

.hero--center {
  padding: 26px 0 12px;
}

.hero--center::before {
  display: none;
}

.hero__content--center {
  justify-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.hero__actions--center {
  justify-content: center;
}

.stat-grid--light {
  max-width: 920px;
}

.stat-grid--hero .stat-card {
  justify-items: center;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #102955 0%, #061635 100%);
  box-shadow: 0 18px 40px rgba(6, 22, 53, 0.16);
  color: #ffffff;
}

.stat-grid--hero .stat-card strong,
.stat-grid--hero .stat-card span {
  color: #ffffff;
}

.hero__micro-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 920px;
  color: var(--muted);
  font-size: 0.95rem;
}

.search-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  width: min(100%, 1080px);
  margin: 0 auto 28px;
  padding: 16px;
  border-radius: 28px;
}

.search-rail__field {
  display: grid;
  gap: 8px;
}

.search-rail__field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-rail__field select {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(6, 22, 53, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.search-rail__action {
  min-height: 56px;
  min-width: 144px;
  align-self: end;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #061635, #15335f);
  color: #ffffff;
  font-weight: 700;
}

.collection-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 1040px;
  overflow-y: hidden;
}

.collection-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted-strong);
  box-shadow: 0 10px 22px rgba(13, 29, 57, 0.05);
  white-space: nowrap;
  text-align: center;
}

.collection-chip:hover {
  border-color: rgba(6, 22, 53, 0.14);
  transform: translateY(-1px);
}

.brand-plaque--hero {
  width: 118px;
  height: 118px;
}

.brand-plaque--hero img {
  width: 78px;
  height: 78px;
}

.discovery-panel--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.98));
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  margin-bottom: 24px;
}

.section-heading--row > div {
  display: grid;
  gap: 14px;
}

.section-heading--row h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.locality-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 32px rgba(13, 29, 57, 0.05);
}

.locality-pill strong {
  font-size: 1.05rem;
}

.locality-pill span {
  color: var(--muted);
  font-size: 0.95rem;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.project-card--compact .project-card__body h3 {
  font-size: 1.6rem;
}

.project-card--compact .project-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card--compact .chip-list {
  margin-top: 10px;
}

.unlock-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 42px rgba(13, 29, 57, 0.08);
}

.unlock-banner[hidden] {
  display: none !important;
}

.unlock-banner__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(6, 22, 53, 0.06);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unlock-banner__copy {
  display: grid;
  gap: 6px;
}

.unlock-banner__copy h3 {
  font-size: 1.8rem;
}

.unlock-banner__copy p {
  color: var(--muted);
}

.locked-content {
  position: relative;
}

.locked-content.is-locked {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.locked-content.is-locked > :not(.locked-content__veil) {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.locked-content__veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.1), rgba(250, 247, 242, 0.9));
}

.locked-content__cta {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(13, 29, 57, 0.12);
  text-align: center;
}

.locked-content__cta strong {
  font-size: 1.25rem;
}

.locked-content__cta p {
  color: var(--muted);
}

.unlock-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 150;
}

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

.unlock-modal__backdrop {
  position: absolute;
  inset: 0;
}

.unlock-modal__dialog {
  position: relative;
  width: min(calc(100% - 32px), 560px);
  margin: min(10vh, 72px) auto;
  padding: 30px 32px 32px;
  z-index: 1;
}

.unlock-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(6, 22, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.unlock-modal__brand {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.unlock-modal__brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.unlock-modal__copy {
  display: grid;
  gap: 8px;
  text-align: center;
  margin-bottom: 22px;
}

.unlock-modal__copy h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.unlock-modal__copy p {
  color: var(--muted);
}

.unlock-form {
  display: grid;
  gap: 14px;
}

.unlock-form__safe {
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  border-bottom-color: rgba(6, 22, 53, 0.08);
  color: var(--muted-strong);
}

.site-footer {
  background: linear-gradient(180deg, #0b1221 0%, #09101d 100%);
  border-top: 0;
}

.site-footer__brand p,
.site-footer__bottom,
.site-footer__grid a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__keyword-links a,
.site-footer__keyword-group summary {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__keywords-title,
.site-footer__grid h4,
.site-footer__keyword-group h4 {
  color: #ffffff;
}

.site-footer .footer-pill {
  display: inline-flex;
  margin: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-cta {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 22, 53, 0.08);
}

.mobile-cta a,
.mobile-cta button {
  background: rgba(6, 22, 53, 0.05);
  color: var(--text);
}

.mobile-cta button {
  color: #ffffff;
}

@media (max-width: 980px) {
  .search-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .home-benefits {
    grid-template-columns: 1fr;
  }

  .unlock-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 720px) {
  .search-rail {
    grid-template-columns: 1fr;
  }

  .lead-modal__dialog,
  .unlock-modal__dialog {
    width: min(calc(100% - 24px), 640px);
  }

  .lead-panel--modal {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .lead-panel__brand {
    align-items: flex-start;
  }

  .lead-panel__support-links {
    grid-template-columns: 1fr;
  }

  .unlock-modal__dialog {
    padding: 0 20px 24px;
  }

  .unlock-modal__brand {
    margin: 0 -20px 22px;
    padding: 30px 20px 18px;
  }

  .unlock-modal__label {
    letter-spacing: 0.16em;
  }

  .editorial-split .insights-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.9rem);
  }

  .collection-strip {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding: 0 4px 8px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .collection-chip {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.94rem;
    scroll-snap-align: start;
  }

  .locality-pill-grid {
    grid-template-columns: 1fr;
  }

  .unlock-modal__dialog {
    width: min(calc(100% - 24px), 560px);
    padding: 24px;
  }
}

.brand__image--header {
  width: clamp(58px, 7vw, 74px);
  height: auto;
  aspect-ratio: auto;
}

.site-footer__logo {
  width: clamp(92px, 18vw, 128px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.button,
.search-rail__action,
.mobile-cta a,
.mobile-cta button {
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.search-rail__action:hover,
.search-rail__action:focus-visible,
.mobile-cta a:hover,
.mobile-cta a:focus-visible,
.mobile-cta button:hover,
.mobile-cta button:focus-visible {
  background: linear-gradient(135deg, #061635, #15335f) !important;
  color: #ffffff !important;
  border-color: #061635 !important;
  box-shadow: 0 16px 32px rgba(6, 22, 53, 0.18);
}

.button:hover .compare-badge,
.button:focus-visible .compare-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.compare-shell {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  min-width: 640px;
}

.collection-strip {
  scrollbar-width: none;
}

.collection-strip::-webkit-scrollbar {
  display: none;
}

.search-rail {
  margin: 24px auto 24px;
}

.mobile-cta {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(6, 22, 53, 0.94);
  border-color: rgba(228, 182, 87, 0.16);
}

.mobile-cta a,
.mobile-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-cta button {
  background: linear-gradient(135deg, #061635, #15335f);
  color: #ffffff;
}

@media (max-width: 860px) {
  .site-nav {
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 720px) {
  .site-footer__grid,
  .filter-bar,
  .metric-cluster {
    grid-template-columns: 1fr;
  }

  .search-rail__action {
    width: 100%;
    min-width: 0;
  }

  .hero--catalog {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero--center {
    padding: 10px 0 8px;
  }

  .hero__content--center {
    gap: 16px;
  }

  .search-rail {
    margin: 18px auto 18px;
    padding: 14px;
    border-radius: 24px;
  }

  .collection-strip {
    margin-bottom: 18px;
  }

  .detail-gallery .media-frame,
  .detail-gallery img,
  .media-frame--map {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand__image--header {
    width: 58px;
  }

  .site-footer__grid {
    gap: 24px;
  }

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

  .mobile-cta a,
  .mobile-cta button {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .collection-chip {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero__micro-copy {
    gap: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 860px) {
  .site-nav.is-open .site-nav__links a,
  .site-nav.is-open .site-nav__links a[aria-current="page"],
  .site-nav.is-open .site-nav__links a:visited {
    color: #ffffff !important;
    opacity: 1;
  }

  .site-nav.is-open .site-nav__links a:hover,
  .site-nav.is-open .site-nav__links a:focus-visible {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .stat-grid--hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-grid--hero .stat-card {
    min-height: 108px;
    padding: 16px 12px;
    gap: 6px;
  }

  .stat-grid--hero .stat-card strong {
    font-size: clamp(1.95rem, 5vw, 2.35rem);
  }

  .stat-grid--hero .stat-card span {
    font-size: 0.84rem;
    line-height: 1.3;
  }
}

@media (max-width: 560px) {
  .stat-grid--hero {
    gap: 8px;
  }

  .stat-grid--hero .stat-card {
    min-height: 96px;
    padding: 14px 10px;
    gap: 4px;
    border-radius: 22px;
  }

  .stat-grid--hero .stat-card strong {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .stat-grid--hero .stat-card span {
    font-size: 0.82rem;
    line-height: 1.25;
  }
}

.container {
  width: min(calc(100% - clamp(24px, 4vw, 48px)), var(--container));
}

.section {
  padding: clamp(52px, 7vw, 88px) 0;
}

.page-home main > section:nth-of-type(n + 4),
.page-home .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.content-shell {
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(22px, 3vw, 32px);
}

.section-heading {
  gap: clamp(12px, 1.8vw, 18px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-hero__grid,
.detail-hero__grid,
.article-layout,
.editorial-split,
.contact-grid,
.compare-layout {
  gap: clamp(24px, 4vw, 40px);
}

.hero__content,
.page-hero__content,
.detail-hero__content,
.article-layout__body,
.stack {
  gap: clamp(16px, 2.5vw, 24px);
}

.lead-panel {
  padding: clamp(20px, 2.8vw, 28px);
}

.lead-panel__intro {
  gap: 8px;
  margin-bottom: 18px;
}

.lead-panel__intro h3 {
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
}

.lead-form {
  gap: 14px;
}

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

.field {
  gap: 8px;
}

.field span {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  min-height: 54px;
  padding: 14px 16px;
}

.lead-form__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form__actions .button {
  min-height: 50px;
}

.lead-modal,
.unlock-modal {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lead-modal__dialog {
  width: min(calc(100% - 24px), 640px);
  margin: min(7vh, 40px) auto;
  max-height: calc(100svh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lead-modal__dialog .lead-panel {
  padding-top: clamp(56px, 8vw, 68px);
}

.lead-modal__close,
.unlock-modal__close {
  top: 14px;
  right: 14px;
  width: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  border-radius: 999px;
}

.lead-panel--modal {
  border: 1px solid rgba(6, 22, 53, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(228, 182, 87, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 244, 236, 0.985));
  color: #081834;
  box-shadow: 0 34px 90px rgba(6, 22, 53, 0.18);
}

.lead-panel--modal .lead-panel__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.lead-panel--modal .lead-panel__intro h3,
.lead-panel--modal .lead-panel__support-copy strong,
.lead-panel--modal .lead-panel__support-links a {
  color: #081834;
}

.lead-panel--modal .lead-panel__intro p,
.lead-panel--modal .lead-panel__brand-copy p,
.lead-panel--modal .lead-panel__support-copy p {
  color: rgba(8, 24, 52, 0.64);
}

.lead-panel--modal .field span {
  color: rgba(8, 24, 52, 0.72);
}

.lead-panel--modal .field input,
.lead-panel--modal .field select,
.lead-panel--modal .field textarea {
  border-color: rgba(6, 22, 53, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #081834;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.lead-panel--modal .button--ghost {
  border-color: rgba(6, 22, 53, 0.12);
  background: rgba(6, 22, 53, 0.04);
  color: #081834;
}

.lead-panel--modal .lead-panel__support {
  border-top-color: rgba(6, 22, 53, 0.08);
}

.unlock-modal__dialog {
  width: min(calc(100% - 24px), 520px);
  margin: min(8vh, 48px) auto;
  padding: 0 24px 24px;
  border-radius: 28px;
  max-height: calc(100svh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.unlock-modal__close {
  border: 1px solid rgba(6, 22, 53, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #081834;
}

.unlock-modal__brand {
  grid-template-columns: auto 1fr;
  place-items: center start;
  gap: 14px;
  margin: 0 -24px 20px;
  padding: 22px 24px 18px;
  text-align: left;
}

.unlock-modal__brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}

.unlock-modal__brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.unlock-modal__brand-copy {
  display: grid;
  gap: 4px;
}

.unlock-modal__label {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #081834;
}

.unlock-modal__sub {
  color: rgba(8, 24, 52, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: none;
}

.unlock-modal__copy {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  text-align: left;
}

.unlock-modal__copy h2 {
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 0.98;
  color: #081834;
}

.unlock-modal__copy p {
  max-width: 32ch;
  margin: 0;
  color: rgba(8, 24, 52, 0.64);
  font-size: 0.98rem;
  line-height: 1.65;
}

.unlock-form {
  gap: 12px;
}

.unlock-form .field--light input {
  min-height: 54px;
}

.unlock-form .button {
  min-height: 54px;
}

.unlock-form__safe {
  color: rgba(8, 24, 52, 0.6);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.6;
}

.unlock-form__assist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.unlock-form__assist a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 22, 53, 0.1);
  background: rgba(6, 22, 53, 0.04);
  color: #081834;
  font-size: 0.88rem;
  font-weight: 700;
}

.button.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.news-index-hero,
.news-section-hero,
.news-article-hero {
  padding: 44px 0 18px;
  position: relative;
}

.news-index-hero::before,
.news-section-hero::before,
.news-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(228, 182, 87, 0.12), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(138, 161, 255, 0.12), transparent 20%);
  pointer-events: none;
}

.news-index-hero__headline,
.news-section-hero__header,
.news-article-hero__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.news-index-hero__headline h1,
.news-section-hero__header h1,
.news-article-hero__header h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
  color: var(--text);
}

.news-index-hero__headline p,
.news-section-hero__header p,
.news-article-hero__deck {
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.news-index-hero__grid,
.news-stream,
.news-article-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.news-index-hero__grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  margin-top: 28px;
}

.news-featured-stack,
.news-feed-list,
.news-category-list,
.news-stream__sidebar,
.news-article-rail {
  display: grid;
  gap: 18px;
}

.news-stream {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.news-article-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.news-category-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.news-category-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(228, 182, 87, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-category-strip__link strong {
  color: var(--gold-soft);
}

.news-category-strip__link.is-active,
.news-category-strip__link:hover {
  background: rgba(228, 182, 87, 0.12);
  border-color: rgba(228, 182, 87, 0.26);
  color: #ffffff;
}

.news-card,
.news-lead,
.news-stack-card,
.news-feed-item,
.news-sidebar__block,
.author-card,
.author-page-hero,
.news-story {
  border: 1px solid rgba(6, 22, 53, 0.08);
  background:
    radial-gradient(circle at top left, rgba(228, 182, 87, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 236, 0.97));
  color: #081834;
  box-shadow: 0 24px 72px rgba(7, 22, 54, 0.14);
}

.news-card::before,
.news-lead::before,
.news-stack-card::before,
.news-feed-item::before,
.news-sidebar__block::before,
.author-card::before,
.author-page-hero::before,
.news-story::before {
  display: none;
}

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

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

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

.news-card,
.news-feed-item {
  overflow: hidden;
}

.news-card__media,
.news-feed-item__media,
.news-lead__media {
  display: block;
  position: relative;
  overflow: hidden;
}

.news-card__media {
  aspect-ratio: 1.56;
}

.news-card__media img,
.news-feed-item__media img,
.news-lead__media img,
.news-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 37, 0.08), rgba(5, 16, 37, 0.5)),
    linear-gradient(0deg, rgba(5, 16, 37, 0.68), transparent 42%);
  pointer-events: none;
}

.news-card__body,
.news-lead__body,
.news-stack-card,
.news-feed-item__body,
.author-card__body {
  display: grid;
  gap: 14px;
}

.news-card__body,
.news-feed-item__body {
  padding: 22px;
}

.news-card h3,
.news-stack-card h3,
.news-feed-item h3,
.news-sidebar__list h4,
.author-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: #081834;
}

.news-card h3,
.news-feed-item h3 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 0.98;
}

.news-card--compact .news-card__body {
  gap: 12px;
  padding: 18px;
}

.news-card--compact h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  line-height: 1.04;
}

.news-card--compact p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.news-card--compact .news-card__footer {
  gap: 8px;
}

.news-card--compact .news-card__stamp {
  font-size: 0.78rem;
}

.news-stack-card h3,
.news-sidebar__list h4,
.author-card h3 {
  font-size: clamp(1.45rem, 1.7vw, 1.95rem);
  line-height: 1;
}

.news-card p,
.news-lead__body p,
.news-stack-card p,
.news-feed-item p,
.news-sidebar__block p,
.author-card p,
.author-page-hero__body p,
.news-story__intro,
.news-story__section p,
.news-story__section li {
  color: rgba(8, 24, 52, 0.72);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(8, 24, 52, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-meta--compact {
  gap: 8px;
  font-size: 0.72rem;
}

.news-meta__category {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(228, 182, 87, 0.12);
  color: #081834;
}

.news-meta__author,
.news-timestamps a,
.news-story__trustbar a,
.news-story__footer a {
  color: #214a88;
  font-weight: 700;
}

.news-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(8, 24, 52, 0.18);
}

.news-article-hero .news-meta {
  color: var(--muted);
}

.news-article-hero .news-meta__category {
  background: rgba(228, 182, 87, 0.12);
  color: var(--gold-soft);
}

.news-article-hero .news-meta__author,
.news-article-hero__byline strong a {
  color: var(--text);
}

.news-card__footer,
.news-feed-item__footer,
.news-lead__footer,
.news-sidebar__actions,
.author-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.news-card__footer,
.news-feed-item__footer {
  justify-content: space-between;
  margin-top: auto;
}

.news-card__stamp,
.news-feed-item__footer span,
.author-card__meta span {
  color: rgba(8, 24, 52, 0.56);
  font-size: 0.85rem;
  font-weight: 700;
}

.news-lead {
  overflow: hidden;
}

.news-lead__media {
  min-height: 360px;
}

.news-lead__body {
  padding: 28px;
}

.news-lead__kicker {
  color: #081834;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-lead__body h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.5rem);
  line-height: 0.94;
}

.news-key-points,
.news-summary-points {
  display: grid;
  gap: 12px;
  list-style: none;
}

.news-key-points li,
.news-summary-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(8, 24, 52, 0.78);
}

.news-key-points li::before,
.news-summary-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(228, 182, 87, 0.14);
}

.news-stack-card {
  padding: 22px;
}

.news-feed-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.news-feed-item--text {
  grid-template-columns: 1fr;
}

.news-feed-item__media {
  min-height: 100%;
}

.news-sidebar__block {
  padding: 22px;
}

.news-sidebar__head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.news-sidebar__head h3 {
  font-size: 2rem;
  color: #081834;
}

.news-sidebar__list {
  display: grid;
  gap: 14px;
}

.news-sidebar__list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(6, 22, 53, 0.08);
}

.news-sidebar__list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-sidebar__list > article > span {
  color: rgba(8, 24, 52, 0.34);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.news-related-categories {
  display: grid;
  gap: 10px;
}

.news-related-categories a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(6, 22, 53, 0.03);
}

.news-related-categories strong {
  color: #081834;
}

.news-related-categories span {
  color: rgba(8, 24, 52, 0.56);
  font-size: 0.88rem;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
}

.news-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 182, 87, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-weight: 700;
}

.news-pagination__page.is-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a1531;
  border-color: transparent;
}

.news-category-block + .news-category-block {
  margin-top: 36px;
}

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

.author-card,
.author-page-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
}

.author-card__avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0d214c, #1f4a8e);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.author-page-hero__body {
  display: grid;
  gap: 12px;
}

.news-article-hero__byline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  color: var(--muted-strong);
}

.news-article-hero__media {
  margin-top: 26px;
  overflow: hidden;
}

.news-article-hero__media img {
  min-height: 440px;
}

.news-timestamps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: min(100%, 480px);
  margin: 0;
}

.news-timestamps div {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(228, 182, 87, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.news-timestamps dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-timestamps dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-story {
  gap: 22px;
}

.news-story__trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 22, 53, 0.08);
  color: rgba(8, 24, 52, 0.62);
  font-size: 0.88rem;
}

.news-story__intro {
  font-size: 1.08rem;
  line-height: 1.84;
}

.news-pullquote {
  margin: 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  border-radius: 0 22px 22px 0;
  background: rgba(228, 182, 87, 0.12);
}

.news-pullquote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.04;
  color: #081834;
}

.news-story__section {
  display: grid;
  gap: 12px;
}

.news-story__section h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: #081834;
}

.news-story__section ul {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.news-story__section li {
  line-height: 1.78;
}

.news-story__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 22, 53, 0.08);
}

.news-story__footer strong {
  display: block;
  margin-bottom: 10px;
  color: #081834;
}

.news-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-topic-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(6, 22, 53, 0.04);
  color: #081834;
  font-size: 0.9rem;
  font-weight: 700;
}

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

  .news-index-hero__grid,
  .news-stream,
  .news-article-layout,
  .news-article-hero__byline,
  .author-grid,
  .editorial-policy-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .section {
    padding: clamp(40px, 12vw, 56px) 0;
  }

  .answer-summary__grid {
    grid-template-columns: 1fr;
  }

  .news-index-hero,
  .news-section-hero,
  .news-article-hero {
    padding: 32px 0 8px;
  }

  .news-card-grid,
  .news-card-grid--compact,
  .author-grid,
  .editorial-policy-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split .news-card-grid,
  .editorial-split .news-card-grid--compact {
    grid-template-columns: 1fr;
  }

  .news-feed-item {
    grid-template-columns: 1fr;
  }

  .news-card__body,
  .news-feed-item__body,
  .news-stack-card,
  .news-sidebar__block,
  .author-card,
  .author-page-hero {
    padding: 18px;
  }

  .news-lead__body {
    padding: 20px;
  }

  .news-lead__media,
  .news-article-hero__media img {
    min-height: 260px;
  }

  .news-story__footer,
  .news-timestamps {
    grid-template-columns: 1fr;
  }

  .news-pagination {
    justify-content: center;
  }

  .partner-strip {
    padding: 10px 0 0;
  }

  .partner-strip__viewport {
    padding: 8px 16px;
  }

  .partner-strip__lane {
    gap: 16px;
  }

  .partner-strip__item {
    min-width: 118px;
    min-height: 42px;
    padding: 5px 8px;
  }

  .partner-strip__item img {
    max-height: 23px;
  }

  .partner-strip__item--larsen-toubro img {
    max-height: 29px;
    transform: scale(1.12);
  }

  .form-grid,
  .lead-form__actions,
  .lead-panel__support-links {
    grid-template-columns: 1fr;
  }

  .lead-modal__dialog,
  .unlock-modal__dialog {
    width: min(calc(100% - 16px), 560px);
    max-height: calc(100svh - 16px);
  }

  .lead-panel--modal {
    border-radius: 24px;
  }

  .lead-panel--modal .lead-panel__brand {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .unlock-modal__dialog {
    padding: 0 18px 20px;
  }

  .unlock-modal__brand {
    grid-template-columns: 1fr;
    place-items: center;
    margin: 0 -18px 18px;
    padding: 20px 18px 16px;
    text-align: center;
  }

  .unlock-modal__copy {
    text-align: center;
  }

  .unlock-modal__copy p {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .lead-modal,
  .unlock-modal {
    padding: 8px;
  }

  .news-index-hero__headline h1,
  .news-section-hero__header h1,
  .news-article-hero__header h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .news-card h3,
  .news-feed-item h3 {
    font-size: 1.75rem;
  }

  .news-lead__body h2 {
    font-size: 2rem;
  }

  .news-card__footer,
  .news-feed-item__footer,
  .news-sidebar__actions,
  .author-card__meta {
    align-items: flex-start;
  }

  .news-pagination {
    flex-direction: column;
  }

  .whatsapp-inline {
    gap: 6px;
  }

  .whatsapp-icon {
    width: 16px;
    height: 16px;
  }

  .partner-strip__item {
    min-width: 108px;
    min-height: 38px;
    padding: 4px 6px;
  }

  .partner-strip__item img {
    max-height: 20px;
  }

  .partner-strip__item--larsen-toubro img {
    max-height: 25px;
    transform: scale(1.08);
  }

  .lead-modal__dialog,
  .unlock-modal__dialog {
    width: 100%;
    margin: 0 auto;
    max-height: calc(100svh - 16px);
    border-radius: 22px;
  }

  .lead-panel {
    padding: 18px;
  }

  .lead-modal__dialog .lead-panel {
    padding-top: 52px;
  }

  .lead-panel__brand-mark,
  .unlock-modal__brand-mark,
  .lead-panel__brand-mark img,
  .unlock-modal__brand-mark img {
    width: 64px;
    height: 64px;
  }

  .lead-panel__support {
    margin-top: 18px;
    padding-top: 18px;
  }

  .lead-panel__support-links a {
    padding: 12px 14px;
  }

  .lead-panel__intro h3,
  .unlock-modal__copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.25rem);
  }

  .lead-panel__brand-copy p,
  .lead-panel__intro p,
  .unlock-modal__copy p,
  .lead-panel__support-copy p {
    font-size: 0.94rem;
  }

  .lead-form__actions .button,
  .unlock-form .button {
    min-height: 50px;
  }
}

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

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body.has-open-modal .mobile-cta {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.site-header {
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  border-bottom-color: rgba(6, 22, 53, 0.08);
  box-shadow: 0 10px 24px rgba(13, 29, 57, 0.08);
}

.site-header__inner {
  transition: padding 160ms ease;
}

.nav-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 22, 53, 0.14);
  box-shadow: 0 8px 18px rgba(13, 29, 57, 0.08);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  border-radius: 999px;
  background: #061635;
  transform-origin: center;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 120ms ease,
    width 180ms ease,
    background 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.94);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.6);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.section-heading p,
.hero__copy,
.page-hero__copy,
.detail-hero__copy,
.article-layout__body > p,
.lead-panel__intro p,
.page-aside p,
.detail-aside p,
.article-quote p,
.contact-card p,
.policy-copy p,
.cta-band p,
.article-layout__body p,
.article-layout__body li,
.timeline__item p,
.filter-empty p,
.compare-shell__status,
.hero__micro-copy {
  color: rgba(8, 24, 52, 0.76);
}

.site-nav__links a,
.site-footer__grid a,
.site-footer__keyword-links a,
.site-footer__keyword-group summary,
.text-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-footer__grid a:hover,
.site-footer__grid a:focus-visible,
.site-footer__keyword-links a:hover,
.site-footer__keyword-links a:focus-visible,
.site-footer__keyword-group summary:hover,
.site-footer__keyword-group summary:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-soft);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid rgba(241, 207, 133, 0.96);
  outline-offset: 3px;
}

:where(input, select, textarea) {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

:where(input, select, textarea):focus-visible {
  border-color: rgba(241, 207, 133, 0.68);
  box-shadow:
    0 0 0 4px rgba(228, 182, 87, 0.14),
    0 16px 34px rgba(2, 12, 31, 0.18);
}

:where(input, select, textarea)[aria-invalid="true"] {
  border-color: rgba(255, 158, 148, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 158, 148, 0.12);
}

.surface,
.project-card,
.news-card,
.location-card,
.article-card,
.value-card,
.contact-card,
.page-aside,
.detail-summary,
.faq-item,
.compare-empty,
.compare-shell {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

:where(.project-card, .news-card, .location-card, .article-card, .value-card, .contact-card, .page-aside, .detail-summary, .faq-item):hover {
  border-color: rgba(6, 22, 53, 0.12);
  box-shadow:
    0 12px 28px rgba(13, 29, 57, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

:where(.project-card, .news-card, .location-card, .article-card, .value-card, .contact-card, .page-aside, .detail-summary):hover {
  transform: translateY(-2px);
}

.project-card__media img,
.news-card__media img,
.news-feed-item img,
.media-frame img {
  transition: transform 240ms ease, filter 240ms ease;
}

.project-card:hover .project-card__media img,
.news-card:hover .news-card__media img,
.media-frame:hover img {
  transform: scale(1.016);
  filter: saturate(1.02);
}

.button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(13, 29, 57, 0.1);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 24px rgba(13, 29, 57, 0.14);
}

.button--gold:hover,
.button--gold:focus-visible {
  box-shadow: 0 12px 24px rgba(13, 29, 57, 0.16);
}

.button.has-compare-items .compare-badge,
.button.is-selected .compare-badge {
  background: linear-gradient(135deg, rgba(241, 207, 133, 0.28), rgba(228, 182, 87, 0.2));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(228, 182, 87, 0.18);
}

.project-grid,
.location-grid,
.insights-grid,
.news-card-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

.filter-bar {
  position: relative;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border-color: rgba(6, 22, 53, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.96));
  box-shadow: 0 12px 30px rgba(13, 29, 57, 0.08);
}

.filter-bar input,
.filter-bar select {
  border-color: rgba(6, 22, 53, 0.08);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.filter-bar__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-bar__results {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.filter-bar__reset[hidden],
.filter-empty[hidden],
.form-status[hidden] {
  display: none !important;
}

.filter-empty {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 24px;
}

.compare-shell__status {
  font-size: 0.95rem;
}

.compare-table caption {
  caption-side: top;
}

.compare-table thead th {
  background: rgba(6, 22, 53, 0.78);
}

.compare-table tbody tr:hover :is(th, td) {
  background: rgba(255, 255, 255, 0.035);
}

.faq-item {
  border-color: rgba(228, 182, 87, 0.14);
}

.faq-item summary {
  transition: color 180ms ease, background 180ms ease;
}

.faq-item:hover summary,
.faq-item[open] summary {
  color: var(--text);
  background: rgba(228, 182, 87, 0.08);
}

.faq-item[open] {
  border-color: rgba(6, 22, 53, 0.12);
}

.form-status {
  margin-top: 4px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status[data-state="pending"] {
  color: var(--gold-soft);
}

.form-status[data-state="error"] {
  color: #ffd4cf;
}

.form-status[data-state="success"] {
  color: #bff0da;
}

.lead-form[aria-busy="true"],
.unlock-form[aria-busy="true"] {
  cursor: progress;
}

.mobile-cta {
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(13, 29, 57, 0.14);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.mobile-cta a,
.mobile-cta button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-cta a:hover,
.mobile-cta button:hover {
  transform: translateY(-1px);
}

.ui-toast-stack {
  position: fixed;
  top: 94px;
  right: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.ui-toast {
  min-width: min(320px, calc(100vw - 36px));
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(241, 207, 133, 0.2);
  background: rgba(6, 22, 53, 0.96);
  box-shadow: 0 14px 30px rgba(13, 29, 57, 0.18);
  color: #ffffff;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ui-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ui-toast--success {
  border-color: rgba(82, 199, 151, 0.34);
}

@keyframes quick-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero__headline,
.page-hero__headline,
.detail-hero__headline,
.news-index-hero__headline h1,
.news-section-hero__header h1,
.news-article-hero__header h1 {
  animation: quick-fade-up 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__copy,
.page-hero__copy,
.detail-hero__copy,
.hero__actions,
.page-hero__actions,
.detail-hero__actions,
.section-heading,
.search-rail,
.filter-bar {
  animation: quick-fade-up 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__copy,
.page-hero__copy,
.detail-hero__copy,
.section-heading {
  animation-delay: 40ms;
}

.hero__actions,
.page-hero__actions,
.detail-hero__actions,
.search-rail,
.filter-bar {
  animation-delay: 80ms;
}

.stat-grid--hero .stat-card {
  animation: quick-fade-up 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-grid--hero .stat-card:nth-child(2) {
  animation-delay: 40ms;
}

.stat-grid--hero .stat-card:nth-child(3) {
  animation-delay: 80ms;
}

@media (max-width: 720px) {
  .site-header__inner {
    padding: 14px 0;
  }

  .partner-strip {
    padding-top: 6px;
  }

  .partner-strip__viewport {
    padding: 6px 10px;
  }

  .filter-bar {
    margin-bottom: 18px;
  }

  .filter-bar__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .ui-toast-stack {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 88px;
  }

  .ui-toast {
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 16px), var(--container));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
