:root {
  --paper: #f7efe7;
  --paper-strong: #f2e5d8;
  --paper-deep: #ead6c7;
  --ink: #241d1a;
  --muted: #6f625a;
  --line: rgba(146, 100, 73, 0.18);
  --accent: #9d1c1f;
  --accent-deep: #7f1216;
  --accent-soft: rgba(157, 28, 31, 0.08);
  --white: #fffaf6;
  --shadow: 0 28px 70px rgba(123, 59, 32, 0.11);
  --font-display: "Cormorant Garamond", serif;
  --font-ui: "Inter", sans-serif;
  --page-width: min(1160px, calc(100vw - 240px));
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.8), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 231, 214, 0.65), transparent 24%),
    linear-gradient(180deg, #fbf6f0 0%, #f7efe7 42%, #f5ede5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 50% -10%, rgba(194, 62, 41, 0.08), transparent 26%),
    radial-gradient(circle at 12% 76%, rgba(211, 193, 183, 0.35), transparent 20%),
    radial-gradient(circle at 88% 88%, rgba(211, 193, 183, 0.28), transparent 18%);
}

body::after {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 92%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 240, 0.78);
  border-bottom: 1px solid rgba(148, 99, 74, 0.1);
}

.header-inner {
  width: var(--page-width);
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-text,
.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 2rem + 0.5vw, 2.9rem);
  color: var(--accent);
  letter-spacing: -0.03em;
}

.brand-seal {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #be5041 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(157, 28, 31, 0.16);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 2vw, 38px);
}

.site-nav a,
.ghost-link {
  color: #3f352f;
  font-size: 1rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}

.music-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(157, 28, 31, 0.16);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.8);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(122, 65, 41, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.music-toggle:hover,
.music-toggle.is-active {
  transform: translateY(-1px);
  background: rgba(157, 28, 31, 0.08);
  box-shadow: 0 14px 26px rgba(122, 65, 41, 0.12);
}

.primary-link,
.cta-primary,
.sign-link-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(122, 22, 25, 0.18);
}

.primary-link {
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 600;
}

.ghost-link {
  transition: color 200ms ease;
}

.ghost-link:hover {
  color: var(--accent);
}

.user-menu-container {
  position: relative;
}

.nav-auth-dropdown-wrap {
  position: relative;
}

.nav-auth-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-auth-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(336px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(157, 28, 31, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 243, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(122, 65, 41, 0.14);
  z-index: 44;
}

.nav-auth-dropdown-head {
  margin-bottom: 12px;
}

.nav-auth-dropdown-head h3 {
  margin: 0;
  color: #2d241f;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.nav-auth-dropdown-head p {
  margin: 8px 0 0;
  color: #6f625a;
  font-size: 0.88rem;
  line-height: 1.5;
}

.nav-auth-form {
  display: grid;
  gap: 10px;
}

.nav-auth-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nav-auth-field {
  position: relative;
}

.nav-auth-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px 0 36px;
  border: 1px solid rgba(157, 28, 31, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.82);
  color: #3f352f;
  font: inherit;
  font-size: 0.9rem;
}

.nav-auth-field input:focus {
  outline: none;
  border-color: rgba(157, 28, 31, 0.34);
  box-shadow: 0 0 0 4px rgba(157, 28, 31, 0.08);
}

.nav-auth-field i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #8f7567;
  font-size: 0.9rem;
}

