/* =========================================================
   WEBINANDO — BRAND SYSTEM V1
========================================================= */

:root {
  --black: #070707;
  --soft-black: #101010;
  --soft-black-2: #151515;

  --gold: #f6c945;
  --gold-light: #ffe79a;
  --gold-deep: #b98616;

  --white: #fafaf8;
  --muted: #9b9b96;

  --border: #292929;

  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;

  --page-padding: clamp(20px, 4vw, 72px);

  --header-height: 86px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(246, 201, 69, 0.06),
      transparent 32%
    ),
    var(--black);

  color: var(--white);

  font-family: var(--body);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}


/* =========================================================
   CURSOR LIGHT
========================================================= */

.cursor-light {
  position: fixed;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(246, 201, 69, 0.055),
      transparent 68%
    );

  transform: translate(-50%, -50%);

  z-index: 2;

  opacity: 0;

  transition: opacity 0.4s ease;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  border-bottom: 1px solid transparent;

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.78);

  border-color: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: 100%;
  height: var(--header-height);

  padding: 0 var(--page-padding);

  display: flex;
  align-items: center;

  position: relative;

  z-index: 2;
}


/* BRAND */

.brand {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  font-family: var(--display);

  font-weight: 700;

  letter-spacing: -0.03em;
}

.brand-symbol {
  position: relative;

  color: var(--gold);

  font-size: 25px;

  line-height: 1;
}

.brand-spark {
  position: absolute;

  top: -6px;
  right: -9px;

  font-size: 8px;

  animation: sparkPulse 3s ease-in-out infinite;
}

.brand-text {
  font-size: 17px;

  letter-spacing: 0.02em;
}


/* DESKTOP NAV */

.desktop-nav {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 38px;
}

.desktop-nav a {
  color: #c7c7c2;

  font-size: 13px;

  font-weight: 500;

  transition: color 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}


/* CONTACT */

.header-contact {
  margin-left: auto;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--gold);

  font-family: var(--display);

  font-size: 13px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.05em;
}

.header-contact span {
  transition: transform 0.25s ease;
}

.header-contact:hover span {
  transform: translate(3px, -3px);
}


/* MOBILE BUTTON */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  margin-left: auto;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

  position: relative;

  z-index: 4;
}

.menu-toggle span {
  position: absolute;

  left: 8px;

  width: 26px;
  height: 1px;

  background: var(--white);

  transition:
    transform 0.35s ease,
    top 0.35s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle.is-active span:first-child {
  top: 21px;

  transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  top: 21px;

  transform: rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 100svh;

  padding:
    calc(var(--header-height) + 70px)
    var(--page-padding)
    42px;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

  isolation: isolate;
}


/* GRID */

.hero-grid {
  position: absolute;

  inset: 0;

  z-index: -3;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      transparent 92%
    );
}


/* GLOW */

.hero-glow {
  position: absolute;

  width: min(700px, 70vw);
  height: min(700px, 70vw);

  top: 45%;
  left: 69%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  z-index: -2;

  background:
    radial-gradient(
      circle,
      rgba(246, 201, 69, 0.095),
      rgba(246, 201, 69, 0.018) 40%,
      transparent 68%
    );

  filter: blur(10px);
}


/* INNER */

.hero-inner {
  width: min(1500px, 100%);

  margin: 0 auto;
}


/* KICKER */

.hero-kicker {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: clamp(32px, 4vw, 62px);

  color: var(--muted);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.16em;
}

.kicker-line {
  width: 38px;
  height: 1px;

  background: var(--gold);
}


/* TITLE */

.hero-title {
  margin: 0;

  max-width: 1450px;

  font-family: var(--display);

  font-size:
    clamp(
      52px,
      7.6vw,
      140px
    );

  font-weight: 600;

  line-height: 0.84;

  letter-spacing: -0.065em;

  text-transform: uppercase;
}

.hero-line {
  display: block;

  overflow: hidden;

  padding-bottom: 0.08em;
}

.hero-line-inner {
  display: inline-block;

  transform: translateY(115%);

  animation:
    heroReveal
    1.1s
    cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

.hero-line:nth-child(1) .hero-line-inner {
  animation-delay: 0.15s;
}

.hero-line:nth-child(2) .hero-line-inner {
  animation-delay: 0.28s;
}

.hero-line:nth-child(3) .hero-line-inner {
  animation-delay: 0.41s;
}

.hero-line:nth-child(4) .hero-line-inner {
  animation-delay: 0.54s;
}

.hero-line--secondary {
  color: #858580;
}

.hero-line--gold {
  color: var(--gold);
}

.title-dot {
  color: var(--gold);
}

.hero-title-spark {
  display: inline-block;

  margin-left: 0.12em;

  font-size: 0.24em;

  vertical-align: top;

  transform: translateY(0.4em);

  animation:
    sparkPulse
    2.4s
    ease-in-out
    infinite;
}


/* HERO BOTTOM */

.hero-bottom {
  margin-top: clamp(35px, 5vw, 70px);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;
}

.hero-description {
  max-width: 460px;

  margin: 0;

  color: #a9a9a4;

  font-size: clamp(15px, 1.2vw, 18px);

  line-height: 1.7;
}

.hero-description strong {
  color: var(--white);

  font-weight: 500;
}


/* CTA */

.primary-cta {
  min-width: 290px;

  padding: 19px 20px 19px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: var(--gold);

  color: var(--black);

  font-family: var(--display);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.06em;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.primary-cta:hover {
  background: var(--gold-light);

  transform: translateY(-3px);
}

.primary-cta-arrow {
  font-size: 20px;

  transition: transform 0.3s ease;
}

.primary-cta:hover .primary-cta-arrow {
  transform: translate(3px, -3px);
}


/* HERO SERVICES */

.hero-services {
  margin-top: clamp(55px, 7vw, 105px);

  padding-top: 23px;

  border-top: 1px solid var(--border);

  display: flex;
  align-items: center;

  gap: 18px;

  color: #777773;

  font-family: var(--display);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.13em;
}

.service-separator {
  color: var(--gold);

  font-size: 6px;
}


/* SCROLL */

.scroll-indicator {
  position: absolute;

  right: var(--page-padding);
  bottom: 43px;

  display: flex;
  align-items: center;

  gap: 13px;

  transform: rotate(90deg);
  transform-origin: right center;

  color: #686864;

  font-size: 8px;

  letter-spacing: 0.16em;
}

.scroll-line {
  width: 58px;
  height: 1px;

  overflow: hidden;

  background: #252525;
}

.scroll-line span {
  display: block;

  width: 35%;
  height: 100%;

  background: var(--gold);

  animation:
    scrollMove
    2.4s
    ease-in-out
    infinite;
}


/* FLOATING SPARKS */

.floating-spark {
  position: absolute;

  color: var(--gold);

  opacity: 0.35;

  pointer-events: none;
}

.floating-spark--one {
  top: 23%;
  right: 9%;

  font-size: 13px;

  animation:
    floatSpark
    7s
    ease-in-out
    infinite;
}

.floating-spark--two {
  left: 9%;
  bottom: 18%;

  font-size: 7px;

  animation:
    floatSpark
    9s
    ease-in-out
    infinite reverse;
}


/* =========================================================
   GENERIC / IDENTITY
========================================================= */

.generic-section {
  min-height: 110vh;

  padding:
    120px
    var(--page-padding)
    140px;

  position: relative;

  display: flex;
  align-items: center;

  background: var(--soft-black);

  overflow: hidden;

  isolation: isolate;
}

.generic-glow {
  position: absolute;

  width: 700px;
  height: 700px;

  right: -300px;
  top: 30%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(246, 201, 69, 0.08),
      transparent 65%
    );

  z-index: -1;
}

.generic-inner {
  width: min(1500px, 100%);

  margin: 0 auto;
}

.section-index {
  margin-bottom: 80px;

  display: flex;

  gap: 20px;

  color: #656560;

  font-size: 10px;

  letter-spacing: 0.14em;
}

.section-index span:first-child {
  color: var(--gold);
}


/* QUESTION */

.eyebrow {
  margin: 0 0 20px;

  color: #72726e;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.17em;
}

.generic-title {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(70px, 11vw, 190px);

  font-weight: 600;

  line-height: 0.78;

  letter-spacing: -0.07em;
}

.generic-title span {
  display: block;
}

.generic-answer {
  margin-top: 45px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.generic-answer strong {
  color: var(--gold);

  font-family: var(--display);

  font-size: clamp(60px, 8vw, 130px);

  line-height: 1;

  letter-spacing: -0.07em;
}

.generic-cut {
  width: clamp(80px, 13vw, 220px);

  height: 8px;

  background: var(--gold);

  transform: rotate(-7deg);
}


/* STATEMENT */

.identity-statement {
  margin-top: 110px;

  max-width: 850px;

  margin-left: auto;
}

.identity-copy {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(27px, 3vw, 52px);

  line-height: 1.08;

  letter-spacing: -0.04em;
}

.identity-copy--gold {
  margin-top: 10px;

  color: var(--gold);
}


/* TEMPLATE SWITCH */

.template-switch {
  margin-top: 100px;

  padding:
    40px
    0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(25px, 6vw, 100px);

  font-family: var(--display);

  font-size: clamp(25px, 4vw, 65px);

  font-weight: 600;

  letter-spacing: -0.04em;
}

.template-word {
  position: relative;

  color: #555552;
}

.strike-line {
  position: absolute;

  width: 110%;
  height: 4px;

  top: 50%;
  left: -5%;

  background: var(--gold);

  transform: rotate(-5deg);
}

.switch-arrow {
  color: #595955;
}

.identity-word {
  color: var(--white);
}

.identity-word span {
  margin-left: 10px;

  color: var(--gold);

  font-size: 0.45em;

  vertical-align: top;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
  padding:
    130px
    var(--page-padding)
    150px;

  background: var(--black);
}

.services-inner {
  width: min(1500px, 100%);

  margin: 0 auto;
}

.services-heading {
  max-width: 900px;

  margin-bottom: 90px;
}

.section-title {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(55px, 7.5vw, 125px);

  line-height: 0.88;

  letter-spacing: -0.065em;

  font-weight: 600;
}

.section-title span {
  color: var(--gold);
}


/* SERVICE ITEM */

.services-list {
  border-top: 1px solid var(--border);
}

.service-item {
  min-height: 160px;

  padding: 35px 15px;

  border-bottom: 1px solid var(--border);

  display: grid;

  grid-template-columns:
    80px
    minmax(260px, 1fr)
    minmax(250px, 500px)
    50px;

  gap: 30px;

  align-items: center;

  position: relative;

  transition:
    padding 0.35s ease,
    background 0.35s ease;
}

.service-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(246, 201, 69, 0.05),
      transparent 55%
    );

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.service-item:hover {
  padding-left: 30px;
  padding-right: 30px;
}

.service-item:hover::before {
  opacity: 1;
}

.service-number {
  color: var(--gold);

  font-family: var(--display);

  font-size: 11px;
}

.service-item h3 {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(30px, 3vw, 52px);

  font-weight: 500;

  letter-spacing: -0.04em;
}

.service-item p {
  margin: 0;

  color: #8d8d88;

  font-size: 14px;

  line-height: 1.65;
}

.service-arrow {
  color: var(--gold);

  font-size: 23px;

  justify-self: end;

  transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
}


/* =========================================================
   COMING SECTIONS
========================================================= */

.coming-section {
  min-height: 90vh;

  padding:
    130px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--gold);

  color: var(--black);
}

