/* Shared styles for the standalone Einoti Safaris pages:
   coming-soon.html and links.html. Kept apart from styles.css so both
   pages stay light enough to open fast on a phone. */

@font-face {
  font-family: "Foxlite";
  src: url("assets/fonts/Foxlite-Script.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f7f1e8;
  --paper-deep: #ece2d7;
  --paper-warm: #e4d7c9;
  --ink: #1b1a18;
  --ink-soft: #34312d;
  --muted: #706961;
  --line: rgba(27, 26, 24, 0.17);
  --white: #fffdf8;
  --red: #a5161c;
  --red-bright: #ca2028;
  --red-deep: #721014;
  --blue: #2e688f;
  --bead-white: #f1e8dc;
  --gold: #d8b36a;
  --display: "Foxlite", "Roboto Slab", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --shuka:
    repeating-linear-gradient(
      0deg,
      transparent 0 18px,
      rgba(7, 7, 7, 0.75) 18px 27px,
      transparent 27px 54px,
      rgba(7, 7, 7, 0.94) 54px 66px
    ),
    repeating-linear-gradient(
      90deg,
      #9f1118 0 22px,
      #d01f27 22px 42px,
      #711015 42px 55px,
      #0b0b0d 55px 72px,
      #b71920 72px 96px
    );
  --beads:
    repeating-linear-gradient(
      90deg,
      var(--red) 0 5px,
      var(--bead-white) 5px 10px,
      #111 10px 15px,
      var(--blue) 15px 20px,
      var(--bead-white) 20px 25px,
      var(--red) 25px 30px
    );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.shuka-rule {
  height: 10px;
  background: var(--shuka);
  background-size: 100% 54px, 96px 100%;
}

.bead-rule {
  height: 5px;
  background: var(--beads);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 60;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 10px 0;
}

.skip-link:focus-visible {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------------------------------------------------------------- *
 * Coming soon
 * ---------------------------------------------------------------- */

.coming {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background-color: #14120f;
  isolation: isolate;
}

.coming__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.coming__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  animation: slow-drift 34s ease-in-out infinite alternate;
}

@keyframes slow-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(0, -1.6%, 0);
  }
}

.coming__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(11, 10, 9, 0.24) 0%, rgba(11, 10, 9, 0.76) 68%, rgba(9, 8, 7, 0.92) 100%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.68) 0%, rgba(9, 8, 7, 0.2) 34%, rgba(9, 8, 7, 0.86) 100%);
}

.coming__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 26px);
  text-align: center;
  padding: clamp(44px, 6vw, 68px) clamp(22px, 6vw, 60px);
  max-width: 760px;
  margin: 0 auto;
}

.coming__logo {
  margin: 0;
  padding: 4px;
}

.coming__logo img {
  width: clamp(148px, 22vw, 190px);
  height: auto;
}

.coming__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.82);
}

.coming__eyebrow::before,
.coming__eyebrow::after {
  content: "";
  display: inline-block;
  width: clamp(18px, 5vw, 40px);
  height: 3px;
  vertical-align: middle;
  margin: 0 12px 3px;
  background: var(--beads);
  background-size: 30px 100%;
  border-radius: 2px;
}

.coming__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(50px, 9vw, 92px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.coming__title span {
  display: block;
  color: var(--gold);
}

.coming__message {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.66;
  color: rgba(255, 253, 248, 0.9);
}

.coming__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-dot {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.34);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.social-dot .icon {
  width: 22px;
  height: 22px;
}

.social-dot:hover,
.social-dot:focus-visible {
  transform: translateY(-3px);
  background: var(--red);
  border-color: var(--red-bright);
}

.coming__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--solid {
  background: var(--red);
  color: var(--white);
}

.btn--solid:hover,
.btn--solid:focus-visible {
  background: var(--red-bright);
}

.btn--ghost {
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 253, 248, 0.14);
}