.nav-auth-submit,
.nav-auth-google {
  min-height: 46px;
  border-radius: 14px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-auth-submit {
  border: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
}

.nav-auth-google {
  border: 1px solid rgba(157, 28, 31, 0.22);
  background: rgba(255, 252, 248, 0.9);
  color: #2d241f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-auth-links a {
  color: #7b6860;
  font-size: 0.78rem;
}

.nav-auth-links a:hover {
  color: var(--accent);
}

.nav-auth-message {
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.nav-auth-message[data-error="true"] {
  color: #922b21;
  background: rgba(157, 28, 31, 0.08);
  border: 1px solid rgba(157, 28, 31, 0.14);
}

.nav-auth-message[data-error="false"] {
  color: #28553b;
  background: rgba(95, 122, 104, 0.1);
  border: 1px solid rgba(95, 122, 104, 0.16);
}

.user-menu-btn {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(157, 28, 31, 0.14);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.82);
  color: #3f352f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(122, 65, 41, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.user-menu-btn:hover,
.user-menu-btn[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(157, 28, 31, 0.24);
  box-shadow: 0 16px 32px rgba(122, 65, 41, 0.12);
}

.user-menu-btn .fa-circle-user {
  color: var(--accent);
  font-size: 1.18rem;
}

.user-menu-btn .fa-chevron-down {
  font-size: 0.8rem;
  color: #8f7567;
  transition: transform 180ms ease;
}

.user-menu-btn[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 10px 0;
  border: 1px solid rgba(157, 28, 31, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 249, 243, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(122, 65, 41, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #4b3f39;
  font-size: 0.96rem;
  transition: background 180ms ease, color 180ms ease;
}

.user-dropdown a:hover {
  background: rgba(157, 28, 31, 0.06);
  color: var(--accent);
}

.user-dropdown i {
  width: 18px;
  color: var(--accent);
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  margin: 8px 14px;
  background: rgba(157, 28, 31, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(157, 28, 31, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--accent);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero,
.signs-section,
.site-footer {
  width: var(--page-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(420px, 0.72fr);
  gap: 88px;
  align-items: center;
  padding: 48px 0 36px;
  min-height: calc(100vh - 114px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.signs-section h2 {
  margin: 0;
  color: #1f1816;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.55rem, 3rem + 0.8vw, 4.3rem);
  max-width: 390px;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.hero-accent {
  color: var(--accent);
}

.hero-script {
  color: var(--accent);
  font-style: italic;
}

.hero-star {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(157, 28, 31, 0.7);
  font-size: 1.1rem;
}

.hero-text,
.section-intro,
.footer-brand p,
.footer-column p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-text {
  max-width: 380px;
  margin: 24px 0 0;
  font-size: 0.9rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.cta-primary,
.cta-secondary,
.pill-link,
.sign-link,
.view-all-link {
  min-height: 62px;
  padding: 0 32px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta-secondary,
.pill-link,
.sign-link,
.view-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(157, 28, 31, 0.2);
  background: rgba(255, 252, 248, 0.52);
  color: var(--accent);
}

.cta-secondary {
  border: 0;
  border-radius: 0;
  background: transparent;
  justify-content: flex-start;
  padding: 0;
  min-height: auto;
  box-shadow: none;
  position: relative;
}

.cta-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(157, 28, 31, 0.38);
}

.hero-art {
  position: relative;
  min-height: 500px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 0 0;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: saturate(0.96);
}

@media (min-width: 1500px) {
  :root {
    --page-width: min(1120px, calc(100vw - 300px));
  }

  .hero {
    grid-template-columns: minmax(320px, 0.62fr) minmax(400px, 0.68fr);
    gap: 104px;
    padding: 56px 0 42px;
    min-height: calc(100vh - 122px);
  }

  .hero-copy {
    max-width: 350px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 2.75rem + 0.55vw, 3.9rem);
    max-width: 350px;
  }

  .hero-text {
    max-width: 340px;
    margin-top: 22px;
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-art {
    min-height: 460px;
    max-width: 460px;
    margin: 0 auto;
  }
}

.hero-art::before,
.hero-art::after {
  content: none;
}

.hero-art-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.hero-orbit,
.hero-sun,
.hero-mountains,
.hero-bamboo,
.hero-cloud,
.orbit-marker,
.orbit-animal {
  position: absolute;
}

.hero-cloud {
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.9) 0 24%, transparent 25%),
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.92) 0 28%, transparent 29%),
    radial-gradient(circle at 76% 54%, rgba(255, 255, 255, 0.86) 0 22%, transparent 23%);
  filter: blur(7px);
  opacity: 0.9;
}

.hero-cloud-left {
  left: -2%;
  bottom: 210px;
  width: 240px;
  height: 84px;
}

.hero-cloud-right {
  right: -1%;
  top: 126px;
  width: 180px;
  height: 72px;
  opacity: 0.72;
}

.hero-cloud-bottom {
  left: 12%;
  right: 8%;
  bottom: 84px;
  height: 110px;
  opacity: 0.8;
}

.hero-orbit {
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 115, 0.7);
  opacity: 0.72;
  box-shadow: 0 0 0 1px rgba(255, 253, 250, 0.35) inset;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(225, 190, 146, 0.35);
}

.orbit-marker {
  left: 50%;
  top: 46%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: rgba(223, 182, 130, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 247, 239, 0.62);
}

.marker-1 { transform: translate(0, -334px); }
.marker-2 { transform: translate(168px, -290px); }
.marker-3 { transform: translate(290px, -168px); }
.marker-4 { transform: translate(334px, 0); }
.marker-5 { transform: translate(290px, 168px); }
.marker-6 { transform: translate(168px, 290px); }
.marker-7 { transform: translate(0, 334px); }
.marker-8 { transform: translate(-168px, 290px); }
.marker-9 { transform: translate(-290px, 168px); }
.marker-10 { transform: translate(-334px, 0); }
.marker-11 { transform: translate(-290px, -168px); }
.marker-12 { transform: translate(-168px, -290px); }

.hero-orbit-outer {
  width: 668px;
  height: 668px;
}

.hero-orbit-mid {
  width: 504px;
  height: 504px;
}

.hero-orbit-inner {
  width: 344px;
  height: 344px;
}

.hero-sun {
  left: 50%;
  top: 50%;
  width: 204px;
  height: 204px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffab72 0%, #df5330 38%, #b11e18 72%, #8d1417 100%);
  box-shadow:
    0 0 70px rgba(209, 73, 50, 0.22),
    0 0 0 22px rgba(219, 134, 99, 0.07);
}

.hero-sun-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 195, 156, 0.55) 0%, rgba(255, 195, 156, 0) 68%);
}

.hero-mountains {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(201, 208, 211, 0.9) 100%);
  filter: blur(0.2px);
}

.hero-mountains-back {
  bottom: 208px;
  width: 382px;
  height: 176px;
  clip-path: polygon(0 100%, 18% 53%, 30% 69%, 50% 28%, 66% 67%, 77% 44%, 100% 100%);
  opacity: 0.55;
}

.hero-mountains-front {
  bottom: 160px;
  width: 458px;
  height: 192px;
  clip-path: polygon(0 100%, 16% 64%, 28% 78%, 42% 40%, 60% 80%, 73% 54%, 100% 100%);
  opacity: 0.76;
}

.hero-bamboo {
  right: 162px;
  bottom: 232px;
  width: 76px;
  height: 188px;
  background:
    linear-gradient(90deg, transparent 0 27%, rgba(92, 124, 74, 0.9) 27% 36%, transparent 36% 55%, rgba(123, 148, 98, 0.9) 55% 64%, transparent 64% 100%);
  opacity: 0.62;
}

.hero-bamboo::before,
.hero-bamboo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(118, 142, 96, 0.75) 0 8%, transparent 9%),
    radial-gradient(circle at 32% 36%, rgba(118, 142, 96, 0.75) 0 8%, transparent 9%),
    radial-gradient(circle at 52% 12%, rgba(118, 142, 96, 0.75) 0 8%, transparent 9%),
    radial-gradient(circle at 72% 32%, rgba(118, 142, 96, 0.75) 0 8%, transparent 9%);
}