.coming-section--projects {
  background: var(--soft-black);

  color: var(--white);
}

.coming-label {
  margin-bottom: 40px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.16em;
}

.coming-section h2 {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(55px, 9vw, 150px);

  line-height: 0.85;

  letter-spacing: -0.07em;
}

.coming-section h2 span {
  opacity: 0.42;
}

.coming-section--projects h2 span {
  color: var(--gold);

  opacity: 1;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  min-height: 100vh;

  padding:
    140px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.contact-section::before {
  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(246, 201, 69, 0.11),
      transparent 66%
    );

  pointer-events: none;
}

.contact-spark {
  margin-bottom: 30px;

  color: var(--gold);

  font-size: 28px;

  animation:
    sparkPulse
    2.5s
    ease-in-out
    infinite;
}

.contact-section p {
  margin:
    0
    0
    25px;

  color: #777773;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.17em;
}

.contact-section h2 {
  margin: 0;

  font-family: var(--display);

  font-size: clamp(60px, 10vw, 160px);

  line-height: 0.82;

  letter-spacing: -0.07em;
}

.contact-section h2 span {
  color: var(--gold);
}

.contact-button {
  margin-top: 65px;

  padding:
    20px
    25px;

  min-width: 300px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: var(--gold);

  color: var(--black);

  font-family: var(--display);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.06em;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding:
    35px
    var(--page-padding);

  border-top: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: #656560;

  font-size: 9px;

  letter-spacing: 0.12em;
}

.site-footer span:first-child {
  color: var(--gold);
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

.reveal-text {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroReveal {

  to {
    transform: translateY(0);
  }

}

@keyframes sparkPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(12deg);
  }

}

@keyframes scrollMove {

  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(160%);
  }

  100% {
    transform: translateX(320%);
  }

}

