:root {
  --forest-950: #07140e;
  --forest-900: #0b2117;
  --forest-800: #123426;
  --forest-700: #1e4935;
  --moss: #63775a;
  --moss-light: #9aaa8b;
  --gold: #c99a58;
  --gold-light: #e0bd84;
  --sand: #ece3d1;
  --sand-deep: #d9cdb6;
  --paper: #f7f3e9;
  --ink: #142018;
  --muted: #687067;
  --line: rgba(20, 32, 24, 0.16);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--forest-950);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest-950);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 92px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 84px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand__seal {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(224, 189, 132, 0.9);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.brand__copy {
  display: grid;
  gap: 3px;
}

.brand__copy strong {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.main-nav a,
.header-contact {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-contact:hover,
.header-contact:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--ink {
  color: #7e6036;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  color: var(--forest-950);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

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

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-light);
}

.button--outline {
  border-color: rgba(224, 189, 132, 0.65);
  color: #fff;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--gold);
  color: var(--forest-950);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-action:hover,
.text-action:focus-visible {
  color: var(--gold-light);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
  overflow: hidden;
  padding: 132px clamp(24px, 8vw, 138px) 94px;
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 119, 90, 0.2), transparent 30%),
    linear-gradient(122deg, var(--forest-950), var(--forest-900) 52%, #153326);
  color: #fff;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 40px,
      rgba(255, 255, 255, 0.018) 41px,
      transparent 42px
    ),
    repeating-linear-gradient(
      28deg,
      transparent 0,
      transparent 70px,
      rgba(224, 189, 132, 0.025) 71px,
      transparent 72px
    );
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -15vw;
  right: -8vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(201, 154, 88, 0.11);
  filter: blur(80px);
  pointer-events: none;
  animation: recanto-glow 10s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1,
.concept h2,
.record h2,
.experiences h2,
.manifesto h2,
.information h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.052em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: 0.87;
}

.hero h1 em,
.concept h2 em,
.record h2 em,
.experiences h2 em,
.manifesto h2 em,
.information h2 em,
.contact h2 em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions,
.contact__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(224, 189, 132, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 53% 29%, rgba(224, 189, 132, 0.38), transparent 8%),
    radial-gradient(circle at 50% 38%, rgba(201, 154, 88, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(99, 119, 90, 0.18), rgba(7, 20, 14, 0.5));
  box-shadow:
    inset 0 0 80px rgba(224, 189, 132, 0.08),
    0 0 100px rgba(0, 0, 0, 0.18);
  animation: recanto-float 8s ease-in-out infinite;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  border: 1px solid rgba(224, 189, 132, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-art::before {
  inset: 11%;
}

.hero-art::after {
  inset: 24%;
}

.hero-art__orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(224, 189, 132, 0.22);
  border-radius: 50%;
}

.hero-art__orbit--one {
  inset: 36% -32% -37% 33%;
  animation: recanto-orbit 18s linear infinite;
}

.hero-art__orbit--two {
  inset: 46% 33% -40% -26%;
  animation: recanto-orbit 24s linear infinite reverse;
}

.hero-art__sun {
  position: absolute;
  z-index: 1;
  top: 24%;
  left: 45%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 42px rgba(224, 189, 132, 0.64),
    0 0 110px rgba(224, 189, 132, 0.24);
  animation: recanto-sun 4.5s ease-in-out infinite;
}

.hero-art__land {
  position: absolute;
  right: -12%;
  bottom: -8%;
  left: -12%;
  height: 58%;
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
}

.hero-art__land--back {
  bottom: 2%;
  background: #1c4533;
  clip-path: polygon(0 45%, 20% 30%, 39% 52%, 55% 17%, 78% 46%, 100% 25%, 100% 100%, 0 100%);
}

.hero-art__land--front {
  background: #0a1a12;
  clip-path: polygon(0 50%, 18% 37%, 35% 63%, 58% 32%, 75% 58%, 100% 42%, 100% 100%, 0 100%);
}

.hero-art__words {
  position: absolute;
  z-index: 4;
  right: 17%;
  bottom: 15%;
  left: 17%;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__footnote {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 84px);
  bottom: 31px;
  left: clamp(24px, 5vw, 84px);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-light {
  background: var(--paper);
}

.concept {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1fr;
  gap: clamp(35px, 6vw, 100px);
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 138px);
}

.section-number {
  color: var(--sand-deep);
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.8;
}

.concept__heading h2,
.experiences__heading h2,
.information__intro h2 {
  font-size: clamp(3.2rem, 5.6vw, 6.3rem);
  line-height: 0.91;
}

.concept__heading h2 em,
.information__intro h2 em {
  color: #4d694f;
}

.concept__copy {
  align-self: end;
  padding-bottom: 4px;
}

.concept__lead {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.concept__copy > p:not(.concept__lead):not(.concept__note) {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.concept__note {
  margin: 28px 0 0;
  border-left: 2px solid var(--gold);
  padding: 2px 0 2px 18px;
  color: #6f634f;
  font-size: 0.74rem;
  line-height: 1.6;
}

.experiences {
  padding: clamp(90px, 10vw, 154px) clamp(24px, 8vw, 138px);
  background: var(--forest-950);
  color: #fff;
}

.experiences__heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 76px;
}

.experiences__heading > p {
  max-width: 430px;
  justify-self: end;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.experience-card__number {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.experience-card__mark {
  position: absolute;
  top: 80px;
  right: 28px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(224, 189, 132, 0.24);
  border-radius: 50%;
}

.experience-card__mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 96px;
  transform: translate(-50%, -50%) rotate(38deg);
  background: rgba(224, 189, 132, 0.3);
}

.experience-card h3 {
  position: absolute;
  right: 28px;
  bottom: 112px;
  left: 28px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  font-weight: 500;
}

.experience-card p {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
  line-height: 1.65;
}

.record {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  border-top: 1px solid rgba(224, 189, 132, 0.2);
  border-bottom: 1px solid rgba(224, 189, 132, 0.2);
  background: var(--forest-900);
  color: #fff;
}

.record__media {
  margin: 0;
  background: #091a11;
}

.record__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.record__media figcaption {
  border-top: 1px solid rgba(224, 189, 132, 0.14);
  padding: 16px clamp(22px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.record__content {
  display: grid;
  min-height: 520px;
  align-content: center;
  border-left: 1px solid rgba(224, 189, 132, 0.24);
  padding: clamp(72px, 8vw, 130px) clamp(38px, 7vw, 104px);
}

.record h2 {
  max-width: 620px;
  font-size: clamp(3.2rem, 4.8vw, 5.8rem);
  line-height: 0.94;
}

.record__content > p:last-child {
  max-width: 470px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.59);
  line-height: 1.75;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 680px;
  place-content: center;
  overflow: hidden;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 154, 88, 0.11), transparent 32%),
    linear-gradient(135deg, #173b2c, var(--forest-900));
  color: #fff;
  text-align: center;
}

.manifesto__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(224, 189, 132, 0.17);
  border-radius: 50%;
}

.manifesto__ring::before,
.manifesto__ring::after {
  position: absolute;
  border: 1px solid rgba(224, 189, 132, 0.1);
  border-radius: 50%;
  content: "";
}

.manifesto__ring::before {
  inset: 13%;
}

.manifesto__ring::after {
  inset: 28%;
}

.manifesto > *:not(.manifesto__ring) {
  position: relative;
  z-index: 2;
}

.manifesto h2 {
  max-width: 960px;
  font-size: clamp(3.4rem, 6.4vw, 7.1rem);
  line-height: 0.93;
}

.manifesto > p:last-child {
  max-width: 590px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.59);
  line-height: 1.75;
}

.information {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 138px);
}

.information__intro > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.information__panel {
  align-self: end;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  padding: clamp(26px, 4vw, 48px);
}

.information__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: #577058;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.information__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72916d;
  box-shadow: 0 0 0 5px rgba(114, 145, 109, 0.12);
}

