@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --atlas-paper: #fffaf3;
  --atlas-ink: #171512;
  --atlas-muted: #68655c;
  --atlas-sea: #00a7b5;
  --atlas-deep: #121212;
  --atlas-green: #235a5a;
  --atlas-gold: #e25f3d;
  --atlas-line: rgba(23, 21, 18, .13);
  --atlas-white: #fffefb;
  --atlas-shadow: 0 22px 70px rgba(18, 18, 18, .13);
  --atlas-serif: "Cormorant Garamond", Georgia, serif;
  --atlas-sans: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --atlas-rail: 292px;
  --atlas-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(226, 95, 61, .055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(0, 167, 181, .055), transparent 32rem),
    var(--atlas-paper);
  color: var(--atlas-ink);
  font-family: var(--atlas-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
ul {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul {
  padding-left: 1.1rem;
}

li + li {
  margin-top: .45rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--atlas-serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.screen-reader-text,
.vg-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vg-skip:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--atlas-white);
  border: 1px solid var(--atlas-line);
}

.atlas-wrap,
.vg-container {
  width: min(var(--atlas-max), calc(100% - 56px));
  margin-inline: auto;
}

.vg-narrow {
  max-width: 840px;
}

.atlas-rail {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: var(--atlas-rail);
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 1.6rem;
  padding: 1.25rem;
  background: rgba(255, 254, 251, .95);
  color: var(--atlas-ink);
  border-left: 1px solid var(--atlas-line);
  box-shadow: -18px 0 60px rgba(18, 18, 18, .07);
  backdrop-filter: blur(16px);
}

.atlas-brand {
  align-self: start;
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
}

.atlas-brand__small {
  color: var(--atlas-gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.atlas-brand__name {
  max-width: none;
  font-family: var(--atlas-serif);
  font-size: 3.2rem;
  line-height: .82;
}

.atlas-brand__line {
  margin-top: 0;
  color: var(--atlas-muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atlas-nav {
  align-self: end;
}

.atlas-nav__list,
.vg-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.atlas-nav__list {
  counter-reset: atlas-nav;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--atlas-line);
}

.atlas-nav__list a {
  counter-increment: atlas-nav;
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  min-height: 48px;
  color: var(--atlas-ink);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--atlas-line);
}

.atlas-nav__list a::before {
  content: "0" counter(atlas-nav);
  color: var(--atlas-gold);
  font-family: var(--atlas-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.atlas-nav__list a:hover {
  color: var(--atlas-sea);
}

.atlas-rail__cta,
.atlas-button,
.vg-btn,
.vg-entry .wp-block-button__link,
.atlas-mobile-nav__cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.1rem;
  border: 1px solid var(--atlas-gold);
  background: var(--atlas-gold);
  color: var(--atlas-white);
  font-family: var(--atlas-sans);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.atlas-rail__cta {
  width: 100%;
  min-height: 56px;
  border-color: var(--atlas-deep);
  background: var(--atlas-deep);
  color: var(--atlas-white);
}

.atlas-rail__cta:hover,
.atlas-button:hover,
.vg-btn:hover {
  background: var(--atlas-sea);
  border-color: var(--atlas-sea);
  color: var(--atlas-white);
}

.vg-btn--ghost {
  background: transparent;
  color: var(--atlas-ink);
  clip-path: none;
}

.atlas-rail__note {
  color: var(--atlas-muted);
  font-size: .75rem;
}

.atlas-mobile-header {
  display: none;
}

.atlas-main {
  margin-right: var(--atlas-rail);
  overflow: hidden;
}

.vg-page {
  background: transparent;
}

.vg-label {
  color: var(--atlas-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vg-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--atlas-deep);
  color: var(--atlas-white);
}

.vg-hero--page {
  min-height: clamp(560px, 78svh, 820px);
}

.vg-hero__image {
  grid-area: 1 / 1;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.tc-hero-image--lobster {
  object-position: center center;
}

.vg-hero::after {
  content: "";
  grid-area: 1 / 1;
  z-index: 1;
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, .08), rgba(18, 18, 18, .16) 40%, rgba(18, 18, 18, .72)),
    linear-gradient(90deg, rgba(18, 18, 18, .1), rgba(18, 18, 18, .38));
  pointer-events: none;
}

.vg-hero__content {
  grid-area: 1 / 1;
  z-index: 2;
  width: min(860px, calc(100% - 72px));
  margin: 0 auto 0 clamp(2rem, 7vw, 6rem);
  padding: 0 0 clamp(3rem, 8vw, 6rem);
}

.vg-hero__content::before {
  content: "Tobago Cays Atlas";
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 253, 247, .72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vg-hero__content p:not(.vg-label) {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 253, 247, .9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.vg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.vg-hero .vg-btn {
  border-color: var(--atlas-gold);
}

.vg-hero .vg-btn--ghost {
  border-color: rgba(255, 253, 247, .68);
  color: var(--atlas-white);
}

.vg-hero .vg-btn--ghost:hover {
  background: var(--atlas-white);
  border-color: var(--atlas-white);
  color: var(--atlas-deep);
}

.vg-section {
  padding: clamp(1.75rem, 3vw, 3.2rem) 0;
}

.vg-section--cream,
.vg-section--wash {
  background: rgba(255, 253, 247, .52);
}

.vg-section--navy {
  background:
    linear-gradient(120deg, rgba(226, 95, 61, .16), rgba(18, 18, 18, 0) 42%),
    var(--atlas-deep);
  color: var(--atlas-white);
}

.vg-section--navy p,
.vg-section--navy .vg-split__copy p,
.vg-section--navy .vg-label {
  color: rgba(255, 253, 247, .75);
}

.vg-section__head {
  max-width: 890px;
  margin-bottom: clamp(.9rem, 1.7vw, 1.4rem);
}

.vg-section__head p {
  max-width: 740px;
  margin-top: 1rem;
  color: var(--atlas-muted);
}

.vg-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.vg-split--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.vg-split__copy {
  display: grid;
  gap: 1rem;
}

.vg-split__copy p,
.vg-card p,
.vg-feature p,
.tc-itinerary p {
  color: var(--atlas-muted);
}

.vg-split__media img,
.vg-wide-image img,
.vg-editorial-grid img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--atlas-shadow);
}

.vg-split__media img {
  aspect-ratio: 5 / 4;
}

.vg-wide-image img {
  aspect-ratio: 16 / 9;
}

.tc-photo-stack {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: .75rem;
  align-items: start;
}

.tc-photo-stack img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--atlas-shadow);
}

.tc-photo-stack img:first-child {
  aspect-ratio: 4 / 5;
  margin-top: 4rem;
}

.tc-photo-stack img:last-child {
  aspect-ratio: 4 / 3;
}

.vg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--atlas-line);
  border: 1px solid var(--atlas-line);
}

