/* About page — The Andspaces Method */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --gold-dark: #b8942e;
  --bg-card: #0f0f14;
  --text-muted: rgba(255, 255, 255, 0.45);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-whisper: rgba(255, 255, 255, 0.05);
  --space-section: 128px;
  --space-block: 72px;
  --space-element: 40px;
  --text-soft: rgba(255, 255, 255, 0.52);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --metal-gold-gradient:
    linear-gradient(
      180deg,
      rgba(255, 245, 220, 0.36) 0%,
      rgba(255, 245, 220, 0.12) 16%,
      transparent 30%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(0, 0, 0, 0.03) 1px,
      rgba(255, 255, 255, 0.01) 2px,
      transparent 3px,
      transparent 5px
    ),
    linear-gradient(
      180deg,
      #d4c8a8 0%,
      #bdb08a 22%,
      #a89c74 45%,
      #988c64 58%,
      #b0a484 72%,
      #9e9264 86%,
      #8a8058 100%
    );
  --metal-gold-bg-size: 100% 100%, 5px 100%, 100% 100%;
  --metal-gold-filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.26))
    drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1))
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.14));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--sans);
  background-color: #0a0a10;
  background-image: linear-gradient(180deg, #0c0c13 0%, #08080d 48%, #0b0a09 100%);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  zoom: 0.9;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 88% 6%, rgba(212, 175, 55, 0.09), transparent 58%),
    radial-gradient(ellipse 65% 50% at 10% 88%, rgba(77, 64, 49, 0.32), transparent 52%),
    radial-gradient(ellipse 45% 35% at 72% 72%, rgba(212, 175, 55, 0.04), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20, 18, 28, 0.55), transparent 70%);
}

.bg-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, #000 15%, transparent 78%);
  opacity: 0.55;
}

.bg-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.28;
}

.about-page {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.about-bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-page > :not(.about-bg-shapes) {
  position: relative;
  z-index: 1;
}

.about-bg-glyph {
  position: absolute;
  color: rgba(212, 175, 55, 0.55);
  opacity: 0.38;
  will-change: transform;
}

.about-bg-glyph--plan {
  top: 8%;
  right: 4%;
  width: min(34vw, 260px);
  animation: aboutGlyphDriftA 24s ease-in-out infinite;
}

.about-bg-glyph--vastu {
  bottom: 18%;
  left: 8%;
  width: min(16vw, 110px);
  animation: aboutGlyphSpin 52s linear infinite;
}

.about-bg-glyph--compass {
  top: 16%;
  left: 10%;
  width: 64px;
  animation: aboutGlyphSpin 60s linear infinite reverse;
}

@keyframes aboutGlyphDriftA {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-16px, 20px) rotate(-1.5deg);
  }
}

@keyframes aboutGlyphSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-bg-glyph {
    animation: none !important;
  }
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 35px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease,
    border-color 0.5s ease;
}

header.scrolled {
  background: rgba(8, 8, 13, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.logo-wrap {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 2px;
  font-family: var(--serif);
  font-variant: small-caps;
  background-color: #aaa070;
  background-image: var(--metal-gold-gradient);
  background-size: var(--metal-gold-bg-size);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: var(--metal-gold-filter);
}

.logo-wrap > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-sub {
  opacity: 0.5;
  font-size: 14px;
}

.logo-mark {
  display: block;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background-color: #aaa070;
  background-image: var(--metal-gold-gradient);
  background-size: var(--metal-gold-bg-size);
  -webkit-mask-image: url("../andspaces_logo.png");
  mask-image: url("../andspaces_logo.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: var(--metal-gold-filter);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  flex-wrap: nowrap;
}

nav a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

.cta-header {
  text-align: right;
}

.cta-header a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 6px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 8, 13, 0.97);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 3px;
}

.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu__cta {
  margin-top: 12px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 14px 28px;
}

.about-hero {
  position: relative;
  min-height: auto;
  padding: 168px 64px 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-whisper);
}

.about-hero__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(12, 12, 19, 0.35) 0%, transparent 100%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 96px;
  align-items: center;
}

