/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--surface-hero);
  padding-top: var(--header-height);
}

.hero__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/hero-poster.jpg") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.35) 45%,
    rgba(13, 13, 13, 0.6) 100%
  );
}

.hero__watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__watermark img {
  width: min(58vw, 28rem);
  opacity: 0.1;
  filter: brightness(1.1);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(200, 185, 154, 0.6);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ——— Values ——— */
.values {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--accent-olive) 0%, #4f5648 100%);
  padding: var(--space-lg) var(--space-inline);
  box-shadow: 0 18px 40px rgba(26, 28, 25, 0.18);
}

.values__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .values__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .values__list {
    grid-template-columns: 1fr;
  }

  .values__item {
    letter-spacing: 0.1em;
  }
}

.values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.values__icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.values__icon svg {
  width: 100%;
  height: 100%;
}

/* ——— Experiences section ——— */
.experiences {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--cream);
  color: var(--text-primary);
}

.experiences__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  padding-inline: var(--space-inline);
}

.experiences__intro .section-title {
  margin-bottom: 0;
  color: var(--text-primary);
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-inline);
}

@media (max-width: 700px) {
  .experiences__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Manifesto ——— */
.manifesto {
  position: relative;
  padding-block: var(--space-section);
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(165deg, #161815 0%, var(--surface-dark) 55%, #121411 100%);
  color: var(--text-on-dark);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-inline);
}

.manifesto__block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--beige);
  margin-bottom: var(--space-sm);
}

.manifesto__block p {
  font-size: 0.9375rem;
  color: rgba(245, 242, 236, 0.72);
  line-height: 1.85;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .manifesto__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 8vw, 8rem);
  }

  .manifesto__block:last-child {
    padding-top: var(--space-lg);
  }
}

/* ——— Process ——— */
.process {
  position: relative;
  padding-block: var(--space-section);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.07), transparent 55%),
    linear-gradient(180deg, #101210 0%, #0c0d0b 50%, #101210 100%);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.process__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-inline);
}

.process__intro {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.process__diamond {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 1.15rem auto;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}

.process__subtitle {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.78);
}

.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0;
  padding: 0;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.process__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.process__number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
}

.process__step-title {
  margin: 0;
  max-width: 14rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.35;
}

.process__step-text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.68);
}

.process__closing {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(212, 175, 55, 0.35);
  text-align: center;
}

.process__closing-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--beige);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .process__step {
    padding-inline: 0.5rem;
  }

  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.1rem;
    left: calc(50% + 2.35rem);
    width: calc(100% - 4.7rem + 1.5rem);
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.55),
      rgba(212, 175, 55, 0.55)
    );
    pointer-events: none;
  }

  .process__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(2.1rem - 0.2rem);
    right: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--gold);
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
  }
}

/* ——— Concierge CTA ——— */
.concierge-cta {
  position: relative;
  padding-block: var(--space-section);
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
    linear-gradient(180deg, #141613 0%, #1a1c19 60%, #121411 100%);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.concierge-cta__inner {
  max-width: 36rem;
  margin-inline: auto;
  padding-inline: var(--space-inline);
}

.concierge-cta .section-title {
  color: var(--beige);
  margin-bottom: var(--space-md);
}

.concierge-cta__text {
  font-size: 0.9375rem;
  color: rgba(245, 242, 236, 0.72);
  margin-bottom: var(--space-md);
  line-height: 1.85;
}

.concierge-cta .btn--solid {
  min-width: 14rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.concierge-cta .btn--solid:hover {
  background: var(--gold);
  color: var(--surface-dark);
}

.concierge-cta__note {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(200, 185, 154, 0.45);
  letter-spacing: 0.04em;
}

/* ——— Statement ——— */
.statement {
  position: relative;
  padding: var(--space-section-lg) var(--space-inline);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245, 242, 236, 0.2), transparent 70%),
    linear-gradient(160deg, #3f453a 0%, var(--accent-olive) 45%, #4a5144 100%);
  color: var(--text-on-dark);
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  pointer-events: none;
}

.statement blockquote {
  position: relative;
  z-index: 1;
}

.statement blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-on-dark);
}

.statement__accent {
  font-style: italic;
  color: var(--gold);
  margin-top: 0.35rem;
}

/* ——— Footer ——— */
.footer {
  padding: var(--space-lg) var(--space-inline);
  text-align: center;
  background: var(--surface-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__logo {
  width: min(70vw, 10rem);
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

.footer__legal {
  font-size: 0.6875rem;
  color: rgba(200, 185, 154, 0.45);
  letter-spacing: 0.06em;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: var(--space-md);
}

.footer__links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 185, 154, 0.55);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__overlay {
    background: var(--surface-hero);
  }

  .hero__scroll-line {
    animation: none;
  }
}
