:root {
  --green: #143f32;
  --deep: #0a211b;
  --sage: #9caf88;
  --yellow: #e3c45f;
  --cream: #f4ecd9;
  --blue: #9dbfc5;
  --rust: #b56d45;
  --ink: #17231e;
}


/* ==================================================
   RESET
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  overflow-x: hidden;

  color: var(--ink);

  background: var(--cream);

  font-family:
    "DM Sans",
    sans-serif;
}

img {
  display: block;

  width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

h1,
h2,
h3 {
  font-family:
    "Playfair Display",
    serif;
}


/* ==================================================
   SWITCHER
================================================== */

.demo-switcher {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 99999;

  width: 100%;

  min-height: 38px;

  padding: 6px 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  color: white;

  background:
    rgba(10,33,27,0.98);

  font-family:
    Arial,
    sans-serif;

  font-size: 0.72rem;
}

.demo-switcher > span {
  opacity: 0.6;
}

.demo-switcher-links {
  display: flex;

  gap: 7px;
}

.demo-switcher-links a {
  padding: 5px 11px;

  border:
    1px solid rgba(255,255,255,0.2);

  border-radius: 100px;
}

.demo-switcher-links a:hover,
.demo-switcher-links .current-demo {
  color: var(--green);

  background: var(--yellow);

  border-color: var(--yellow);
}


/* ==================================================
   HEADER
================================================== */

.editorial-header {
  position: fixed;

  top: 38px;
  left: 0;

  z-index: 900;

  width: 100%;

  height: 80px;

  padding: 0 4vw;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: var(--deep);

  background:
    rgba(244,236,217,0.96);

  border-bottom:
    1px solid rgba(20,63,50,0.12);

  backdrop-filter: blur(15px);
}

.editorial-logo {
  font-size: 1.2rem;

  font-weight: 800;

  letter-spacing: -0.05em;
}

.editorial-logo span {
  color: var(--rust);
}

.editorial-header nav {
  display: flex;

  gap: 28px;
}