@keyframes floatSpark {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(18deg);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }


  /* MOBILE MENU */

  .mobile-menu {
    position: fixed;

    inset: 0;

    padding:
      calc(var(--header-height) + 60px)
      var(--page-padding)
      35px;

    background: rgba(7, 7, 7, 0.98);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-15px);

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 18px 0;

    border-bottom: 1px solid var(--border);

    font-family: var(--display);

    font-size: clamp(34px, 8vw, 60px);

    letter-spacing: -0.05em;
  }

  .mobile-menu nav a:last-child {
    color: var(--gold);
  }

  .mobile-menu-footer {
    display: flex;
    justify-content: space-between;

    color: #686864;

    font-size: 8px;

    letter-spacing: 0.14em;
  }


  /* HERO */

  .hero {
    align-items: flex-end;

    padding-bottom: 70px;
  }

  .hero-title {
    font-size: clamp(49px, 10vw, 92px);
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-services {
    flex-wrap: wrap;
  }

  .scroll-indicator {
    display: none;
  }


  /* SERVICES */

  .service-item {
    grid-template-columns:
      50px
      1fr
      40px;
  }

  .service-item p {
    grid-column:
      2
      /
      3;

    margin-top: -15px;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  :root {
    --page-padding: 20px;
  }

  .cursor-light {
    display: none;
  }


  /* HEADER */

  .brand-text {
    font-size: 15px;
  }


  /* HERO */

  .hero {
    min-height: 100svh;

    padding-top:
      calc(var(--header-height) + 45px);

    padding-bottom: 35px;

    align-items: center;
  }

  .hero-grid {
    background-size: 46px 46px;
  }

  .hero-kicker {
    margin-bottom: 32px;

    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(42px, 13.4vw, 66px);

    line-height: 0.9;

    letter-spacing: -0.065em;
  }

  .hero-line--secondary {
    margin-top: 13px;
  }

  .hero-bottom {
    margin-top: 35px;

    gap: 27px;
  }

  .hero-description {
    max-width: 330px;

    font-size: 14px;
  }

  .primary-cta {
    width: 100%;

    min-width: 0;
  }

  .hero-services {
    margin-top: 50px;

    padding-top: 17px;

    gap: 10px;

    font-size: 7px;
  }


  /* GENERIC */

  .generic-section {
    min-height: auto;

    padding:
      95px
      var(--page-padding);
  }

  .section-index {
    margin-bottom: 60px;
  }

  .generic-title {
    font-size: clamp(63px, 21vw, 105px);
  }

  .generic-answer {
    margin-top: 30px;
  }

  .generic-cut {
    height: 5px;
  }

  .identity-statement {
    margin-top: 90px;
  }

  .identity-copy {
    font-size: 30px;
  }

  .template-switch {
    margin-top: 70px;

    padding:
      28px
      0;

    gap: 15px;

    font-size: 20px;
  }

  .switch-arrow {
    font-size: 18px;
  }


  /* SERVICES */

  .services-section {
    padding:
      95px
      var(--page-padding);
  }

  .services-heading {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 54px;
  }

  .service-item {
    min-height: 0;

    padding:
      30px
      0;

    grid-template-columns:
      38px
      1fr
      28px;

    gap: 12px;
  }

  .service-item:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .service-item h3 {
    font-size: 28px;
  }

  .service-item p {
    font-size: 13px;
  }


  /* COMING */

  .coming-section {
    min-height: 80vh;

    padding:
      100px
      var(--page-padding);
  }

  .coming-section h2 {
    font-size: 54px;
  }


  /* CONTACT */

  .contact-section {
    min-height: 85vh;

    padding:
      100px
      var(--page-padding);
  }

  .contact-section h2 {
    font-size: 61px;
  }

  .contact-button {
    width: 100%;

    min-width: 0;
  }


  /* FOOTER */

  .site-footer {
    align-items: flex-start;
    flex-direction: column;

    gap: 12px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}
/* =========================================================
   MÉTODO W
========================================================= */

.method-section {
  position: relative;

  background: var(--gold);
  color: var(--black);

  overflow: clip;

  isolation: isolate;
}


/* =========================================================
   BACKGROUND ELEMENTS
========================================================= */

.method-background-w {
  position: absolute;

  top: 40vh;
  right: -0.08em;

  z-index: -2;

  color: rgba(7, 7, 7, 0.045);

  font-family: var(--display);

  font-size: min(80vw, 1100px);

  font-weight: 700;

  line-height: 0.7;

  letter-spacing: -0.15em;

  user-select: none;

  pointer-events: none;
}

.method-glow {
  position: absolute;

  width: 800px;
  height: 800px;

  top: 10%;
  left: -400px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.22),
      transparent 67%
    );

  z-index: -1;

  pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.method-inner {
  width: min(1500px, 100%);

  margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.method-intro {
  min-height: 100vh;

  padding:
    130px
    var(--page-padding)
    100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-intro-top {
  margin-bottom: clamp(50px, 8vh, 100px);

  display: flex;

  gap: 20px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.method-intro-top span:first-child {
  opacity: 0.5;
}

.method-eyebrow {
  margin:
    0
    0
    25px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.17em;

  opacity: 0.55;
}


/* TITLE */

.method-main-title {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      65px,
      9.7vw,
      165px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.075em;
}

.method-title-line {
  display: block;
}

.method-title-line--dark {
  color: rgba(7, 7, 7, 0.38);
}


/* INTRO BOTTOM */

.method-intro-bottom {
  margin-top:
    clamp(
      55px,
      9vh,
      110px
    );

  padding-top: 25px;

  border-top:
    1px solid
    rgba(7, 7, 7, 0.25);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;
}

.method-intro-bottom p {
  max-width: 450px;

  margin: 0;

  font-size: 15px;

  line-height: 1.7;

  opacity: 0.75;
}

.method-scroll-hint {
  display: flex;
  align-items: center;

  gap: 15px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.method-scroll-hint span:last-child {
  font-size: 20px;

  animation:
    methodArrow
    1.8s
    ease-in-out
    infinite;
}


/* =========================================================
   PROCESS
========================================================= */

.method-process {
  padding:
    120px
    var(--page-padding)
    180px;

  display: grid;

  grid-template-columns:
    minmax(260px, 0.65fr)
    minmax(500px, 1.35fr);

  gap:
    clamp(
      70px,
      10vw,
      180px
    );

  position: relative;
}


/* =========================================================
   STICKY SIDE
========================================================= */

.method-sticky {
  height: fit-content;

  position: sticky;

  top: 150px;
}

.method-sticky-label {
  margin-bottom: 35px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.18em;

  opacity: 0.5;
}

.method-current-number {
  font-family: var(--display);

  font-size:
    clamp(
      70px,
      8vw,
      130px
    );

  font-weight: 600;

  line-height: 0.85;

  letter-spacing: -0.075em;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.method-current-number.is-changing {
  opacity: 0;

  transform: translateY(15px);
}


/* PROGRESS */

.method-progress {
  margin-top: 55px;
}

.method-progress-track {
  width: 100%;
  height: 2px;

  position: relative;

  background:
    rgba(7, 7, 7, 0.2);

  overflow: hidden;
}

.method-progress-fill {
  display: block;

  width: 20%;
  height: 100%;

  background: var(--black);

  transition:
    width
    0.55s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}

.method-progress-labels {
  margin-top: 10px;

  display: flex;
  justify-content: space-between;

  font-size: 8px;
  font-weight: 700;

  opacity: 0.45;
}

.method-current-name {
  margin:
    32px
    0
    0;

  font-family: var(--display);

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.09em;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.method-current-name.is-changing {
  opacity: 0;

  transform: translateY(10px);
}


/* =========================================================
   STEPS
========================================================= */

.method-steps {
  position: relative;
}

.method-step {
  min-height: 75vh;

  padding:
    65px
    0
    90px;

  border-top:
    1px solid
    rgba(7, 7, 7, 0.22);

  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 0.32;

  transform: scale(0.97);

  transform-origin: left center;

  transition:
    opacity 0.65s ease,
    transform 0.65s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}

.method-step:last-child {
  border-bottom:
    1px solid
    rgba(7, 7, 7, 0.22);
}

.method-step.is-active {
  opacity: 1;

  transform: scale(1);
}


/* STEP TOP */

.method-step-top {
  margin-bottom: 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.method-step-number {
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;

  opacity: 0.55;
}

.method-step-symbol {
  font-family: var(--display);

  font-size: 40px;

  font-weight: 300;

  opacity: 0.25;
}

.method-step-spark {
  font-size: 20px;

  animation:
    sparkPulseDark
    2.5s
    ease-in-out
    infinite;
}


/* STEP TITLE */

.method-step h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      62px,
      8vw,
      135px
    );

  font-weight: 600;

  line-height: 0.82;

  letter-spacing: -0.075em;
}


/* DESCRIPTION */

.method-step > p {
  max-width: 650px;

  margin:
    45px
    0
    0;

  font-size:
    clamp(
      17px,
      1.5vw,
      22px
    );

  line-height: 1.55;

  opacity: 0.68;
}

.method-step > p strong {
  color: var(--black);

  font-weight: 700;
}


/* DETAILS */

.method-step-details {
  margin-top: 65px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(7, 7, 7, 0.18);

  display: flex;
  flex-wrap: wrap;

  gap:
    12px
    28px;
}

.method-step-details span {
  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;

  opacity: 0.48;
}


/* =========================================================
   CHISPA MOMENT
========================================================= */

.method-chispa {
  margin-top: 60px;

  display: flex;
  align-items: center;

  gap: 16px;
}

.method-chispa-line {
  width: 0;
  height: 2px;

  background: var(--black);

  transition:
    width
    1s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}

.method-step.is-active
.method-chispa-line {
  width: 100px;
}

.method-chispa-icon {
  font-size: 22px;

  transform: scale(0);

  transition:
    transform
    0.6s
    0.25s
    cubic-bezier(
      0.34,
      1.56,
      0.64,
      1
    );
}

.method-step.is-active
.method-chispa-icon {
  transform: scale(1);
}

.method-chispa-text {
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;

  opacity: 0;

  transform: translateX(-10px);

  transition:
    opacity 0.5s 0.4s ease,
    transform 0.5s 0.4s ease;
}

.method-step.is-active
.method-chispa-text {
  opacity: 0.55;

  transform: translateX(0);
}


/* =========================================================
   CLOSING
========================================================= */

.method-closing {
  min-height: 100vh;

  padding:
    140px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;

  border-top:
    1px solid
    rgba(7, 7, 7, 0.22);
}

.method-closing-spark {
  margin-bottom: 50px;

  font-size: 25px;
}

.method-closing p {
  margin:
    0
    0
    35px;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.7;

  letter-spacing: 0.14em;

  opacity: 0.52;
}

.method-closing h3 {
  margin: 0;

  max-width: 1300px;

  font-family: var(--display);

  font-size:
    clamp(
      60px,
      9vw,
      145px
    );

  font-weight: 600;

  line-height: 0.83;

  letter-spacing: -0.075em;
}

.method-closing h3 span {
  color:
    rgba(
      7,
      7,
      7,
      0.42
    );
}


/* =========================================================
   METHOD ANIMATIONS
========================================================= */

@keyframes methodArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }

}

@keyframes sparkPulseDark {

  0%,
  100% {
    opacity: 0.35;

    transform:
      scale(0.8)
      rotate(0deg);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.12)
      rotate(12deg);
  }

}


/* =========================================================
   METHOD TABLET
========================================================= */

@media (max-width: 1000px) {

  .method-process {
    grid-template-columns:
      210px
      1fr;

    gap: 60px;
  }

  .method-current-number {
    font-size: 65px;
  }

  .method-step h3 {
    font-size:
      clamp(
        55px,
        8vw,
        95px
      );
  }

}


/* =========================================================
   METHOD MOBILE
========================================================= */

@media (max-width: 700px) {

  .method-background-w {
    top: 70vh;

    font-size: 150vw;
  }


  /* INTRO */

  .method-intro {
    min-height: 100svh;

    padding:
      100px
      var(--page-padding)
      70px;
  }

  .method-intro-top {
    margin-bottom: 55px;
  }

  .method-main-title {
    font-size:
      clamp(
        53px,
        17vw,
        82px
      );

    line-height: 0.84;
  }

  .method-title-line--dark {
    margin-top: 14px;
  }

  .method-intro-bottom {
    margin-top: 65px;

    align-items: flex-start;
    flex-direction: column;

    gap: 30px;
  }


  /* PROCESS */

  .method-process {
    padding:
      50px
      var(--page-padding)
      100px;

    display: block;
  }


  /* MOBILE STICKY */

  .method-sticky {
    position: sticky;

    top: 74px;

    z-index: 5;

    margin:
      0
      calc(var(--page-padding) * -1);

    padding:
      18px
      var(--page-padding);

    background:
      rgba(
        246,
        201,
        69,
        0.92
      );

    backdrop-filter:
      blur(15px);

    -webkit-backdrop-filter:
      blur(15px);

    border-top:
      1px solid
      rgba(7, 7, 7, 0.15);

    border-bottom:
      1px solid
      rgba(7, 7, 7, 0.15);

    display: grid;

    grid-template-columns:
      auto
      1fr
      auto;

    align-items: center;

    gap: 18px;
  }

  .method-sticky-label {
    display: none;
  }

  .method-current-number {
    font-size: 28px;

    letter-spacing: -0.05em;
  }

  .method-progress {
    margin: 0;
  }

  .method-progress-labels {
    display: none;
  }

  .method-current-name {
    margin: 0;

    font-size: 8px;
  }


  /* STEPS */

  .method-steps {
    padding-top: 20px;
  }

  .method-step {
    min-height: 82vh;

    padding:
      75px
      0;
  }

  .method-step-top {
    margin-bottom: 42px;
  }

  .method-step h3 {
    font-size:
      clamp(
        55px,
        17vw,
        82px
      );
  }

  .method-step > p {
    margin-top: 35px;

    font-size: 16px;
  }

  .method-step-details {
    margin-top: 50px;

    gap:
      10px
      18px;
  }


  /* CLOSING */

  .method-closing {
    min-height: 90vh;

    padding:
      100px
      var(--page-padding);
  }

  .method-closing h3 {
    font-size:
      clamp(
        52px,
        16vw,
        80px
      );
  }

}
/* =========================================================
   PROYECTOS
========================================================= */

.projects-section {
  background: var(--black);
  color: var(--white);

  overflow: hidden;
}


/* =========================================================
   INTRO
========================================================= */

.projects-intro {
  width: min(1500px, 100%);

  margin: 0 auto;

  padding:
    150px
    var(--page-padding)
    130px;
}

.projects-index {
  margin-bottom: 90px;

  display: flex;

  gap: 20px;

  color: #656560;

  font-size: 10px;

  letter-spacing: 0.15em;
}

.projects-index span:first-child {
  color: var(--gold);
}


.projects-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(260px, 0.55fr);

  gap:
    clamp(
      60px,
      9vw,
      150px
    );

  align-items: end;
}


.projects-eyebrow {
  margin:
    0
    0
    24px;

  color: #70706c;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.projects-title {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      67px,
      9vw,
      150px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.075em;
}

.projects-title > span {
  display: block;
}

.projects-title-gold {
  color: var(--gold);
}


.projects-intro-copy {
  padding-bottom: 10px;
}

.projects-intro-copy p {
  margin:
    0
    0
    50px;

  color: #94948f;

  font-size: 15px;

  line-height: 1.75;
}

.projects-intro-copy > span {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;
}


/* =========================================================
   CASE
========================================================= */

.project-case {
  width: 100%;

  border-top:
    1px solid
    var(--border);
}


/* =========================================================
   MEDIA
========================================================= */

.project-media {
  width: 100%;
  height: min(78vw, 920px);

  min-height: 620px;

  position: relative;

  overflow: hidden;

  isolation: isolate;
}


/* LABEL */

.project-floating-label {
  position: absolute;

  z-index: 5;

  color: rgba(255, 255, 255, 0.65);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.project-floating-label--top {
  top: 35px;
  left: var(--page-padding);
}


/* BACKGROUND NUMBER */

.project-number-bg {
  position: absolute;

  right: -0.05em;
  bottom: -0.25em;

  z-index: -1;

  font-family: var(--display);

  font-size:
    clamp(
      350px,
      55vw,
      900px
    );

  font-weight: 700;

  line-height: 1;

  letter-spacing: -0.12em;

  user-select: none;
}


/* SPARK */

.project-corner-spark {
  position: absolute;

  right: var(--page-padding);
  top: 35px;

  z-index: 5;

  font-size: 15px;
}


/* =========================================================
   PROJECT 01
========================================================= */

.project-media--01 {
  background:
    radial-gradient(
      circle at 65% 40%,
      rgba(246, 201, 69, 0.13),
      transparent 35%
    ),
    #10100f;
}

.project-media--01
.project-number-bg {
  color:
    rgba(
      246,
      201,
      69,
      0.045
    );
}

.project-grid-bg {
  position: absolute;

  inset: 0;

  z-index: -2;

  background-image:
    linear-gradient(
      rgba(246, 201, 69, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(246, 201, 69, 0.06) 1px,
      transparent 1px
    );

  background-size:
    75px
    75px;

  mask-image:
    radial-gradient(
      circle at center,
      black,
      transparent 75%
    );
}


/* =========================================================
   PROJECT 02
========================================================= */

.project-media--02 {
  background:
    linear-gradient(
      135deg,
      #e6dfd0,
      #bdb4a1
    );

  color: #121212;
}

.project-media--02
.project-floating-label {
  color:
    rgba(
      7,
      7,
      7,
      0.55
    );
}

.project-media--02
.project-number-bg {
  color:
    rgba(
      7,
      7,
      7,
      0.055
    );
}

.project-media--02
.project-corner-spark {
  color: #121212;
}


.project-orbit {
  position: absolute;

  border:
    1px solid
    rgba(
      7,
      7,
      7,
      0.13
    );

  border-radius: 50%;
}

.project-orbit--one {
  width: 65vw;
  height: 65vw;

  max-width: 900px;
  max-height: 900px;

  top: 50%;
  left: 50%;

  transform:
    translate(
      -50%,
      -50%
    );
}

.project-orbit--two {
  width: 40vw;
  height: 40vw;

  max-width: 570px;
  max-height: 570px;

  top: 50%;
  left: 50%;

  transform:
    translate(
      -50%,
      -50%
    );
}


/* =========================================================
   PROJECT 03
========================================================= */

.project-media--03 {
  background:
    radial-gradient(
      circle at center,
      #f1e9df,
      #c9beb1
    );

  color: #181818;
}

.project-media--03
.project-floating-label {
  color:
    rgba(
      7,
      7,
      7,
      0.55
    );
}

.project-media--03
.project-number-bg {
  color:
    rgba(
      7,
      7,
      7,
      0.05
    );
}

.project-media--03
.project-corner-spark {
  color: #181818;
}


.project-cross {
  position: absolute;

  width: 1px;
  height: 150%;

  top: -25%;

  background:
    rgba(
      7,
      7,
      7,
      0.12
    );
}

.project-cross--one {
  left: 35%;

  transform:
    rotate(35deg);
}

.project-cross--two {
  right: 35%;

  transform:
    rotate(-35deg);
}


/* =========================================================
   PROJECT VISUAL
========================================================= */

.project-visual {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 3;

  transform:
    translate(
      -50%,
      -50%
    );

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.project-visual strong {
  font-family: var(--display);

  font-size:
    clamp(
      110px,
      19vw,
      320px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.085em;
}

.project-visual span,
.project-visual small {
  font-family: var(--display);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.2em;
}


/* VISUAL 01 */

.project-visual--01 {
  color: var(--white);
}

.project-visual--01 strong {
  color: var(--gold);
}

.project-visual--01
.project-mini-label {
  margin-bottom: 35px;

  color: #777772;
}

.project-visual-line {
  width: 80px;
  height: 2px;

  margin: 35px 0;

  background: var(--gold);
}

.project-visual--01 small {
  color: #777772;
}


/* VISUAL 02 */

.project-visual--02 span {
  margin-bottom: 35px;

  opacity: 0.5;
}

.project-visual--02 small {
  margin-top: 35px;

  opacity: 0.5;
}


/* VISUAL 03 */

.project-visual--03 span {
  margin-bottom: 35px;

  opacity: 0.5;
}

.project-visual--03 strong {
  font-weight: 500;
}

.project-visual--03 small {
  margin-top: 35px;

  opacity: 0.5;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
  width: min(1500px, 100%);

  margin: 0 auto;

  padding:
    60px
    var(--page-padding)
    100px;

  display: grid;

  grid-template-columns:
    90px
    minmax(300px, 1fr)
    minmax(250px, 0.6fr);

  gap: 50px;
}

.project-info-number {
  color: var(--gold);

  font-family: var(--display);

  font-size: 10px;

  letter-spacing: 0.12em;
}

.project-type {
  margin-bottom: 14px;

  color: #666661;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.project-info-main h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      40px,
      5vw,
      75px
    );

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.055em;
}

.project-info-main p {
  max-width: 550px;

  margin:
    25px
    0
    0;

  color: #8b8b86;

  font-size: 14px;

  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;

  align-content: flex-start;

  gap: 8px;

  justify-content: flex-end;
}

.project-tags span {
  padding:
    8px
    12px;

  border:
    1px solid
    var(--border);

  color: #777772;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.12em;
}


/* =========================================================
   PROJECTS CLOSING
========================================================= */

.projects-closing {
  width: min(1500px, 100%);

  min-height: 100vh;

  margin: 0 auto;

  padding:
    160px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-closing-label {
  margin-bottom: 40px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.projects-closing h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      60px,
      8.7vw,
      145px
    );

  font-weight: 600;

  line-height: 0.83;

  letter-spacing: -0.075em;
}

.projects-closing h3 span {
  color: var(--gold);
}

.projects-closing-bottom {
  margin-top: 100px;

  padding-top: 25px;

  border-top:
    1px solid
    var(--border);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}

.projects-closing-bottom p {
  max-width: 380px;

  margin: 0;

  color: #858580;

  font-size: 14px;

  line-height: 1.7;
}

.projects-closing-bottom > span {
  color: var(--gold);

  font-family: var(--display);

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   PROJECT INTERACTION
========================================================= */

.project-media {
  transition:
    filter 0.5s ease;
}

.project-visual {
  transition:
    transform
    0.8s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}

.project-case:hover
.project-visual {
  transform:
    translate(
      -50%,
      -50%
    )
    scale(1.035);
}

.project-case:hover
.project-corner-spark {
  animation:
    sparkPulse
    1.5s
    ease-in-out
    infinite;
}


/* =========================================================
   PROJECTS TABLET
========================================================= */

@media (max-width: 900px) {

  .projects-intro-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .projects-intro-copy {
    max-width: 500px;
  }

  .project-media {
    height: 80vh;

    min-height: 600px;
  }

  .project-info {
    grid-template-columns:
      55px
      1fr;
  }

  .project-tags {
    grid-column:
      2
      /
      3;

    justify-content: flex-start;
  }

}


/* =========================================================
   PROJECTS MOBILE
========================================================= */

@media (max-width: 650px) {

  .projects-intro {
    padding:
      100px
      var(--page-padding)
      90px;
  }

  .projects-index {
    margin-bottom: 60px;
  }

  .projects-title {
    font-size:
      clamp(
        58px,
        18vw,
        88px
      );
  }

  .projects-intro-copy p {
    margin-bottom: 30px;

    font-size: 14px;
  }


  /* MEDIA */

  .project-media {
    height: 72vh;

    min-height: 520px;
  }

  .project-grid-bg {
    background-size:
      45px
      45px;
  }

  .project-number-bg {
    font-size: 100vw;
  }

  .project-visual strong {
    font-size:
      clamp(
        80px,
        29vw,
        145px
      );
  }

  .project-visual span,
  .project-visual small {
    font-size: 6px;
  }

  .project-orbit--one {
    width: 120vw;
    height: 120vw;
  }

  .project-orbit--two {
    width: 75vw;
    height: 75vw;
  }


  /* INFO */

  .project-info {
    padding:
      40px
      var(--page-padding)
      75px;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .project-info-number {
    margin-bottom: 10px;
  }

  .project-info-main h3 {
    font-size: 48px;
  }

  .project-tags {
    grid-column: auto;

    margin-top: 10px;
  }


  /* CLOSING */

  .projects-closing {
    min-height: 90vh;

    padding:
      110px
      var(--page-padding);
  }

  .projects-closing h3 {
    font-size:
      clamp(
        53px,
        16vw,
        80px
      );
  }

  .projects-closing-bottom {
    margin-top: 70px;

    align-items: flex-start;
    flex-direction: column;
  }

}
/* =========================================================
   WEBINANDO — REAL PROJECTS
========================================================= */

.projects-section {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}


/* =========================================================
   PROJECTS INTRO
========================================================= */

.projects-intro {
  width: min(1500px, 100%);
  margin: 0 auto;

  padding:
    150px
    var(--page-padding)
    140px;
}

.projects-index {
  margin-bottom: 90px;

  display: flex;
  gap: 20px;

  color: #666661;

  font-size: 10px;
  letter-spacing: 0.15em;
}

.projects-index span:first-child {
  color: var(--gold);
}

.projects-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(260px, 0.6fr);

  gap: clamp(60px, 9vw, 150px);

  align-items: end;
}

.projects-eyebrow {
  margin: 0 0 25px;

  color: #777772;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.projects-title {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      65px,
      8.8vw,
      150px
    );

  font-weight: 600;

  line-height: 0.81;

  letter-spacing: -0.075em;
}

.projects-title > span {
  display: block;
}

.projects-title-gold {
  color: var(--gold);
}

.projects-intro-copy p {
  margin: 0 0 18px;

  color: #91918c;

  font-size: 15px;

  line-height: 1.7;
}

.projects-intro-copy > span {
  display: block;

  margin-top: 45px;

  color: var(--gold);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}


/* =========================================================
   BASE PROJECT
========================================================= */

.wb-project {
  border-top: 1px solid var(--border);
}

.wb-project-link {
  display: block;
}

.wb-project-visual {
  height: min(78vw, 920px);
  min-height: 650px;

  position: relative;

  overflow: hidden;

  isolation: isolate;
}

.wb-project-top {
  position: absolute;

  top: 35px;
  left: var(--page-padding);
  right: var(--page-padding);

  z-index: 8;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.wb-project-title-wrap {
  position: absolute;

  left: var(--page-padding);
  bottom: 115px;

  z-index: 6;
}

.wb-project-pretitle {
  display: block;

  margin-bottom: 22px;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.wb-project-title {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      80px,
      12vw,
      195px
    );

  font-weight: 600;

  line-height: 0.76;

  letter-spacing: -0.08em;
}

.wb-project-title span {
  display: block;
}

.wb-project-bottom {
  position: absolute;

  left: var(--page-padding);
  right: var(--page-padding);
  bottom: 35px;

  z-index: 7;

  padding-top: 18px;

  border-top:
    1px solid
    currentColor;

  display: flex;
  justify-content: space-between;

  gap: 30px;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.wb-project-visit {
  display: flex;
  align-items: center;

  gap: 12px;
}

.wb-project-visit span {
  font-size: 17px;

  transition:
    transform
    0.3s ease;
}

.wb-project-link:hover
.wb-project-visit span {
  transform:
    translate(
      4px,
      -4px
    );
}

.wb-project-big-number {
  position: absolute;

  right: -0.07em;
  bottom: -0.27em;

  z-index: -1;

  font-family: var(--display);

  font-size:
    clamp(
      380px,
      60vw,
      950px
    );

  font-weight: 700;

  line-height: 1;

  letter-spacing: -0.12em;

  pointer-events: none;
  user-select: none;

  transition:
    transform
    0.4s ease-out;
}


/* =========================================================
   SILENCIO DE CORDILLERA
========================================================= */

.wb-project--cordillera
.wb-project-visual {
  background:
    radial-gradient(
      circle at 65% 30%,
      rgba(170, 20, 20, 0.15),
      transparent 30%
    ),
    linear-gradient(
      160deg,
      #151515 0%,
      #080808 55%,
      #020202 100%
    );

  color: #eeeae2;
}

.wb-project--cordillera
.wb-project-big-number {
  color:
    rgba(
      255,
      255,
      255,
      0.025
    );
}


/* MOUNTAIN */

.cordillera-mountain {
  position: absolute;

  width: 110%;
  height: 55%;

  left: -5%;
  bottom: 0;

  z-index: -3;

  background:
    linear-gradient(
      145deg,
      transparent 0 28%,
      #121212 28% 44%,
      transparent 44%
    ),
    linear-gradient(
      35deg,
      transparent 0 36%,
      #181818 36% 51%,
      transparent 51%
    ),
    linear-gradient(
      155deg,
      transparent 0 45%,
      #0d0d0d 45% 62%,
      transparent 62%
    );

  opacity: 0.9;
}


/* FOG */

.cordillera-fog {
  position: absolute;

  width: 80%;
  height: 300px;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;
}

.cordillera-fog--01 {
  left: -20%;
  bottom: 5%;

  background:
    rgba(
      190,
      190,
      180,
      0.06
    );
}

.cordillera-fog--02 {
  right: -30%;
  top: 20%;

  background:
    rgba(
      130,
      10,
      10,
      0.1
    );
}


/* FILE */

.cordillera-file {
  position: absolute;

  top: 17%;
  right: 8%;

  width: 230px;
  height: 300px;

  padding: 22px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );

  transform:
    rotate(6deg);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    rgba(
      255,
      255,
      255,
      0.025
    );

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);
}

.cordillera-file::before,
.cordillera-file::after {
  content: "";

  display: block;

  position: absolute;

  left: 22px;
  right: 22px;

  height: 1px;

  background:
    rgba(
      255,
      255,
      255,
      0.08
    );
}

.cordillera-file::before {
  top: 70px;
}

.cordillera-file::after {
  top: 95px;
}

.cordillera-file-top {
  font-size: 7px;

  letter-spacing: 0.15em;

  opacity: 0.45;
}

.cordillera-confidential {
  align-self: center;

  padding: 8px 12px;

  border:
    2px solid
    rgba(
      160,
      30,
      30,
      0.65
    );

  color:
    rgba(
      190,
      40,
      40,
      0.8
    );

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.13em;

  transform:
    rotate(-10deg);
}


/* =========================================================
   BICICROSS
========================================================= */

.wb-project--bicicross
.wb-project-visual {
  background:
    linear-gradient(
      135deg,
      #f5c400 0%,
      #ffd630 100%
    );

  color: #080808;
}

.wb-project--bicicross
.wb-project-big-number {
  color:
    rgba(
      7,
      7,
      7,
      0.055
    );
}


/* FIELD */

.bicicross-field {
  position: absolute;

  inset: 0;

  z-index: -3;

  background-image:
    linear-gradient(
      rgba(7, 7, 7, 0.075) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.075) 1px,
      transparent 1px
    );

  background-size:
    80px
    80px;
}

.bicicross-circle {
  position: absolute;

  width: 55vw;
  height: 55vw;

  max-width: 800px;
  max-height: 800px;

  top: 50%;
  right: -12%;

  transform:
    translateY(-50%);

  border:
    1px solid
    rgba(
      7,
      7,
      7,
      0.18
    );

  border-radius: 50%;
}

.bicicross-circle::before {
  content: "";

  position: absolute;

  inset: 18%;

  border:
    1px solid
    rgba(
      7,
      7,
      7,
      0.14
    );

  border-radius: 50%;
}


/* SPEED */

.bicicross-speed-lines {
  position: absolute;

  width: 50%;
  height: 50%;

  right: -5%;
  top: 18%;

  transform:
    rotate(-12deg);

  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 20px,
      rgba(7, 7, 7, 0.08) 21px,
      transparent 22px
    );
}


/* BADGE */

.bicicross-badge {
  position: absolute;

  right: 8%;
  top: 20%;

  width: 170px;
  height: 170px;

  z-index: 4;

  border:
    2px solid
    rgba(
      7,
      7,
      7,
      0.7
    );

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform:
    rotate(7deg);
}

.bicicross-badge span {
  font-family: var(--display);

  font-size: 57px;
  font-weight: 700;

  line-height: 0.9;

  letter-spacing: -0.08em;
}

.bicicross-badge small {
  margin-top: 10px;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.18em;
}


/* STATUS */

.bicicross-status {
  position: absolute;

  left: var(--page-padding);
  top: 105px;

  z-index: 6;

  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--black);

  animation:
    projectStatus
    1.8s
    ease-in-out
    infinite;
}


/* =========================================================
   CASE INFO
========================================================= */

.wb-case-info {
  width: min(1500px, 100%);

  margin: 0 auto;

  padding:
    70px
    var(--page-padding)
    120px;

  display: grid;

  grid-template-columns:
    80px
    minmax(350px, 1fr)
    minmax(230px, 0.45fr);

  gap:
    clamp(
      40px,
      7vw,
      110px
    );
}

.wb-case-number {
  color: var(--gold);

  font-family: var(--display);

  font-size: 10px;

  letter-spacing: 0.14em;
}

.wb-case-label {
  display: block;

  margin-bottom: 25px;

  color: #74746f;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.wb-case-main h4 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      40px,
      5vw,
      78px
    );

  font-weight: 500;

  line-height: 0.92;

  letter-spacing: -0.055em;
}

.wb-case-main h4 span {
  display: block;

  color: var(--gold);
}

.wb-case-main p {
  max-width: 600px;

  margin:
    35px
    0
    0;

  color: #8e8e89;

  font-size: 14px;

  line-height: 1.75;
}


/* META */

.wb-case-meta {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

.wb-case-meta div {
  padding-bottom: 18px;

  border-bottom:
    1px solid
    var(--border);
}

.wb-case-meta span,
.wb-case-meta strong {
  display: block;
}

.wb-case-meta span {
  margin-bottom: 8px;

  color: #555551;

  font-size: 7px;

  letter-spacing: 0.15em;
}

.wb-case-meta strong {
  color: #a2a29d;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.08em;
}


/* =========================================================
   NEXT PROJECT
========================================================= */

.wb-next-project {
  min-height: 90vh;

  padding:
    50px
    var(--page-padding);

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--soft-black);

  overflow: hidden;

  isolation: isolate;

  border-top:
    1px solid
    var(--border);

  border-bottom:
    1px solid
    var(--border);
}

.wb-next-grid {
  position: absolute;

  inset: 0;

  z-index: -2;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size:
    70px
    70px;
}

.wb-next-project::after {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 50%;

  transform:
    translate(
      -50%,
      -50%
    );

  z-index: -1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(
        246,
        201,
        69,
        0.1
      ),
      transparent 68%
    );
}