.coming__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  font-size: 14px;
  color: rgba(255, 253, 248, 0.82);
}

.coming__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.coming__contact a:hover,
.coming__contact a:focus-visible {
  border-bottom-color: var(--gold);
}

.coming__foot {
  padding: 18px clamp(22px, 6vw, 60px) 26px;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 253, 248, 0.6);
}

/* ---------------------------------------------------------------- *
 * Link tree
 * ---------------------------------------------------------------- */

.tree {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 28px) 64px;
}

.tree__head {
  position: relative;
  text-align: center;
  padding: clamp(30px, 7vw, 52px) 0 clamp(22px, 4vw, 30px);
}

.tree__cover {
  position: relative;
  height: clamp(150px, 34vw, 220px);
  margin: 0 calc(clamp(18px, 5vw, 28px) * -1);
  overflow: hidden;
}

.tree__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.tree__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.14) 0%, rgba(9, 8, 7, 0.05) 50%, var(--paper) 100%);
}

.tree__avatar {
  width: 128px;
  height: 128px;
  margin: -76px auto 16px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--white);
  box-shadow: 0 16px 40px rgba(27, 26, 24, 0.24);
}

.tree__avatar img {
  width: 88px;
  height: auto;
}

.tree__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 9vw, 56px);
  line-height: 1;
  color: var(--ink);
}

.tree__handle {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.tree__tagline {
  margin: 12px auto 0;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.tree__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.tree__socials .social-dot {
  width: 46px;
  height: 46px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  backdrop-filter: none;
  box-shadow: 0 4px 14px rgba(27, 26, 24, 0.07);
}

.tree__socials .social-dot:hover,
.tree__socials .social-dot:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.tree__group {
  margin-top: clamp(26px, 5vw, 38px);
}

.tree__group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.tree__group-label::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--beads);
  background-size: 30px 100%;
  opacity: 0.55;
}

.tree__links {
  display: grid;
  gap: 12px;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(27, 26, 24, 0.06);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--shuka);
  background-size: 100% 54px, 96px 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(27, 26, 24, 0.28);
  box-shadow: 0 14px 30px rgba(27, 26, 24, 0.13);
}

.link-card:hover::before,
.link-card:focus-visible::before {
  opacity: 1;
}

.link-card__mark {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--paper-deep);
  color: var(--ink);
}

.link-card--accent .link-card__mark {
  background: var(--red);
  color: var(--white);
}

.link-card__text {
  flex: 1;
  min-width: 0;
}

.link-card__title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
}

.link-card__sub {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.link-card__go {
  flex: none;
  color: var(--muted);
}

.link-card__thumb {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  object-fit: cover;
}

.tree__share {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 5vw, 40px);
}

.tree__share .btn--solid {
  box-shadow: 0 10px 24px rgba(165, 22, 28, 0.28);
}

.btn--outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--ink);
}

.tree__note {
  margin: 22px auto 0;
  max-width: 44ch;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.tree__foot {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

.tree__foot a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 40;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------------- *
 * 2026 standalone page redesigns
 * ---------------------------------------------------------------- */

html.links-page-root,
html.coming-page-root {
  height: 100%;
}

body.links-page,
body.coming-page {
  min-height: 100%;
}

/* Links: one-screen editorial dashboard on desktop */

body.links-page {
  display: grid;
  height: 100dvh;
  overflow: hidden;
  grid-template-rows: 4px minmax(0, 1fr);
  background:
    radial-gradient(circle at 78% 14%, rgba(165, 22, 28, 0.06), transparent 24%),
    var(--paper);
}

.links-page .shuka-rule {
  height: 4px;
  background: var(--beads);
}

.links-page .tree {
  display: grid;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: clamp(320px, 31vw, 440px) repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) auto auto;
  background: transparent;
}

.links-page .tree__head {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1 / 4;
  text-align: left;
  color: var(--white);
  isolation: isolate;
}

.links-page .tree__head::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.82)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.76), rgba(8, 8, 8, 0.1));
  content: "";
}

