:root {
  --cyan: #07e0fb;
  --navy-950: #1b2e44;
  --navy-900: #1b2e44;
  --navy-800: color-mix(in srgb, var(--navy-950) 88%, var(--teal-600) 12%);
  --navy-700: #617983;
  --gold-600: #d2a838;
  --gold-500: #d2a838;
  --gold-100: color-mix(in srgb, var(--gold-600) 34%, var(--paper) 66%);
  --paper: #eae5d9;
  --paper-2: color-mix(in srgb, var(--paper) 92%, var(--navy-950) 8%);
  --ink: #1b2e44;
  --muted: #617983;
  --teal-600: #617983;
  --cyan-rgb: 7, 224, 251;
  --navy-rgb: 27, 46, 68;
  --gold-rgb: 210, 168, 56;
  --paper-rgb: 234, 229, 217;
  --teal-rgb: 97, 121, 131;
  --white: #ffffff;
  --line: rgba(var(--navy-rgb), 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 80px rgba(var(--navy-rgb), 0.22);
  --radius: 8px;
  --max: 1180px;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
label,
span {
  overflow-wrap: break-word;
}

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

iframe,
video {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--cyan);
  border-radius: 4px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(var(--navy-rgb), 0.92), rgba(var(--navy-rgb), 0));
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(var(--navy-rgb), 0.94);
  box-shadow: 0 12px 40px rgba(var(--navy-rgb), 0.2);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 286px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-weight: 700;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--navy-950);
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.hero,
.internal-hero,
.join-hero,
.article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero--home {
  min-height: 82svh;
  padding: 120px 6vw 28px;
}

.hero-bg,
.internal-bg,
.join-bg,
.band-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(90deg, rgba(var(--navy-rgb), 0.66), rgba(var(--navy-rgb), 0.32)), url("../img/bg-ccfj_01.png");
  background-position: center center;
  background-size: cover;
  will-change: transform;
}

.hero::after,
.internal-hero::after,
.join-hero::after,
.article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -2;
  background: linear-gradient(180deg, rgba(var(--navy-rgb), 0), var(--navy-950));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: end;
  gap: 42px;
  width: min(100%, var(--max));
  min-height: 50svh;
  margin: 0 auto;
}

.hero-inner--composition {
  grid-template-columns: minmax(300px, 0.76fr) minmax(620px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 4vw, 70px);
  width: min(100%, 1320px);
  min-height: 58svh;
}

.hero-copy {
  max-width: 760px;
  padding-top: 44px;
}

.hero-inner--composition .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 780px);
  min-height: 430px;
  max-width: 780px;
  padding-top: 0;
}

.hero-composition {
  justify-self: end;
  width: min(34vw, 500px);
  max-width: 100%;
  transform-origin: center;
}

.hero-composition img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 58px rgba(0, 0, 0, 0.24));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 24px;
  font-size: 4.7rem;
  font-weight: 800;
}

.hero-inner--composition .hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 3.72rem;
  line-height: 0.98;
}

.hero-title--home {
  display: block;
  max-width: 760px;
  font-size: clamp(3.25rem, 5.15vw, 5.1rem);
  font-weight: 800;
  line-height: 0.95;
}

.hero-title--home span {
  display: block;
  max-width: 100%;
  font-weight: 800;
  white-space: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-copy > p:not(.eyebrow),
.internal-hero__content > p,
.join-content > p,
.article-hero__content > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-actions,
.section-heading + .button,
.news-preview > .button,
.network-section > .button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  white-space: normal;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--cyan);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.button--navy {
  color: var(--white);
  background: var(--navy-900);
}

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--navy-700);
}

.button--outline-dark {
  color: var(--navy-900);
  border-color: rgba(var(--navy-rgb), 0.25);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  border-color: var(--navy-900);
  background: rgba(var(--navy-rgb), 0.06);
}

.hero-visual {
  --hero-ground: -30px;
  --hero-shape-bottom: var(--hero-ground);
  --hero-photo-bottom: var(--hero-ground);
  --hero-photo-height: 525px;
  --hero-shape-height: 480px;
  --hero-shape-width: auto;
  --hero-photo-left: 0;
  --hero-shape-left: 7%;
  --hero-shape-transform: none;
  position: relative;
  align-self: end;
  width: min(100%, 560px);
  min-height: 520px;
  isolation: isolate;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-arch {
  left: var(--hero-shape-left);
  bottom: var(--hero-shape-bottom);
  z-index: 0;
  width: var(--hero-shape-width);
  height: var(--hero-shape-height);
  opacity: 0.98;
  object-fit: fill;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.16));
  transform: var(--hero-shape-transform);
}

.hero-church-cutout {
  left: var(--hero-photo-left);
  bottom: var(--hero-photo-bottom);
  z-index: 1;
  width: auto;
  height: var(--hero-photo-height);
  filter: drop-shadow(0 30px 52px rgba(0, 0, 0, 0.28));
}