.orbit-animal {
  width: 112px;
  height: 112px;
  padding: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 242, 0.16) 72%, rgba(255, 248, 242, 0) 100%);
  display: grid;
  place-items: center;
  transition: transform 300ms ease;
  overflow: hidden;
}

.orbit-animal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(1.08) brightness(0.99);
  mask-image: radial-gradient(circle, black 48%, rgba(0, 0, 0, 0.92) 58%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, black 48%, rgba(0, 0, 0, 0.92) 58%, transparent 75%);
}

.animal-rat img,
.animal-ox img,
.animal-tiger img,
.animal-rabbit img,
.animal-loong img,
.animal-snake img,
.animal-horse img,
.animal-goat img,
.animal-monkey img,
.animal-rooster img,
.animal-dog img,
.animal-pig img {
  transform: scale(1.06);
}

.hero-art:hover .orbit-animal {
  transform: scale(1.03);
}

.animal-rat { left: 11%; top: 14%; }
.animal-ox { left: 31%; top: 2%; }
.animal-tiger { left: 59%; top: 2%; }
.animal-rabbit { right: 5%; top: 16%; }
.animal-loong { right: 0; top: 40%; }
.animal-snake { right: 12%; bottom: 12%; }
.animal-horse { left: 57%; bottom: 1%; }
.animal-goat { left: 27%; bottom: 2%; }
.animal-monkey { left: 7%; bottom: 16%; }
.animal-rooster { left: -1%; top: 41%; }
.animal-dog { left: 19%; top: 58%; }
.animal-pig { right: 23%; top: 59%; }