.wb-next-number {
  color: #5f5f5b;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.wb-next-content {
  text-align: center;
}

.wb-next-spark {
  display: block;

  margin-bottom: 25px;

  color: var(--gold);

  font-size: 23px;

  animation:
    sparkPulse
    2.3s
    ease-in-out
    infinite;
}

.wb-next-content p {
  margin:
    0
    0
    18px;

  color: #686864;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.wb-next-content h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      90px,
      16vw,
      250px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.085em;
}

.wb-next-content h3 span {
  color: var(--gold);
}

.wb-next-link {
  align-self: flex-end;

  padding:
    18px
    22px;

  display: inline-flex;
  align-items: center;

  gap: 35px;

  background: var(--gold);

  color: var(--black);

  font-family: var(--display);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.wb-next-link span {
  font-size: 18px;

  transition:
    transform
    0.3s ease;
}

.wb-next-link:hover span {
  transform:
    translate(
      3px,
      -3px
    );
}


/* =========================================================
   PROJECTS CLOSING
========================================================= */

.projects-closing {
  width: min(1500px, 100%);

  min-height: 100vh;

  margin: 0 auto;

  padding:
    150px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-closing-label {
  margin-bottom: 40px;

  color: var(--gold);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.projects-closing h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      60px,
      8.5vw,
      140px
    );

  font-weight: 600;

  line-height: 0.84;

  letter-spacing: -0.075em;
}

.projects-closing h3 span {
  color: var(--gold);
}

.projects-closing-bottom {
  margin-top: 100px;

  padding-top: 25px;

  border-top:
    1px solid
    var(--border);

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;
}

.projects-closing-bottom p {
  max-width: 480px;

  margin: 0;

  color: #858580;

  font-size: 14px;

  line-height: 1.7;
}

.projects-closing-bottom > span {
  color: var(--gold);

  font-family: var(--display);

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes projectStatus {

  0%,
  100% {
    opacity: 0.35;

    transform: scale(0.8);
  }

  50% {
    opacity: 1;

    transform: scale(1.15);
  }

}


/* =========================================================
   PROJECTS TABLET
========================================================= */

@media (max-width: 900px) {

  .projects-intro-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .projects-intro-copy {
    max-width: 520px;
  }

  .wb-case-info {
    grid-template-columns:
      50px
      1fr;
  }

  .wb-case-meta {
    grid-column:
      2
      /
      3;

    margin-top: 20px;
  }

}


/* =========================================================
   PROJECTS MOBILE
========================================================= */

@media (max-width: 650px) {

  .projects-intro {
    padding:
      100px
      var(--page-padding)
      90px;
  }

  .projects-index {
    margin-bottom: 60px;
  }

  .projects-title {
    font-size:
      clamp(
        55px,
        17vw,
        82px
      );
  }


  /* PROJECT */

  .wb-project-visual {
    height: 78svh;
    min-height: 570px;
  }

  .wb-project-top {
    top: 25px;

    font-size: 6px;
  }

  .wb-project-top
  span:last-child {
    text-align: right;
  }

  .wb-project-title-wrap {
    bottom: 105px;
  }

  .wb-project-pretitle {
    font-size: 6px;
  }

  .wb-project-title {
    font-size:
      clamp(
        63px,
        19vw,
        95px
      );

    line-height: 0.8;
  }

  .wb-project-bottom {
    bottom: 25px;

    font-size: 5px;
  }

  .wb-project-big-number {
    font-size: 110vw;
  }


  /* CORDILLERA */

  .cordillera-file {
    width: 145px;
    height: 190px;

    top: 18%;
    right: -15px;

    padding: 15px;
  }

  .cordillera-file::before,
  .cordillera-file::after {
    left: 15px;
    right: 15px;
  }

  .cordillera-file::before {
    top: 48px;
  }

  .cordillera-file::after {
    top: 67px;
  }

  .cordillera-confidential {
    font-size: 7px;
  }


  /* BICICROSS */

  .bicicross-field {
    background-size:
      45px
      45px;
  }

  .bicicross-circle {
    width: 105vw;
    height: 105vw;

    right: -50%;
  }

  .bicicross-badge {
    width: 115px;
    height: 115px;

    top: 20%;
    right: -5px;
  }

  .bicicross-badge span {
    font-size: 38px;
  }

  .bicicross-status {
    top: 80px;

    font-size: 6px;
  }


  /* CASE INFO */

  .wb-case-info {
    padding:
      50px
      var(--page-padding)
      90px;

    grid-template-columns: 1fr;

    gap: 28px;
  }

  .wb-case-main h4 {
    font-size:
      clamp(
        38px,
        12vw,
        58px
      );
  }

  .wb-case-main p {
    margin-top: 25px;
  }

  .wb-case-meta {
    grid-column: auto;

    margin-top: 15px;
  }


  /* NEXT */

  .wb-next-project {
    min-height: 80svh;

    padding:
      35px
      var(--page-padding);
  }

  .wb-next-grid {
    background-size:
      45px
      45px;
  }

  .wb-next-content h3 {
    font-size:
      clamp(
        78px,
        25vw,
        125px
      );
  }

  .wb-next-link {
    width: 100%;

    justify-content: space-between;
  }


  /* CLOSING */

  .projects-closing {
    min-height: 90svh;

    padding:
      110px
      var(--page-padding);
  }

  .projects-closing h3 {
    font-size:
      clamp(
        50px,
        15vw,
        75px
      );
  }

  .projects-closing-bottom {
    margin-top: 70px;

    align-items: flex-start;
    flex-direction: column;
  }

}
/* =========================================================
   WEBINANDO — MANIFIESTO
========================================================= */

.manifesto-section {
  position: relative;

  background: #050505;
  color: var(--white);

  overflow: hidden;

  isolation: isolate;
}


/* GRID */

.manifesto-grid {
  position: absolute;

  inset: 0;

  z-index: -3;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 90px 90px;
}


/* GLOW */

.manifesto-glow {
  position: absolute;

  width: 850px;
  height: 850px;

  left: 50%;
  top: 18%;

  transform:
    translateX(-50%);

  border-radius: 50%;

  z-index: -2;

  background:
    radial-gradient(
      circle,
      rgba(246, 201, 69, 0.07),
      transparent 68%
    );

  pointer-events: none;
}


/* INNER */

.manifesto-inner {
  width: min(1500px, 100%);

  margin: 0 auto;

  padding:
    150px
    var(--page-padding);
}


/* INDEX */

.manifesto-index {
  margin-bottom: 120px;

  display: flex;

  gap: 20px;

  color: #62625e;

  font-size: 9px;

  letter-spacing: 0.15em;
}

.manifesto-index span:first-child {
  color: var(--gold);
}


/* =========================================================
   OPENING
========================================================= */

.manifesto-opening {
  min-height: 85vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-small {
  display: block;

  margin-bottom: 35px;

  color: #656560;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.17em;
}


.manifesto-title {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      75px,
      11vw,
      185px
    );

  font-weight: 600;

  line-height: 0.77;

  letter-spacing: -0.08em;
}


.manifesto-line {
  display: block;

  opacity: 0.12;

  transform:
    translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}

.manifesto-line.is-active {
  opacity: 1;

  transform:
    translateY(0);
}

.manifesto-line--gold {
  color: var(--gold);
}

.manifesto-dot {
  color: var(--white);
}


/* =========================================================
   MANIFESTO BLOCK
========================================================= */

.manifesto-block {
  min-height: 75vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-block--left {
  max-width: 900px;
}

.manifesto-block--right {
  max-width: 900px;

  margin-left: auto;
}


.manifesto-block-number {
  display: block;

  margin-bottom: 35px;

  color: var(--gold);

  font-family: var(--display);

  font-size: 10px;

  letter-spacing: 0.13em;
}


.manifesto-copy {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      40px,
      5.5vw,
      88px
    );

  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.055em;

  color: #888883;
}


.manifesto-copy strong {
  color: var(--white);

  font-weight: 500;
}


.manifesto-detail {
  margin-top: 55px;

  display: flex;
  flex-wrap: wrap;

  gap:
    12px
    30px;

  color: #62625e;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;
}


/* =========================================================
   CHISPA MOMENT
========================================================= */

.manifesto-spark-moment {
  min-height: 80vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}


.manifesto-spark-line {
  width: 1px;
  height: 130px;

  margin-bottom: 45px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      var(--gold)
    );
}


.manifesto-big-spark {
  display: block;

  color: var(--gold);

  font-size:
    clamp(
      60px,
      8vw,
      120px
    );

  animation:
    manifestoSpark
    3s
    ease-in-out
    infinite;
}


.manifesto-spark-moment p {
  margin:
    35px
    0
    0;

  color: #686864;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.manifesto-spark-moment strong {
  color: var(--white);
}


/* =========================================================
   BIG STATEMENT
========================================================= */

.manifesto-big-statement {
  padding:
    180px
    0;
}


.manifesto-big-statement > p {
  margin:
    0
    0
    35px;

  color: #656560;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.17em;
}


.manifesto-big-statement h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      65px,
      10vw,
      165px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.08em;
}