.hero-visual--composite {
  --hero-shape-bottom: -37px;
  --hero-photo-bottom: -69px;
  --hero-shape-left: 50%;
  --hero-shape-width: 520px;
  --hero-shape-transform: translateX(-50%);
  --hero-photo-left: 30px;
}

.stat {
  min-height: 96px;
  padding: 22px;
  background: rgba(var(--navy-rgb), 0.52);
}

.stat strong {
  display: block;
  color: var(--gold-500);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.section {
  position: relative;
  padding: 104px 6vw;
  overflow: hidden;
}

.section--light {
  background: var(--paper);
}

.section--navy {
  color: var(--white);
  background: var(--navy-900);
}

.section--gold {
  isolation: isolate;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-600), color-mix(in srgb, var(--gold-600) 78%, var(--paper) 22%));
}

.section--gold::before,
.section--gold::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--gold::before {
  inset: -12%;
  z-index: -2;
  background-image: url("../img/bg-freguesia-gold.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.32;
  filter: saturate(1.08) contrast(0.92);
}

.section--gold::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.78), rgba(var(--gold-rgb), 0.72)),
    radial-gradient(circle at 18% 18%, rgba(var(--paper-rgb), 0.32), transparent 34%);
}

.section--timeline {
  background: var(--paper-2);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 46px;
}

.section-heading--with-icon {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.section-heading--with-icon > div,
.section-heading--project-brand > div {
  min-width: 0;
}

.section-heading--project-brand {
  display: flex;
  align-items: center;
  gap: 34px;
}

.heading-icon,
.project-icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.heading-icon {
  width: 76px;
  height: 76px;
}

.icon-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.icon-frame--navy {
  background: var(--navy-950);
  box-shadow: 0 18px 40px rgba(var(--navy-rgb), 0.18);
}

.icon-frame--gold {
  background: var(--gold-600);
  box-shadow: 0 18px 40px rgba(var(--gold-rgb), 0.2);
}

.icon-frame--paper {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(var(--navy-rgb), 0.1);
}

.icon-frame .heading-icon {
  width: 58px;
  height: 58px;
}

.project-logo {
  display: block;
  width: min(100%, 286px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.project-logo--intro {
  width: min(100%, 330px);
}

.section-heading h2 {
  max-width: 870px;
}

.section-heading p:not(.eyebrow),
.section-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-heading p:not(.eyebrow),
.section--navy .section-note,
.section--navy .info-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section--gold .eyebrow {
  color: rgba(var(--navy-rgb), 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(280px, 0.62fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: start;
}

.section-label {
  color: var(--gold-600);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split-copy h2 {
  max-width: 520px;
  font-size: 2.7rem;
}

.split-body {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

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

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

.info-card,
.news-card,
.territory-card,
.process-step,
.project-panel,
.phase-list article,
.business-pricing article,
.resident-box,
.contact-aside,
.article-more,
.pricing-table div,
.transparency-list div,
.members-gate,
.members-access-box,
.members-reserved-grid article {
  border-radius: var(--radius);
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  object-fit: contain;
}

.section--navy .info-card {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.07);
}

.section--gold .info-card {
  border-color: rgba(var(--navy-rgb), 0.18);
  background: rgba(255, 255, 255, 0.28);
}

.info-card > span,
.news-card span,
.phase-list span,
.process-step span,
.business-pricing span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section--gold .info-card > span,
.section--gold .process-step span {
  color: rgba(var(--navy-rgb), 0.75);
}

.info-card p,
.process-step p,
.project-panel li,
.phase-list p,
.business-pricing p,
.news-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  font-weight: 800;
  color: var(--gold-600);
}

.parallax-band {
  isolation: isolate;
}

.band-bg {
  z-index: -2;
  opacity: 0.26;
  filter: saturate(0.6);
}

.system-strip .metric-wall {
  margin-top: 10px;
}

.metric-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 34px auto;
  border: 1px solid rgba(var(--navy-rgb), 0.18);
  background: rgba(var(--navy-rgb), 0.16);
}

.section--navy .metric-wall {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.12);
}

.metric-wall .stat {
  background: rgba(255, 255, 255, 0.42);
}

.section--gold .metric-wall {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--navy-950);
}

.section--gold .metric-wall .stat {
  background: var(--navy-950);
  backdrop-filter: blur(8px);
}

.section--gold .metric-wall .stat strong {
  color: var(--white);
  font-weight: 900;
}

.section--navy .metric-wall .stat {
  background: rgba(var(--navy-rgb), 0.48);
}

.metric-wall .stat span {
  color: rgba(var(--navy-rgb), 0.72);
}

.section--gold .metric-wall .stat span {
  color: rgba(255, 255, 255, 0.78);
}

.section--navy .metric-wall .stat span {
  color: rgba(255, 255, 255, 0.72);
}

.brand-video-section {
  background:
    linear-gradient(135deg, rgba(var(--navy-rgb), 0.98), rgba(var(--navy-rgb), 0.94)),
    url("../img/bg-ccfj_01.png");
  background-position: center;
  background-size: cover;
}

.brand-video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.brand-video-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.brand-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(var(--navy-rgb), 0.54);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.brand-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.system-strip .section-note,
.section--gold .section-note {
  width: min(100%, var(--max));
  margin: 0 auto;
  color: rgba(var(--navy-rgb), 0.74);
}

.network-section {
  text-align: center;
}

.network-section .section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.network-section .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.network-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.network-row span,
.join-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.pill-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.network-section > .button {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 98px;
  width: 1px;
  background: rgba(var(--navy-rgb), 0.18);
}

.timeline-month {
  position: relative;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 0 46px;
}

.timeline-month::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 29px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 1px rgba(var(--navy-rgb), 0.12);
}

.timeline-month__label {
  display: grid;
  gap: 4px;
  color: var(--gold-600);
  font-weight: 800;
  line-height: 1.18;
}

.timeline-month__label span {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1;
}

.timeline-month__label small {
  color: var(--gold-600);
  font-size: 0.84rem;
}

.timeline-month__events {
  display: grid;
  gap: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--navy-rgb), 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 36px rgba(var(--navy-rgb), 0.05);
}