.hero::after,
.signs-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  left: -8%;
  right: -8%;
  bottom: -24px;
  height: 188px;
  background:
    radial-gradient(circle at 15% 55%, rgba(255, 255, 255, 0.78) 0, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 84% 58%, rgba(255, 255, 255, 0.76) 0, rgba(255, 255, 255, 0) 32%);
  filter: blur(18px);
}

.signs-section {
  position: relative;
  padding: 76px 0 84px;
  border-top: 1px solid rgba(146, 100, 73, 0.12);
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 255, 255, 0.36), transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(255, 236, 226, 0.3), transparent 26%);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.signs-section h2 {
  font-size: clamp(3.15rem, 2.8rem + 0.85vw, 4.15rem);
}

.section-title-wrap {
  max-width: 720px;
}

.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.pill-link {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.92rem;
  background: rgba(255, 251, 246, 0.78);
  box-shadow: 0 12px 28px rgba(122, 65, 41, 0.08);
}

.section-intro {
  max-width: 620px;
  margin: 14px 0 34px;
  font-size: 0.98rem;
  line-height: 1.74;
}

.sign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sign-card {
  position: relative;
  min-height: 520px;
  padding: 16px 16px 20px;
  border: 1px solid rgba(160, 98, 78, 0.15);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 249, 243, 0.98) 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sign-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 250, 245, 0.84) 100%);
  pointer-events: none;
}

.sign-card::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 138px;
  border-radius: 18px 18px 60px 60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(231, 236, 237, 0.85) 0 18%, transparent 19%),
    radial-gradient(circle at 72% 16%, rgba(231, 236, 237, 0.82) 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.75;
  pointer-events: none;
}

.sign-card-featured {
  border-color: rgba(157, 28, 31, 0.28);
  box-shadow: 0 30px 74px rgba(124, 43, 27, 0.16);
}

.sign-card-featured::before {
  height: 152px;
  border-radius: 18px 18px 72px 72px;
}

.sign-number {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sign-illustration {
  position: relative;
  flex: 1;
  margin: 10px 0 12px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(222, 229, 231, 0.65) 0%, transparent 40%),
    linear-gradient(180deg, rgba(244, 245, 242, 0.72) 0%, rgba(250, 244, 238, 0.9) 100%);
}