.editorial-header nav a {
  font-size: 0.67rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.editorial-header nav .active {
  color: var(--rust);
}

.editorial-menu {
  display: none;

  position: relative;

  z-index: 40;

  border: 0;

  background: transparent;

  font-weight: 700;
}


/* ==================================================
   HERO
================================================== */

.editorial-hero {
  position: relative;

  min-height: 820px;

  padding-top: 118px;

  overflow: hidden;

  background: var(--sage);
}

.hero-photo,
.hero-photo-shade {
  position: absolute;

  inset: 0;
}

.hero-photo {
  left: 48%;

  background:
    url("forest-life.jpg")
    center / cover;
}

.hero-photo-shade {
  background:
    linear-gradient(
      90deg,
      #e7dfc7 0%,
      #e7dfc7 48%,
      rgba(231,223,199,0.25) 66%,
      rgba(20,63,50,0.12)
    );
}

.hero-left {
  position: absolute;

  z-index: 5;

  top: 220px;
  left: 6vw;

  width: 52%;
}

.hero-left > span {
  color: var(--rust);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.24em;
}

.hero-left h1 {
  margin: 12px 0 25px;

  color: var(--green);

  font-size:
    clamp(
      5.5rem,
      10vw,
      10rem
    );

  line-height: 0.68;

  letter-spacing: -0.07em;
}

.hero-left h1 strong {
  display: block;

  color: var(--rust);
}

.hero-left p {
  max-width: 450px;

  font-size: 1.25rem;

  font-weight: 600;

  line-height: 1.5;
}

.hero-stamp {
  position: absolute;

  z-index: 6;

  right: 8%;
  bottom: 70px;

  width: 210px;
  height: 210px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border:
    3px solid var(--yellow);

  border-radius: 50%;

  color: var(--cream);

  background:
    rgba(20,63,50,0.86);

  text-align: center;
}

.hero-stamp span,
.hero-stamp small {
  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}

.hero-stamp strong {
  color: var(--yellow);

  font-family:
    "Playfair Display",
    serif;

  font-size: 2.1rem;
}

.hero-side-word {
  position: absolute;

  z-index: 6;

  right: 2%;
  top: 50%;

  transform:
    rotate(90deg);

  transform-origin: right;

  color: rgba(244,236,217,0.55);

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.42em;
}


/* ==================================================
   BANNER
================================================== */

.main-banner {
  height: 92px;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: var(--cream);

  background: var(--green);

  border-top:
    5px solid var(--yellow);

  border-bottom:
    5px solid var(--yellow);
}

.banner-track {
  width: max-content;

  display: flex;

  gap: 55px;

  animation:
    marquee 28s linear infinite;
}

.banner-track span {
  flex: 0 0 auto;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.banner-track
span:nth-child(odd) {
  color: var(--yellow);
}

@keyframes marquee {

  from {
    transform:
      translateX(0);
  }

  to {
    transform:
      translateX(-35%);
  }

}


/* ==================================================
   INTRO
================================================== */

.intro-section {
  padding: 120px 7vw;

  display: grid;

  grid-template-columns:
    0.28fr 1fr;

  gap: 45px;
}

.intro-index {
  color:
    rgba(20,63,50,0.12);

  font-family:
    "Playfair Display",
    serif;

  font-size: 9rem;

  line-height: 1;
}

.intro-copy {
  max-width: 850px;
}

.intro-copy > span,
.future-kitten-copy > span {
  color: var(--rust);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.22em;
}

.intro-copy h2 {
  margin: 15px 0 25px;

  color: var(--green);

  font-size:
    clamp(
      3.8rem,
      7vw,
      6.4rem
    );

  line-height: 0.9;

  letter-spacing: -0.045em;
}

.intro-copy h2 em {
  display: block;

  color: var(--rust);
}

.intro-copy p {
  max-width: 700px;

  color: #646b67;

  font-size: 1.05rem;

  line-height: 1.8;
}


/* ==================================================
   EDITORIAL PROFILE
================================================== */

.editorial-profile {
  position: relative;

  min-height: 790px;

  overflow: hidden;

  display: grid;

  grid-template-columns:
    0.72fr 1.2fr 0.72fr;

  align-items: center;
}

.king-section {
  color: var(--cream);

  background: var(--green);
}

.queen-section {
  color: var(--deep);

  background: var(--blue);
}


/* PROFILE COPY */

.profile-copy {
  position: relative;

  z-index: 4;

  padding: 50px;
}

.profile-copy > span,
.profile-data > span {
  font-size: 0.61rem;

  font-weight: 700;

  letter-spacing: 0.22em;
}

.profile-copy h2 {
  margin: 10px 0;

  font-size:
    clamp(
      4.5rem,
      7vw,
      7rem
    );

  line-height: 0.8;
}

.king-section
.profile-copy h2 {
  color: var(--yellow);
}

.queen-section
.profile-copy h2 {
  color: var(--green);
}

.profile-role {
  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.14em;
}

.profile-copy > p:last-child {
  max-width: 330px;

  line-height: 1.7;

  opacity: 0.72;
}


/* ==================================================
   ARCH STAGE
================================================== */

.arch-stage {
  height: 100%;

  display: flex;

  align-items: flex-end;

  justify-content: center;
}

.arch-shape {
  position: relative;

  width:
    min(
      480px,
      90%
    );

  height: 650px;

  overflow: hidden;

  border-radius:
    50% 50% 0 0;
}

.king-arch {
  border:
    4px solid var(--yellow);

  background: var(--deep);
}

.queen-arch {
  border:
    4px solid var(--green);

  background: #bfd0cb;
}

.arch-inner-line {
  position: absolute;

  z-index: 4;

  inset: 10px;

  border-radius:
    50% 50% 0 0;

  pointer-events: none;
}

.king-arch .arch-inner-line {
  border:
    1px solid rgba(227,196,95,0.6);
}

.queen-arch .arch-inner-line {
  border:
    1px solid rgba(20,63,50,0.45);
}

.arch-shape img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}

.king-arch img {
  object-position:
    center 18%;

  transform: scale(1.035);
}

.queen-arch img {
  object-position:
    46% 36%;

  transform: scale(1.035);
}

.arch-shape:hover img {
  transform: scale(1.065);
}


/* ==================================================
   PROFILE DATA
================================================== */

.profile-data {
  position: relative;

  z-index: 5;

  padding: 45px;
}

.profile-data dl {
  margin: 20px 0 0;
}

.profile-data dl div {
  padding: 18px 0;

  border-top:
    1px solid currentColor;
}

.profile-data dt {
  margin-bottom: 5px;

  opacity: 0.58;

  font-size: 0.58rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.profile-data dd {
  margin: 0;

  font-family:
    "Playfair Display",
    serif;

  font-size: 1.15rem;
}


/* POLY CALLOUT */

.poly-callout {
  width: fit-content;

  margin: 22px 0;

  padding: 15px 18px;

  border:
    2px solid var(--green);
}

.poly-callout small,
.poly-callout strong {
  display: block;
}

.poly-callout small {
  font-size: 0.53rem;

  font-weight: 700;

  letter-spacing: 0.16em;
}

.poly-callout strong {
  color: var(--rust);

  font-family:
    "Playfair Display",
    serif;

  font-size: 1.35rem;
}


/* ==================================================
   STRIPE
================================================== */

.stripe-banner {
  min-height: 105px;

  padding: 25px;

  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 20px;

  text-align: center;

  color: var(--green);

  background: var(--yellow);

  font-family:
    "Playfair Display",
    serif;

  font-size: 1.05rem;
}


/* ==================================================
   BIG MESSAGE
================================================== */

.big-message {
  padding: 125px 6vw;

  color: var(--cream);

  background: var(--deep);
}

.big-message > span {
  color: var(--yellow);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.24em;
}

.big-message h2 {
  max-width: 1000px;

  margin: 20px 0 0;

  font-size:
    clamp(
      4.5rem,
      10vw,
      9rem
    );

  line-height: 0.8;

  letter-spacing: -0.06em;
}

.big-message h2 strong {
  color: var(--yellow);
}


/* ==================================================
   FUTURE GRID
================================================== */

.future-grid-section {
  padding: 100px 5vw;

  background: #e6dfc8;
}

.future-grid {
  display: grid;

  grid-template-columns:
    1fr 1.3fr 1fr;

  gap: 18px;
}

.future-card {
  position: relative;

  min-height: 450px;

  padding: 40px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.green-card {
  color: var(--cream);

  background: var(--green);
}

.yellow-card {
  color: var(--green);

  background: var(--yellow);
}

.future-card > span {
  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}

.future-card > strong {
  font-family:
    "Playfair Display",
    serif;

  font-size: 8rem;

  font-weight: 600;

  line-height: 1;
}

.future-card h3 {
  margin: 0;

  font-size: 2.3rem;
}

.photo-card {
  padding: 0;

  color: var(--cream);
}

.future-photo {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      rgba(11,36,28,0.2),
      rgba(11,36,28,0.83)
    ),
    url("country-life.jpg")
    center / cover;
}

.photo-card-copy {
  position: relative;

  z-index: 3;

  margin-top: auto;

  padding: 40px;
}

.photo-card-copy span {
  color: var(--yellow);

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}


/* ==================================================
   ANNOUNCEMENT
================================================== */

.announcement-banner {
  padding: 42px 5vw;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  color: var(--cream);

  background: var(--rust);
}

.announcement-banner div {
  font-size: 0.67rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}

.announcement-banner strong {
  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      2rem,
      5vw,
      4.5rem
    );
}


/* ==================================================
   FUTURE KITTENS
================================================== */

.future-kittens {
  padding: 120px 7vw;

  display: grid;

  grid-template-columns:
    1fr 0.8fr;

  align-items: center;

  gap: 80px;

  background: var(--sage);
}

.future-kitten-copy h2 {
  margin: 15px 0 30px;

  color: var(--green);

  font-size:
    clamp(
      4rem,
      8vw,
      7rem
    );

  line-height: 0.82;

  letter-spacing: -0.055em;
}

.future-kitten-copy h2 strong {
  display: block;

  color: var(--rust);
}

.future-kitten-copy p {
  max-width: 650px;

  color:
    rgba(10,33,27,0.72);

  line-height: 1.8;
}

.future-kitten-copy a {
  margin-top: 20px;

  display: inline-block;

  padding-bottom: 4px;

  border-bottom:
    2px solid var(--green);

  font-weight: 700;
}

.future-kitten-art {
  aspect-ratio: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border:
    3px solid var(--green);

  border-radius: 50%;

  text-align: center;
}

.future-kitten-art span {
  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.22em;
}

.future-kitten-art strong {
  color: var(--rust);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      4rem,
      8vw,
      7rem
    );

  line-height: 0.85;
}