.timeline-item {
  display: block;
}

.timeline-detail {
  min-width: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 180ms ease;
}

.timeline-item + .timeline-item .timeline-detail {
  border-top: 1px solid rgba(var(--navy-rgb), 0.14);
}

.timeline-detail[open] {
  background: rgba(255, 255, 255, 0.62);
}

.timeline-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

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

.timeline-summary::marker {
  content: "";
}

.timeline-summary:hover h3,
.timeline-summary:focus-visible h3 {
  color: var(--gold-600);
}

.timeline-summary h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  overflow-wrap: break-word;
  transition: color 180ms ease;
}

.timeline-toggle {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, border-color 180ms ease;
}

.timeline-toggle::before,
.timeline-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.timeline-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.timeline-detail[open] .timeline-toggle {
  border-color: var(--gold-600);
  background: var(--gold-600);
}

.timeline-detail[open] .timeline-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.timeline-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
  min-width: 0;
  padding: 0 16px 18px;
}

.timeline-detail[open] .timeline-detail__body {
  animation: timelineReveal 220ms ease both;
}

@keyframes timelineReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.timeline-copy {
  min-width: 0;
}

.timeline-copy time {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
}

.timeline-copy p {
  max-width: none;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.timeline-photo {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.timeline-photo__slot {
  width: 100%;
  min-height: 180px;
  border: 1px solid rgba(var(--navy-rgb), 0.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(var(--navy-rgb), 0.06);
  aspect-ratio: 16 / 9;
}

.timeline-photo figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.section--timeline > .button {
  width: fit-content;
  margin: 34px auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

.news-card a {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section--navy .news-card a {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.07);
}

.news-card a:hover,
.news-card a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), 0.7);
}

.news-card__banner {
  height: clamp(150px, 11vw, 190px);
  background: var(--navy-950);
}

.news-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.05);
  transition: transform 420ms ease, filter 420ms ease;
}

.news-card a:hover .news-card__banner img,
.news-card a:focus-visible .news-card__banner img {
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.08);
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.news-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section--navy .news-card time,
.section--navy .news-card p {
  color: rgba(255, 255, 255, 0.72);
}

.news-card h3 {
  margin: 0 0 14px;
}

.news-preview > .button {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 6vw;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.cta-section > div {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}

.internal-hero,
.article-hero {
  min-height: 52svh;
  padding: 142px 6vw 72px;
}

.internal-hero--composition {
  min-height: 68svh;
  padding: 122px 6vw 36px;
}

.article-hero--composition {
  min-height: 66svh;
  padding: 122px 6vw 44px;
}

.internal-hero__content,
.article-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.internal-hero--composition .internal-hero__content {
  width: auto;
  margin: 0;
}

.article-hero--composition .article-hero__content {
  width: auto;
  margin: 0;
}

.internal-hero h1,
.join-hero h1,
.article-hero h1 {
  font-size: 4.1rem;
}

.hero--about,
.hero--projects {
  min-height: 76svh;
  padding: 122px 6vw 28px;
}

.hero--about .hero-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.68fr);
  min-height: 48svh;
}

.hero--projects .hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  min-height: 48svh;
}

.hero--about .hero-inner--composition,
.hero--projects .hero-inner--composition,
.internal-hero--composition .hero-inner--composition,
.article-hero--composition .hero-inner--composition,
.join-hero .hero-inner--composition {
  grid-template-columns: minmax(300px, 0.76fr) minmax(620px, 1.14fr);
  align-items: center;
  min-height: 56svh;
}

.article-hero--composition .hero-copy h1 {
  font-size: 3.2rem;
  line-height: 1;
}

.hero--about .hero-copy,
.hero--projects .hero-copy {
  padding-bottom: 0;
}