.sign-illustration::before,
.sign-illustration::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sign-illustration::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(219, 226, 229, 0.85) 0 14%, transparent 15%),
    radial-gradient(circle at 84% 26%, rgba(219, 226, 229, 0.8) 0 13%, transparent 14%),
    linear-gradient(180deg, transparent 0 74%, rgba(194, 206, 195, 0.55) 74% 100%);
  opacity: 0.5;
}

.sign-illustration::after {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.8) 0 16%, transparent 17%),
    radial-gradient(circle at 60% 82%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%);
  filter: blur(10px);
}

.sign-card-featured .sign-illustration::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(219, 226, 229, 0.78) 0 14%, transparent 15%),
    radial-gradient(circle at 84% 26%, rgba(219, 226, 229, 0.72) 0 13%, transparent 14%),
    linear-gradient(180deg, transparent 0 62%, rgba(190, 208, 182, 0.48) 62% 100%);
}

.sign-illustration img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transform: scale(1.01);
}

.sign-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.86rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.sign-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.sign-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.88rem;
}

.sign-link {
  align-self: stretch;
  min-height: 40px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  justify-content: space-between;
  box-shadow: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.sign-link-featured {
  min-height: 40px;
  padding: 0 14px;
  align-self: flex-start;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  justify-content: center;
  color: var(--white);
  box-shadow: 0 18px 35px rgba(122, 22, 25, 0.18);
}

.sign-link-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-width: 96px;
  margin-top: 0;
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.view-all-link {
  min-height: auto;
  padding: 0 0 8px;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}

.view-all-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(157, 28, 31, 0.36);
}

.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(146, 100, 73, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.42) 0%, rgba(255, 246, 240, 0.68) 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 52px;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 290px;
  font-size: 0.92rem;
  line-height: 1.72;
}

.footer-seal {
  margin-top: 10px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(157, 28, 31, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 252, 248, 0.7);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-column h4 {
  margin: 4px 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 8px;
  color: #443932;
  line-height: 1.55;
  font-size: 0.9rem;
}

.footer-column-manifesto {
  padding-left: 8px;
  border-left: 1px solid rgba(157, 28, 31, 0.14);
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.62;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(146, 100, 73, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  max-width: 680px;
  line-height: 1.55;
}

.v2-subpage .hero,
.subpage-main,
.subpage-hero,
.how-grid,
.explain-section,
.signs-library {
  width: var(--page-width);
  margin: 0 auto;
}

.subpage-main {
  padding: 58px 0 110px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 74px;
}

.subpage-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 1vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.subpage-lead,
.panel-note,
.how-card p,
.explain-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
}

.subpage-lead {
  max-width: 720px;
  margin: 26px 0 0;
}

.subpage-actions {
  display: flex;
  gap: 20px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.subpage-panel {
  padding: 30px 32px;
  border: 1px solid rgba(160, 98, 78, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 249, 243, 0.98) 100%);
  box-shadow: 0 24px 62px rgba(122, 65, 41, 0.09);
}

.story-ribbon {
  width: var(--page-width);
  margin: 0 auto 78px;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 24px;
}

.story-panel {
  padding: 28px 30px 32px;
  border: 1px solid rgba(160, 98, 78, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 249, 243, 0.96) 100%);
  box-shadow: 0 20px 54px rgba(122, 65, 41, 0.08);
}

.story-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.2rem + 0.7vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.story-panel p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.story-panel .eyebrow {
  margin-bottom: 14px;
}

.story-panel-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55) 0, transparent 28%),
    linear-gradient(180deg, rgba(157, 28, 31, 0.08) 0%, rgba(255, 249, 243, 0.96) 100%);
}

.story-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.7rem + 0.5vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #382923;
}

.panel-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-orbit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 18px;
}

.mini-orbit span,
.process-list li {
  border: 1px solid rgba(157, 28, 31, 0.15);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.72);
  padding: 10px 12px;
  color: #433730;
  font-size: 0.95rem;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

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