.links-page .tree__cover {
  width: auto;
  height: auto;
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.links-page .tree__cover::after {
  display: none;
}

.links-page .tree__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.links-page .tree__avatar {
  width: 120px;
  height: 88px;
  margin: 0 0 22px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.links-page .tree__avatar img {
  width: 98px;
}

.links-page .tree__name {
  color: var(--white);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.88;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.38);
}

.links-page .tree__handle {
  margin-top: 14px;
  color: #f1c2c4;
  font-size: 11px;
}

.links-page .tree__tagline {
  max-width: 31ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.links-page .tree__socials {
  justify-content: flex-start;
  margin-top: 22px;
  gap: 7px;
}

.links-page .tree__socials .social-dot {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(9, 9, 10, 0.38);
  color: var(--white);
  box-shadow: none;
}

.links-page .tree__socials .social-dot:hover,
.links-page .tree__socials .social-dot:focus-visible {
  border-color: var(--red-bright);
  background: var(--red);
}

.links-page .tree > .tree__group {
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(20px, 2.4vw, 34px) clamp(10px, 1.25vw, 20px) 18px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.36);
  grid-row: 1;
}

.links-page .tree > .tree__group:nth-of-type(1) { grid-column: 2; }
.links-page .tree > .tree__group:nth-of-type(2) { grid-column: 3; }
.links-page .tree > .tree__group:nth-of-type(3) { grid-column: 4; }
.links-page .tree > .tree__group:nth-of-type(4) { grid-column: 5; border-right: 0; }

.links-page .tree__group-label {
  min-height: 24px;
  margin-bottom: 12px;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
}

.links-page .tree__group-label::after {
  height: 2px;
}

.links-page .tree__links {
  gap: 8px;
}

.links-page .link-card {
  min-height: 52px;
  padding: 8px 9px;
  gap: 9px;
  border-radius: 10px;
  box-shadow: none;
}

.links-page .link-card::before {
  display: none;
}

.links-page .link-card:hover,
.links-page .link-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(165, 22, 28, 0.42);
  box-shadow: 0 8px 20px rgba(27, 26, 24, 0.08);
}

.links-page .link-card__mark,
.links-page .link-card__thumb {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.links-page .link-card__mark .icon {
  width: 17px;
  height: 17px;
}

.links-page .link-card__title {
  overflow: hidden;
  font-size: clamp(11px, 0.9vw, 13.5px);
  line-height: 1.25;
  text-overflow: ellipsis;
}

.links-page a[href^="mailto:"] .link-card__title {
  overflow: visible;
  font-size: 10px;
  text-overflow: clip;
}

.links-page .link-card__sub {
  display: none;
}

.links-page .link-card__go {
  width: 15px;
  height: 15px;
}

.links-page .tree__share {
  margin: 0;
  padding: 10px clamp(16px, 2vw, 28px);
  justify-content: flex-end;
  gap: 8px;
  grid-column: 2 / -1;
  grid-row: 2;
  border-bottom: 1px solid var(--line);
}

.links-page .tree__share .btn {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 12px;
}

.links-page .tree__note {
  display: none;
}

.links-page .tree__foot {
  margin: 0;
  padding: 7px clamp(16px, 2vw, 28px) 8px;
  grid-column: 2 / -1;
  grid-row: 3;
  border-top: 0;
  text-align: right;
  font-size: 10.5px;
  line-height: 1.4;
}

.links-page .tree__foot br {
  display: none;
}

.links-page .toast {
  bottom: 16px;
}

/* Coming soon: fixed cinematic canvas at every viewport size */

body.coming-page {
  display: grid;
  height: 100dvh;
  overflow: hidden;
  grid-template-rows: 4px minmax(0, 1fr) 3px;
  background: #111;
}

.coming-page .shuka-rule,
.coming-page .bead-rule {
  height: auto;
  background: var(--beads);
}

.coming-page .coming {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.coming-page .coming__media img {
  object-position: 58% 42%;
}

.coming-page .coming__scrim {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.92) 0%, rgba(8, 9, 10, 0.7) 42%, rgba(8, 9, 10, 0.16) 76%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.72), rgba(8, 9, 10, 0.12) 54%);
}