.manifesto-big-statement h3 > span {
  display: block;
}


.manifesto-template-word {
  width: fit-content;

  position: relative;

  color: #555550;
}


.manifesto-template-word i {
  position: absolute;

  width: 108%;
  height: 7px;

  top: 50%;
  left: -4%;

  background: var(--gold);

  transform:
    rotate(-4deg);
}


/* TURN */

.manifesto-turn {
  height: 260px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 18px;
}


.manifesto-turn-line {
  width: 1px;
  height: 130px;

  margin-left: 15px;

  background:
    linear-gradient(
      to bottom,
      var(--gold),
      transparent
    );
}


.manifesto-turn-arrow {
  color: var(--gold);

  font-size: 25px;
}


.manifesto-business {
  margin-left: 12% !important;
}


.manifesto-business span:last-child {
  color: var(--gold);
}


.gold-dot {
  color: var(--white);
}


/* =========================================================
   DEFINITION
========================================================= */

.manifesto-definition {
  min-height: 100vh;

  padding:
    160px
    0;

  display: grid;

  grid-template-columns:
    minmax(180px, 0.5fr)
    minmax(500px, 1.5fr);

  gap:
    clamp(
      60px,
      10vw,
      160px
    );
}


.manifesto-definition-left span {
  position: sticky;

  top: 140px;

  color: #666661;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.manifesto-definition-list {
  border-top:
    1px solid
    var(--border);
}