.sign-grid-full .sign-card {
  min-height: 690px;
}

.zodiac-story-hero {
  align-items: center;
  margin-bottom: 54px;
}

.zodiac-hero-stage {
  position: relative;
  min-height: 560px;
  animation: heroStageFloat 12s ease-in-out infinite;
}

.zodiac-hero-orbit,
.zodiac-hero-core,
.zodiac-hero-sign {
  position: absolute;
}

.zodiac-hero-orbit {
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 174, 132, 0.52);
  animation: orbitSpin 42s linear infinite;
}

.zodiac-hero-orbit-mid {
  width: 300px;
  height: 300px;
  animation-direction: reverse;
  animation-duration: 32s;
}

.zodiac-hero-core {
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffb07d 0%, #d84d2b 48%, #a61e1d 100%);
  box-shadow: 0 0 0 18px rgba(214, 136, 106, 0.08), 0 0 54px rgba(209, 73, 50, 0.16);
  animation: sunPulse 8s ease-in-out infinite;
}

.zodiac-hero-sign {
  width: 90px;
  height: 90px;
  padding: 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 242, 0.06) 72%, rgba(255, 248, 242, 0) 100%);
  animation: signFloat 8s ease-in-out infinite;
}

.zodiac-hero-sign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0.94) contrast(1.05);
  mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0.92) 58%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0.92) 58%, transparent 76%);
}

.sign-rat { left: 14%; top: 18%; }
.sign-ox { left: 34%; top: 6%; }
.sign-tiger { left: 58%; top: 4%; }
.sign-rabbit { right: 10%; top: 16%; }
.sign-loong { right: 6%; top: 38%; }
.sign-snake { right: 14%; bottom: 16%; }
.sign-horse { left: 58%; bottom: 8%; }
.sign-goat { left: 34%; bottom: 4%; }
.sign-monkey { left: 14%; bottom: 16%; }
.sign-rooster { left: 6%; top: 38%; }
.sign-dog { left: 24%; top: 58%; }
.sign-pig { right: 28%; top: 58%; }

.sign-ox,
.sign-rabbit,
.sign-snake,
.sign-monkey,
.sign-pig {
  animation-delay: -2s;
}

.sign-tiger,
.sign-loong,
.sign-horse,
.sign-dog {
  animation-delay: -4s;
}

.story-path {
  width: var(--page-width);
  margin: 0 auto 62px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.story-path-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.1rem + 0.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.story-path-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 0;
}

.story-path-line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 28, 31, 0.08) 0%, rgba(157, 28, 31, 0.42) 16%, rgba(157, 28, 31, 0.42) 84%, rgba(157, 28, 31, 0.08) 100%);
}

.story-path-line span {
  position: relative;
  display: block;
  padding-top: 18px;
  color: #6f5a50;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-path-line span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(157, 28, 31, 0.88);
  box-shadow: 0 0 0 8px rgba(157, 28, 31, 0.08);
}

.zodiac-chapters {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  gap: 78px;
}

.zodiac-chapter {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 34px 36px 42px;
  border: 1px solid rgba(160, 98, 78, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.36) 0, transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(255, 237, 226, 0.28) 0, transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 249, 243, 0.92) 100%);
  box-shadow: 0 24px 60px rgba(122, 65, 41, 0.07);
}

.zodiac-chapter::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 28, 31, 0) 0%, rgba(157, 28, 31, 0.22) 50%, rgba(157, 28, 31, 0) 100%);
}

.chapter-intro {
  max-width: 720px;
}

.chapter-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 2.9rem + 0.9vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.chapter-intro p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.chapter-grid {
  display: grid;
  gap: 22px;
}