.hero-visual--portal {
  --hero-ground: -30px;
  --hero-photo-height: 522px;
  --hero-shape-height: 480px;
  --hero-shape-width: 520px;
  --hero-shape-bottom: -37px;
  --hero-photo-bottom: -90px;
  --hero-photo-left: 30px;
  --hero-shape-left: 50%;
  --hero-shape-transform: translateX(-50%);
  min-height: 520px;
}

.hero-visual--portal .hero-arch {
  left: var(--hero-shape-left);
  bottom: var(--hero-shape-bottom);
  width: var(--hero-shape-width);
  height: var(--hero-shape-height);
}

.hero-portal-cutout {
  left: var(--hero-photo-left);
  bottom: var(--hero-photo-bottom);
  z-index: 1;
  width: auto;
  height: var(--hero-photo-height);
  filter: grayscale(1) contrast(1.05) drop-shadow(0 30px 52px rgba(0, 0, 0, 0.34));
}

.hero-visual--building {
  --hero-ground: -30px;
  --hero-photo-height: 428px;
  --hero-shape-height: 518px;
  --hero-shape-bottom: -38px;
  --hero-photo-bottom: -42px;
  --hero-photo-left: 42px;
  min-height: 520px;
}

.hero-building-shape {
  left: 38%;
  bottom: var(--hero-shape-bottom);
  z-index: 0;
  width: auto;
  height: var(--hero-shape-height);
  opacity: 0.98;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.16));
}

.hero-building-cutout {
  left: var(--hero-photo-left);
  bottom: var(--hero-photo-bottom);
  z-index: 1;
  width: auto;
  height: var(--hero-photo-height);
  filter: grayscale(1) contrast(1.05) drop-shadow(0 30px 52px rgba(0, 0, 0, 0.34));
}

.manifesto-section {
  isolation: isolate;
}

.manifesto-text {
  width: min(100%, 860px);
  margin: 0 auto;
  font-size: 1.22rem;
}

.section--territory {
  color: var(--white);
  background: linear-gradient(90deg, rgba(var(--navy-rgb), 0.94), rgba(var(--navy-rgb), 0.68)), url("../img/texture-community.jpg");
  background-position: center;
  background-size: cover;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.territory-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.territory-card strong {
  display: block;
  color: var(--gold-500);
  font-size: 4rem;
  line-height: 1;
}

.territory-card span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.process-step {
  min-height: 228px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.section--light .section-note {
  width: min(100%, var(--max));
  margin: 32px auto 0;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.project-layout--reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.95fr);
}

.project-layout--reverse .project-copy {
  order: 2;
}

.project-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.project-title--brand {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.project-title > div {
  min-width: 0;
}

.project-title h2,
.project-title .eyebrow {
  margin-top: 0;
}

.project-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

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

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

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: var(--gold-600);
  transform: rotate(45deg);
}

.system-detail .metric-wall {
  margin-top: 46px;
}

.system-brand {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.system-brand .project-logo {
  width: min(100%, 286px);
}

.system-detail .section-note {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin: 18px auto 0;
  text-align: left;
}

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

.phase-list article {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.join-hero {
  min-height: 76svh;
  padding: 136px 6vw 40px;
}

.join-bg {
  background-image: linear-gradient(90deg, rgba(var(--navy-rgb), 0.74), rgba(var(--navy-rgb), 0.36)), url("../img/bg-ccfj_01.png");
}

.join-content,
.join-proof {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.join-content {
  max-width: var(--max);
}

.join-content.hero-copy {
  width: auto;
  max-width: 790px;
  margin: 0;
}

.join-content h1 {
  max-width: 900px;
}

.join-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.join-proof span {
  min-height: 68px;
  padding: 16px 18px;
  color: var(--white);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.join-cards .info-card {
  min-height: 280px;
}

.association-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.association-model-card,
.association-panel {
  border-radius: var(--radius);
}

.association-model-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.model-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  object-fit: contain;
}

.association-model-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.association-model-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.association-model-card p {
  color: var(--muted);
}

.model-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.model-list li {
  position: relative;
  padding-left: 22px;
}

.model-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.association-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto 26px;
}

.association-panel {
  min-height: 160px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.association-panel h3 {
  color: var(--white);
}

.association-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--line-light);
}

.pricing-table div {
  display: grid;
  grid-template-rows: minmax(2.8em, auto) auto 1fr;
  align-content: start;
  min-height: 160px;
  padding: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-table span,
.pricing-table small {
  display: block;
  text-align: left;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-table span {
  max-width: 11ch;
  min-height: 2.8em;
  line-height: 1.2;
}

.pricing-table strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold-500);
  font-size: 2.1rem;
  line-height: 1;
}

.pricing-section .section-note {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin: 18px auto 0;
  text-align: left;
}

.business-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto 22px;
}

.business-pricing article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.business-pricing--benefits article {
  min-height: 260px;
}

.business-pricing h3 {
  color: var(--navy-900);
  font-size: 2.8rem;
}

.business-pricing--benefits h3 {
  font-size: 2rem;
}

.business-pricing--benefits .model-icon {
  margin-bottom: 18px;
}

.commerce-choice {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  width: min(100%, var(--max));
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.commerce-choice__intro {
  padding: 6px 8px 6px 20px;
  border-left: 4px solid var(--gold-600);
}

.commerce-choice__intro span,
.choice-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.commerce-choice__intro h3 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

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

.choice-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.choice-card--featured {
  color: var(--white);
  border-color: var(--navy-950);
  background: var(--navy-950);
}

.choice-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.02;
}

.choice-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.choice-card--featured p {
  color: rgba(255, 255, 255, 0.76);
}

.choice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 12px 16px;
  color: var(--navy-950);
  text-align: center;
  border: 1px solid rgba(var(--navy-rgb), 0.16);
  border-radius: 4px;
  background: rgba(var(--navy-rgb), 0.04);
  font-weight: 900;
}