.manifesto-definition-item {
  min-height: 150px;

  padding:
    25px
    0;

  border-bottom:
    1px solid
    var(--border);

  display: grid;

  grid-template-columns:
    70px
    1fr;

  align-items: center;

  gap: 25px;
}


.manifesto-definition-item span {
  color: #565652;

  font-size: 8px;

  letter-spacing: 0.13em;
}


.manifesto-definition-item strong {
  font-family: var(--display);

  font-size:
    clamp(
      35px,
      5vw,
      75px
    );

  font-weight: 500;

  letter-spacing: -0.055em;
}


.manifesto-definition-item--gold strong {
  color: var(--gold);
}


/* =========================================================
   CLOSING
========================================================= */

.manifesto-closing {
  min-height: 100vh;

  padding:
    150px
    0
    50px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
}


.manifesto-closing-label {
  margin-bottom: 45px;

  color: #5f5f5b;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.manifesto-closing h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      70px,
      10vw,
      165px
    );

  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.08em;
}


.manifesto-closing h3 span {
  color: var(--gold);
}


.manifesto-closing > p {
  margin:
    55px
    0
    0;

  color: #8b8b86;

  font-family: var(--display);

  font-size:
    clamp(
      20px,
      2vw,
      30px
    );

  letter-spacing: -0.025em;
}