.coming-page .coming__inner {
  width: min(720px, 58vw);
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(26px, 4vw, 62px) clamp(24px, 5vw, 84px);
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 1.45vh, 17px);
  text-align: left;
}

.coming-page .coming__logo {
  padding: 9px 16px 10px;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.coming-page .coming__logo img {
  width: clamp(92px, 9vw, 124px);
}

.coming-page .coming__eyebrow {
  font-size: 10px;
  letter-spacing: 0.23em;
}

.coming-page .coming__eyebrow::before,
.coming-page .coming__eyebrow::after {
  width: 18px;
  margin-inline: 8px;
}

.coming-page .coming__eyebrow::before {
  margin-left: 0;
}

.coming-page .coming__title {
  max-width: 620px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.82;
}

.coming-page .coming__message {
  max-width: 40ch;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.55;
}

.coming-page .coming__socials,
.coming-page .coming__actions,
.coming-page .coming__contact {
  justify-content: flex-start;
}

.coming-page .coming__socials {
  gap: 7px;
}

.coming-page .social-dot {
  width: 40px;
  height: 40px;
}

.coming-page .social-dot .icon {
  width: 18px;
  height: 18px;
}

.coming-page .coming__actions {
  gap: 8px;
}

.coming-page .coming__actions .btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 13px;
}

.coming-page .coming__contact {
  gap: 5px 22px;
  font-size: 12.5px;
}

.coming-page .coming__foot {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 26px;
  bottom: 15px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10.5px;
  text-align: right;
}

@media (max-width: 1100px) {
  .links-page .tree {
    grid-template-columns: 300px repeat(4, minmax(0, 1fr));
  }

  .links-page .tree__head {
    padding: 28px;
  }

  .links-page .tree__avatar {
    width: 104px;
    height: 78px;
  }

  .links-page .tree__avatar img {
    width: 86px;
  }

  .links-page .link-card {
    padding-inline: 7px;
  }
}

@media (max-width: 900px) {
  html.links-page-root {
    height: auto;
  }

  body.links-page {
    display: block;
    height: auto;
    overflow: auto;
  }

  .links-page .shuka-rule {
    height: 4px;
  }

  .links-page .tree {
    display: block;
    height: auto;
  }

  .links-page .tree__head {
    min-height: min(570px, 72svh);
    padding: 42px 24px;
    align-items: center;
    text-align: center;
  }

  .links-page .tree__cover img {
    object-position: center 42%;
  }

  .links-page .tree__avatar {
    margin-bottom: 18px;
  }

  .links-page .tree__name {
    font-size: clamp(52px, 16vw, 74px);
  }

  .links-page .tree__tagline {
    margin-inline: auto;
  }

  .links-page .tree__socials {
    justify-content: center;
  }

  .links-page .tree > .tree__group {
    padding: 26px clamp(18px, 5vw, 34px);
    overflow: visible;
    border-right: 0;
  }

  .links-page .tree__links {
    gap: 10px;
  }

  .links-page .link-card {
    min-height: 68px;
    padding: 11px 13px;
  }

  .links-page .link-card__mark,
  .links-page .link-card__thumb {
    width: 42px;
    height: 42px;
  }

  .links-page .link-card__title {
    overflow: visible;
    font-size: 14px;
    text-overflow: clip;
  }

  .links-page .link-card__sub {
    display: block;
    font-size: 12px;
  }

  .links-page .tree__share {
    padding: 24px 18px;
    justify-content: center;
  }

  .links-page .tree__foot {
    padding: 18px 20px 28px;
    text-align: center;
  }

  .links-page .tree__foot br {
    display: block;
  }
}