.about-hero__content {
  max-width: 640px;
}

.about-hero__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.about-hero__chapter {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 48px;
  max-width: 16ch;
}

.about-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-hero__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-whisper);
  overflow-x: auto;
  scrollbar-width: none;
}

.about-hero__timeline::-webkit-scrollbar {
  display: none;
}

.about-hero__step {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 76px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease;
}

.about-hero__step-num {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.35s ease;
}

.about-hero__step-label {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.35s ease;
}

.about-hero__step-line {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  margin-top: 12px;
  background: var(--border-whisper);
}

.about-hero__step.is-active .about-hero__step-num,
.about-hero__step:hover .about-hero__step-num {
  color: var(--gold);
}

.about-hero__step.is-active .about-hero__step-label,
.about-hero__step:hover .about-hero__step-label {
  color: rgba(255, 255, 255, 0.72);
}

.about-hero__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 48ch;
  margin-bottom: 40px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-hero__visual {
  position: relative;
}

.about-hero__visual-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-hero__visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-eyebrow {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 400;
}

.about-section__head .about-eyebrow {
  margin-bottom: 18px;
}

.about-subnav-wrap {
  position: sticky;
  top: 86px;
  z-index: 40;
  border-bottom: 1px solid var(--border-whisper);
  background: rgba(8, 8, 13, 0.82);
  backdrop-filter: blur(14px);
}

.about-subnav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-subnav::-webkit-scrollbar {
  display: none;
}

.about-subnav a {
  flex-shrink: 0;
  padding: 20px 0;
  margin-right: 32px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.about-subnav a:hover,
.about-subnav a.is-active {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--gold);
}

.about-section {
  padding: var(--space-section) 64px;
  position: relative;
}

.about-section--border {
  border-top: 1px solid var(--border-whisper);
}

.about-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.about-section__head {
  max-width: 680px;
  margin-bottom: var(--space-block);
}

.about-section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-section__head--center .section-title::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.4px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(212, 175, 55, 0.45);
  margin-top: 24px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.9fr);
  gap: 96px;
  align-items: center;
}

.about-intro-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro-visual__photos {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(120px, 0.42fr);
  gap: 16px;
  align-items: stretch;
  min-height: 440px;
}

.about-intro-visual__main {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-intro-visual__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro-visual__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}

.about-intro-visual__stack-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  min-height: 0;
}

.about-intro-visual__stack-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro-visual__stack-item--contain {
  background: rgba(8, 8, 13, 0.6);
}

.about-intro-visual__stack-item--contain img {
  object-fit: contain;
  padding: 12px;
}

.about-intro-visual__caption {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}

.about-intro-content {
  display: grid;
  gap: 48px;
}

.about-copy-block p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-soft);
  font-weight: 300;
}

.about-copy-block p + p {
  margin-top: 24px;
}

.about-principles {
  display: grid;
  gap: 0;
}

.about-principle {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 28px 0;
  border: none;
  border-bottom: 1px solid var(--border-whisper);
  background: transparent;
  transition: border-color 0.35s ease;
}

.about-principle:first-child {
  border-top: 1px solid var(--border-whisper);
}

.about-principle__icon {
  display: none;
}

.about-principle:hover {
  border-bottom-color: rgba(212, 175, 55, 0.18);
}

.about-principle strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.about-principle span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
}

.about-philosophy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.about-philosophy__visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-philosophy__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-philosophy__visual-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-philosophy__visual-badge svg {
  display: none;
}

.about-philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-philosophy__quote em {
  font-style: italic;
  color: var(--gold-light);
}

.about-philosophy__panel {
  padding: 0;
  border: none;
  background: transparent;
}

.about-philosophy__panel-icon {
  display: none;
}

.about-philosophy__panel p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
}

.about-philosophy__panel p + p {
  margin-top: 20px;
}

.about-philosophy__mark {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-whisper);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
}