.manifesto-signature {
  margin-top: 100px;

  padding-top: 25px;

  border-top:
    1px solid
    var(--border);

  color: var(--gold);

  font-family: var(--display);

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  min-height: 100svh;

  padding:
    50px
    var(--page-padding)
    40px;

  position: relative;

  background: var(--gold);
  color: var(--black);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  isolation: isolate;
}


.final-cta-glow {
  position: absolute;

  width: 900px;
  height: 900px;

  top: 50%;
  left: 50%;

  transform:
    translate(
      -50%,
      -50%
    );

  z-index: -1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(
        255,
        255,
        255,
        0.34
      ),
      transparent 65%
    );
}


.final-cta-top {
  display: flex;

  gap: 20px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.final-cta-top span:first-child {
  opacity: 0.45;
}


.final-cta-content {
  width: min(1300px, 100%);

  margin:
    100px
    auto;

  text-align: center;
}


.final-cta-spark {
  display: block;

  margin-bottom: 30px;

  font-size: 28px;

  animation:
    sparkPulseDark
    2.4s
    ease-in-out
    infinite;
}


.final-cta-eyebrow {
  margin:
    0
    0
    30px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.17em;

  opacity: 0.55;
}


.final-cta h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      70px,
      10vw,
      165px
    );

  font-weight: 600;

  line-height: 0.79;

  letter-spacing: -0.08em;
}