.future-kitten-art small {
  margin-top: 15px;

  font-weight: 700;

  letter-spacing: 0.2em;
}


/* ==================================================
   FINAL
================================================== */

.editorial-final {
  position: relative;

  min-height: 650px;

  display: grid;

  place-items: center;

  overflow: hidden;

  color: var(--cream);
}

.final-forest,
.final-shade {
  position: absolute;

  inset: 0;
}

.final-forest {
  background:
    url("forest-hero.jpg")
    center / cover;
}

.final-shade {
  background:
    rgba(7,31,24,0.8);
}

.final-copy {
  position: relative;

  z-index: 3;

  width:
    min(
      900px,
      calc(100% - 40px)
    );

  text-align: center;
}

.final-copy > span {
  color: var(--yellow);

  font-size: 0.63rem;

  font-weight: 700;

  letter-spacing: 0.25em;
}

.final-copy h2 {
  margin: 20px 0 35px;

  font-size:
    clamp(
      4rem,
      9vw,
      8rem
    );

  line-height: 0.82;
}

.final-copy h2 strong {
  display: block;

  color: var(--yellow);
}

.final-copy a {
  padding: 15px 28px;

  display: inline-flex;

  color: var(--green);

  background: var(--yellow);

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.13em;
}


/* ==================================================
   FOOTER
================================================== */