.choice-card--featured .choice-link {
  color: var(--white);
  border-color: rgba(var(--cyan-rgb), 0.5);
  background: rgba(var(--cyan-rgb), 0.14);
}

.resident-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.resident-copy {
  color: var(--navy-950);
}

.resident-copy h2 {
  max-width: 780px;
}

.resident-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(var(--navy-rgb), 0.8);
  font-size: 1.1rem;
}

.section--gold .resident-copy .check-list li::before {
  background: var(--navy-950);
}

.resident-box {
  display: grid;
  gap: 8px;
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(var(--navy-rgb), 0.18);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.resident-box strong {
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
  white-space: nowrap;
}

.resident-box span {
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resident-box small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 700;
}

.form-section {
  overflow: visible;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.form-shell--light {
  color: var(--ink);
}

.form-shell p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.form-shell--light p:not(.eyebrow) {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form--compact {
  box-shadow: none;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(var(--navy-rgb), 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.2);
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--teal-600);
}

.form-status.is-error {
  color: var(--navy-950);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.press-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 16px;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.transparency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--line-light);
}

.transparency-list div {
  min-height: 150px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.transparency-list strong,
.transparency-list span {
  display: block;
}

.transparency-list span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.members-area {
  padding-top: 96px;
}

.members-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 0.74fr);
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.members-gate {
  padding: 32px;
  color: var(--white);
  background: var(--navy-900);
}

.members-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--navy-950);
  border-radius: 4px;
  background: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.members-gate h2 {
  font-size: 2.35rem;
}

.members-gate > p {
  color: rgba(255, 255, 255, 0.74);
}

.members-access-box {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.07);
}

.members-access-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 1.08rem;
}

.members-access-box p {
  color: rgba(255, 255, 255, 0.72);
}

.members-access-box .button {
  margin-top: 8px;
}

.members-reserved-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.members-reserved-grid article {
  position: relative;
  min-height: 216px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.64);
}

.members-reserved-grid article::after {
  content: "Reservado";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(var(--navy-rgb), 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.members-reserved-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.members-reserved-grid p {
  color: var(--muted);
}

.contact-page-section {
  padding-top: 92px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.76fr);
  gap: 30px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-aside {
  padding: 28px;
  color: var(--white);
  background: var(--navy-900);
}

.contact-aside a,
.contact-aside .contact-email,
.article-more a {
  display: block;
  margin-top: 14px;
  font-weight: 800;
  color: var(--gold-500);
}

.small-note {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.article-hero__content time {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-500);
  font-weight: 800;
}

.article-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 44px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.article-body {
  font-size: 1.15rem;
}

.article-banner {
  width: 100%;
  height: clamp(180px, 19vw, 220px);
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy-950);
}

.article-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.05);
}

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

.article-more {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.contact-panel.is-open {
  display: block;
}

.contact-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.68);
}

.contact-panel__dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 720px);
  height: 100%;
  padding: 54px;
  overflow-y: auto;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.32);
}

.contact-panel__dialog .contact-form {
  margin-top: 24px;
}

.contact-panel__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 2rem;
  line-height: 1;
}

.benefits-hero {
  position: relative;
  isolation: isolate;
  min-height: 76svh;
  padding: 132px 6vw 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.benefits-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(var(--navy-rgb), 0.88), rgba(var(--navy-rgb), 0.58)),
    url("../img/bg-ccfj_01.png");
  background-position: center;
  background-size: cover;
  opacity: 0.95;
}

.benefits-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  height: 42%;
  background: linear-gradient(180deg, rgba(var(--navy-rgb), 0), var(--navy-950));
}

.benefits-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
  width: min(100%, var(--max));
  min-height: 54svh;
  margin: 0 auto;
}

.benefits-hero__copy,
.benefits-visual {
  align-self: start;
}

.benefits-hero__logo-wrapper {
  margin: 18px 0 26px;
}

.benefits-hero__logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.benefits-hero__copy h1 {
  max-width: 830px;
  font-size: clamp(3.2rem, 4.2vw, 4.1rem);
  line-height: 0.98;
}

.benefits-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.benefits-visual {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.benefits-visual__card {
  display: grid;
  min-height: 250px;
  align-content: end;
  padding: 28px;
  color: var(--navy-950);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.98), rgba(var(--gold-rgb), 0.72)),
    linear-gradient(180deg, rgba(var(--navy-rgb), 0.1), rgba(var(--navy-rgb), 0.24));
}