.final-cta h2 span {
  display: block;
}


.final-cta-gold {
  color:
    rgba(
      7,
      7,
      7,
      0.38
    );
}


.final-cta-description {
  max-width: 530px;

  margin:
    55px
    auto
    0;

  font-size: 15px;

  line-height: 1.7;

  opacity: 0.72;
}


/* BUTTON */

.final-cta-button {
  width: min(390px, 100%);

  margin:
    55px
    auto
    0;

  padding:
    22px
    25px;

  border:
    1px solid
    rgba(
      7,
      7,
      7,
      0.8
    );

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: var(--black);
  color: var(--gold);

  font-family: var(--display);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.08em;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}


.final-cta-button:hover {
  transform:
    translateY(-4px);

  background: transparent;
  color: var(--black);
}


.final-cta-button-arrow {
  font-size: 20px;

  transition:
    transform 0.3s ease;
}


.final-cta-button:hover
.final-cta-button-arrow {
  transform:
    translate(
      4px,
      -4px
    );
}


/* BOTTOM */

.final-cta-bottom {
  padding-top: 22px;

  border-top:
    1px solid
    rgba(
      7,
      7,
      7,
      0.25
    );

  display: flex;
  justify-content: space-between;

  gap: 30px;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.14em;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes manifestoSpark {

  0%,
  100% {
    opacity: 0.45;

    transform:
      scale(0.82)
      rotate(0deg);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.08)
      rotate(15deg);
  }

}


/* =========================================================
   MANIFESTO TABLET
========================================================= */

@media (max-width: 900px) {

  .manifesto-definition {
    grid-template-columns:
      160px
      1fr;

    gap: 50px;
  }

}


/* =========================================================
   MANIFESTO MOBILE
========================================================= */

@media (max-width: 650px) {

  .manifesto-grid {
    background-size:
      50px
      50px;
  }


  .manifesto-inner {
    padding:
      100px
      var(--page-padding);
  }


  .manifesto-index {
    margin-bottom: 70px;
  }


  /* OPENING */

  .manifesto-opening {
    min-height: 80svh;
  }


  .manifesto-title {
    font-size:
      clamp(
        62px,
        19vw,
        95px
      );
  }


  /* BLOCKS */

  .manifesto-block {
    min-height: 70svh;
  }


  .manifesto-copy {
    font-size:
      clamp(
        36px,
        11vw,
        53px
      );
  }


  .manifesto-detail {
    flex-direction: column;

    gap: 12px;
  }


  /* SPARK */

  .manifesto-spark-moment {
    min-height: 70svh;
  }


  /* BIG */

  .manifesto-big-statement {
    padding:
      110px
      0;
  }


  .manifesto-big-statement h3 {
    font-size:
      clamp(
        57px,
        17vw,
        83px
      );
  }


  .manifesto-template-word i {
    height: 4px;
  }


  .manifesto-turn {
    height: 190px;
  }


  .manifesto-business {
    margin-left: 0 !important;
  }


  /* DEFINITION */

  .manifesto-definition {
    min-height: auto;

    padding:
      100px
      0;

    display: block;
  }


  .manifesto-definition-left {
    margin-bottom: 50px;
  }


  .manifesto-definition-left span {
    position: static;
  }


  .manifesto-definition-item {
    min-height: 110px;

    grid-template-columns:
      40px
      1fr;
  }


  .manifesto-definition-item strong {
    font-size:
      clamp(
        31px,
        9vw,
        44px
      );
  }


  /* CLOSING */

  .manifesto-closing {
    min-height: 90svh;

    padding:
      100px
      0
      20px;
  }


  .manifesto-closing h3 {
    font-size:
      clamp(
        58px,
        17vw,
        85px
      );
  }


  /* FINAL CTA */

  .final-cta {
    min-height: 100svh;

    padding:
      35px
      var(--page-padding);
  }


  .final-cta-content {
    margin:
      70px
      auto;
  }


  .final-cta h2 {
    font-size:
      clamp(
        58px,
        17vw,
        85px
      );
  }


  .final-cta-description {
    margin-top: 40px;

    font-size: 14px;
  }


  .final-cta-button {
    margin-top: 40px;
  }


  .final-cta-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
  }

}