.about-stages {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-stage-nav {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 0;
}

.about-stage-btn {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid var(--border-whisper);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.35s ease;
}

.about-stage-btn:first-child {
  border-top: 1px solid var(--border-whisper);
}

.about-stage-btn:hover,
.about-stage-btn.is-active {
  border-bottom-color: rgba(212, 175, 55, 0.22);
}

.about-stage-btn__num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
}

.about-stage-btn.is-active .about-stage-btn__num {
  color: var(--gold);
}

.about-stage-btn__title {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.65);
  margin-bottom: 4px;
}

.about-stage-btn__name {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
}

.about-stage-btn.is-active .about-stage-btn__name {
  color: #fff;
}

.about-stage-panel {
  min-height: 520px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-stage-panel__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  min-height: 520px;
  gap: 0;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-whisper);
}

.about-stage-panel__media {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-whisper);
  min-height: 520px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.about-stage-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stage-panel__media--contain {
  background: rgba(8, 8, 13, 0.6);
}

.about-stage-panel__media--contain img {
  object-fit: contain;
  padding: 24px;
}

.about-stage-panel__media-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-stage-panel__grid {
  display: none;
}

.about-stage-panel.swap .about-stage-content,
.about-stage-panel.swap .about-stage-panel__media {
  opacity: 0;
  transform: translateY(10px);
}

.about-stage-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin-bottom: 28px;
}

.about-stage-deliverable-wrap {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-whisper);
}

.about-stage-content {
  position: relative;
  z-index: 1;
  padding: 48px 52px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.about-stage-content__index {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(212, 175, 55, 0.1);
  margin-bottom: 8px;
}

.about-stage-content__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.about-stage-content__subtitle {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
  margin-bottom: 28px;
}

.about-stage-content__intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 54ch;
  margin-bottom: 32px;
}

.about-stage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.about-stage-tab {
  padding: 8px 14px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.about-stage-tab.is-active,
.about-stage-tab:hover {
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.about-stage-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.about-stage-list-block {
  margin-bottom: 8px;
}

.about-stage-list-block h4,
.about-stage-content__list-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
  margin-bottom: 18px;
}

.about-stage-list-block + .about-stage-content__intro--tail {
  margin-top: 24px;
}

.about-stage-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-stage-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.about-stage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.about-stage-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
}

.about-stage-content__intro--tail {
  margin-bottom: 0;
}

.about-stage-deliverable strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.about-adapts-showcase {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 8px;
}

.about-adapts-showcase::before {
  content: "";
  position: absolute;
  inset: -48px 8% auto;
  height: 300px;
  background: radial-gradient(
    ellipse 70% 80% at 50% 0%,
    rgba(212, 175, 55, 0.07),
    transparent 72%
  );
  pointer-events: none;
}

.about-adapts-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.about-adapts-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--border-whisper);
  overflow: hidden;
  background: var(--bg-card);
  transition:
    border-color 0.4s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease;
}

.about-adapts-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.about-adapts-card:hover {
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.about-adapts-card:hover::before {
  transform: scaleX(1);
}

.about-adapts-card--terrace {
  border-radius: 24px 0 20px 0;
}

.about-adapts-card--terrace .about-adapts-card__media {
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
  height: 258px;
}

.about-adapts-card--terrace .about-adapts-card__body {
  margin-top: -10px;
  padding-top: 24px;
  border-left: 2px solid rgba(212, 175, 55, 0.28);
}

.about-adapts-card--terrace:hover {
  transform: translateY(-8px);
}

.about-adapts-card--pedestal {
  min-height: 520px;
  transform: translateY(-28px);
  clip-path: polygon(
    0 16px,
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    0 100%
  );
}

.about-adapts-card--pedestal .about-adapts-card__media {
  height: 288px;
  margin: 12px 16px 0;
  width: calc(100% - 32px);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: none;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
}

.about-adapts-card--pedestal .about-adapts-card__body {
  margin: 0 16px 12px;
  width: calc(100% - 32px);
  padding-bottom: 28px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-top: none;
}

.about-adapts-card--pedestal:hover {
  transform: translateY(-36px);
}

.about-adapts-card--pedestal::before {
  clip-path: polygon(
    0 16px,
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    0 100%
  );
}

.about-adapts-card--wave {
  border-radius: 0 0 36px 36px;
}

.about-adapts-card--wave .about-adapts-card__media {
  height: 248px;
  border-bottom: none;
  border-radius: 0 0 48% 48% / 0 0 12% 12%;
  clip-path: ellipse(118% 100% at 50% 0%);
}

.about-adapts-card--wave .about-adapts-card__body {
  margin-top: -6px;
  padding-top: 30px;
  border-radius: 0 0 36px 36px;
}

.about-adapts-card--wave .about-adapts-card__body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.45),
    transparent
  );
}