.vg-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vg-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vg-card {
  display: grid;
  background: var(--atlas-white);
}

.vg-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vg-card__body {
  padding: 1.35rem;
}

.vg-card h3 {
  margin-bottom: .65rem;
}

.vg-card .vg-btn {
  margin-top: 1.1rem;
}

.vg-feature-list,
.tc-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--atlas-line);
  border: 1px solid var(--atlas-line);
}

.vg-feature,
.tc-rules-grid .vg-feature {
  background: var(--atlas-white);
  padding: 1.2rem;
}

.vg-feature strong {
  display: block;
  margin-bottom: .35rem;
}

.tc-itinerary {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 1px;
  overflow-x: auto;
  background: var(--atlas-line);
  border: 1px solid var(--atlas-line);
}

.tc-itinerary > div {
  min-height: 300px;
  padding: 1.4rem;
  background: var(--atlas-white);
}

.tc-itinerary span {
  display: block;
  color: var(--atlas-gold);
  font-family: var(--atlas-serif);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.tc-link-list {
  display: grid;
  gap: .7rem;
  list-style: none;
  padding: 0;
}

.tc-link-list li {
  border-top: 1px solid var(--atlas-line);
  padding-top: .75rem;
}

.tc-link-list a {
  color: var(--atlas-sea);
  font-weight: 800;
  text-decoration: none;
}

.vg-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.vg-editorial-grid img {
  aspect-ratio: 4 / 5;
}

.tc-boat-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "main top"
    "main bottom";
  gap: .75rem;
  align-self: stretch;
  height: clamp(340px, 34vw, 500px);
}