.editorial-footer {
  padding: 65px 5vw 30px;

  color: var(--cream);

  background: var(--deep);
}

.footer-name {
  color: var(--yellow);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      3rem,
      8vw,
      7rem
    );
}

.editorial-footer nav {
  margin-top: 35px;

  display: flex;

  flex-wrap: wrap;

  gap: 25px;
}

.editorial-footer nav a {
  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.credit {
  margin-top: 55px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255,255,255,0.12);

  color:
    rgba(255,255,255,0.48);

  font-size: 0.7rem;
}

.credit a {
  color: var(--yellow);
}


/* ==================================================
   REVEAL
================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition: 0.8s;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

  .editorial-menu {
    display: block;
  }

  .editorial-header nav {
    position: fixed;

    z-index: 30;

    top: 0;
    right: -100%;

    width:
      min(
        360px,
        90vw
      );

    height: 100svh;

    padding: 115px 35px;

    display: flex;

    flex-direction: column;

    color: var(--cream);

    background: var(--deep);

    transition: 0.3s;
  }

  .editorial-header nav.open {
    right: 0;
  }

  .editorial-profile {
    grid-template-columns: 1fr;
  }

  .profile-copy,
  .profile-data {
    padding: 45px;
  }

  .arch-stage {
    height: 600px;
  }

  .arch-shape {
    height: 580px;

    width:
      min(
        460px,
        calc(100% - 50px)
      );
  }

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

  .future-kittens {
    grid-template-columns: 1fr;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

  .demo-switcher {
    min-height: 46px;

    padding: 6px 10px;
  }

  .demo-switcher > span {
    display: none;
  }

  .demo-switcher-links {
    width: 100%;

    justify-content: center;
  }

  .demo-switcher-links a {
    flex: 1;

    max-width: 110px;

    text-align: center;
  }

  .editorial-header {
    top: 46px;

    height: 70px;

    padding: 0 22px;
  }

  .editorial-hero {
    min-height: 790px;

    background: var(--sage);
  }

  .hero-photo {
    top: 53%;
    left: 0;

    background-position: center;
  }

  .hero-photo-shade {
    background:
      linear-gradient(
        180deg,
        #e7dfc7 0%,
        #e7dfc7 53%,
        rgba(231,223,199,0.1) 72%,
        rgba(20,63,50,0.18)
      );
  }

  .hero-left {
    top: 155px;
    left: 25px;

    width:
      calc(100% - 50px);

    text-align: center;
  }

  .hero-left h1 {
    font-size: 4.9rem;
  }

  .hero-left p {
    margin:
      0 auto;
  }

  .hero-stamp {
    right: 50%;
    bottom: 35px;

    width: 150px;
    height: 150px;

    transform:
      translateX(50%);
  }

  .hero-stamp strong {
    font-size: 1.55rem;
  }

  .hero-side-word {
    display: none;
  }

  .intro-section {
    padding: 80px 25px;

    grid-template-columns: 1fr;
  }

  .intro-index {
    font-size: 5rem;
  }

  .profile-copy,
  .profile-data {
    padding: 45px 28px;
  }

  .arch-stage {
    height: 520px;
  }

  .arch-shape {
    width:
      calc(100% - 48px);

    height: 500px;
  }

  .stripe-banner {
    flex-direction: column;
  }

  .big-message {
    padding: 85px 25px;
  }

  .future-grid-section {
    padding: 70px 20px;
  }

  .announcement-banner {
    flex-direction: column;

    text-align: center;
  }

  .future-kittens {
    padding: 80px 25px;
  }

}