@media (max-width: 700px) {
  .coming-page .coming__media img {
    object-position: 57% center;
  }

  .coming-page .coming__scrim {
    background:
      linear-gradient(0deg, rgba(8, 9, 10, 0.88) 0%, rgba(8, 9, 10, 0.42) 72%, rgba(8, 9, 10, 0.54) 100%);
  }

  .coming-page .coming__inner {
    width: 100%;
    padding: 18px 18px 38px;
    align-items: center;
    gap: 9px;
    text-align: center;
  }

  .coming-page .coming__logo {
    padding: 7px 12px 8px;
  }

  .coming-page .coming__logo img {
    width: clamp(76px, 25vw, 100px);
  }

  .coming-page .coming__eyebrow {
    font-size: 8.5px;
    letter-spacing: 0.17em;
  }

  .coming-page .coming__eyebrow::before,
  .coming-page .coming__eyebrow::after {
    width: 12px;
    margin-inline: 5px;
  }

  .coming-page .coming__title {
    max-width: 380px;
    font-size: clamp(43px, 15vw, 64px);
    line-height: 0.84;
  }

  .coming-page .coming__message {
    max-width: 34ch;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .coming-page .coming__socials,
  .coming-page .coming__actions,
  .coming-page .coming__contact {
    justify-content: center;
  }

  .coming-page .social-dot {
    width: 36px;
    height: 36px;
  }

  .coming-page .coming__actions {
    flex-wrap: nowrap;
  }

  .coming-page .coming__actions .btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .coming-page .coming__contact {
    gap: 3px 14px;
    font-size: 11px;
  }

  .coming-page .coming__foot {
    right: 12px;
    bottom: 8px;
    left: 12px;
    font-size: 8.5px;
    text-align: center;
  }
}

@media (max-height: 620px) {
  .coming-page .coming__inner {
    padding-top: 10px;
    padding-bottom: 28px;
    gap: 7px;
  }

  .coming-page .coming__logo {
    padding: 5px 10px;
  }

  .coming-page .coming__logo img {
    width: 72px;
  }

  .coming-page .coming__title {
    font-size: clamp(40px, 10vh, 56px);
  }

  .coming-page .coming__message {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .coming-page .social-dot {
    width: 33px;
    height: 33px;
  }

  .coming-page .social-dot .icon {
    width: 15px;
    height: 15px;
  }

  .coming-page .coming__actions .btn {
    min-height: 36px;
    padding: 6px 11px;
    font-size: 11.5px;
  }

  .coming-page .coming__contact {
    font-size: 10.5px;
  }

  .coming-page .coming__foot {
    bottom: 6px;
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .coming-page .coming__inner {
    padding-inline: 12px;
  }

  .coming-page .coming__actions .btn {
    padding-inline: 9px;
    font-size: 10.5px;
  }

  .coming-page .coming__contact {
    align-items: center;
    flex-direction: column;
  }
}

/* Centered mosaic coming-soon refinement */

.links-page button,
.links-page .btn,
.coming-page button,
.coming-page .btn {
  box-shadow: none !important;
}

.online-icon,
.online-tripadvisor-icon {
  display: inline-block;
  background: currentColor;
}

.online-tripadvisor-icon {
  -webkit-mask: url("https://api.iconify.design/simple-icons/tripadvisor.svg") center / contain no-repeat;
  mask: url("https://api.iconify.design/simple-icons/tripadvisor.svg") center / contain no-repeat;
}

.coming-page .coming__mosaic {
  display: grid;
  position: absolute;
  inset: 0;
  z-index: -2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  overflow: hidden;
  background: #111;
}

.coming-page .coming__mosaic figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #1b1a18;
}

.coming-page .coming__mosaic img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.04);
  animation: mosaicDrift 22s ease-in-out infinite alternate;
}