.tc-boat-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  box-shadow: var(--atlas-shadow);
}

.tc-boat-gallery img:first-child {
  grid-area: main;
}

.tc-boat-gallery img:nth-of-type(2) {
  grid-area: top;
}

.tc-boat-gallery img:nth-of-type(3) {
  grid-area: bottom;
}

.tc-boat-gallery br {
  display: none;
}

.tc-fee-note {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.tc-union-collage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.75rem, 1.2vw, 1rem);
  align-self: stretch;
}

.tc-union-collage img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 8;
  object-position: center;
}

.tc-union-collage br {
  display: none;
}

.tc-union-collage img:nth-child(2),
.tc-union-collage img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.tc-contact-notes {
  border-left: 3px solid var(--atlas-gold);
  padding-left: 1rem;
}

.vg-form {
  padding: 1.3rem;
  background: var(--atlas-white);
  border: 1px solid var(--atlas-line);
  box-shadow: var(--atlas-shadow);
}

.vg-form-anchor {
  scroll-margin-top: 96px;
}

.atlas-language {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  margin-top: 1rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.atlas-language a {
  color: inherit;
  opacity: .72;
  text-decoration: none;
}

.atlas-language a[aria-current="true"],
.atlas-language a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.atlas-language--mobile {
  margin-top: .35rem;
}

.atlas-language--footer {
  margin-top: 1.15rem;
  max-width: 320px;
}

.atlas-language-suggest {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: flex;
  max-width: min(360px, calc(100vw - 36px));
  align-items: center;
  gap: .75rem;
  padding: .85rem .95rem;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(9, 45, 56, .94);
  color: var(--atlas-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
  font-size: .82rem;
}

.atlas-language-suggest a,
.atlas-language-suggest button {
  color: var(--atlas-white);
  font: inherit;
}

.atlas-language-suggest a {
  font-weight: 800;
  text-underline-offset: 3px;
}

.atlas-language-suggest button {
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: .78;
}

.tc-simple-contact .vg-form {
  max-width: 720px;
  margin: 0 auto;
}

.vg-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vg-form label,
.vg-choice-group {
  display: grid;
  gap: .35rem;
  color: var(--atlas-muted);
  font-size: .85rem;
  font-weight: 800;
}

.vg-form input,
.vg-form select,
.vg-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--atlas-line);
  background: #fbf7ef;
  color: var(--atlas-ink);
  font: inherit;
  padding: .7rem .8rem;
}