.about-adapts-card--wave:hover {
  transform: translateY(-8px);
}

.about-adapts-card__media {
  position: relative;
  flex: 0 0 auto;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-whisper);
  background: rgba(255, 255, 255, 0.02);
}

.about-adapts-card--pedestal .about-adapts-card__media {
  border-bottom: none;
}

.about-adapts-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-adapts-card:hover .about-adapts-card__media img {
  transform: scale(1.06);
}

.about-adapts-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 20, 0.04) 0%,
    rgba(15, 15, 20, 0.42) 100%
  );
  pointer-events: none;
}

.about-adapts-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 32px;
  background: linear-gradient(180deg, rgba(12, 12, 17, 0.98), var(--bg-card));
}

.about-adapts-card__index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -3px;
  color: rgba(255, 255, 255, 0.22);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.about-adapts-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  margin-bottom: 18px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.about-adapts-card:hover .about-adapts-card__icon {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.48);
  transform: scale(1.06);
}

.about-adapts-card__icon svg {
  width: 20px;
  height: 20px;
}

.about-adapts-card__label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-adapts-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.96);
}

.about-adapts-card__body > p:last-child {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.about-adapts-foot {
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
}

.about-compare {
  display: grid;
  gap: 32px;
}

.about-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}

.about-compare-card {
  padding: 32px 0;
  border: none;
  border-bottom: 1px solid var(--border-whisper);
  background: transparent;
}

.about-compare-card__icon {
  display: none;
}

.about-compare-card--them {
  color: rgba(255, 255, 255, 0.38);
}

.about-compare-card > span:not(.about-compare-card__icon) {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.about-compare-card--us > span:not(.about-compare-card__icon) {
  color: rgba(212, 175, 55, 0.65);
}

.about-compare-card--us {
  border-bottom-color: rgba(212, 175, 55, 0.18);
}

.about-compare-card p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
}

.about-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.about-ecosystem {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.about-eco-card {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid var(--border-whisper);
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s ease;
}

.about-eco-card:hover {
  border-color: rgba(212, 175, 55, 0.22);
  transform: none;
  box-shadow: none;
}

.about-eco-card--core {
  border-color: rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.01);
  cursor: default;
}

.about-eco-card__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}

.about-eco-card__logo--mark {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background-color: #aaa070;
  background-image: var(--metal-gold-gradient);
  background-size: var(--metal-gold-bg-size);
  -webkit-mask-image: url("../andspaces_logo.png");
  mask-image: url("../andspaces_logo.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.about-eco-card__label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-eco-card__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.about-eco-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 300;
}

.about-eco-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
}

.about-anviraa-band img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.about-anviraa-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border: none;
  border-top: 1px solid var(--border-whisper);
  border-bottom: 1px solid var(--border-whisper);
  background: transparent;
}

.about-anviraa-band h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.about-anviraa-band p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 62ch;
}

.about-promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 64px;
}

.about-promise-copy p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-soft);
  font-weight: 300;
}

.about-promise-copy p + p {
  margin-top: 24px;
}

.about-promise-close {
  padding: 0 0 0 40px;
  border-left: 1px solid rgba(212, 175, 55, 0.35);
  background: transparent;
}

.about-promise-close p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 300;
  line-height: 1.4;
}

.about-promise-close em {
  font-style: italic;
  color: var(--gold-light);
}