.information__panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.information__panel li {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: #4f5d52;
  font-size: 0.86rem;
}

.information__panel li:last-child {
  padding-bottom: 0;
}

.information__panel li span {
  color: #a7783f;
  font-family: var(--display);
  font-size: 1rem;
}

.contact {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 24px;
  background: var(--forest-950);
  color: #fff;
  text-align: center;
}

.contact__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 920px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(224, 189, 132, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(224, 189, 132, 0.02),
    0 0 0 180px rgba(224, 189, 132, 0.014);
}

.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(3.6rem, 7vw, 7.7rem);
  line-height: 0.9;
}

.contact__inner > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px auto 34px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.75;
}

.contact__actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  min-height: 110px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 25px clamp(22px, 5vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050e09;
  color: #fff;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer > p:last-child {
  justify-self: end;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1.18fr 0.82fr;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .hero-art {
    width: min(40vw, 480px);
  }

  .concept {
    grid-template-columns: 0.45fr 1fr;
  }

  .concept__copy {
    grid-column: 2;
  }

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

  .information {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand__seal {
    width: 39px;
    height: 39px;
  }

  .brand__copy strong {
    max-width: 130px;
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .brand__copy small {
    font-size: 0.5rem;
  }

  .header-contact {
    font-size: 0;
  }

  .header-contact span {
    font-size: 1rem;
  }

  .hero {
    min-height: 760px;
    height: auto;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 48px;
    padding: 122px 22px 94px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.3rem);
  }

  .hero__lead {
    margin: 24px 0 30px;
    font-size: 0.96rem;
  }

  .hero__actions,
  .contact__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    position: absolute;
    right: -38vw;
    bottom: -8vw;
    width: 90vw;
    opacity: 0.35;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__footnote {
    right: 22px;
    bottom: 22px;
    left: 22px;
    font-size: 0.46rem;
  }

  .hero__footnote span:last-child {
    display: none;
  }

  .concept {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 84px 22px;
  }

  .section-number {
    font-size: 5.8rem;
  }

  .concept__copy {
    grid-column: auto;
  }

  .concept__heading h2,
  .experiences__heading h2,
  .information__intro h2 {
    font-size: clamp(3.05rem, 14vw, 4.6rem);
  }

  .experiences {
    padding: 82px 22px;
  }

  .experiences__heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 48px;
  }

  .experiences__heading > p {
    justify-self: start;
  }

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

  .experience-card {
    min-height: 330px;
  }

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

  .record__content {
    min-height: 0;
    border-top: 1px solid rgba(224, 189, 132, 0.24);
    border-left: 0;
    padding: 78px 22px 84px;
  }

  .record h2 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }

  .manifesto {
    min-height: 620px;
    padding: 90px 22px;
  }

  .manifesto__ring {
    width: 125vw;
  }

  .manifesto h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .information {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 84px 22px;
  }

  .contact {
    min-height: 620px;
    padding: 100px 22px;
  }

  .contact h2 {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .contact__actions {
    align-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 35px 22px;
  }

  .site-footer > p:last-child {
    justify-self: start;
  }
}

@keyframes recanto-glow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-5vw, 3vw, 0) scale(1.12); }
}

@keyframes recanto-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes recanto-orbit {
  to { transform: rotate(360deg); }
}

@keyframes recanto-sun {
  0%,
  100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