.vg-form .screen-reader-text {
  width: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.vg-form textarea {
  min-height: 130px;
}

.vg-form .vg-full {
  grid-column: 1 / -1;
}

.vg-choice-group {
  border: 1px solid var(--atlas-line);
  padding: .8rem;
}

.vg-choice-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

.vg-choice-group input {
  width: auto;
  min-height: 0;
}

.atlas-cta {
  margin-right: var(--atlas-rail);
  padding: clamp(1.8rem, 3vw, 3rem) 0;
  background:
    linear-gradient(120deg, rgba(0, 167, 181, .18), transparent 48%),
    var(--atlas-deep);
  color: var(--atlas-white);
}

.atlas-cta__inner,
.atlas-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.atlas-cta p {
  max-width: 780px;
  color: rgba(255, 253, 247, .78);
}

.atlas-cta .vg-label {
  color: rgba(255, 253, 247, .7);
}

.atlas-footer {
  margin-right: var(--atlas-rail);
  padding: 4rem 0;
  background: #121212;
  color: rgba(255, 253, 247, .78);
}

.atlas-footer__brand {
  color: var(--atlas-white);
  font-family: var(--atlas-serif);
  font-size: 2.65rem;
  line-height: 1;
}

.atlas-footer__small {
  max-width: 720px;
  margin-top: 1rem;
  font-size: .9rem;
}

.vg-footer__links {
  columns: 2;
}

.vg-footer__links a {
  color: rgba(255, 253, 247, .86);
  text-decoration: none;
}

.vg-admin-note {
  margin-top: 1rem;
  color: #f2d390;
  font-size: .88rem;
}

.atlas-sticky {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --atlas-rail: 252px;
  }

  .atlas-brand__name {
    font-size: 2.3rem;
  }

  .vg-grid,
  .vg-grid--four,
  .vg-feature-list,
  .tc-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vg-split,
  .vg-split--reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    background-size: 64px 64px;
  }

  .atlas-rail {
    display: none;
  }

  .atlas-mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 18px;
    background: rgba(255, 250, 243, .97);
    border-bottom: 1px solid var(--atlas-line);
    backdrop-filter: blur(14px);
  }

  .atlas-mobile-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--atlas-ink);
    font-family: var(--atlas-serif);
    font-size: 1.9rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .atlas-menu-toggle {
    margin-right: auto;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--atlas-line);
    background: transparent;
    color: var(--atlas-ink);
    padding: .55rem .85rem;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  }

  .atlas-mobile-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    padding: 1rem 18px 1.25rem;
    background: var(--atlas-white);
    color: var(--atlas-white);
    border-bottom: 1px solid var(--atlas-line);
    box-shadow: 0 24px 60px rgba(18, 18, 18, .16);
  }

  .atlas-mobile-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .atlas-mobile-nav .atlas-nav__list {
    gap: .25rem;
  }

  .atlas-mobile-nav__cta {
    width: fit-content;
    background: var(--atlas-gold);
    color: var(--atlas-white);
  }

  .atlas-main,
  .atlas-cta,
  .atlas-footer {
    margin-right: 0;
  }

  .vg-hero,
  .vg-hero--page {
    min-height: calc(100svh - 74px);
  }

  .vg-hero__content {
    width: min(100% - 36px, 720px);
    padding-bottom: 3rem;
  }

  .atlas-wrap,
  .vg-container {
    width: min(100% - 36px, var(--atlas-max));
  }

  .atlas-cta__inner,
  .atlas-footer__grid,
  .vg-grid,
  .vg-grid--two,
  .vg-grid--four,
  .vg-feature-list,
  .tc-rules-grid,
  .vg-form__grid,
  .tc-photo-stack {
    grid-template-columns: 1fr;
  }

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

  .tc-boat-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    grid-template-areas:
      "main main"
      "top bottom";
    height: auto;
  }

  .tc-boat-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .tc-boat-gallery img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .tc-union-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-photo-stack img:first-child {
    margin-top: 0;
  }

  .tc-itinerary {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .vg-actions {
    align-items: stretch;
  }

  .vg-actions .vg-btn,
  .atlas-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.5rem, 14vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .atlas-mobile-brand {
    font-size: 1.65rem;
  }

  .vg-hero__content p:not(.vg-label) {
    font-size: 1rem;
  }

  .vg-footer__links {
    columns: 1;
  }

  .tc-union-collage {
    grid-template-columns: 1fr;
  }

  .tc-union-collage img,
  .tc-union-collage img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .tc-boat-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "top"
      "bottom";
  }

  .tc-boat-gallery img:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .atlas-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 120;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--atlas-deep);
    color: var(--atlas-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(90px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .atlas-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