.about-cta-band {
  text-align: center;
  padding: 96px 64px 64px;
  border-top: 1px solid var(--border-whisper);
}

.about-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}

.about-cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #08080d;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.35s ease;
}

.btn-gold:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.92;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 1px solid var(--border-whisper);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: rgba(212, 175, 55, 0.45);
  color: rgba(255, 255, 255, 0.88);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 1024px) {
  .about-bg-glyph--plan {
    width: 180px;
    top: 5%;
    right: -4%;
  }
  .about-bg-glyph--vastu {
    width: 88px;
    bottom: 12%;
    left: 4%;
  }
  .about-bg-glyph--compass {
    width: 52px;
    top: 10%;
    left: 5%;
  }
  header {
    grid-template-columns: 1fr auto;
    padding: 25px 22px;
  }
  nav,
  .cta-header {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .about-stage-list--grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 128px 24px 72px;
  }
  .about-hero__inner,
  .about-intro-grid,
  .about-philosophy,
  .about-stages,
  .about-promise-grid,
  .about-ecosystem {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-hero__title {
    max-width: none;
    margin-bottom: 36px;
  }
  .about-hero__visual {
    order: -1;
  }
  .about-hero__visual-photo {
    aspect-ratio: 16 / 10;
  }
  .about-section {
    padding: 88px 24px;
  }
  .about-subnav {
    padding: 0 24px;
  }
  .about-stage-nav {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .about-stage-btn {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 14px 12px;
  }
  .about-stage-btn__num {
    margin-bottom: 4px;
  }
  .about-stage-panel {
    min-height: auto;
  }
  .about-stage-panel__layout {
    grid-template-columns: 1fr;
  }
  .about-stage-panel__media {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 260px;
  }
  .about-stage-panel__media img {
    position: absolute;
    inset: 0;
  }
  .about-stage-content {
    padding: 28px 22px;
  }
  .about-adapts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .about-adapts-card,
  .about-adapts-card--pedestal {
    min-height: auto;
    transform: none;
    clip-path: none;
    border-radius: 0;
    overflow: hidden;
  }
  .about-adapts-card--terrace {
    border-radius: 18px 0 14px 0;
  }
  .about-adapts-card--terrace .about-adapts-card__media {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  .about-adapts-card--terrace .about-adapts-card__body {
    border-left-width: 1px;
  }
  .about-adapts-card--pedestal .about-adapts-card__media {
    height: 220px;
    margin: 8px 10px 0;
    width: calc(100% - 20px);
    clip-path: none;
    border-radius: 6px 6px 0 0;
  }
  .about-adapts-card--pedestal .about-adapts-card__body {
    margin: 0 10px 8px;
    width: calc(100% - 20px);
  }
  .about-adapts-card--wave {
    border-radius: 0 0 24px 24px;
  }
  .about-adapts-card--wave .about-adapts-card__media {
    clip-path: none;
    border-radius: 0 0 28% 28% / 0 0 10% 10%;
  }
  .about-adapts-card--wave .about-adapts-card__body {
    border-radius: 0 0 24px 24px;
  }
  .about-adapts-card__media {
    height: 220px;
  }
  .about-adapts-card__body {
    padding: 24px 22px 28px;
  }
  .about-adapts-card h3 {
    max-width: none;
  }
  .about-adapts-card--terrace:hover,
  .about-adapts-card--wave:hover,
  .about-adapts-card--pedestal:hover {
    transform: translateY(-4px);
  }
  .about-cta-band {
    padding: 72px 24px 48px;
  }
  .about-intro-visual__photos {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-intro-visual__main {
    min-height: 280px;
  }
  .about-intro-visual__stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 180px;
  }
  .about-intro-visual__stack-item {
    min-height: 180px;
  }
  .about-stage-list-wrap {
    grid-template-columns: 1fr;
  }
  .about-compare-row {
    grid-template-columns: 1fr;
  }
  .about-compare-vs {
    margin: 0 auto;
  }
  .about-anviraa-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-anviraa-band img {
    margin: 0 auto;
  }
}
