:root {
  --black: #050505;
  --black-soft: #0b0b0a;
  --panel: #121211;
  --panel-raised: #181816;
  --white: #f7f5ef;
  --muted: #aaa8a0;
  --faint: #74726c;
  --gold: #d4af37;
  --gold-bright: #e5c45a;
  --gold-soft: #aa8b32;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(212, 175, 55, 0.4);
  --green: #8dbf8b;
  --red: #ce8b78;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

/*
 * v5-3 universal collection cards.
 * Floor plans, available homes and linked residence records now use the same
 * media/body/title/meta/CTA anatomy as the approved New Projects cards.
 */
[data-sg-v3-file-project] .project-card-carousel {
  --collection-panel: #0d0e0c;
  --collection-line: #30312b;
  --collection-gold: #dcb547;
  --collection-ink: #11120f;
  --collection-gap: 22px;
  --collection-peek: clamp(96px, 8vw, 150px);
  position: relative;
  min-width: 0;
}

[data-sg-v3-file-project] .project-card-carousel-viewport,
[data-sg-v3-file-project] .plan-grid,
[data-sg-v3-file-project] .unit-grid {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  -webkit-overflow-scrolling: touch;
}

[data-sg-v3-file-project] .project-card-carousel-viewport::-webkit-scrollbar,
[data-sg-v3-file-project] .plan-grid::-webkit-scrollbar,
[data-sg-v3-file-project] .unit-grid::-webkit-scrollbar {
  display: none;
}

[data-sg-v3-file-project] .project-card-carousel-viewport:focus-visible,
[data-sg-v3-file-project] :is(.plan-grid, .unit-grid):focus-visible {
  outline: 2px solid var(--collection-gold);
  outline-offset: 5px;
}

[data-sg-v3-file-project] .project-card-carousel-viewport :is(.plan-grid, .unit-grid) {
  overflow: visible;
}

[data-sg-v3-file-project] .plan-grid,
[data-sg-v3-file-project] .unit-grid {
  display: flex;
  align-items: stretch;
  gap: var(--collection-gap, 22px);
  grid-template-columns: none;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card) {
  min-width: 0;
  flex: 0 0 min(420px, calc((100% - (var(--collection-gap, 22px) * 2)) / 3));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--collection-line, #30312b);
  border-radius: 2px;
  background: var(--collection-panel, #0d0e0c);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
  transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s;
}

[data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(420px, calc((100% - (var(--collection-gap) * 3) - var(--collection-peek)) / 3));
}

[data-sg-v3-file-project] .project-card-carousel[data-count="1"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(100%, 420px);
}

[data-sg-v3-file-project] .project-card-carousel[data-count="2"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(420px, calc((100% - var(--collection-gap)) / 2));
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card):hover {
  border-color: #7a6634;
  box-shadow: 0 21px 46px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image,
[data-sg-v3-file-project] .unit-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #171813;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image::after,
[data-sg-v3-file-project] .unit-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 45%);
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image img,
[data-sg-v3-file-project] .unit-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
  transition: transform 0.55s ease;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image img,
[data-sg-v3-file-project] :is(.unit-card-image--contain, .residence-page-card .unit-card-image--contain) img {
  object-fit: contain;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image,
[data-sg-v3-file-project] :is(.unit-card-image--contain, .residence-page-card .unit-card-image--contain) {
  background: #f2f0e9;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card):hover :is(.plan-image, .unit-card-image) img {
  transform: scale(1.022);
}

[data-sg-v3-file-project] .plan-image > span {
  left: 15px;
  right: 15px;
  bottom: 13px;
  color: #d6d1c7;
  font-size: 11px;
  letter-spacing: 0.04em;
}

[data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) {
  min-height: 234px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

[data-sg-v3-file-project] .plan-copy h3,
[data-sg-v3-file-project] .unit-card h3 {
  order: 1;
  display: -webkit-box;
  min-height: 2.16em;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

[data-sg-v3-file-project] .plan-copy > small,
[data-sg-v3-file-project] .unit-card-top {
  order: 2;
  width: 100%;
  margin: 7px 0 0;
  color: var(--collection-gold, #dcb547);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-sg-v3-file-project] .unit-card-top .status {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--collection-gold, #dcb547);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

[data-sg-v3-file-project] .unit-card-top small {
  color: #918d84;
  font-size: 10px;
}

[data-sg-v3-file-project] .plan-copy > p {
  order: 3;
  margin: 7px 0 0;
  color: #d6d1c7;
  font-size: 13px;
  line-height: 1.4;
}

[data-sg-v3-file-project] .plan-copy > span {
  order: 4;
  display: -webkit-box;
  margin: 9px 0 0;
  overflow: hidden;
  color: #ded9cf;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

[data-sg-v3-file-project] .unit-card-price {
  order: 3;
  min-height: 0;
  display: grid;
  gap: 3px;
  margin-top: 8px;
  padding: 0;
  border: 0;
}

[data-sg-v3-file-project] .unit-card-price span {
  color: #918d84;
  font-size: 10px;
  line-height: 1.35;
}

[data-sg-v3-file-project] .unit-card-price strong,
[data-sg-v3-file-project] .unit-card-price--inquiry strong {
  color: #f1ede4;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

[data-sg-v3-file-project] .unit-card-facts {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 8px 0 14px;
}

[data-sg-v3-file-project] .unit-card-facts div {
  display: inline-flex;
  gap: 4px;
  padding: 0;
  border: 0;
}

[data-sg-v3-file-project] .unit-card-facts dt,
[data-sg-v3-file-project] .unit-card-facts dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

[data-sg-v3-file-project] .unit-card-facts dt {
  color: #918d84;
  text-transform: none;
  letter-spacing: 0;
}

[data-sg-v3-file-project] .unit-card-facts dt::after {
  content: ":";
}

[data-sg-v3-file-project] .unit-card-facts dd {
  color: #ded9cf;
}

[data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) .inline-project-request {
  order: 10;
  position: relative;
  z-index: 2;
  min-height: 37px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid var(--collection-gold, #dcb547);
  border-radius: 0;
  background: var(--collection-gold, #dcb547);
  color: var(--collection-ink, #11120f);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

[data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card):hover .inline-project-request,
[data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) .inline-project-request:focus-visible {
  border-color: #efd47f;
  background: #efd47f;
  color: var(--collection-ink, #11120f);
}

[data-sg-v3-file-project] .project-card-carousel-controls {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

[data-sg-v3-file-project] .project-card-carousel-controls[hidden] {
  display: none !important;
}

[data-sg-v3-file-project] .project-card-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17, 18, 15, 0.16);
  border-radius: 50%;
  background: #f4f2ea;
  color: #11120f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 0.2s, opacity 0.2s;
}

[data-sg-v3-file-project] .project-card-carousel-arrow:hover,
[data-sg-v3-file-project] .project-card-carousel-arrow:focus-visible {
  background: #fff;
}

[data-sg-v3-file-project] .project-card-carousel-arrow:focus-visible {
  outline: 3px solid var(--collection-gold, #dcb547);
  outline-offset: 2px;
}

[data-sg-v3-file-project] .project-card-carousel-arrow:disabled {
  opacity: 0.36;
  cursor: default;
}

[data-sg-v3-file-project] .project-card-carousel-arrow svg {
  width: 21px;
  height: 21px;
}

[data-sg-v3-file-project] .project-card-carousel-arrow--previous {
  left: -24px;
}

[data-sg-v3-file-project] .project-card-carousel-arrow--next {
  right: -24px;
}

@media (max-width: 1020px) {
  [data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card),
  [data-sg-v3-file-project] .project-card-carousel[data-count="3"] :is(.plan-card, .project-plan-card, .unit-card) {
    flex-basis: min(420px, calc((100% - (var(--collection-gap) * 2) - 86px) / 2));
  }
}

@media (max-width: 640px) {
  [data-sg-v3-file-project] .project-card-carousel {
    --collection-gap: 14px;
  }

  [data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card),
  [data-sg-v3-file-project] .project-card-carousel[data-count] :is(.plan-card, .project-plan-card, .unit-card),
  [data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card) {
    flex-basis: min(86vw, 330px);
  }

  [data-sg-v3-file-project] .project-card-carousel[data-count="1"] :is(.plan-card, .project-plan-card, .unit-card) {
    flex-basis: min(100%, 360px);
  }

  [data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) {
    min-height: 226px;
    padding: 17px;
  }

  [data-sg-v3-file-project] :is(.plan-copy h3, .unit-card h3) {
    font-size: 25px;
  }

  [data-sg-v3-file-project] .project-card-carousel-arrow {
    width: 42px;
    height: 42px;
  }

  [data-sg-v3-file-project] .project-card-carousel-arrow--previous {
    left: -8px;
  }

  [data-sg-v3-file-project] .project-card-carousel-arrow--next {
    right: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-sg-v3-file-project] .project-card-carousel-viewport,
  [data-sg-v3-file-project] :is(.plan-grid, .unit-grid) {
    scroll-behavior: auto;
  }
}

/* v3-10: adaptive editorial composition for project detail pages. */
[data-sg-v3-file-project] .hero {
  min-height: clamp(700px, 82vh, 820px);
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(68px, 7vw, 104px);
  row-gap: 34px;
}

[data-sg-v3-file-project] .hero-content {
  align-self: center;
}

[data-sg-v3-file-project] .hero-lede {
  max-width: 650px;
  margin-bottom: 24px;
}

[data-sg-v3-file-project] .hero-glance {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

[data-sg-v3-file-project] .hero-glance > div {
  min-width: 0;
  padding: 16px 16px 17px 0;
}

[data-sg-v3-file-project] .hero-glance > div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

[data-sg-v3-file-project] .hero-glance span,
[data-sg-v3-file-project] .hero-glance strong {
  display: block;
}

[data-sg-v3-file-project] .hero-glance span {
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

[data-sg-v3-file-project] .hero-glance strong {
  color: #f4f1e9;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

[data-sg-v3-file-project] .hero-facts {
  margin-top: 12px;
}

[data-sg-v3-file-project] .section,
[data-sg-v3-file-project] .project-media-section {
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(68px, 7vw, 104px);
}

[data-sg-v3-file-project] .published-section-layout,
[data-sg-v3-file-project] .project-media-layout {
  gap: clamp(44px, 6.5vw, 92px);
}

[data-sg-v3-file-project] .published-section-copy {
  gap: 17px;
  line-height: 1.68;
}

[data-sg-v3-file-project] .section-heading {
  margin-bottom: clamp(30px, 4vw, 48px);
}

[data-sg-v3-file-project] .truth-section,
[data-sg-v3-file-project] .inquire-section {
  padding-top: clamp(72px, 7.5vw, 112px);
  padding-bottom: clamp(72px, 7.5vw, 112px);
}

[data-sg-v3-file-project] .truth-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

[data-sg-v3-file-project] .gallery-stage {
  overflow: hidden;
  background: #0d0d0c;
}

[data-sg-v3-file-project] .gallery-stage img {
  transition: opacity 180ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-sg-v3-file-project] .gallery-stage:hover img {
  transform: scale(1.018);
}

[data-sg-v3-file-project] .gallery-stage.is-changing img {
  opacity: 0.3;
}

[data-sg-v3-file-project] .gallery-stage[data-media-fit="contain"] img {
  object-fit: contain;
  transform: none;
}

[data-sg-v3-file-project].project-system--media-led .gallery-stage {
  height: clamp(620px, 54vw, 840px);
}

[data-sg-v3-file-project].project-system--media-led .gallery-copy {
  padding: clamp(54px, 5vw, 84px);
}

[data-sg-v3-file-project].project-system--plan-led .gallery-stage {
  height: clamp(520px, 42vw, 660px);
}

[data-sg-v3-file-project] .site-footer {
  padding-top: clamp(48px, 5vw, 72px);
}

[data-sg-v3-file-project] .footer-grid {
  margin-top: 34px;
}

[data-sg-v3-file-project] .footer-disclosure {
  padding-bottom: 24px;
}

@media (min-width: 981px) {
  [data-sg-v3-file-project] .lead-card {
    min-height: 510px;
    padding: clamp(32px, 3.4vw, 44px);
  }

  [data-sg-v3-file-project] .full-form-card {
    min-height: 480px;
  }

  [data-sg-v3-file-project] main > :is(.section, .gallery-section, .project-media-section, .progress-section, .cost-section, .truth-section, .inquire-section) {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

@media (max-width: 980px) {
  [data-sg-v3-file-project] .hero {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 58px;
  }

  [data-sg-v3-file-project] .hero-glance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage {
    height: min(68vw, 580px);
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  [data-sg-v3-file-project] .hero {
    gap: 28px;
    padding: 56px 18px 42px;
  }

  [data-sg-v3-file-project] .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.02;
  }

  [data-sg-v3-file-project] .hero-lede {
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.55;
  }

  [data-sg-v3-file-project] .hero-glance {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  [data-sg-v3-file-project] .hero-glance > div {
    padding: 13px 0;
  }

  [data-sg-v3-file-project] .hero-glance > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  [data-sg-v3-file-project] .hero-glance strong {
    font-size: 13px;
  }

  [data-sg-v3-file-project] .lead-card {
    min-height: 0;
    padding: 24px 21px;
  }

  [data-sg-v3-file-project] .lead-card h2 {
    margin: 12px 0 13px;
    font-size: 31px;
  }

  [data-sg-v3-file-project] .lead-card > p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  [data-sg-v3-file-project] .section,
  [data-sg-v3-file-project] .project-media-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  [data-sg-v3-file-project] .published-section-layout,
  [data-sg-v3-file-project] .project-media-layout {
    gap: 30px;
  }

  [data-sg-v3-file-project] .published-section-copy {
    gap: 15px;
  }

  [data-sg-v3-file-project] .gallery-copy,
  [data-sg-v3-file-project].project-system--media-led .gallery-copy {
    padding: 48px 18px 30px;
  }

  [data-sg-v3-file-project] .gallery-copy h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage,
  [data-sg-v3-file-project] .gallery-stage {
    height: clamp(300px, 90vw, 400px);
    min-height: 300px;
  }

  [data-sg-v3-file-project] .truth-section,
  [data-sg-v3-file-project] .inquire-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  [data-sg-v3-file-project] .mobile-actions {
    grid-template-columns: 1.35fr 1fr 0.7fr 0.55fr;
  }

  [data-sg-v3-file-project] .mobile-actions .primary {
    background: var(--gold);
    color: #080807;
    font-weight: 820;
  }

  [data-sg-v3-file-project] .footer-grid {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-sg-v3-file-project] .gallery-stage img,
  [data-sg-v3-file-project] .project-plan-card,
  [data-sg-v3-file-project] .project-media-card {
    transition: none;
  }
}

/* v3-9: project media belongs to the project story, not the migration audit. */
[data-sg-v3-file-project] .project-media-section {
  padding: clamp(82px, 7vw, 104px) 0;
  color: var(--white);
}

[data-sg-v3-file-project] .project-media-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

[data-sg-v3-file-project] .project-media-heading {
  position: sticky;
  top: 112px;
}

[data-sg-v3-file-project] .project-media-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.03;
}

[data-sg-v3-file-project] .project-media-heading > p {
  max-width: 540px;
  margin: 24px 0 0;
  color: #bbb8b0;
  font-size: 17px;
  line-height: 1.72;
}

[data-sg-v3-file-project] .project-media-heading > small {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: #85827b;
  font-size: 13px;
  line-height: 1.65;
}

[data-sg-v3-file-project] .project-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

[data-sg-v3-file-project] .project-media-grid > :only-child {
  grid-column: 1 / -1;
  width: min(100%, 720px);
}

[data-sg-v3-file-project] .project-media-card {
  min-width: 0;
  overflow: hidden;
  display: block;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

[data-sg-v3-file-project] .project-media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

[data-sg-v3-file-project] .project-media-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

[data-sg-v3-file-project] .project-media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

[data-sg-v3-file-project] .project-media-frame iframe,
[data-sg-v3-file-project] .project-media-frame video,
[data-sg-v3-file-project] .project-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

[data-sg-v3-file-project] .project-media-tour-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
}

[data-sg-v3-file-project] .project-media-tour-visual > span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  min-width: 96px;
  min-height: 96px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(6, 6, 6, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

[data-sg-v3-file-project] .project-media-card-copy {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
}

[data-sg-v3-file-project] .project-media-card-copy > span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

[data-sg-v3-file-project] .project-media-card-copy > strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 610;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

[data-sg-v3-file-project] .project-media-card-copy > i {
  margin-top: 6px;
  color: #a7a49d;
  font-size: 13px;
  font-style: normal;
}

[data-sg-v3-file-project] .project-media-card-copy > i b {
  margin-left: 5px;
  color: var(--gold-bright);
}

@media (max-width: 980px) {
  [data-sg-v3-file-project] .project-media-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  [data-sg-v3-file-project] .project-media-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  [data-sg-v3-file-project] .project-media-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  [data-sg-v3-file-project] .project-media-heading h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  [data-sg-v3-file-project] .project-media-heading > p {
    margin-top: 18px;
    font-size: 16px;
  }

  [data-sg-v3-file-project] .project-media-grid {
    grid-template-columns: 1fr;
  }

  [data-sg-v3-file-project] .project-media-grid > :only-child {
    width: 100%;
  }

  [data-sg-v3-file-project] .project-media-card-copy {
    padding: 20px;
  }

  [data-sg-v3-file-project] .project-media-tour-visual > span {
    min-width: 82px;
    min-height: 82px;
    font-size: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
select {
  font-family: inherit;
}

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--gold);
  color: #050505;
  font-weight: 750;
  border-radius: 6px;
}

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

.demo-strip {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 24px;
  background: var(--gold);
  color: #070706;
  font-size: 11px;
  letter-spacing: 0.035em;
}

.demo-strip span {
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.demo-strip p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 78px);
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand b {
  color: var(--muted);
  font-weight: 560;
}

.brand-mark {
  position: relative;
  width: 20px;
  height: 23px;
  display: inline-block;
}

.brand-mark i {
  position: absolute;
  left: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg) skew(-7deg, -7deg);
}

.brand-mark i:nth-child(1) { top: 1px; }
.brand-mark i:nth-child(2) { top: 7px; opacity: 0.78; }
.brand-mark i:nth-child(3) { top: 13px; opacity: 0.48; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c8c6c0;
  font-size: 12px;
}

.site-header nav a {
  position: relative;
  padding: 26px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 180ms ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--gold-soft);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: #050505;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
  padding: clamp(84px, 9vw, 132px) clamp(24px, 6vw, 96px) clamp(70px, 8vw, 112px);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: #0d0d0c;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.65) contrast(1.04) brightness(0.73);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.96) 0%, rgba(2, 2, 2, 0.8) 45%, rgba(2, 2, 2, 0.34) 72%, rgba(2, 2, 2, 0.66) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.75) 0%, transparent 42%);
}

.visual-label {
  position: absolute;
  left: clamp(24px, 6vw, 96px);
  bottom: 22px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.19);
  color: #d1cec6;
  font-size: 10px;
  letter-spacing: 0.055em;
  backdrop-filter: blur(8px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-label,
.card-kicker {
  color: var(--gold-bright);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.eyebrow i {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.eyebrow span {
  padding: 7px 10px;
  background: rgba(212, 175, 55, 0.13);
  border: 1px solid var(--line-gold);
}

.hero h1,
.section h2,
.gallery-copy h2,
.progress-copy h2,
.cost-heading h2,
.truth-heading h2,
.inquire-copy h2 {
  margin: 0;
  font-weight: 540;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.98;
}

.hero h1 em {
  color: #c7c3ba;
  font-style: normal;
  font-weight: 340;
}

.hero-lede {
  max-width: 590px;
  margin: 26px 0 34px;
  color: #cfcdc6;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.62;
}

.hero-price {
  display: grid;
  width: fit-content;
  margin-bottom: 28px;
}

.hero-price span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-price strong {
  margin: 6px 0 2px;
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1;
  font-weight: 630;
  letter-spacing: -0.04em;
}

.hero-price small {
  color: #96948d;
  font-size: 10px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #070706;
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.15);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-ghost {
  background: rgba(5, 5, 5, 0.3);
  border-color: rgba(255, 255, 255, 0.23);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div {
  display: grid;
  gap: 7px;
  padding: 16px 18px 17px 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts span {
  color: #929088;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-facts strong {
  font-size: 13px;
  font-weight: 590;
}

.lead-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 33px;
  background: rgba(18, 18, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lead-card h2 {
  margin: 12px 0 12px;
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -0.045em;
  font-weight: 590;
}

.lead-card > p {
  margin: 0 0 22px;
  color: #b4b1a9;
  font-size: 13px;
  line-height: 1.6;
}

.lead-card form,
.full-form-card form {
  display: grid;
  gap: 10px;
}

.lead-card label,
.full-form-card label,
.calculator label,
.calculator legend {
  color: #cecbc3;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lead-card input,
.lead-card select,
.full-form-card input,
.full-form-card select {
  width: 100%;
  min-height: 47px;
  padding: 0 13px;
  background: #0a0a09;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: var(--white);
  outline: none;
}

.lead-card input:focus,
.lead-card select:focus,
.full-form-card input:focus,
.full-form-card select:focus {
  border-color: var(--gold);
}

.lead-card input::placeholder {
  color: #77756e;
}

.lead-card .button {
  width: 100%;
  margin-top: 5px;
}

.lead-card form > small,
.form-privacy {
  color: #85837c;
  font-size: 9px;
  line-height: 1.55;
}

.form-success {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 22px;
}

.form-success h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.form-success p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-success button {
  min-height: 40px;
  margin-top: 12px;
  padding: 0 15px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
}

.verification-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 86px;
  padding: 0 clamp(24px, 6vw, 96px);
  background: #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-bar > div {
  position: relative;
  display: grid;
  align-content: center;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  padding: 15px 23px;
}

.verification-bar > div + div {
  border-left: 1px solid var(--line);
}

.verification-bar strong {
  font-size: 11px;
  font-weight: 660;
}

.verification-bar small {
  grid-column: 2;
  margin-top: 4px;
  color: #78766f;
  font-size: 9px;
}

.signal {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-top: 3px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.signal-gold { background: var(--gold); }
.signal-green { background: var(--green); }
.signal-white { background: #eeeae0; }

.section {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(86px, 10vw, 150px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section h2,
.gallery-copy h2,
.progress-copy h2,
.cost-heading h2,
.truth-heading h2,
.inquire-copy h2 {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.03;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 9vw, 150px);
}

.intro-grid h2 {
  max-width: 650px;
}

.intro-copy > p {
  margin: 0 0 30px;
  color: #bbb8b0;
  font-size: 17px;
  line-height: 1.78;
}

.view-switch {
  width: fit-content;
  display: flex;
  padding: 4px;
  background: #0c0c0b;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.view-switch button,
.filter-row button {
  min-height: 39px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #a7a49d;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.view-switch button.active,
.filter-row button.active {
  background: var(--gold);
  color: #060606;
}

.intro-copy > small {
  display: block;
  max-width: 500px;
  margin-top: 14px;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

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

.updated-note,
.source-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: #0d0d0c;
  border: 1px solid var(--line);
  color: #9f9c95;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.filter-row button {
  border: 1px solid var(--line);
}

.inventory-table {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  overflow-x: auto;
}

.inventory-row {
  min-width: 1040px;
  display: grid;
  grid-template-columns: 1.15fr 0.48fr 0.7fr 0.58fr 0.68fr 0.9fr 1.06fr 1.05fr 0.4fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.inventory-row:not(.inventory-head):hover {
  background: #0c0c0b;
}

.inventory-row > span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 10px;
  font-size: 12px;
}

.inventory-head > span {
  min-height: 42px;
  color: #79776f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.inventory-row strong {
  font-size: 12px;
  font-weight: 670;
}

.inventory-row small {
  margin-top: 5px;
  color: #77756e;
  font-size: 9px;
}

.inventory-row a {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  font-style: normal;
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
}

.status-available { color: #b9deb6; background: rgba(112, 167, 107, 0.13); border: 1px solid rgba(112, 167, 107, 0.27); }
.status-reserved { color: #b4b1a9; background: rgba(255, 255, 255, 0.055); border: 1px solid var(--line); }
.status-under-negotiation { color: #e1c780; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.22); }

.honesty-note,
.measurement-note,
.risk-copy {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 20px 0 0;
  padding: 16px 18px;
  background: rgba(212, 175, 55, 0.055);
  border: 1px solid rgba(212, 175, 55, 0.17);
  color: #9c9992;
  font-size: 11px;
  line-height: 1.65;
}

.honesty-note > span {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 10px;
}

.honesty-note p,
.measurement-note {
  margin-top: 0;
  margin-bottom: 0;
}

.honesty-note strong,
.measurement-note strong,
.risk-copy strong {
  color: #dedbd3;
}

.text-link {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

.plan-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
}

.plan-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #181817;
}

.plan-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 55%);
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: transform 450ms ease;
}

.plan-card:hover .plan-image img {
  transform: scale(1.035);
}

.plan-image > span {
  position: absolute;
  z-index: 2;
  left: 15px;
  right: 15px;
  bottom: 13px;
  color: #ccc9c1;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.plan-copy {
  padding: 24px;
}

.plan-copy > small {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plan-copy h3 {
  margin: 8px 0 16px;
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.plan-copy p {
  margin: 5px 0;
  color: #c0bdb5;
  font-size: 12px;
}

.plan-copy > span {
  display: block;
  margin: 15px 0 20px;
  color: #77756e;
  font-size: 10px;
  line-height: 1.5;
}

.plan-copy a {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.55fr);
  align-items: stretch;
  background: #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
}

.gallery-copy h2 {
  max-width: 480px;
}

.gallery-copy > p {
  max-width: 450px;
  margin: 24px 0 36px;
  color: #a8a59d;
  font-size: 14px;
  line-height: 1.75;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
}

.gallery-controls button:hover {
  border-color: var(--gold);
}

.gallery-controls span {
  color: #77756e;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.gallery-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #171716;
}

.gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 40%);
  pointer-events: none;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

.gallery-stage > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d3d0c8;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.location-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(50px, 8vw, 124px);
  align-items: center;
}

.location-map {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #121210;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotate(7deg) scale(1.2);
}

.map-road {
  position: absolute;
  background: #292824;
  border: 1px solid #3c3b35;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(14, 14, 13, 0.8);
}

.road-one { width: 850px; height: 21px; left: -180px; top: 275px; transform: rotate(-13deg); }
.road-two { width: 720px; height: 14px; left: 50px; top: 420px; transform: rotate(58deg); }
.road-three { width: 540px; height: 11px; left: -70px; top: 120px; transform: rotate(24deg); }

.map-park {
  position: absolute;
  width: 210px;
  height: 140px;
  right: 55px;
  top: 88px;
  display: grid;
  place-items: center;
  background: rgba(90, 115, 73, 0.2);
  border: 1px solid rgba(122, 151, 102, 0.23);
  border-radius: 48% 52% 57% 43% / 50% 38% 62% 50%;
  color: #7f9470;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(6, 6, 6, 0.86);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #c8c5bd;
  font-size: 9px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.map-pin i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77756d;
}

.pin-project { left: 42%; top: 45%; color: #0b0b0a; background: var(--gold); border-color: var(--gold); font-weight: 780; transform: scale(1.12); }
.pin-project i { background: #0b0b0a; }
.pin-school { left: 15%; top: 27%; }
.pin-rail { right: 12%; bottom: 22%; }

.location-map > small {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #6b6962;
  font-size: 8px;
}

.location-copy h2 {
  max-width: 580px;
}

.location-copy > p {
  margin: 24px 0;
  color: #aaa79f;
  font-size: 14px;
  line-height: 1.75;
}

.distance-list {
  border-top: 1px solid var(--line);
}

.distance-list > div {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.distance-list span {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 12px;
}

.distance-list small {
  color: #66645e;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.distance-list strong {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 650;
}

.community-tags,
.feature-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.community-tags span,
.feature-rail span {
  padding: 8px 10px;
  background: #0d0d0c;
  border: 1px solid var(--line);
  color: #9f9c95;
  font-size: 9px;
}

.risk-copy {
  display: block;
  font-size: 10px !important;
}

.facts-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}

.facts-layout > div:first-child p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #9b9891;
  line-height: 1.7;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts-grid > div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts-grid strong {
  color: var(--gold-bright);
  font-size: 30px;
  line-height: 1;
  font-weight: 540;
}

.facts-grid span {
  margin-top: 9px;
  color: #8c8982;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.feature-rail {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.feature-rail span {
  padding: 11px 13px;
}

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

.team-grid article {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  background: var(--black);
}

.team-grid article > span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.team-grid h3 {
  margin: 48px 0 13px;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 570;
  letter-spacing: -0.035em;
}

.team-grid p {
  margin: 0;
  color: #8e8b84;
  font-size: 10px;
  line-height: 1.7;
}

.team-grid i {
  margin-top: auto;
  padding-top: 22px;
  color: #706e67;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress-section {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.progress-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) clamp(30px, 8vw, 124px);
}

.progress-copy > p {
  max-width: 520px;
  margin: 24px 0 32px;
  color: #9f9c95;
  font-size: 14px;
  line-height: 1.75;
}

.progress-copy .button {
  width: fit-content;
}

.timeline {
  padding: clamp(65px, 8vw, 115px) clamp(30px, 8vw, 120px) clamp(65px, 8vw, 115px) 0;
}

.timeline-row {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.timeline-row::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 49px;
  bottom: -36px;
  width: 1px;
  background: #2b2a27;
}

.timeline-row:last-of-type::before {
  display: none;
}

.timeline-row > span {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #10100f;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #74716a;
  font-size: 9px;
}

.timeline-row.complete > span,
.timeline-row.current > span {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.timeline-row.current > span {
  background: var(--gold);
  color: #070706;
}

.timeline-row div {
  display: grid;
  gap: 5px;
}

.timeline-row strong {
  font-size: 13px;
  font-weight: 610;
}

.timeline-row small {
  color: #74716a;
  font-size: 9px;
}

.timeline-row time {
  color: #9d9a93;
  font-size: 10px;
}

.timeline > p {
  margin: 26px 0 0;
  color: #696760;
  font-size: 9px;
  line-height: 1.6;
}

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

.protection-grid article {
  min-height: 290px;
  padding: 28px;
  background: var(--black);
}

.protection-grid article > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.protection-grid h3 {
  margin: 55px 0 14px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.protection-grid p {
  margin: 0;
  color: #8f8c85;
  font-size: 11px;
  line-height: 1.75;
}

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

.documents-row a {
  min-height: 87px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-content: center;
  column-gap: 13px;
  padding: 16px 18px;
  background: #0d0d0c;
  border: 1px solid var(--line);
  transition: border-color 180ms ease;
}

.documents-row a:hover {
  border-color: var(--gold-soft);
}

.documents-row a > span:first-child {
  grid-row: 1 / 3;
  width: 37px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  font-size: 8px;
}

.documents-row strong {
  font-size: 11px;
  font-weight: 620;
}

.documents-row small {
  color: #6f6c66;
  font-size: 9px;
}

.documents-row a > span:last-child {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-bright);
}

.cost-section {
  padding: clamp(90px, 11vw, 155px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.07), transparent 26%),
    #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cost-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.cost-heading > p {
  max-width: 570px;
  margin: 22px 0 0;
  color: #9e9b94;
  font-size: 13px;
  line-height: 1.7;
}

.calculator {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: #11110f;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calculator-inputs,
.cost-sheet {
  padding: clamp(30px, 5vw, 62px);
}

.calculator-inputs {
  border-right: 1px solid var(--line);
}

.calculator-inputs > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calculator-inputs > label strong {
  color: var(--gold-bright);
  font-size: 17px;
}

.calculator input[type="range"] {
  width: 100%;
  margin: 27px 0 6px;
  accent-color: var(--gold);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #6d6b64;
  font-size: 9px;
}

.calculator fieldset,
.contact-method {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 35px 0 0;
  padding: 0;
  border: 0;
}

.calculator legend,
.contact-method legend {
  width: 100%;
  margin-bottom: 6px;
}

.calculator fieldset label,
.contact-method label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #0b0b0a;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 9px;
}

.calculator fieldset input,
.contact-method input {
  accent-color: var(--gold);
}

.index-card {
  margin-top: 30px;
  padding: 17px;
  background: rgba(212, 175, 55, 0.055);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

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

.index-card span {
  color: #8d8a83;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.index-card strong {
  margin-top: 7px;
  font-size: 12px;
}

.index-card p {
  margin: 10px 0 0;
  color: #77756e;
  font-size: 9px;
  line-height: 1.55;
}

.cost-sheet > div {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.cost-sheet span {
  color: #96938c;
  font-size: 10px;
}

.cost-sheet strong {
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.cost-sheet .cost-total {
  min-height: 80px;
  margin-top: 10px;
  border-bottom: 0;
}

.cost-total span {
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.cost-total strong {
  color: var(--gold-bright);
  font-size: clamp(21px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.cost-sheet > p {
  margin: 16px 0 0;
  color: #6c6963;
  font-size: 8px;
  line-height: 1.6;
}

.abroad-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 145px);
}

.abroad-copy p {
  max-width: 560px;
  margin: 25px 0 0;
  color: #9f9c95;
  font-size: 14px;
  line-height: 1.75;
}

.buyer-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.buyer-steps li {
  min-height: 114px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.buyer-steps li > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.buyer-steps strong {
  font-size: 16px;
  font-weight: 590;
}

.buyer-steps p {
  margin: 7px 0 0;
  color: #85827b;
  font-size: 11px;
  line-height: 1.6;
}

.file-section {
  width: 100%;
  padding-inline: clamp(24px, 6vw, 96px);
  background: #0b0b0a;
}

.file-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.file-heading > p {
  margin: 0;
  color: #96938c;
  font-size: 13px;
  line-height: 1.75;
}

.detail-list {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.detail-list details,
.faq-list details {
  border-bottom: 1px solid var(--line);
}

.detail-list summary,
.faq-list summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.detail-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.detail-list summary > span,
.faq-list summary > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.detail-list summary strong,
.faq-list summary strong {
  font-size: 14px;
  font-weight: 580;
}

.detail-list summary i,
.faq-list summary i {
  color: #8b8982;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.detail-list details[open] summary i,
.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.detail-body {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
  padding: 5px 0 36px 56px;
}

.detail-body > p {
  margin: 0;
  color: #8d8a83;
  font-size: 11px;
  line-height: 1.7;
}

.detail-body > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 25px;
}

.detail-body > div span {
  color: #aaa79f;
  font-size: 10px;
  line-height: 1.5;
}

.source-ledger {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px 70px;
  margin-top: 55px;
  padding: 42px;
  background: #11110f;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
}

.source-ledger h3 {
  max-width: 450px;
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 560;
  letter-spacing: -0.04em;
}

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

.source-links a,
.source-links .source-entry {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 16px;
  padding: 13px 15px;
  background: #0a0a09;
  border: 1px solid var(--line);
  transition: border-color 180ms ease;
}

.source-links a:hover {
  border-color: var(--gold-soft);
}

.source-links strong {
  font-size: 11px;
  font-weight: 630;
}

.source-links span {
  color: #74716a;
  font-size: 8px;
}

.source-links a > span:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-bright);
  font-size: 14px;
}

.source-ledger > p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #7e7b74;
  font-size: 9px;
  line-height: 1.7;
}

.truth-section {
  padding: clamp(88px, 11vw, 156px) clamp(24px, 6vw, 96px);
  background: var(--gold);
  color: #090908;
}

.truth-heading {
  max-width: 880px;
  margin-bottom: 54px;
}

.truth-heading .section-label {
  color: #29230e;
}

.truth-heading .section-label::before {
  background: #191506;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}

.truth-grid > div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.truth-grid span {
  font-size: 8px;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.truth-grid strong {
  font-size: 11px;
  font-weight: 720;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 140px);
}

.faq-heading h2 {
  max-width: 520px;
}

.faq-heading > p {
  max-width: 460px;
  margin: 24px 0 0;
  color: #908d86;
  font-size: 12px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.faq-list summary {
  min-height: 86px;
}

.faq-list details > p {
  margin: -4px 40px 30px 56px;
  color: #96938c;
  font-size: 12px;
  line-height: 1.75;
}

.inquire-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 140px);
  padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 12% 25%, rgba(212, 175, 55, 0.1), transparent 28%),
    #0b0b0a;
  border-top: 1px solid var(--line);
}

.inquire-copy > p {
  max-width: 520px;
  margin: 26px 0 38px;
  color: #aaa79f;
  font-size: 14px;
  line-height: 1.75;
}

.advisor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.advisor-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #090908;
  font-size: 11px;
  font-weight: 820;
}

.advisor-card > div:last-child {
  display: grid;
  gap: 4px;
}

.advisor-card strong {
  font-size: 12px;
}

.advisor-card span {
  color: #99968f;
  font-size: 10px;
}

.advisor-card small {
  color: #64625c;
  font-size: 8px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.contact-options a {
  color: var(--gold-bright);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.full-form-card {
  padding: clamp(28px, 5vw, 54px);
  background: #121210;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
}

.contact-method {
  margin: 23px 0 18px;
}

.full-form-card .button {
  width: 100%;
}

.form-privacy {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.form-success.large {
  min-height: 530px;
}

footer {
  padding: 0 clamp(24px, 6vw, 96px);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-top {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.footer-top > p {
  justify-self: center;
  color: #7d7a73;
  font-size: 10px;
}

.footer-top > a:last-child {
  justify-self: end;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  padding: 55px 0 65px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: #d8d5cd;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer-grid a,
.footer-grid span {
  color: #6f6d66;
  font-size: 9px;
}

.footer-grid a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: 950px;
  margin: 0;
  color: #5f5d57;
  font-size: 8px;
  line-height: 1.6;
}

.footer-bottom a {
  color: #87847d;
  font-size: 9px;
  white-space: nowrap;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1180px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 365px);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(46px, 6.8vw, 78px);
  }

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

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

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .hero-content {
    max-width: 720px;
  }

  .lead-card {
    width: min(100%, 580px);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.95) 0%, rgba(2, 2, 2, 0.72) 68%, rgba(2, 2, 2, 0.68) 100%), linear-gradient(0deg, rgba(5, 5, 5, 0.86), transparent 45%);
  }

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

  .verification-bar > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .verification-bar > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .location-section,
  .facts-layout,
  .abroad-section,
  .faq-section,
  .inquire-section,
  .file-heading {
    grid-template-columns: 1fr;
  }

  .source-ledger {
    grid-template-columns: 1fr;
  }

  .source-ledger > p {
    grid-column: 1;
  }

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

  .plan-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-section,
  .progress-section {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    min-height: 560px;
  }

  .timeline {
    padding: 0 clamp(30px, 8vw, 120px) clamp(65px, 8vw, 115px);
  }

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

  .calculator-inputs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-heading h2 {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 85px;
  }

  body {
    padding-bottom: 64px;
  }

  .demo-strip {
    min-height: 42px;
    align-items: flex-start;
    gap: 6px;
    padding: 7px 14px;
    flex-direction: column;
    font-size: 9px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 9px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding: 76px 20px 74px;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-facts div,
  .hero-facts div + div {
    padding: 13px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts div:first-child {
    border-top: 0;
  }

  .lead-card {
    padding: 25px 21px;
  }

  .visual-label {
    left: 20px;
    bottom: 14px;
    max-width: calc(100% - 40px);
  }

  .verification-bar {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .verification-bar > div,
  .verification-bar > div + div,
  .verification-bar > div:nth-child(3) {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .verification-bar > div:first-child {
    border-top: 0;
  }

  .section {
    width: min(100% - 40px, 1360px);
    padding: 76px 0;
  }

  .section h2,
  .gallery-copy h2,
  .progress-copy h2,
  .cost-heading h2,
  .truth-heading h2,
  .inquire-copy h2 {
    font-size: clamp(36px, 10.7vw, 52px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .view-switch {
    width: 100%;
  }

  .view-switch button {
    flex: 1;
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .filter-row button {
    flex: 0 0 auto;
  }

  .inventory-table {
    overflow: visible;
    border-top: 0;
  }

  .inventory-head {
    display: none;
  }

  .inventory-row {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 12px;
    padding: 14px;
    background: #0e0e0d;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .inventory-row > span {
    position: relative;
    min-height: 65px;
    padding: 22px 8px 8px;
    border-bottom: 1px solid var(--line);
  }

  .inventory-row > span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .inventory-row > span::before {
    content: attr(data-label);
    position: absolute;
    left: 8px;
    top: 5px;
    color: #66645e;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
  }

  .inventory-row > span:last-child {
    align-items: flex-end;
  }

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

  .plan-card:last-child {
    grid-column: auto;
    display: block;
  }

  .gallery-section {
    min-height: 0;
  }

  .gallery-copy {
    padding: 70px 20px 42px;
  }

  .gallery-stage {
    min-height: 430px;
  }

  .location-map {
    min-height: 470px;
  }

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

  .facts-grid > div {
    min-height: 105px;
  }

  .progress-copy,
  .timeline,
  .cost-section,
  .truth-section,
  .inquire-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline-row {
    grid-template-columns: 45px 1fr;
    padding: 10px 0;
  }

  .timeline-row time {
    grid-column: 2;
    margin-top: -20px;
    padding-top: 29px;
  }

  .protection-grid,
  .documents-row,
  .truth-grid,
  .footer-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .protection-grid article {
    min-height: 230px;
  }

  .protection-grid h3 {
    margin-top: 38px;
  }

  .documents-row a {
    min-height: 82px;
  }

  .calculator-inputs,
  .cost-sheet {
    padding: 25px 19px;
  }

  .calculator-inputs > label {
    align-items: flex-start;
    flex-direction: column;
  }

  .cost-sheet > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }

  .cost-sheet .cost-total {
    min-height: 95px;
  }

  .file-section {
    width: 100%;
    padding-inline: 20px;
  }

  .detail-list summary,
  .faq-list summary {
    grid-template-columns: 40px 1fr 26px;
    min-height: 78px;
  }

  .detail-body {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 40px;
  }

  .detail-body > div {
    grid-template-columns: 1fr;
  }

  .source-ledger {
    padding: 25px 19px;
  }

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

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

  .truth-grid > div {
    min-height: 90px;
  }

  .faq-list details > p {
    margin-left: 40px;
    margin-right: 12px;
  }

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

  .full-form-card {
    padding: 25px 19px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    min-height: 94px;
  }

  .footer-top > p {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 45px 0 52px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.72fr 1.5fr 0.9fr;
    padding: 7px;
    background: rgba(5, 5, 5, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transform: translateY(110%);
    transition: transform 180ms ease;
    pointer-events: none;
  }

  .mobile-actions.visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-actions a,
  .mobile-actions button {
    display: grid;
    place-items: center;
    color: #b5b2ab;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mobile-actions .primary {
    background: var(--gold);
    color: #070706;
  }

  body:has(input:focus) .mobile-actions,
  body:has(select:focus) .mobile-actions {
    transform: translateY(110%);
    pointer-events: none;
  }

  .inventory-row > span:last-child a,
  .plan-copy a,
  .contact-options a,
  .footer-grid a,
  .footer-bottom a {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
  }
}

main p:not([aria-hidden]) {
  font-size: clamp(16px, 1.25vw, 18px);
}

main small:not([aria-hidden]) {
  font-size: 14px;
}

main .hero-lede {
  font-size: clamp(18px, 1.55vw, 22px);
}

main .measurement-note {
  font-size: 17px;
}

.site-header nav {
  font-size: 14px;
}

@media (max-width: 420px) {
  .brand > span:last-child {
    font-size: 11px;
  }

  .header-cta {
    letter-spacing: 0.04em;
  }

  .hero h1 {
    font-size: 43px;
  }

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

/* Final readability pass: preserve a generous type floor across every data-dense module. */
:root {
  --faint: #85837c;
}

.demo-strip,
.demo-strip span {
  font-size: 13px;
}

.hero {
  grid-template-rows: auto auto;
  column-gap: clamp(42px, 6vw, 100px);
  row-gap: 0;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.lead-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-facts {
  grid-column: 1;
  grid-row: 2;
}

.hero-facts span,
.inventory-head > span,
.status,
.map-park,
.map-pin,
.location-map > small,
.community-tags span,
.feature-rail span,
.team-grid article > span,
.team-grid i,
.timeline-row > span,
.timeline-row small,
.protection-grid article > span,
.documents-row a > span:first-child,
.documents-row small,
.index-card span,
.buyer-steps li > span,
.detail-list summary > span,
.faq-list summary > span,
.source-links span,
.truth-grid span {
  font-size: 13px;
}

.distance-list span,
.cost-sheet span,
.source-links strong,
.source-ledger > p,
.timeline > p,
.documents-row strong {
  font-size: 15px;
}

.distance-list small {
  color: #aaa8a0;
  font-size: 13px;
}

.distance-list strong,
.facts-grid span,
.timeline-row strong,
.timeline-row time,
.index-card strong,
.cost-sheet strong,
.detail-body > div span,
.truth-grid strong {
  font-size: 16px;
}

.location-copy .risk-copy {
  font-size: 16px !important;
}

.team-grid h3,
.protection-grid h3 {
  font-size: 24px;
}

.team-grid p,
.protection-grid p,
.index-card p,
.buyer-steps p,
.detail-body > p,
.faq-heading > p,
.faq-list details > p {
  font-size: 16px;
}

.progress-copy > p,
.cost-heading > p,
.file-heading > p,
.inquire-copy > p {
  font-size: 17px;
}

.timeline-row {
  min-height: 96px;
}

.documents-row a {
  min-height: 104px;
}

.range-labels,
.cost-sheet > p {
  color: #929088;
  font-size: 13px;
}

.calculator fieldset label {
  min-height: 48px;
  padding-inline: 16px;
  font-size: 14px;
}

.index-card {
  padding: 21px;
}

.cost-sheet > div {
  min-height: 62px;
}

.buyer-steps strong,
.detail-list summary strong,
.faq-list summary strong {
  font-size: 18px;
}

.detail-list summary,
.faq-list summary {
  min-height: 90px;
}

.detail-body > div {
  gap: 13px 30px;
}

.truth-grid > div {
  min-height: 118px;
  padding: 22px;
}

.advisor-card strong {
  font-size: 17px;
}

.advisor-card span {
  font-size: 15px;
}

.advisor-card small {
  color: #99968f;
  font-size: 13px;
}

.footer-grid strong {
  font-size: 14px;
}

.footer-grid a,
.footer-grid span,
.footer-contact {
  font-size: 15px;
}

.footer-disclosure p {
  font-size: 14px;
}

.footer-social a,
.ai-widget-head button {
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 34px;
  }

  .hero-content,
  .lead-card,
  .hero-facts {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-facts {
    width: 100%;
    max-width: 680px;
    margin-top: 0;
  }

  .inventory-row > span::before {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .hero {
    row-gap: 32px;
  }

  .lead-card {
    width: 100%;
    margin-top: 0;
  }

  .hero-facts {
    margin-top: 4px;
  }

  .hero-facts span,
  .inventory-row > span::before {
    font-size: 13px;
  }

  .footer-disclosure p {
    font-size: 14px;
  }

  .mobile-actions {
    height: calc(72px + env(safe-area-inset-bottom));
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .ai-widget-toggle {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .ai-widget {
    bottom: calc(148px + env(safe-area-inset-bottom));
  }
}

@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;
  }
}

/* Readability, brand, and conversion pass — aligned to the live Semerenko site. */
.brand {
  gap: 13px;
  font-size: 16px;
}

.brand-logo {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: inline-block;
  background: url("https://semerenkogroup.com/wp-content/uploads/2024/03/cropped-cropped-cropped-SG-e1767300067881.webp") center / contain no-repeat;
}

.site-header {
  min-height: 82px;
}

.site-header nav,
.site-header nav button {
  font-size: 14px;
}

.site-header .brand > span:last-child {
  display: none;
}

.site-header nav {
  gap: 9px;
}

.site-header nav a,
.site-header nav button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: #090909;
  border: 1px solid rgba(201, 162, 75, 0.56);
  border-radius: 7px;
  color: #f5f3ed;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header nav button {
  position: relative;
  cursor: pointer;
}

.site-header nav button::after {
  display: none;
}

.site-header nav a::after {
  display: none;
}

.site-header nav a:hover,
.site-header nav button:hover {
  background: rgba(201, 162, 75, 0.13);
  color: var(--gold-bright);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-whatsapp,
.mobile-first-whatsapp {
  display: none;
}

.header-cta {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero {
  min-height: 880px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
}

.eyebrow,
.section-label,
.card-kicker {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.145em;
}

.eyebrow {
  gap: 16px;
  margin-bottom: 31px;
}

.eyebrow i {
  width: 44px;
}

.eyebrow span {
  padding: 11px 15px;
  background: rgba(212, 175, 55, 0.19);
  border-color: rgba(229, 196, 90, 0.65);
}

.visual-label {
  padding: 11px 14px;
  font-size: 13px;
}

.hero-lede {
  font-size: clamp(18px, 1.55vw, 22px);
}

.hero-price span {
  font-size: 13px;
}

.hero-price small {
  font-size: 13px;
}

.button {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 14px;
}

.button > span:last-child,
.header-cta > span:last-child {
  margin-left: 4px;
  margin-right: 3px;
}

.hero-facts {
  max-width: 760px;
  margin-top: 52px;
}

.hero-facts div {
  gap: 9px;
  padding-block: 22px;
}

.hero-facts span {
  font-size: 12px;
}

.hero-facts strong {
  font-size: 18px;
  line-height: 1.35;
}

.lead-card {
  padding: clamp(38px, 4vw, 52px);
  border-color: rgba(255, 255, 255, 0.28);
  border-top-width: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 70px rgba(212, 175, 55, 0.08);
}

.lead-card h2 {
  margin: 15px 0 16px;
  font-size: clamp(32px, 3vw, 40px);
}

.lead-card > p {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.68;
}

.lead-card form,
.full-form-card form {
  gap: 14px;
}

.lead-card label,
.full-form-card label,
.calculator label,
.calculator legend {
  font-size: 13px;
}

.lead-card input,
.lead-card select,
.full-form-card input,
.full-form-card select {
  min-height: 58px;
  padding-inline: 18px;
  font-size: 16px;
}

.lead-card select,
.full-form-card select {
  appearance: none;
  padding-right: 54px;
  background-image:
    linear-gradient(45deg, transparent 50%, #dedbd3 50%),
    linear-gradient(135deg, #dedbd3 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.lead-card .button > span,
.full-form-card .button > span {
  margin-left: auto;
  margin-right: 3px;
}

.service-consent {
  margin: 2px 0 0;
  color: #b6b3ab;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.service-consent a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-card .consent-check,
.full-form-card .consent-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: #b6b3ab;
  font-size: 14px;
  font-weight: 480;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.lead-card .consent-check input,
.full-form-card .consent-check input {
  width: 22px;
  min-height: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.lead-card form > small,
.form-privacy {
  font-size: 13px;
}

.verification-bar {
  min-height: 132px;
}

.verification-bar > div {
  column-gap: 14px;
  padding: 24px 28px;
}

.verification-bar strong {
  font-size: 17px;
  line-height: 1.35;
}

.verification-bar small {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.signal {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.055);
}

.section-label {
  gap: 16px;
  margin-bottom: 30px;
}

.section-label::before {
  width: 42px;
  height: 2px;
}

main p:not([aria-hidden]) {
  font-size: clamp(15.5px, 1vw, 17px);
  line-height: 1.72;
}

main small:not([aria-hidden]) {
  font-size: 13px;
  line-height: 1.5;
}

.intro-copy > p {
  font-size: 18px;
}

.intro-copy > small {
  font-size: 14px;
}

.view-switch button,
.filter-row button {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 13px;
}

.updated-note,
.source-pill {
  padding: 13px 16px;
  font-size: 13px;
}

.filter-row {
  gap: 10px;
  margin-bottom: 31px;
}

.inventory-row > span {
  min-height: 96px;
  padding: 16px 12px;
  font-size: 15px;
  line-height: 1.4;
}

.inventory-head > span {
  min-height: 52px;
  font-size: 12px;
}

.inventory-row strong {
  font-size: 16px;
}

.inventory-row small {
  font-size: 13px;
}

.inventory-row a {
  font-size: 14px;
}

.status {
  padding: 8px 10px;
  font-size: 12px;
}

.honesty-note,
.measurement-note,
.risk-copy {
  gap: 16px;
  margin-top: 32px;
  padding: 21px 23px;
  font-size: 16px;
  line-height: 1.65;
}

.honesty-note > span {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.text-link,
.plan-copy a {
  font-size: 14px;
}

.plan-image > span {
  font-size: 13px;
}

.plan-copy {
  padding: 30px;
}

.plan-copy > small {
  font-size: 13px;
}

.plan-copy h3 {
  margin: 11px 0 20px;
  font-size: 28px;
}

.plan-copy p {
  font-size: 16px;
}

.plan-copy > span {
  margin: 19px 0 25px;
  font-size: 15px;
  line-height: 1.6;
}

.gallery-copy > p {
  font-size: 18px;
}

.gallery-controls button {
  width: 56px;
  height: 56px;
  font-size: 23px;
}

.gallery-controls span,
.gallery-stage > span {
  font-size: 14px;
}

.full-form-card {
  border-color: rgba(255, 255, 255, 0.24);
  border-top-width: 3px;
}

.form-grid {
  gap: 22px 17px;
}

.advisor-card strong {
  font-size: 16px;
}

.advisor-card span {
  font-size: 14px;
}

.advisor-card small {
  font-size: 13px;
}

.contact-options a {
  min-height: 44px;
  font-size: 15px;
}

.footer-ai-link {
  justify-self: end;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-top > p {
  font-size: 15px;
}

.footer-region {
  padding: 42px 0 14px;
  text-align: center;
}

.footer-region > strong {
  display: block;
  color: #e4e1d9;
  font-size: 16px;
}

.footer-region > p {
  margin: 8px 0 22px;
  color: #88857e;
  font-size: 14px;
}

.footer-region > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-region a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  background: #0c0c0b;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dedbd3;
  font-size: 14px;
  font-weight: 650;
}

.footer-region a:hover {
  border-color: rgba(212, 175, 55, 0.55);
}

.footer-region a span {
  color: var(--gold-bright);
  font-size: 12px;
}

.footer-grid {
  gap: clamp(34px, 5vw, 75px);
  padding-block: 64px 70px;
}

.footer-grid > div {
  gap: 14px;
}

.footer-grid strong {
  font-size: 13px;
}

.footer-grid a,
.footer-grid span {
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  color: #c8c5bd;
  font-size: 14px;
}

.footer-contact span {
  color: #4d4b47;
}

.footer-whatsapp {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 0 26px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d9d6ce;
  font-size: 13px;
  font-weight: 760;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: #aaa79f;
  font-size: 14px;
}

.footer-legal-links a {
  color: #dedbd3;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-disclosure {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 0 38px;
  text-align: center;
}

.footer-disclosure p {
  margin: 10px auto 0;
  color: #8f8c85;
  font-size: 13px;
  line-height: 1.65;
}

.footer-disclosure a {
  color: #d5d2ca;
}

.footer-companies {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-widget-toggle {
  position: fixed;
  z-index: 112;
  right: 24px;
  bottom: 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 9px;
  background: #121210;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  color: #f4f1e9;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.65);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ai-widget-toggle.is-hero-obscured {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.ai-widget-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #050505;
  border-radius: 50%;
}

.ai-widget-icon .brand-logo {
  width: 28px;
  height: 28px;
}

.ai-widget {
  position: fixed;
  z-index: 111;
  right: 24px;
  bottom: 96px;
  width: min(460px, calc(100vw - 48px));
  height: min(720px, calc(100dvh - 132px));
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.82);
}

.ai-widget-head {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 17px;
  background: #0b0b0a;
  border-bottom: 1px solid var(--line);
}

.ai-widget-head > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 760;
}

.ai-widget-head .brand-logo {
  width: 28px;
  height: 28px;
}

.ai-widget-head button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 25px;
}

.ai-widget iframe {
  width: 100%;
  height: calc(100% - 58px);
  display: block;
  border: 0;
  background: #000;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lead-card {
    width: min(100%, 680px);
  }

  .filter-row {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .inventory-table {
    overflow: visible;
    border-top: 0;
  }

  .inventory-head {
    display: none;
  }

  .inventory-row {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
    padding: 18px;
    background: #0e0e0d;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .inventory-row > span {
    position: relative;
    min-height: 84px;
    padding: 28px 10px 11px;
    border-bottom: 1px solid var(--line);
  }

  .inventory-row > span::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 7px;
    color: #aaa8a0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .inventory-row > span:last-child {
    grid-column: 1 / -1;
    min-height: 56px;
    padding: 10px 0 0;
    border-bottom: 0;
  }

  .inventory-row > span:last-child a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border: 1px solid rgba(212, 175, 55, 0.45);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .demo-strip {
    font-size: 12px;
    line-height: 1.45;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .brand {
    gap: 9px;
    font-size: 13px;
  }

  .brand-logo {
    width: 33px;
    height: 33px;
  }

  .header-agent {
    display: none;
  }

  .header-whatsapp {
    min-height: 44px;
    display: inline-flex;
    padding-inline: 14px;
    font-size: 12px;
  }

  .mobile-first-whatsapp {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin-bottom: 28px;
    padding: 0 18px;
    background: #20a75a;
    color: #fff;
    font-size: 15px;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .hero {
    padding: 38px 20px 84px;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
  }

  .eyebrow span {
    padding: 10px 12px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.5vw, 50px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .button {
    min-height: 60px;
    font-size: 14px;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding-block: 20px;
  }

  .hero-facts span {
    font-size: 12px;
  }

  .hero-facts strong {
    font-size: 18px;
  }

  .lead-card {
    padding: 31px 23px;
  }

  .lead-card h2 {
    font-size: 33px;
  }

  .lead-card > p {
    font-size: 16px;
  }

  .lead-card input,
  .lead-card select,
  .full-form-card input,
  .full-form-card select {
    min-height: 60px;
    font-size: 16px;
  }

  .verification-bar > div,
  .verification-bar > div + div,
  .verification-bar > div:nth-child(3) {
    padding: 24px 2px;
  }

  .verification-bar strong {
    font-size: 17px;
  }

  .verification-bar small {
    font-size: 14px;
  }

  .section {
    width: min(100% - 36px, 1360px);
    padding-block: 88px;
  }

  .section-label {
    font-size: 12px;
  }

  .section-label::before {
    width: 34px;
  }

  .view-switch button,
  .filter-row button {
    min-height: 50px;
    font-size: 13px;
  }

  .filter-row {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .inventory-row {
    padding: 18px;
  }

  .inventory-row > span {
    min-height: 83px;
    padding: 27px 9px 11px;
    font-size: 16px;
  }

  .inventory-row > span::before {
    top: 7px;
    color: #aaa8a0;
    font-size: 11px;
  }

  .inventory-row > span:last-child {
    grid-column: 1 / -1;
    min-height: 58px;
    align-items: stretch;
    padding: 10px 0 0;
  }

  .inventory-row strong {
    font-size: 17px;
  }

  .inventory-row small {
    font-size: 13px;
  }

  .inventory-row a {
    font-size: 14px;
  }

  .status {
    font-size: 12px;
  }

  .honesty-note,
  .measurement-note,
  .risk-copy {
    margin-top: 30px;
    padding: 19px;
    font-size: 15px;
  }

  .plan-copy {
    padding: 26px 23px 30px;
  }

  .plan-copy h3 {
    font-size: 27px;
  }

  .plan-copy p {
    font-size: 16px;
  }

  .gallery-copy {
    padding: 76px 20px 50px;
  }

  .gallery-copy > p {
    font-size: 17px;
  }

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

  .footer-region {
    padding-top: 36px;
  }

  .footer-region > div {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-region a {
    justify-content: space-between;
    font-size: 15px;
  }

  .footer-ai-link {
    max-width: 150px;
    font-size: 12px;
    text-align: right;
  }

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

  .footer-grid a,
  .footer-grid span {
    font-size: 15px;
  }

  .footer-contact {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    font-size: 15px;
  }

  .footer-contact span {
    display: none;
  }

  .footer-legal-links {
    align-items: center;
    flex-direction: column;
    font-size: 14px;
  }

  .footer-disclosure p {
    font-size: 13px;
    text-align: left;
  }

  .mobile-actions {
    height: 72px;
    grid-template-columns: 1.15fr 1.35fr 0.65fr 0.65fr;
    padding: 8px;
  }

  .mobile-actions a,
  .mobile-actions button {
    font-size: 12px;
  }

  .mobile-actions .primary {
    background: #20a75a;
    color: #fff;
  }

  .mobile-actions .project-action {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    color: var(--gold-bright);
  }

  .mobile-actions button {
    border: 0;
    border-left: 1px solid var(--line);
    cursor: pointer;
  }

  .ai-widget-toggle {
    right: 13px;
    bottom: 84px;
    min-height: 54px;
    padding: 7px 16px 7px 7px;
    font-size: 13px;
  }

  .ai-widget {
    right: 12px;
    bottom: 148px;
    width: calc(100vw - 24px);
    height: min(680px, calc(100dvh - 168px));
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    font-size: 12px;
  }

  .header-whatsapp {
    padding-inline: 11px;
    letter-spacing: 0.035em;
  }

  .ai-widget-toggle > span:last-child {
    display: none;
  }

  .ai-widget-toggle {
    width: 56px;
    padding: 7px;
  }
}

/* Keep the readability floor after every breakpoint-specific rule above. */
.hero-facts span,
.inventory-head > span,
.status {
  font-size: 13px;
}

.inventory-row > span {
  font-size: 16px;
}

.inventory-row strong {
  font-size: 17px;
}

.footer-grid strong,
.footer-disclosure p {
  font-size: 14px;
}

.footer-grid a,
.footer-grid span,
.footer-contact,
.footer-region a {
  font-size: 15px;
}

.footer-social a,
.ai-widget-head button {
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 34px;
  }

  .hero-content,
  .lead-card,
  .hero-facts {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-facts {
    width: 100%;
    max-width: 680px;
    margin-top: 0;
  }

  .inventory-row > span::before {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .section-label,
  .hero-facts span {
    font-size: 13px;
  }

  .footer-ai-link,
  .mobile-actions a,
  .mobile-actions button {
    font-size: 13px;
  }

  .footer-disclosure p {
    font-size: 14px;
  }

  .mobile-actions {
    height: calc(72px + env(safe-area-inset-bottom));
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .ai-widget-toggle {
    display: none;
  }

  .ai-widget {
    bottom: calc(148px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    font-size: 13px;
  }
}

.eyebrow,
.section-label,
.card-kicker,
.view-switch button,
.filter-row button,
.updated-note,
.source-pill,
.plan-copy > small,
.plan-image > span,
.gallery-controls span,
.gallery-stage > span {
  font-size: 14px;
}

.verification-bar strong {
  font-size: 18px;
}

.verification-bar small {
  font-size: 15px;
}

@media (max-width: 760px) {
  .eyebrow,
  .section-label,
  .card-kicker {
    font-size: 13px;
  }

  .verification-bar strong {
    font-size: 18px;
  }

  .verification-bar small {
    font-size: 15px;
  }
}

main p:not([aria-hidden]) {
  font-size: clamp(16px, 1.25vw, 18px);
}

main small:not([aria-hidden]) {
  font-size: 14px;
}

main .hero-lede {
  font-size: clamp(18px, 1.55vw, 22px);
}

main .measurement-note {
  font-size: 17px;
}

.site-header nav {
  font-size: 14px;
}

/* Final desktop conversion layout: form first on the left, with a wider card. */
@media (min-width: 1181px) {
  .hero {
    grid-template-columns: minmax(540px, 610px) minmax(0, 1fr);
    column-gap: clamp(56px, 6vw, 110px);
  }

  .lead-card {
    width: 100%;
    max-width: 610px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .hero-content,
  .hero-facts {
    grid-column: 2;
    max-width: 720px;
  }

  .hero-content {
    grid-row: 1;
  }

  .hero-facts {
    grid-row: 2;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(440px, 500px) minmax(0, 1fr);
    column-gap: 42px;
  }

  .lead-card {
    width: 100%;
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 36px;
  }

  .hero-content,
  .hero-facts {
    grid-column: 2;
  }

  .hero-content {
    grid-row: 1;
  }

  .hero-facts {
    grid-row: 2;
  }

  .hero h1 {
    font-size: clamp(48px, 5.6vw, 68px);
  }
}

/* File-backed production adaptations for the approved v3 presentation. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/project-files/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/project-files/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-inter: "Inter";
}

html,
body,
button,
input,
select {
  font-family: var(--font-inter), Arial, sans-serif;
}

button,
.header-cta,
.footer-ai-link,
.ai-widget-toggle,
.gallery-controls button,
.view-switch button,
.filter-row button {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.lead-handoff-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 8px;
}

.lead-handoff-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d2d0c8;
  font-size: 14px;
  line-height: 1.35;
}

.lead-handoff-list i {
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lead-whatsapp-link {
  display: inline-block;
  width: fit-content;
  margin-top: 10px;
  border-bottom: 1px solid var(--line-gold);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card > small {
  display: block;
  margin-top: 12px;
  color: #85837c;
  font-size: 9px;
  line-height: 1.55;
}

.archive-warning {
  display: grid;
  gap: 9px;
  margin: 0 0 42px;
  padding: 24px 26px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.42);
}

.archive-warning strong {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-warning p,
.archive-warning small {
  margin: 0;
  color: #c3c0b8;
  line-height: 1.65;
}

.archive-warning small {
  color: #8f8c85;
  font-size: 12px;
}

.full-form-card > .card-kicker,
.full-form-card > h3,
.full-form-card > p,
.full-form-card > .lead-handoff-list,
.full-form-card > .button,
.full-form-card > .service-consent {
  margin-left: 0;
  margin-right: 0;
}

.full-form-card > h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.full-form-card > p {
  color: var(--muted);
  line-height: 1.65;
}

.full-form-card > .lead-handoff-list {
  margin: 26px 0;
}

[data-sg-v3-file-project] .hero h1 {
  overflow-wrap: anywhere;
}

[data-sg-v3-file-project] .hero-price strong {
  max-width: 520px;
  font-size: clamp(24px, 2.35vw, 38px);
}

.file-empty-state {
  display: grid;
  gap: 13px;
  padding: clamp(28px, 4vw, 52px);
  background: #11110f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
}

.file-empty-state > span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.file-empty-state h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.file-empty-state p {
  max-width: 780px;
  margin: 0;
  color: #aaa8a0;
  line-height: 1.72;
}

.file-empty-state .button {
  width: fit-content;
  margin-top: 10px;
}

.legacy-project-copy {
  max-width: 980px;
  display: grid;
  gap: 17px;
  margin: 0 auto;
  color: #393832;
  font-size: 17px;
  line-height: 1.78;
}

.legacy-project-copy h2,
.legacy-project-copy h3,
.legacy-project-copy h4 {
  margin: 28px 0 0;
  color: #11110f;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legacy-project-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.legacy-project-copy h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.legacy-project-copy p,
.legacy-project-copy ul,
.legacy-project-copy ol,
.legacy-project-copy blockquote {
  margin: 0;
}

.legacy-project-copy ul,
.legacy-project-copy ol {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.legacy-project-copy blockquote {
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: #ebe8df;
}

[data-complete-file][hidden],
[data-ai-widget][hidden] {
  display: none !important;
}

.service-consent a {
  text-decoration: underline;
}

/* File-backed content modules retain the approved v3 cadence without
   presenting an absent project fact as a populated module. */
.intro-review {
  display: grid;
  gap: 8px;
  max-width: 580px;
  margin: 26px 0 8px;
  padding: 20px 22px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.34);
}

.intro-review strong {
  color: var(--gold-bright);
  font-size: 14px;
}

.intro-review span {
  color: #aaa79f;
  font-size: 14px;
  line-height: 1.65;
}

.published-section-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(56px, 8vw, 128px);
}

.published-section-heading {
  position: sticky;
  top: 112px;
}

.published-section-heading h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.04;
}

.published-section-disclosure {
  max-width: 520px;
  margin: 26px 0 0;
  color: #8e8b84;
  font-size: 14px;
  line-height: 1.72;
}

.published-section-copy {
  width: min(100%, 760px);
  display: grid;
  gap: 24px;
  color: #bbb8b0;
  font-size: 17px;
  line-height: 1.82;
}

.published-section-copy > * {
  max-width: 72ch;
  margin: 0;
}

.published-section-copy h2,
.published-section-copy h3,
.published-section-copy h4 {
  margin-top: 30px;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.published-section-copy h2:first-child,
.published-section-copy h3:first-child,
.published-section-copy h4:first-child {
  margin-top: 0;
}

.published-section-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.published-section-copy h3 {
  font-size: clamp(24px, 2.7vw, 34px);
}

.published-section-copy ul,
.published-section-copy ol {
  display: grid;
  gap: 11px;
  padding-left: 24px;
}

.client-section-points {
  list-style: none;
  padding: 8px 0 0 !important;
}

.client-section-points li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-weight: 650;
}

.client-section-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.published-section-copy blockquote {
  padding: 22px 26px;
  background: #11110f;
  border-left: 3px solid var(--gold);
}

.published-section-copy a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-context {
  border-top: 1px solid var(--line);
}

[data-sg-v3-file-project] .gallery-section {
  min-height: 0;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.35fr);
}

[data-sg-v3-file-project] .gallery-copy {
  padding: clamp(48px, 4.5vw, 72px);
}

[data-sg-v3-file-project] .gallery-copy h2 {
  max-width: 540px;
  font-size: clamp(40px, 3.65vw, 56px);
  line-height: 1.04;
}

[data-sg-v3-file-project] .gallery-copy > p {
  max-width: 540px;
  margin: 23px 0 32px;
  font-size: 16px;
  line-height: 1.7;
}

[data-sg-v3-file-project] .gallery-stage {
  min-height: 0;
  height: clamp(560px, 45vw, 660px);
}

.project-plan-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease;
}

.project-plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
}

.project-plan-card .plan-image {
  aspect-ratio: var(--media-aspect, 4 / 3);
}

.project-plan-card:hover .plan-image img {
  transform: scale(1.035);
}

.plan-image[data-media-fit="contain"] {
  background: #11110f;
}

.plan-image[data-media-fit="contain"]::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 36%);
}

.plan-image[data-media-fit="contain"] img {
  object-fit: contain;
  filter: none;
}

.buyer-file-section {
  width: 100%;
  padding-inline: clamp(24px, 6vw, 96px);
  background: #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buyer-file-section .detail-body > p,
.buyer-file-section .detail-body > div span {
  font-size: 14px;
  line-height: 1.7;
}

.faq-answer {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: -4px 40px 34px 56px;
  color: #aaa79f;
  font-size: 16px;
  line-height: 1.78;
}

.faq-answer > * {
  margin: 0;
}

.faq-answer ul,
.faq-answer ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.faq-answer > small {
  color: var(--gold-bright);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.file-empty-state {
  gap: 24px;
}

.file-empty-state p {
  max-width: 72ch;
}

.legacy-project-copy {
  gap: 25px;
}

.legacy-project-copy p + p,
.legacy-project-copy p + ul,
.legacy-project-copy p + ol,
.legacy-project-copy ul + p,
.legacy-project-copy ol + p {
  margin-top: 7px;
}

@media (min-width: 981px) {
  [data-sg-v3-file-project] .lead-card {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  [data-sg-v3-file-project] .full-form-card {
    min-height: 590px;
    display: grid;
    align-content: center;
  }
}

@media (max-width: 980px) {
  .published-section-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .published-section-heading {
    position: static;
  }

  [data-sg-v3-file-project] .gallery-section {
    grid-template-columns: 1fr;
  }

  [data-sg-v3-file-project] .gallery-copy {
    padding: 72px clamp(24px, 7vw, 64px) 48px;
  }

  [data-sg-v3-file-project] .gallery-stage {
    height: min(62vw, 540px);
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  [data-sg-v3-file-project] .hero h1 {
    font-size: clamp(39px, 12vw, 60px);
  }

  .file-empty-state {
    padding: 24px;
  }

  .legacy-project-copy {
    font-size: 16px;
  }

  .published-section-copy {
    gap: 21px;
    font-size: 16px;
  }

  .published-section-disclosure {
    font-size: 13px;
  }

  [data-sg-v3-file-project] .gallery-copy {
    padding: 68px 20px 42px;
  }

  [data-sg-v3-file-project] .gallery-stage {
    height: clamp(350px, 100vw, 430px);
    min-height: 350px;
  }

  .faq-answer {
    margin: -2px 0 30px 0;
    font-size: 15px;
  }
}

/* v3-8: direct project hierarchy, project inquiry dialog, and shared UI layers. */
[data-sg-v3-file-project] .site-header {
  z-index: 200;
}

[data-sg-v3-file-project] .mobile-actions {
  z-index: 300;
}

[data-sg-v3-file-project] .ai-widget-toggle {
  z-index: 1200;
  background: #121210;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 999px;
  color: #f4f1e9;
  opacity: 1;
  isolation: isolate;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.72);
}

[data-sg-v3-file-project] .ai-widget {
  z-index: 1210;
  background: #000;
  opacity: 1;
  isolation: isolate;
}

[data-sg-v3-file-project] .skip-link {
  z-index: 1000;
}

[data-sg-v3-file-project] .project-offer-line {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 720;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

[data-sg-v3-file-project] .hero-location {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 680px;
  margin: 18px 0 0;
  color: #dedbd3;
  font-size: clamp(17px, 1.2vw, 19px);
  font-weight: 570;
  line-height: 1.45;
}

[data-sg-v3-file-project] .hero-location::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

[data-sg-v3-file-project] .project-offer-line + h1 {
  max-width: 760px;
}

[data-sg-v3-file-project] .truth-heading > p {
  max-width: 68ch;
  margin: 20px 0 0;
  color: #29230e;
  font-size: 17px;
  line-height: 1.65;
}

[data-sg-v3-file-project] .hero-location + .hero-lede {
  margin-top: 20px;
}

[data-sg-v3-file-project] .inline-project-request,
[data-sg-v3-file-project] .project-inquiry-link {
  appearance: none;
  -webkit-appearance: none;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 2px;
  color: var(--gold-bright);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
}

[data-sg-v3-file-project] .inline-project-request:hover,
[data-sg-v3-file-project] .inline-project-request:focus-visible,
[data-sg-v3-file-project] .project-inquiry-link:hover,
[data-sg-v3-file-project] .project-inquiry-link:focus-visible {
  background: var(--gold);
  color: #070706;
  text-decoration: none;
}

body.project-inquiry-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/*
 * The archive isolates its page content so internal layers stay self-contained.
 * While the inquiry is open, that would trap the fixed dialog below the global
 * sticky header and the footer price widget, regardless of its z-index.
 */
body.project-inquiry-open .sgp-root.sgp-project-archive {
  isolation: auto;
}

body.project-inquiry-open [data-sg-v3-file-project] .ai-widget-toggle,
body.project-inquiry-open [data-sg-v3-file-project] .mobile-actions {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

[data-sg-v3-file-project] .project-inquiry-dialog {
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(18px, 3vw, 36px);
  overflow: hidden;
  overscroll-behavior: contain;
  background: #000;
  border: 0;
  color: var(--white);
  backdrop-filter: blur(14px);
}

[data-sg-v3-file-project] .project-inquiry-dialog[hidden] {
  display: none !important;
}

[data-sg-v3-file-project] dialog.project-inquiry-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
}

[data-sg-v3-file-project] .project-inquiry-shell {
  width: min(1120px, 100%);
  height: min(820px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 46px);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.78);
}

[data-sg-v3-file-project] .project-inquiry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

[data-sg-v3-file-project] .project-inquiry-welcome {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: clamp(20px, 4vh, 44px) 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

[data-sg-v3-file-project] .project-inquiry-welcome[hidden],
[data-sg-v3-file-project] .project-inquiry-flow[hidden] {
  display: none !important;
}

[data-sg-v3-file-project] .project-inquiry-welcome-copy > span,
[data-sg-v3-file-project] .project-inquiry-welcome-list > span {
  display: block;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-sg-v3-file-project] .project-inquiry-welcome-copy h2 {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

[data-sg-v3-file-project] .project-inquiry-welcome-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #c5c2ba;
  font-size: 19px;
  line-height: 1.65;
}

[data-sg-v3-file-project] .project-inquiry-welcome-copy button {
  min-width: 176px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
  padding: 0 26px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: #070706;
  cursor: pointer;
  font-size: 17px;
  font-weight: 780;
}

[data-sg-v3-file-project] .project-inquiry-welcome-copy button span {
  flex: 0 0 auto;
  margin-inline-start: 3px;
  font-size: 21px;
  line-height: 1;
}

[data-sg-v3-file-project] .project-inquiry-welcome-list {
  padding: clamp(26px, 3.2vw, 38px);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 2px solid var(--gold);
}

[data-sg-v3-file-project] .project-inquiry-welcome-list ul {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

[data-sg-v3-file-project] .project-inquiry-welcome-list li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #eeece5;
  font-size: 17px;
  line-height: 1.45;
}

[data-sg-v3-file-project] .project-inquiry-welcome-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 25px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

[data-sg-v3-file-project] .project-inquiry-welcome-list small {
  display: block;
  margin-top: 18px;
  color: #9f9c95;
  font-size: 14px;
  line-height: 1.6;
}

[data-sg-v3-file-project] .project-inquiry-flow {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-sg-v3-file-project] .project-inquiry-top > :first-child {
  min-width: 0;
  color: #d9d6ce;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.4;
}

[data-sg-v3-file-project] .project-inquiry-top button {
  flex: 0 0 auto;
  width: auto;
  min-width: 96px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

[data-sg-v3-file-project] .project-inquiry-top button span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

[data-sg-v3-file-project] .project-inquiry-progress {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(22px, 4vh, 38px);
  color: #aaa79f;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

[data-sg-v3-file-project] .project-inquiry-progress progress {
  width: min(320px, 58%);
  height: 8px;
  overflow: hidden;
  accent-color: var(--gold);
  background: #22221f;
  border: 0;
  border-radius: 999px;
}

[data-sg-v3-file-project] .project-inquiry-progress progress::-webkit-progress-bar {
  background: #22221f;
  border-radius: 999px;
}

[data-sg-v3-file-project] .project-inquiry-progress progress::-webkit-progress-value {
  background: var(--gold);
  border-radius: 999px;
}

[data-sg-v3-file-project] .project-inquiry-progress > span {
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-align: center;
}

[data-sg-v3-file-project] .project-inquiry-progress > i {
  width: 100%;
  height: 8px;
  display: block;
  overflow: hidden;
  background: #22221f;
  border-radius: 999px;
}

[data-sg-v3-file-project] .project-inquiry-progress > i > b {
  width: 0;
  height: 100%;
  display: block;
  background: var(--gold);
  border-radius: inherit;
  transition: width 180ms ease;
}

[data-sg-v3-file-project] .project-inquiry-step,
[data-sg-v3-file-project] .project-inquiry-success {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

[data-sg-v3-file-project] .project-inquiry-flow > form {
  min-height: 0;
  flex: 1;
  display: flex;
  overflow-y: auto;
  padding: 2px 10px 8px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

[data-sg-v3-file-project] .project-inquiry-flow > form::-webkit-scrollbar,
[data-sg-v3-file-project] .project-inquiry-welcome::-webkit-scrollbar {
  width: 8px;
}

[data-sg-v3-file-project] .project-inquiry-flow > form::-webkit-scrollbar-track,
[data-sg-v3-file-project] .project-inquiry-welcome::-webkit-scrollbar-track {
  background: transparent;
}

[data-sg-v3-file-project] .project-inquiry-flow > form::-webkit-scrollbar-thumb,
[data-sg-v3-file-project] .project-inquiry-welcome::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.48);
  border: 2px solid #080807;
  border-radius: 999px;
}

[data-sg-v3-file-project] .project-inquiry-step {
  padding: 0;
  border: 0;
  outline: 0;
}

[data-sg-v3-file-project] .project-inquiry-step[hidden],
[data-sg-v3-file-project] .project-inquiry-success[hidden] {
  display: none !important;
}

[data-sg-v3-file-project] .project-inquiry-step legend,
[data-sg-v3-file-project] .project-inquiry-success h2 {
  max-width: 820px;
  margin: 0;
  padding: 0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

[data-sg-v3-file-project] .project-inquiry-step > p,
[data-sg-v3-file-project] .project-inquiry-success > p {
  max-width: 600px;
  margin: 20px 0 0;
  color: #b9b6ae;
  font-size: 18px;
  line-height: 1.7;
}

[data-sg-v3-file-project] .project-inquiry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

[data-sg-v3-file-project] .project-inquiry-option {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 16px 18px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #eeece5;
  cursor: pointer;
  font-size: 17px;
  font-weight: 630;
  line-height: 1.4;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

[data-sg-v3-file-project] .project-inquiry-option > span {
  min-width: 0;
}

[data-sg-v3-file-project] .project-inquiry-option > i {
  flex: 0 0 auto;
  color: var(--gold-bright);
  font-size: 20px;
  font-style: normal;
}

[data-sg-v3-file-project] .project-inquiry-option:hover {
  border-color: rgba(255, 255, 255, 0.48);
}

[data-sg-v3-file-project] .project-inquiry-option[aria-checked="true"],
[data-sg-v3-file-project] .project-inquiry-option[aria-pressed="true"],
[data-sg-v3-file-project] .project-inquiry-option.is-selected,
[data-sg-v3-file-project] .project-inquiry-option:has(input:checked) {
  background: #000;
  border-color: var(--gold);
  color: #fff7d9;
}

[data-sg-v3-file-project] .project-inquiry-option input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--gold);
}

[data-sg-v3-file-project] .project-inquiry-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 14px;
  margin-top: 32px;
}

[data-sg-v3-file-project] .project-inquiry-fields label {
  display: grid;
  gap: 9px;
  color: #d7d4cc;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

[data-sg-v3-file-project] .project-inquiry-fields label:has(textarea),
[data-sg-v3-file-project] .project-inquiry-fields .field-full {
  grid-column: 1 / -1;
}

[data-sg-v3-file-project] .project-inquiry-fields input:not([type="checkbox"]):not([type="radio"]),
[data-sg-v3-file-project] .project-inquiry-fields select,
[data-sg-v3-file-project] .project-inquiry-fields textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  color: var(--white);
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
}

[data-sg-v3-file-project] .project-inquiry-fields textarea {
  min-height: 120px;
  resize: vertical;
}

[data-sg-v3-file-project] .project-inquiry-notes {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  color: #d7d4cc;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

[data-sg-v3-file-project] .project-inquiry-notes small {
  color: #8f8c85;
  font-size: 13px;
  font-weight: 520;
}

[data-sg-v3-file-project] .project-inquiry-notes textarea {
  width: 100%;
  min-height: 118px;
  padding: 14px 15px;
  resize: vertical;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  color: var(--white);
  font: inherit;
  font-size: 17px;
  line-height: 1.5;
}

[data-sg-v3-file-project] .project-inquiry-consent {
  margin: 20px 0 0;
  color: #9f9c95;
  font-size: 14px;
  line-height: 1.65;
}

[data-sg-v3-file-project] .project-inquiry-consent a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-sg-v3-file-project] .project-inquiry-fields input:focus,
[data-sg-v3-file-project] .project-inquiry-fields select:focus,
[data-sg-v3-file-project] .project-inquiry-fields textarea:focus {
  border-color: var(--gold-bright);
  outline: 2px solid rgba(229, 196, 90, 0.28);
  outline-offset: 2px;
}

[data-sg-v3-file-project] .project-inquiry-error {
  margin: 18px 0 0;
  padding: 13px 15px;
  background: rgba(206, 139, 120, 0.12);
  border: 1px solid rgba(206, 139, 120, 0.58);
  color: #ffd9cf;
  font-size: 16px;
  line-height: 1.5;
}

[data-sg-v3-file-project] .project-inquiry-error:empty {
  display: none;
}

[data-sg-v3-file-project] .project-inquiry-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
}

[data-sg-v3-file-project] .project-inquiry-actions button {
  min-width: 132px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 22px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.3;
}

[data-sg-v3-file-project] .project-inquiry-actions button > span[aria-hidden="true"] {
  flex: 0 0 auto;
  margin-inline-start: 3px;
  font-size: 20px;
  line-height: 1;
}

[data-sg-v3-file-project] .project-inquiry-actions .button-gold,
[data-sg-v3-file-project] .project-inquiry-actions .primary,
[data-sg-v3-file-project] .project-inquiry-actions [data-project-inquiry-next],
[data-sg-v3-file-project] .project-inquiry-actions .project-inquiry-next,
[data-sg-v3-file-project] .project-inquiry-actions .project-inquiry-submit,
[data-sg-v3-file-project] .project-inquiry-actions [type="submit"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #070706;
}

[data-sg-v3-file-project] .project-inquiry-actions button:disabled,
[data-sg-v3-file-project] .project-inquiry-option:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

[data-sg-v3-file-project] .project-inquiry-actions button[hidden] {
  display: none !important;
}

[data-sg-v3-file-project] .project-inquiry-success {
  display: grid;
  align-content: center;
  min-height: 390px;
}

[data-sg-v3-file-project] .project-inquiry-success > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 26px;
}

[data-sg-v3-file-project] .project-inquiry-success > button {
  width: fit-content;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 22px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: #070706;
  cursor: pointer;
  font-size: 16px;
  font-weight: 760;
}

@media (max-width: 760px) {
  [data-sg-v3-file-project] .project-offer-line {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 1.38;
  }

  [data-sg-v3-file-project] .hero-location {
    margin-top: 14px;
    font-size: 18px;
  }

  [data-sg-v3-file-project] .hero-location + .hero-lede {
    margin-top: 17px;
  }

  [data-sg-v3-file-project] .project-inquiry-dialog {
    align-items: stretch;
    padding: 0;
    background: #000;
  }

  [data-sg-v3-file-project] .project-inquiry-shell {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: max(22px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-top: 3px solid var(--gold);
    border-radius: 0;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 28px;
    padding: 22px 4px 28px 0;
    scrollbar-width: none;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome::-webkit-scrollbar,
  [data-sg-v3-file-project] .project-inquiry-flow > form::-webkit-scrollbar {
    display: none;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome-copy h2 {
    margin-top: 14px;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome-copy p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome-copy button {
    width: 100%;
    min-height: 58px;
    margin-top: 24px;
  }

  [data-sg-v3-file-project] .project-inquiry-welcome-list {
    padding: 24px 20px;
  }

  [data-sg-v3-file-project] .project-inquiry-top {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  [data-sg-v3-file-project] .project-inquiry-progress {
    gap: 10px;
    margin-bottom: 34px;
  }

  [data-sg-v3-file-project] .project-inquiry-flow > form {
    padding-right: 4px;
    scrollbar-width: none;
  }

  [data-sg-v3-file-project] .project-inquiry-progress progress,
  [data-sg-v3-file-project] .project-inquiry-progress > i {
    width: 100%;
  }

  [data-sg-v3-file-project] .project-inquiry-step legend,
  [data-sg-v3-file-project] .project-inquiry-success h2 {
    font-size: clamp(32px, 9.6vw, 43px);
    line-height: 1.08;
  }

  [data-sg-v3-file-project] .project-inquiry-step > p,
  [data-sg-v3-file-project] .project-inquiry-success > p {
    font-size: 18px;
  }

  [data-sg-v3-file-project] .project-inquiry-options,
  [data-sg-v3-file-project] .project-inquiry-fields {
    grid-template-columns: 1fr;
  }

  [data-sg-v3-file-project] .project-inquiry-option {
    min-height: 68px;
    font-size: 17px;
  }

  [data-sg-v3-file-project] .project-inquiry-fields label:has(textarea),
  [data-sg-v3-file-project] .project-inquiry-fields .field-full {
    grid-column: auto;
  }

  [data-sg-v3-file-project] .project-inquiry-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  [data-sg-v3-file-project] .project-inquiry-actions button {
    width: 100%;
    min-height: 56px;
  }

  [data-sg-v3-file-project] footer.site-footer,
  [data-sg-v3-file-project] footer.site-footer * {
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-top {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: 26px 0;
  }

  [data-sg-v3-file-project] .footer-top .brand,
  [data-sg-v3-file-project] .footer-ai-link {
    justify-self: start;
  }

  [data-sg-v3-file-project] .footer-ai-link {
    width: 100%;
    max-width: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }

  [data-sg-v3-file-project] .footer-region {
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-region > div {
    align-items: stretch;
  }

  [data-sg-v3-file-project] .footer-region a {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-grid {
    justify-items: stretch;
  }

  [data-sg-v3-file-project] .footer-grid > div {
    justify-items: stretch;
  }

  [data-sg-v3-file-project] .footer-grid a,
  [data-sg-v3-file-project] .footer-contact a,
  [data-sg-v3-file-project] .footer-legal-links a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-contact,
  [data-sg-v3-file-project] .footer-legal-links {
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-legal-links > span {
    width: 100%;
    text-align: left;
  }

  [data-sg-v3-file-project] .footer-social {
    justify-content: flex-start;
  }

  [data-sg-v3-file-project] .footer-disclosure,
  [data-sg-v3-file-project] .footer-disclosure p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

/* v3-10 cascade seal: keep adaptive spacing authoritative over legacy layers. */
[data-sg-v3-file-project] .hero {
  min-height: clamp(700px, 82vh, 820px);
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(68px, 7vw, 104px);
  row-gap: 34px;
}

[data-sg-v3-file-project] .hero-content {
  align-self: center;
}

[data-sg-v3-file-project] .hero-lede {
  max-width: 650px;
  margin-bottom: 24px;
}

[data-sg-v3-file-project] .hero-facts {
  margin-top: 12px;
}

[data-sg-v3-file-project] .section,
[data-sg-v3-file-project] .project-media-section {
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(68px, 7vw, 104px);
}

[data-sg-v3-file-project] .published-section-layout,
[data-sg-v3-file-project] .project-media-layout {
  gap: clamp(44px, 6.5vw, 92px);
}

[data-sg-v3-file-project] .gallery-stage {
  overflow: hidden;
  background: #0d0d0c;
}

[data-sg-v3-file-project].project-system--media-led .gallery-stage {
  height: clamp(620px, 54vw, 840px);
}

[data-sg-v3-file-project].project-system--plan-led .gallery-stage {
  height: clamp(520px, 42vw, 660px);
}

[data-sg-v3-file-project].project-system--media-led .gallery-copy {
  padding: clamp(54px, 5vw, 84px);
}

[data-sg-v3-file-project] .truth-section,
[data-sg-v3-file-project] .inquire-section {
  padding-top: clamp(72px, 7.5vw, 112px);
  padding-bottom: clamp(72px, 7.5vw, 112px);
}

@media (min-width: 981px) {
  [data-sg-v3-file-project] .lead-card {
    min-height: 510px;
    padding: clamp(32px, 3.4vw, 44px);
  }

  [data-sg-v3-file-project] .full-form-card {
    min-height: 480px;
  }
}

@media (max-width: 980px) {
  [data-sg-v3-file-project] .hero {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 58px;
  }

  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage {
    height: min(68vw, 580px);
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  [data-sg-v3-file-project] .hero {
    gap: 28px;
    padding: 56px 18px 42px;
  }

  [data-sg-v3-file-project] .section,
  [data-sg-v3-file-project] .project-media-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  [data-sg-v3-file-project] .gallery-copy,
  [data-sg-v3-file-project].project-system--media-led .gallery-copy {
    padding: 48px 18px 30px;
  }

  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage,
  [data-sg-v3-file-project] .gallery-stage {
    height: clamp(300px, 90vw, 400px);
    min-height: 300px;
  }

  [data-sg-v3-file-project] .truth-section,
  [data-sg-v3-file-project] .inquire-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* v4-2: PDF-faithful individual project detail composition. */
[data-sg-v3-file-project] {
  --sg-detail-max: 1240px;
  --sg-detail-inline: max(clamp(24px, 4.5vw, 72px), calc((100vw - var(--sg-detail-max)) / 2));
  --sg-detail-left: minmax(300px, 0.74fr);
  --sg-detail-right: minmax(0, 1.26fr);
  --sg-detail-gap: clamp(54px, 7.5vw, 112px);
  --sg-detail-section-y: clamp(76px, 8vw, 116px);
}

[data-sg-v3-file-project] main > .section {
  width: calc(100% - var(--sg-detail-inline) - var(--sg-detail-inline));
  max-width: var(--sg-detail-max);
  padding-top: var(--sg-detail-section-y);
  padding-bottom: var(--sg-detail-section-y);
}

[data-sg-v3-file-project] main > :is(.section, .gallery-section, .project-media-section, .progress-section, .cost-section, .truth-section, .inquire-section) {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

[data-sg-v3-file-project] .hero {
  min-height: clamp(620px, 72vh, 720px);
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  gap: 0;
  padding: clamp(58px, 6vw, 86px) var(--sg-detail-inline);
}

[data-sg-v3-file-project] .hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.82), rgba(2, 2, 2, 0.46) 52%, rgba(2, 2, 2, 0.7)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.08) 58%, rgba(5, 5, 5, 0.42));
}

[data-sg-v3-file-project] .hero-content {
  width: min(100%, 780px);
  max-width: none;
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
  align-self: center;
}

[data-sg-v3-file-project] .hero h1 {
  max-width: 780px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
}

[data-sg-v3-file-project] .hero-lede {
  max-width: 700px;
  margin-top: 22px;
  margin-bottom: 24px;
}

[data-sg-v3-file-project] .hero-glance,
[data-sg-v3-file-project] .hero-facts {
  width: 100%;
  max-width: none;
}

[data-sg-v3-file-project] .hero-actions {
  width: 100%;
  justify-content: center;
  margin-inline: auto;
}

[data-sg-v3-file-project] .gallery-section {
  width: 100%;
  min-height: 0;
  height: clamp(600px, 47vw, 760px);
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  overflow: hidden;
}

[data-sg-v3-file-project] .gallery-copy,
[data-sg-v3-file-project] .gallery-visual {
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-self: stretch;
}

[data-sg-v3-file-project] .gallery-copy,
[data-sg-v3-file-project].project-system--media-led .gallery-copy {
  padding: clamp(48px, 5vw, 76px) clamp(34px, 4vw, 62px) clamp(48px, 5vw, 76px) var(--sg-detail-inline);
}

[data-sg-v3-file-project] .gallery-copy h2 {
  max-width: 500px;
  font-size: clamp(42px, 4.3vw, 64px);
}

[data-sg-v3-file-project] .gallery-copy > p {
  margin-top: 22px;
  margin-bottom: 30px;
}

[data-sg-v3-file-project] .gallery-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #11110f;
}

[data-sg-v3-file-project] .gallery-visual--with-thumbnails {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 8px;
}

[data-sg-v3-file-project] .gallery-thumbnails {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 8px;
}

[data-sg-v3-file-project] .gallery-thumbnails button {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #171716;
  border: 0;
  cursor: pointer;
}

[data-sg-v3-file-project] .gallery-thumbnails button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 160ms ease;
}

[data-sg-v3-file-project] .gallery-thumbnails button:is(:hover, :focus-visible, .is-active)::after {
  border-color: var(--gold);
}

[data-sg-v3-file-project] .gallery-thumbnails img,
[data-sg-v3-file-project] .gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-sg-v3-file-project] .gallery-stage,
[data-sg-v3-file-project].project-system--media-led .gallery-stage,
[data-sg-v3-file-project].project-system--plan-led .gallery-stage {
  width: 100%;
  height: 100%;
  min-height: 0;
}

[data-sg-v3-file-project] .gallery-stage[data-media-fit="contain"] img {
  object-fit: cover;
}

[data-sg-v3-file-project] .intro-grid,
[data-sg-v3-file-project] .published-section-layout,
[data-sg-v3-file-project] .project-media-layout,
[data-sg-v3-file-project] .facts-layout,
[data-sg-v3-file-project] .location-section,
[data-sg-v3-file-project] .developer-section,
[data-sg-v3-file-project] .faq-section {
  grid-template-columns: var(--sg-detail-left) var(--sg-detail-right);
  gap: var(--sg-detail-gap);
  align-items: start;
}

[data-sg-v3-file-project] .published-section-layout,
[data-sg-v3-file-project] .project-media-layout {
  gap: var(--sg-detail-gap);
}

[data-sg-v3-file-project] .project-media-heading {
  position: static;
  top: auto;
}

[data-sg-v3-file-project] .project-media-grid {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

[data-sg-v3-file-project] .project-media-grid > :only-child {
  grid-column: auto;
  width: 100%;
  max-width: none;
}

[data-sg-v3-file-project] .location-heading h2,
[data-sg-v3-file-project] .developer-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.03;
  font-weight: 540;
  letter-spacing: -0.055em;
}

[data-sg-v3-file-project] .location-copy > p {
  margin: 0 0 28px;
  color: #aaa79f;
  line-height: 1.7;
}

[data-sg-v3-file-project] .developer-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(28px, 4vw, 54px);
  background: #11110f;
  border: 1px solid var(--line);
}

[data-sg-v3-file-project] .developer-card > img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  background: #f7f5ef;
  padding: 18px;
}

[data-sg-v3-file-project] .developer-card span,
[data-sg-v3-file-project] .developer-card small {
  display: block;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

[data-sg-v3-file-project] .developer-card h3 {
  margin: 12px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
}

[data-sg-v3-file-project] .developer-card strong,
[data-sg-v3-file-project] .developer-card p {
  display: block;
  margin: 10px 0 0;
  color: #aaa79f;
  line-height: 1.65;
}

[data-sg-v3-file-project] .developer-card small {
  margin-top: 18px;
  color: #77746d;
}

[data-sg-v3-file-project] .availability .section-heading {
  align-items: end;
}

[data-sg-v3-file-project] .unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

[data-sg-v3-file-project] .unit-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: default;
}

[data-sg-v3-file-project] .unit-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #181816;
}

[data-sg-v3-file-project] .unit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-sg-v3-file-project] .unit-card-image--contain {
  padding: 12px;
  background: #f4f1e9;
}

[data-sg-v3-file-project] .unit-card-image--contain img {
  object-fit: contain;
}

[data-sg-v3-file-project] .unit-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

[data-sg-v3-file-project] .unit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

[data-sg-v3-file-project] .unit-card-top small {
  color: #77746d;
}

[data-sg-v3-file-project] .unit-card h3 {
  margin: 18px 0 14px;
  font-size: 26px;
  line-height: 1.08;
}

[data-sg-v3-file-project] .unit-card h3 a {
  color: inherit;
  text-decoration: none;
}

[data-sg-v3-file-project] .unit-card h3 a:hover,
[data-sg-v3-file-project] .unit-card h3 a:focus-visible {
  color: var(--gold-bright);
}

[data-sg-v3-file-project] .unit-card-price {
  display: grid;
  gap: 7px;
  min-height: 70px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

[data-sg-v3-file-project] .unit-card-price span {
  color: #77746d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

[data-sg-v3-file-project] .unit-card-price strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

[data-sg-v3-file-project] .unit-card-price--inquiry strong {
  color: var(--gold-bright);
  font-size: 17px;
}

[data-sg-v3-file-project] .unit-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 24px;
}

[data-sg-v3-file-project] .unit-card-facts div {
  min-width: 0;
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid var(--line);
}

[data-sg-v3-file-project] .unit-card-facts dt,
[data-sg-v3-file-project] .unit-card-facts dd {
  margin: 0;
}

[data-sg-v3-file-project] .unit-card-facts dt {
  color: #77746d;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

[data-sg-v3-file-project] .unit-card-facts dd {
  margin-top: 5px;
  color: #d7d4cc;
  font-size: 13px;
}

[data-sg-v3-file-project] .unit-card .inline-project-request {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

[data-sg-v3-file-project] .availability-note {
  margin: 24px 0 0;
  color: #77746d;
  text-align: center;
}

[data-sg-v3-file-project] .residence-pages-intro {
  max-width: 820px;
  margin: -12px 0 30px;
  color: #aaa79f;
  font-size: 16px;
  line-height: 1.7;
}

[data-sg-v3-file-project] .residence-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
}

[data-sg-v3-file-project] .truth-section {
  padding: clamp(78px, 8vw, 116px) var(--sg-detail-inline);
}

[data-sg-v3-file-project] .truth-heading,
[data-sg-v3-file-project] .truth-grid {
  width: 100%;
  max-width: var(--sg-detail-max);
  margin-left: auto;
  margin-right: auto;
}

[data-sg-v3-file-project] .truth-heading {
  margin-bottom: clamp(38px, 4vw, 54px);
}

[data-sg-v3-file-project] .inquire-section {
  display: flex;
  justify-content: center;
  padding: clamp(70px, 8vw, 116px) var(--sg-detail-inline);
}

[data-sg-v3-file-project] .inquire-section .full-form-card {
  width: min(100%, 1120px);
  min-height: 0;
  padding: clamp(38px, 5vw, 72px);
  border-top-width: 1px;
}

[data-sg-v3-file-project] .full-form-card > .button {
  min-height: 58px;
}

@media (max-width: 980px) {
  [data-sg-v3-file-project] {
    --sg-detail-left: minmax(0, 1fr);
    --sg-detail-right: minmax(0, 1fr);
    --sg-detail-gap: 32px;
  }

  [data-sg-v3-file-project] .hero {
    min-height: 600px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  [data-sg-v3-file-project] .gallery-section {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  [data-sg-v3-file-project] .gallery-copy,
  [data-sg-v3-file-project].project-system--media-led .gallery-copy {
    height: auto;
    padding: 64px var(--sg-detail-inline) 44px;
  }

  [data-sg-v3-file-project] .gallery-visual,
  [data-sg-v3-file-project] .gallery-stage,
  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage {
    height: min(72vw, 580px);
    min-height: 420px;
  }

  [data-sg-v3-file-project] .intro-grid,
  [data-sg-v3-file-project] .published-section-layout,
  [data-sg-v3-file-project] .project-media-layout,
  [data-sg-v3-file-project] .facts-layout,
  [data-sg-v3-file-project] .location-section,
  [data-sg-v3-file-project] .developer-section,
  [data-sg-v3-file-project] .faq-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  [data-sg-v3-file-project] .unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  [data-sg-v3-file-project] {
    --sg-detail-inline: 20px;
    --sg-detail-section-y: 60px;
  }

  [data-sg-v3-file-project] .hero {
    min-height: 0;
    padding: 56px 20px 48px;
  }

  [data-sg-v3-file-project] .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  [data-sg-v3-file-project] .hero-glance {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-sg-v3-file-project] .hero-actions {
    flex-direction: column;
  }

  [data-sg-v3-file-project] .hero-actions .button {
    width: 100%;
  }

  [data-sg-v3-file-project] .gallery-copy,
  [data-sg-v3-file-project].project-system--media-led .gallery-copy {
    padding: 54px 20px 38px;
  }

  [data-sg-v3-file-project] .gallery-visual,
  [data-sg-v3-file-project] .gallery-visual--with-thumbnails {
    grid-template-columns: minmax(0, 1fr);
    height: min(88vw, 430px);
    min-height: 320px;
  }

  [data-sg-v3-file-project] .gallery-thumbnails {
    display: none;
  }

  [data-sg-v3-file-project] .gallery-stage,
  [data-sg-v3-file-project].project-system--media-led .gallery-stage,
  [data-sg-v3-file-project].project-system--plan-led .gallery-stage {
    height: 100%;
    min-height: 0;
  }

  [data-sg-v3-file-project] .unit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-sg-v3-file-project] .developer-card {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-sg-v3-file-project] .developer-card > img {
    max-width: 220px;
  }

  [data-sg-v3-file-project] .truth-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-sg-v3-file-project] .inquire-section .full-form-card {
    padding: 30px 22px;
  }
}

/* v4-4: one-image project gallery with the shared property photo control. */
[data-sg-v3-file-project] .gallery-visual,
[data-sg-v3-file-project] .gallery-visual--with-thumbnails {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

[data-sg-v3-file-project] .gallery-stage {
  position: relative;
  isolation: isolate;
}

[data-sg-v3-file-project] .gallery-view-all {
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
  position: absolute;
  right: clamp(88px, 6vw, 96px);
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  box-shadow: none;
  cursor: pointer;
  background: rgba(241, 237, 228, 0.96);
  color: #000;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: none;
}

[data-sg-v3-file-project] .gallery-view-all:hover,
[data-sg-v3-file-project] .gallery-view-all:focus,
[data-sg-v3-file-project] .gallery-view-all:active {
  background: rgba(241, 237, 228, 0.96);
  color: #000;
}

[data-sg-v3-file-project] .gallery-view-all:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

[data-sg-v3-file-project] .gallery-view-all-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

body.project-gallery-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.project-gallery-open [data-sg-v3-file-project] .mobile-actions,
body.project-gallery-open #my-chat-popup-target,
body.project-gallery-open #semerenko-chat-toggle-button {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

[data-sg-v3-file-project] .project-gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  color: var(--white);
  font-family: var(--font-inter), Inter, Arial, sans-serif;
}

[data-sg-v3-file-project] .project-gallery-lightbox:not([open]) {
  display: none;
}

[data-sg-v3-file-project] .project-gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.96);
}

[data-sg-v3-file-project] .project-gallery-lightbox__shell {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(18px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar p,
[data-sg-v3-file-project] .project-gallery-lightbox__topbar span {
  margin: 0;
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar p {
  color: var(--white);
  font-size: 21px;
  font-weight: 620;
  line-height: 1.25;
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar span {
  color: var(--muted);
  font-size: 14px;
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar button,
[data-sg-v3-file-project] .project-gallery-lightbox__nav {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #55564f;
  box-shadow: none;
  cursor: pointer;
  background: #000;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar button {
  min-width: 100px;
  min-height: 50px;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font: 700 15px/1.2 var(--font-inter), Inter, Arial, sans-serif;
}

[data-sg-v3-file-project] .project-gallery-lightbox__topbar button span:last-child {
  color: inherit;
  font-size: 24px;
  font-weight: 400;
}

[data-sg-v3-file-project] .project-gallery-lightbox__stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(12px, 3vw, 46px) 32px;
}

[data-sg-v3-file-project] .project-gallery-lightbox__stage figure {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 12px;
  margin: 0;
}

[data-sg-v3-file-project] .project-gallery-lightbox__stage img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 150px);
  display: block;
  object-fit: contain;
}

[data-sg-v3-file-project] .project-gallery-lightbox__stage figcaption {
  color: #99968f;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

[data-sg-v3-file-project] .project-gallery-lightbox__nav {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

[data-sg-v3-file-project] .project-gallery-lightbox__nav:hover,
[data-sg-v3-file-project] .project-gallery-lightbox__nav:focus-visible,
[data-sg-v3-file-project] .project-gallery-lightbox__topbar button:focus-visible {
  border-color: var(--gold) !important;
  color: var(--gold-bright) !important;
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

[data-sg-v3-file-project] .project-gallery-lightbox__nav svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 640px) {
  [data-sg-v3-file-project] .gallery-view-all {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding: 10px 13px;
    font-size: 14px;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__topbar {
    min-height: 68px;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__topbar p {
    max-width: 210px;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__topbar button {
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__topbar button span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__stage {
    position: relative;
    display: block;
    padding: 16px 12px 24px;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__stage figure {
    height: 100%;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__stage img {
    max-height: calc(100dvh - 135px);
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__stage figcaption {
    display: none;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__nav {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(0, 0, 0, 0.88);
    transform: translateY(-50%);
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__nav--previous {
    left: 18px;
  }

  [data-sg-v3-file-project] .project-gallery-lightbox__nav--next {
    right: 18px;
  }
}

/* v5-3 cascade seal: keep the approved collection-card rules above all legacy variants. */
html body [data-sg-v3-file-project] :is(.plan-grid, .unit-grid) {
  display: flex;
  align-items: stretch;
  gap: var(--collection-gap, 22px);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

html body [data-sg-v3-file-project] .project-card-carousel-viewport :is(.plan-grid, .unit-grid) {
  overflow: visible;
}

html body [data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card) {
  min-width: 0;
  flex: 0 0 min(420px, calc((100% - (var(--collection-gap, 22px) * 2)) / 3));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--collection-line, #30312b);
  border-radius: 2px;
  background: var(--collection-panel, #0d0e0c);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
  transform: none;
}

html body [data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(420px, calc((100% - (var(--collection-gap) * 3) - var(--collection-peek)) / 3));
}

html body [data-sg-v3-file-project] .project-card-carousel[data-count="1"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(100%, 420px);
}

html body [data-sg-v3-file-project] .project-card-carousel[data-count="2"] :is(.plan-card, .project-plan-card, .unit-card) {
  flex-basis: min(420px, calc((100% - var(--collection-gap)) / 2));
}

html body [data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card):hover {
  border-color: #7a6634;
  box-shadow: 0 21px 46px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

html body [data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image,
html body [data-sg-v3-file-project] .unit-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  background: #f2f0e9;
}

html body [data-sg-v3-file-project] :is(.plan-card, .project-plan-card) .plan-image img,
html body [data-sg-v3-file-project] :is(.unit-card-image--contain, .residence-page-card .unit-card-image--contain) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

html body [data-sg-v3-file-project] .unit-card-image:not(.unit-card-image--contain) {
  background: #171813;
}

html body [data-sg-v3-file-project] .unit-card-image:not(.unit-card-image--contain) img {
  object-fit: cover;
}

html body [data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) {
  min-height: 234px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

html body [data-sg-v3-file-project] :is(.plan-copy h3, .unit-card h3) {
  order: 1;
  display: -webkit-box;
  min-height: 2.16em;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font: 400 clamp(23px, 2vw, 28px) / 1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

html body [data-sg-v3-file-project] .plan-copy > small,
html body [data-sg-v3-file-project] .unit-card-top {
  order: 2;
  width: 100%;
  margin: 7px 0 0;
  color: var(--collection-gold, #dcb547);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html body [data-sg-v3-file-project] .unit-card-top .status {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--collection-gold, #dcb547);
  font: inherit;
  letter-spacing: inherit;
}

html body [data-sg-v3-file-project] .plan-copy > p {
  order: 3;
  margin: 7px 0 0;
  color: #d6d1c7;
  font-size: 13px;
  line-height: 1.4;
}

html body [data-sg-v3-file-project] .plan-copy > span {
  order: 4;
  display: -webkit-box;
  margin: 9px 0 0;
  overflow: hidden;
  color: #ded9cf;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

html body [data-sg-v3-file-project] .unit-card-price {
  order: 3;
  min-height: 0;
  gap: 3px;
  margin-top: 8px;
  padding: 0;
  border: 0;
}

html body [data-sg-v3-file-project] :is(.unit-card-price strong, .unit-card-price--inquiry strong) {
  color: #f1ede4;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

html body [data-sg-v3-file-project] .unit-card-facts {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 8px 0 14px;
}

html body [data-sg-v3-file-project] .unit-card-facts div {
  display: inline-flex;
  gap: 4px;
  padding: 0;
  border: 0;
}

html body [data-sg-v3-file-project] :is(.unit-card-facts dt, .unit-card-facts dd) {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

html body [data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) .inline-project-request {
  order: 10;
  min-height: 37px;
  width: fit-content;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid var(--collection-gold, #dcb547);
  border-radius: 0;
  background: var(--collection-gold, #dcb547);
  color: var(--collection-ink, #11120f);
  font: 800 12px/1.15 Inter, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1020px) {
  html body [data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card),
  html body [data-sg-v3-file-project] .project-card-carousel[data-count="3"] :is(.plan-card, .project-plan-card, .unit-card) {
    flex-basis: min(420px, calc((100% - (var(--collection-gap) * 2) - 86px) / 2));
  }
}

@media (max-width: 640px) {
  html body [data-sg-v3-file-project] :is(.plan-card, .project-plan-card, .unit-card),
  html body [data-sg-v3-file-project] .project-card-carousel[data-count] :is(.plan-card, .project-plan-card, .unit-card),
  html body [data-sg-v3-file-project] .project-card-carousel[data-scrollable="true"] :is(.plan-card, .project-plan-card, .unit-card) {
    flex-basis: min(86vw, 330px);
  }

  html body [data-sg-v3-file-project] :is(.plan-copy, .unit-card-body) {
    min-height: 226px;
    padding: 17px;
  }

  html body [data-sg-v3-file-project] :is(.plan-copy h3, .unit-card h3) {
    font-size: 25px;
  }
}