.chapter-grid-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chapter-grid-wide {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.story-card {
  min-height: 560px;
}

.story-card-raised {
  transform: translateY(24px);
}

.story-card-wide {
  min-height: 600px;
}

.story-card-featured {
  box-shadow: 0 34px 78px rgba(124, 43, 27, 0.14);
}

.story-card-drift-left {
  transform: rotate(-1.6deg);
}

.story-card-drift-right {
  transform: rotate(1.8deg);
}

.story-card-drift-left:hover,
.story-card-drift-right:hover,
.story-card-raised:hover {
  transform: translateY(-6px) rotate(0deg);
}

.sign-story {
  margin: 16px 0 0;
  color: #7f5443;
  font-size: 1.04rem;
  line-height: 1.86;
  font-style: italic;
}

.sign-story::before {
  content: none;
}

.zodiac-chapters .sign-card {
  min-height: 590px;
  padding: 18px 18px 22px;
}

.zodiac-chapters .sign-card::before {
  height: 176px;
}

.zodiac-chapters .sign-illustration {
  margin: 14px 0 18px;
}

.zodiac-chapters .sign-illustration img {
  transform: scale(1.02);
}

.zodiac-chapters .sign-copy h3 {
  font-size: 2.28rem;
}

.zodiac-chapters .sign-meta {
  margin-top: 6px;
}

.zodiac-chapters .sign-link {
  margin-top: auto;
  padding-top: 16px;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes heroStageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes signFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 0 18px rgba(214, 136, 106, 0.08), 0 0 54px rgba(209, 73, 50, 0.16); }
  50% { box-shadow: 0 0 0 24px rgba(214, 136, 106, 0.11), 0 0 76px rgba(209, 73, 50, 0.22); }
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.how-card {
  padding: 30px 30px 34px;
  border: 1px solid rgba(160, 98, 78, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 249, 243, 0.98) 100%);
  box-shadow: 0 24px 58px rgba(122, 65, 41, 0.08);
}

.how-card h2,
.explain-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2.4rem + 0.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.how-card p {
  margin: 18px 0 0;
}

.diagram-section {
  width: var(--page-width);
  margin: 78px auto 0;
}

.diagram-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.diagram-node {
  padding: 26px 24px 28px;
  border: 1px solid rgba(160, 98, 78, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 249, 243, 0.96) 100%);
  box-shadow: 0 20px 52px rgba(122, 65, 41, 0.08);
}

.diagram-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(157, 28, 31, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.diagram-node h3 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.diagram-node p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.explain-section {
  margin-top: 80px;
}

.explain-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.is-menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
    gap: 24px;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-art {
    min-height: 680px;
    max-width: none;
    margin: 0;
    width: auto;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --page-width: min(100vw - 32px, 1220px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .site-nav {
    gap: 16px;
    justify-content: center;
  }

  .site-nav a,
  .ghost-link,
  .primary-link {
    font-size: 0.84rem;
  }

  .music-toggle {
    width: 40px;
    height: 40px;
  }

  .section-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 2.8rem + 2vw, 5rem);
  }

  .brand-text,
  .footer-logo {
    font-size: clamp(1.7rem, 1.5rem + 0.4vw, 2rem);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .header-actions {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.9fr);
    gap: 22px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 3.2rem + 1vw, 5.2rem);
  }

  .hero-text {
    font-size: 1rem;
    max-width: 460px;
  }

  .hero-art {
    min-height: 620px;
  }

  .hero-orbit-outer {
    width: 470px;
    height: 470px;
  }

  .hero-orbit-mid {
    width: 352px;
    height: 352px;
  }

  .hero-orbit-inner {
    width: 236px;
    height: 236px;
  }

  .hero-sun {
    width: 152px;
    height: 152px;
  }

  .orbit-animal {
    width: 88px;
    height: 88px;
  }

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

  .footer-column-manifesto {
    border-left: 0;
    padding-left: 0;
  }

  .nav-auth-dropdown-panel {
    right: auto;
    left: 0;
  }

  .nav-auth-row {
    grid-template-columns: 1fr;
  }
}