.benefits-visual__card span,
.benefits-visual__row span,
.benefit-pillar span,
.benefits-platform-card span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits-visual__card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.benefits-visual__card small {
  max-width: 260px;
  font-size: 0.98rem;
  font-weight: 800;
}

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

.benefits-visual__row span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.benefits-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.benefit-pillar,
.benefits-faq-grid article,
.benefits-platform-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.benefit-pillar span,
.benefits-platform-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-600);
}

.benefits-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.benefits-panel {
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.benefits-panel h2,
.benefits-panel h3 {
  color: var(--white);
}

.benefits-panel p,
.benefits-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.benefits-panel--gold {
  color: var(--navy-950);
  border-color: rgba(var(--gold-rgb), 0.34);
  background: rgba(var(--gold-rgb), 0.92);
}

.benefits-panel--gold .eyebrow,
.benefits-panel--gold h2,
.benefits-panel--gold li {
  color: var(--navy-950);
}

.benefits-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(var(--navy-rgb), 0.16);
  border-radius: var(--radius);
  background: rgba(var(--navy-rgb), 0.14);
}

.benefits-flow article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.34);
}

.benefits-flow span {
  display: inline-flex;
  margin-bottom: 20px;
  color: rgba(var(--navy-rgb), 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.benefits-platform-card {
  display: grid;
  min-height: 280px;
  align-content: end;
  color: var(--white);
  border-color: var(--line-light);
  background: var(--navy-900);
}

.benefits-platform-card p {
  color: rgba(255, 255, 255, 0.74);
}

.benefits-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.benefits-faq-grid article {
  min-height: 180px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 6vw 28px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(160px, 0.5fr));
  gap: 36px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-logo {
  width: 300px;
  margin-bottom: 20px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid .contact-email,
.footer-grid .text-button {
  display: block;
  min-height: auto;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-grid .text-button:hover,
.footer-grid .text-button:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1180px) {
  .brand img {
    width: 238px;
  }

  .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 0.93rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-inner,
  .project-layout,
  .brand-video-layout,
  .association-copy-grid,
  .commerce-choice,
  .resident-layout,
  .members-layout,
  .form-shell,
  .contact-layout,
  .article-section {
    grid-template-columns: 1fr;
  }

  .project-layout--reverse .project-copy {
    order: 0;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-inner--composition {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    gap: 20px;
    min-height: auto;
  }

  .hero-composition {
    justify-self: center;
    width: min(100%, 390px);
  }

  .hero-inner--composition .hero-copy {
    justify-self: start;
    width: 100%;
    min-height: auto;
  }

  .hero-inner--composition .hero-copy h1 {
    font-size: 3.32rem;
  }

  .hero-title--home {
    font-size: 3.42rem;
  }

  .hero-visual--composite {
    --hero-photo-height: 458px;
    --hero-shape-height: 419px;
    --hero-shape-width: 455px;
    --hero-shape-bottom: -36px;
    --hero-photo-bottom: -64px;
    --hero-photo-left: 22px;
    --hero-shape-left: 50%;
    --hero-shape-transform: translateX(-50%);
  }

  .hero-arch {
    left: var(--hero-shape-left);
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-church-cutout {
    left: var(--hero-photo-left);
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero--about .hero-copy,
  .hero--projects .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual--portal,
  .hero-visual--building {
    width: min(100%, 460px);
    min-height: 440px;
    margin: 10px auto 0;
  }

  .hero-visual--portal {
    --hero-photo-height: 455px;
    --hero-shape-height: 419px;
    --hero-shape-width: 455px;
    --hero-shape-bottom: -36px;
    --hero-photo-bottom: -83px;
    --hero-photo-left: 22px;
    --hero-shape-left: 50%;
    --hero-shape-transform: translateX(-50%);
  }

  .hero-visual--portal .hero-arch {
    left: var(--hero-shape-left);
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-portal-cutout {
    left: var(--hero-photo-left);
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero-visual--building {
    --hero-photo-height: 373px;
    --hero-shape-height: 452px;
    --hero-shape-bottom: -37px;
    --hero-photo-bottom: -41px;
    --hero-photo-left: 36px;
  }

  .hero-building-shape {
    left: 40%;
    width: auto;
    height: var(--hero-shape-height);
  }

  .hero-building-cutout {
    left: var(--hero-photo-left);
    width: auto;
    height: var(--hero-photo-height);
  }

  .cards-grid--four,
  .cards-grid--five,
  .news-grid--listing,
  .association-model-grid,
  .pricing-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .territory-grid,
  .business-pricing,
  .members-reserved-grid,
  .benefits-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand img {
    width: 212px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 88px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: rgba(var(--navy-rgb), 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    min-height: 44px;
    margin-left: 0;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand img {
    width: 212px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 88px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: rgba(var(--navy-rgb), 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    min-height: 44px;
    margin-left: 0;
  }

  .hero--home,
  .hero--about,
  .hero--projects,
  .join-hero,
  .benefits-hero {
    min-height: auto;
    padding: 108px 20px 24px;
  }

  .internal-hero,
  .article-hero {
    min-height: auto;
    padding: 118px 20px 58px;
  }

  h1,
  .internal-hero h1,
  .join-hero h1,
  .article-hero h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .section-heading--with-icon,
  .project-title {
    gap: 14px;
  }

  .section-heading--project-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .section-heading--project-brand .project-logo {
    width: min(100%, 250px);
  }

  .heading-icon,
  .project-icon {
    width: 56px;
    height: 56px;
  }

  .icon-frame {
    width: 70px;
    height: 70px;
  }

  .icon-frame .heading-icon {
    width: 44px;
    height: 44px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .hero-copy > p:not(.eyebrow),
  .internal-hero__content > p,
  .join-content > p,
  .article-hero__content > p {
    font-size: 1.05rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-inner--composition {
    gap: 18px;
  }

  .hero-composition {
    order: 2;
    width: min(100%, 330px);
  }

  .hero-inner--composition .hero-copy h1 {
    font-size: 2.72rem;
  }

  .hero-inner--composition .hero-copy {
    order: 1;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .benefits-hero__inner,
  .benefits-split,
  .benefits-pillars,
  .benefits-faq-grid {
    grid-template-columns: 1fr;
  }

  .benefits-hero__inner {
    min-height: auto;
  }

  .benefits-visual {
    order: 2;
  }

  .benefits-hero__copy h1 {
    font-size: 2.7rem;
  }

  .hero-title--home {
    max-width: 12ch;
    font-size: clamp(2.35rem, 9.8vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-title--home span {
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .network-section > .button,
  .cta-section .button,
  .project-copy .button,
  .form-shell .button {
    width: 100%;
  }

  .choice-link {
    width: 100%;
  }

  .hero-visual {
    --hero-ground: -18px;
    width: min(100%, 460px);
    min-height: 350px;
    margin: 0 auto;
  }

  .hero-visual--composite {
    --hero-photo-height: 390px;
    --hero-shape-height: 357px;
    --hero-shape-width: 386px;
    --hero-shape-bottom: -23px;
    --hero-photo-bottom: -47px;
    --hero-photo-left: 38px;
    --hero-shape-left: 50%;
    --hero-shape-transform: translateX(-50%);
  }

  .hero-arch {
    left: var(--hero-shape-left);
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-church-cutout {
    left: var(--hero-photo-left);
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero-visual--portal,
  .hero-visual--building {
    --hero-ground: -18px;
    min-height: 312px;
  }

  .hero-visual--portal {
    --hero-photo-height: 388px;
    --hero-shape-height: 357px;
    --hero-shape-width: 386px;
    --hero-shape-bottom: -23px;
    --hero-photo-bottom: -63px;
    --hero-photo-left: 38px;
    --hero-shape-left: 50%;
    --hero-shape-transform: translateX(-50%);
  }

  .hero-visual--portal .hero-arch {
    left: var(--hero-shape-left);
    bottom: var(--hero-shape-bottom);
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-portal-cutout {
    left: var(--hero-photo-left);
    bottom: var(--hero-photo-bottom);
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero-visual--building {
    --hero-photo-height: 318px;
    --hero-shape-height: 385px;
    --hero-shape-bottom: -24px;
    --hero-photo-bottom: -27px;
    --hero-photo-left: 34px;
  }

  .hero-building-shape {
    left: 41%;
    bottom: var(--hero-shape-bottom);
    width: auto;
    height: var(--hero-shape-height);
  }

  .hero-building-cutout {
    left: var(--hero-photo-left);
    bottom: var(--hero-photo-bottom);
    width: auto;
    height: var(--hero-photo-height);
  }

  .metric-wall,
  .news-grid,
  .join-proof,
  .cards-grid--three,
  .cards-grid--four,
  .cards-grid--five,
  .process-grid,
  .territory-grid,
  .association-model-grid,
  .association-copy-grid,
  .commerce-choice,
  .commerce-choice__grid,
  .resident-layout,
  .business-pricing,
  .pricing-table,
  .transparency-list,
  .members-reserved-grid,
  .benefits-flow {
    grid-template-columns: 1fr;
  }

  .association-model-card,
  .info-card,
  .process-step,
  .project-panel,
  .phase-list article,
  .benefit-pillar,
  .benefits-panel,
  .benefits-flow article,
  .benefits-platform-card,
  .benefits-faq-grid article {
    min-height: auto;
  }

  .section {
    padding: 76px 20px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline::before {
    top: 2px;
    bottom: 2px;
    left: 8px;
  }

  .timeline-month {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 18px 0 30px 30px;
  }

  .timeline-month::before {
    left: 2px;
    top: 24px;
    width: 13px;
    height: 13px;
    border-width: 3px;
  }

  .timeline-month__label {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .timeline-month__label span {
    font-size: 1.08rem;
  }

  .timeline-month__label small {
    font-size: 0.78rem;
  }

  .timeline-month__events {
    gap: 0;
    width: 100%;
    min-width: 0;
    border-radius: 6px;
  }

  .timeline-summary {
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 10px;
    padding: 12px 12px 12px 14px;
  }

  .timeline-summary h3 {
    grid-column: 1;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .timeline-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 26px;
    height: 26px;
  }

  .timeline-toggle::before,
  .timeline-toggle::after {
    width: 9px;
  }

  .timeline-detail__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 0 14px 16px;
  }

  .timeline-copy time {
    margin-bottom: 8px;
  }

  .timeline-copy p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .timeline-photo__slot {
    min-height: 128px;
    aspect-ratio: 16 / 9;
  }

  .timeline-photo figcaption {
    font-size: 0.74rem;
    text-align: left;
  }

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

  .contact-form {
    width: 100%;
  }

  .resident-box,
  .footer-bottom {
    display: block;
  }

  .resident-box strong {
    display: block;
    margin-bottom: 18px;
    font-size: 3.4rem;
  }

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

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }

  .contact-panel__dialog {
    padding: 54px 20px 28px;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 168px;
  }

  .site-nav {
    inset: 66px 10px auto;
  }

  .hero--home,
  .hero--about,
  .hero--projects,
  .join-hero,
  .benefits-hero {
    padding: 92px 16px 30px;
  }

  .internal-hero,
  .article-hero {
    padding: 102px 16px 50px;
  }

  h1,
  .internal-hero h1,
  .join-hero h1,
  .article-hero h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy > p:not(.eyebrow),
  .internal-hero__content > p,
  .join-content > p,
  .article-hero__content > p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .button {
    min-height: 52px;
    padding: 14px 16px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-composition {
    width: min(88vw, 260px);
  }

  .hero-inner--composition .hero-copy h1 {
    font-size: 2.22rem;
  }

  .hero-title--home {
    max-width: 11ch;
    font-size: clamp(2.12rem, 10.8vw, 2.74rem);
    line-height: 0.98;
  }

  .benefits-hero__copy h1 {
    font-size: 2.25rem;
  }

  .benefits-visual {
    padding: 16px;
  }

  .benefits-visual__card {
    min-height: 210px;
    padding: 22px;
  }

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

  .hero-visual--composite {
    --hero-photo-height: 309px;
    --hero-shape-height: 283px;
    --hero-shape-width: 306px;
    --hero-shape-bottom: -22px;
    --hero-photo-bottom: -41px;
    --hero-photo-left: 34px;
  }

  .hero-arch {
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-church-cutout {
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero-visual--portal,
  .hero-visual--building {
    min-height: 250px;
  }

  .hero-visual--portal {
    --hero-photo-height: 308px;
    --hero-shape-height: 283px;
    --hero-shape-width: 306px;
    --hero-shape-bottom: -22px;
    --hero-photo-bottom: -54px;
    --hero-photo-left: 34px;
  }

  .hero-visual--portal .hero-arch {
    left: var(--hero-shape-left);
    bottom: var(--hero-shape-bottom);
    width: var(--hero-shape-width);
    height: var(--hero-shape-height);
  }

  .hero-portal-cutout {
    left: var(--hero-photo-left);
    bottom: var(--hero-photo-bottom);
    width: auto;
    height: var(--hero-photo-height);
  }

  .hero-visual--building {
    --hero-photo-height: 252px;
    --hero-shape-height: 305px;
    --hero-shape-bottom: -22px;
    --hero-photo-bottom: -25px;
    --hero-photo-left: 26px;
  }

  .hero-building-shape {
    left: 43%;
    bottom: var(--hero-shape-bottom);
    width: auto;
    height: var(--hero-shape-height);
  }

  .hero-building-cutout {
    left: var(--hero-photo-left);
    bottom: var(--hero-photo-bottom);
    width: auto;
    height: var(--hero-photo-height);
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-month {
    padding-left: 24px;
  }

  .timeline-month::before {
    left: 0;
  }

  .timeline-summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    padding: 11px 10px 11px 12px;
  }

  .timeline-toggle {
    width: 24px;
    height: 24px;
  }

  .timeline-detail__body {
    padding: 0 12px 14px;
  }

  .timeline-photo__slot {
    min-height: 112px;
  }

  .project-logo,
  .project-logo--intro,
  .section-heading--project-brand .project-logo {
    width: min(100%, 220px);
  }

  .section {
    padding: 64px 16px;
  }

  .stat,
  .info-card,
  .process-step,
  .project-panel,
  .phase-list article,
  .benefit-pillar,
  .benefits-panel,
  .benefits-flow article,
  .benefits-platform-card,
  .benefits-faq-grid article,
  .contact-form {
    padding: 20px;
  }

  .form-shell {
    gap: 24px;
  }

  .contact-panel__dialog {
    padding: 50px 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-parallax] {
    transform: none !important;
  }
}