.coming-page .coming__mosaic-alt {
  opacity: 0;
  animation:
    mosaicSwap 18s ease-in-out var(--tile-delay) infinite,
    mosaicDrift 24s ease-in-out var(--tile-delay) infinite alternate !important;
}

@keyframes mosaicSwap {
  0%, 34% { opacity: 0; }
  45%, 84% { opacity: 1; }
  96%, 100% { opacity: 0; }
}

@keyframes mosaicDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

.coming-page .coming__scrim {
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 9, 10, 0.52) 0%, rgba(8, 9, 10, 0.73) 48%, rgba(8, 9, 10, 0.88) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.76), rgba(8, 9, 10, 0.28));
}

.coming-page .coming__language {
  display: inline-flex;
  min-height: 38px;
  padding: 0 11px;
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 5;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
  background: rgba(9, 9, 10, 0.52);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.coming-page .coming__language .icon {
  width: 15px;
  height: 15px;
}

.coming-page .coming__language select {
  max-width: 118px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-page .coming__language option {
  background: #171719;
  color: var(--white);
}

.coming-page .coming__inner {
  width: min(780px, calc(100% - 44px));
  max-width: none;
  margin: auto;
  padding: clamp(18px, 3vh, 32px) 22px clamp(34px, 5vh, 48px);
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 1.15vh, 12px);
  text-align: center;
}

.coming-page .coming__logo {
  padding: 7px 13px 8px;
}

.coming-page .coming__logo img {
  width: clamp(76px, 8vw, 102px);
}

.coming-page .coming__eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.coming-page .coming__eyebrow::before {
  margin-left: 8px;
}

.coming-page .coming__title {
  max-width: 720px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.82;
}

.coming-page .coming__title span:first-child {
  display: block;
  color: var(--white);
}

.coming-page .coming__title span:last-child {
  display: block;
  color: var(--gold);
}

.coming-page .coming__message {
  max-width: 48ch;
  font-size: clamp(12.5px, 1.1vw, 15px);
  line-height: 1.45;
}

.coming-page .coming__socials,
.coming-page .coming__actions,
.coming-page .coming__contact {
  justify-content: center;
}

.coming-page .social-dot {
  width: 36px;
  height: 36px;
}

.coming-page .coming__actions .btn {
  min-height: 39px;
  padding: 7px 14px;
  font-size: 11.5px;
}

.coming-page .coming__contact {
  font-size: 10.5px;
}

.coming-page .coming__ratings {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
}

.coming-page .coming__ratings > a {
  display: flex;
  min-height: 34px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
}

.coming-page .coming__ratings > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.coming-page .coming__ratings > .coming__rating--tripadvisor {
  grid-template-columns: minmax(0, 1fr) 24px;
}

.coming-page .brand-icon {
  width: 23px;
  height: 23px;
  flex: none;
  object-fit: contain;
}

.coming-page .coming__ratings strong,
.coming-page .coming__ratings small {
  display: block;
  text-align: left;
}

.coming-page .coming__ratings strong {
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coming-page .coming__ratings small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
}

.coming-page .coming__stars {
  display: inline-flex;
  gap: 1px;
  color: #f2c24f;
  font-style: normal;
}

.coming-page .coming__stars svg {
  width: 8px;
  height: 8px;
  fill: currentColor;
  stroke: currentColor;
}

.coming-page .coming__foot {
  right: 12px;
  bottom: 7px;
  left: 12px;
  font-size: 8px;
  text-align: center;
}

@media (max-width: 700px) {
  .coming-page .coming__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .coming-page .coming__language {
    min-height: 34px;
    top: 10px;
    right: 10px;
  }

  .coming-page .coming__language select {
    max-width: 96px;
    font-size: 9px;
  }

  .coming-page .coming__inner {
    width: calc(100% - 20px);
    padding: 46px 10px 33px;
    gap: 7px;
  }

  .coming-page .coming__title {
    max-width: 430px;
    font-size: clamp(42px, 13.6vw, 58px);
  }

  .coming-page .coming__message {
    max-width: 36ch;
    font-size: 12px;
  }

  .coming-page .coming__ratings > a {
    padding-inline: 10px;
  }
}

@media (max-height: 620px) {
  .coming-page .coming__inner {
    padding-top: 38px;
    padding-bottom: 25px;
    gap: 5px;
  }

  .coming-page .coming__logo img {
    width: 66px;
  }

  .coming-page .coming__title {
    font-size: clamp(39px, 9.2vh, 52px);
  }

  .coming-page .coming__socials {
    gap: 5px;
  }

  .coming-page .social-dot {
    width: 30px;
    height: 30px;
  }

  .coming-page .coming__actions .btn {
    min-height: 34px;
    padding: 5px 10px;
    font-size: 10.5px;
  }

  .coming-page .coming__ratings {
    min-height: 29px;
  }

  .coming-page .coming__ratings > a {
    min-height: 29px;
  }
}

@media (max-width: 360px) and (max-height: 620px) {
  .coming-page .coming__eyebrow {
    font-size: 7.5px;
  }

  .coming-page .coming__contact {
    gap: 2px;
    font-size: 9px;
  }

  .coming-page .coming__ratings > a {
    padding-inline: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-page .coming__mosaic img,
  .coming-page .coming__mosaic-alt {
    animation: none !important;
  }

  .coming-page .coming__mosaic-alt {
    display: none;
  }
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.links-page .link-card__mark .brand-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Compact contact chooser for the launch page */

.coming-contact-dialog {
  width: min(680px, calc(100% - 32px));
  max-width: none;
  max-height: min(88dvh, 720px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.coming-contact-dialog::backdrop {
  background: rgba(7, 8, 10, 0.78);
  backdrop-filter: blur(7px);
}

.coming-contact-dialog__shell {
  padding: clamp(28px, 5vw, 46px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27, 26, 24, 0.18);
  background: var(--paper);
}

.coming-contact-dialog__shell::before {
  height: 5px;
  position: absolute;
  inset: 0 0 auto;
  background: var(--beads);
  background-size: 30px 100%;
  content: "";
}

.coming-contact-dialog__close {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  position: absolute;
  top: 16px;
  right: 16px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.coming-contact-dialog__close .icon,
.coming-contact-dialog__close .online-icon {
  width: 14px;
  height: 14px;
}

.coming-contact-dialog__header {
  margin-bottom: 24px;
  padding-right: 44px;
}

.coming-contact-dialog__header p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.coming-contact-dialog__header h2 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.coming-contact-dialog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.coming-contact-dialog__grid a {
  display: grid;
  min-height: 62px;
  padding: 10px 13px;
  align-items: center;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
  text-decoration: none;
  box-shadow: none;
}

.coming-contact-dialog__grid a:hover,
.coming-contact-dialog__grid a:focus-visible {
  border-color: var(--red);
  background: var(--white);
}

.coming-contact-dialog__grid .icon,
.coming-contact-dialog__grid .online-icon,
.coming-contact-dialog__grid img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.coming-contact-dialog__grid span,
.coming-contact-dialog__grid strong,
.coming-contact-dialog__grid small {
  display: block;
  min-width: 0;
}

.coming-contact-dialog__grid strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.coming-contact-dialog__grid small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .coming-contact-dialog {
    max-height: 91dvh;
  }

  .coming-contact-dialog__shell {
    padding: 24px 14px 13px;
  }

  .coming-contact-dialog__header {
    margin-bottom: 11px;
  }

  .coming-contact-dialog__header h2 {
    font-size: 1.45rem;
  }

  .coming-contact-dialog__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .coming-contact-dialog__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .coming-contact-dialog__grid a {
    min-height: 46px;
    padding-block: 5px;
  }
}

/* Selected materials: 20 — Safari Ticket */
.coming-page .coming__actions .btn--safari-ticket {
  position: relative;
  isolation: isolate;
  width: 190px;
  max-width: calc(100vw - 48px);
  height: 40px;
  min-height: 40px;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 3px 9px 3px 16px;
  border: 1px solid var(--red-deep);
  border-radius: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(13, 13, 15, 0.92) 0 5px, transparent 5.5px),
    radial-gradient(circle at 100% 50%, rgba(13, 13, 15, 0.92) 0 5px, transparent 5.5px),
    var(--white);
  color: var(--red-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
  transform: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.coming-page .coming__actions .btn--safari-ticket::before {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 47px;
  bottom: 5px;
  border-left: 1px dashed rgba(23, 23, 25, 0.42);
  content: "";
}

.coming-page .btn--safari-ticket > * {
  position: relative;
  z-index: 2;
}

.coming-page .btn--safari-ticket .btn__ticket-stamp {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--shuka);
  color: var(--white);
  transition: transform 180ms ease;
}

.coming-page .btn--safari-ticket .btn__ticket-stamp img {
  width: 13px;
  height: 13px;
  display: block;
}

.coming-page .coming__actions .btn--safari-ticket:hover,
.coming-page .coming__actions .btn--safari-ticket:focus-visible {
  border-color: var(--red-deep);
  background-color: var(--red-deep);
  color: var(--white);
  transform: none;
}

.coming-page .btn--safari-ticket:hover .btn__ticket-stamp,
.coming-page .btn--safari-ticket:focus-visible .btn__ticket-stamp {
  transform: rotate(12deg);
}

/* The two review profiles intentionally share one exact visual grid. */
.coming-page .coming__ratings {
  gap: 0;
}

.coming-page .coming__ratings > a {
  width: 146px;
  min-height: 38px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 12px;
}

.coming-page .coming__ratings > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.coming-page .coming__ratings .brand-icon {
  width: 24px;
  height: 24px;
}

.coming-page .coming__rating-copy {
  min-width: 0;
  display: grid;
  grid-template-rows: 10px 9px;
  align-content: center;
  justify-items: start;
  gap: 3px;
}

.coming-page .coming__rating--tripadvisor .coming__rating-copy {
  justify-items: end;
}

.coming-page .coming__ratings .coming__rating--tripadvisor strong {
  text-align: right;
}

.coming-page .coming__ratings .coming__rating-copy strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 8px;
  line-height: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coming-page .coming__ratings .coming__stars {
  height: 9px;
  align-items: center;
  line-height: 0;
}

.coming-page .coming__logo {
  width: clamp(174px, 15vw, 208px);
  aspect-ratio: 1;
  display: grid;
  flex: none;
  margin: 0;
  padding: 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(199, 25, 32, 0.3);
  border-radius: 50%;
  background-color: #fffdf8;
  background: linear-gradient(145deg, #fffdf8 0%, #f1e4d4 100%);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    inset 0 0 0 4px rgba(255, 255, 255, 0.48);
}

.coming-page .coming__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

@media (max-width: 700px) {
  .coming-page .coming__logo {
    width: clamp(136px, 38vw, 154px);
    padding: 14px;
  }
}

@media (max-height: 620px) {
  .coming-page .coming__logo {
    width: 110px;
    padding: 10px;
  }
}

@media (max-width: 360px) {
  .coming-page .coming__actions .btn--safari-ticket {
    width: 190px;
    max-width: calc(100vw - 28px);
    height: 40px;
    min-height: 40px;
    padding: 3px 8px 3px 15px;
    font-size: 0.64rem;
  }

  .coming-page .coming__actions .btn--safari-ticket::before {
    right: 45px;
  }

  .coming-page .btn--safari-ticket .btn__ticket-stamp {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .coming-page .coming__ratings > a {
    width: 140px;
    padding-inline: 9px;
  }
}
