/* Scroll reveal states; enabled only after JavaScript sets up the observer. */
.scroll-reveal.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease var(--reveal-delay, 0ms),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.scroll-reveal.scroll-visible, .scroll-reveal:focus-within {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) .scroll-reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .scroll-reveal.scroll-reveal { opacity: 1; transform: none; transition: none; }
}

/* Subtle pointer interactions complement the one-time scroll reveals. */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .recipe-visual .recipe-photo {
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .recipe-card:hover .recipe-photo { transform: scale(1.035); }
  .recipe-card { transition: box-shadow 350ms ease; }
  .recipe-card:hover { box-shadow: 0 18px 42px rgba(33, 29, 20, 0.12); }
}
/* Photo cards and responsive page headings */
.recipe-visual .recipe-photo {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.recipe-visual::before, .recipe-visual::after { display: none; }

.shake-hero .image-caption { display: none; }
.subpage-hero-copy { min-width: 0; container-type: inline-size; }
.subpage-hero .subpage-hero-copy h1 {
  font-size: clamp(2rem, 12.8cqi, 5.8rem);
  overflow-wrap: normal;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
:root {
  --image-shape: 22% 4% 22% 4%;
  --ink: #171712;
  --ink-soft: #24231e;
  --paper: #f3ede2;
  --paper-deep: #e8dece;
  --white: #fffdf8;
  --gold: #d1a249;
  --gold-light: #e6c377;
  --terracotta: #a85f43;
  --olive: #6f7457;
  --line: rgba(23, 23, 18, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(33, 29, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#main-content,
#paths,
#about,
#contact,
#impressum,
#datenschutz {
  scroll-margin-top: 92px;
}

body,
button,
a {
  font-family: var(--sans);
}

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.025em;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.section-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.eyebrow,
.hero-kicker,
.card-label {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker,
.eyebrow-light {
  color: var(--gold-light);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

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

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--terracotta);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.text-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(23, 23, 18, .12);
}

.text-link-light {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.text-link-light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
}
.text-link:focus-visible, .button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}
.text-link-light:focus-visible { outline-color: var(--gold-light); }

/* Header */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(18, 18, 14, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.nav-shell {
  display: flex;
  width: min(100% - 48px, 1320px);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand-mark {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.18em;
  line-height: 1;
}

.brand-mark span:last-child {
  position: relative;
  top: 4px;
}

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

.desktop-nav a,
.instagram-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desktop-nav a { font-size: 0.875rem; font-weight: 500; line-height: 1.4; letter-spacing: 0.06em; }

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}


.instagram-link {
  gap: 8px;
  text-transform: none;
}

.instagram-dot {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--gold-light);
  border-radius: 5px;
}

.instagram-dot::before,
.instagram-dot::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.instagram-dot::before {
  width: 5px;
  height: 5px;
  top: 4.5px;
  left: 4.5px;
  border: 1px solid var(--gold-light);
}

.instagram-dot::after {
  width: 2px;
  height: 2px;
  top: 2px;
  right: 2px;
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
}

.mobile-menu nav {
  display: grid;
  width: min(100% - 48px, 720px);
  margin-inline: auto;
  padding: 18px 0 30px;
}

.mobile-menu a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.mobile-menu a.is-active {
  color: var(--gold-light);
}

/* Home hero */

.home-hero {
  position: relative;
  min-height: max(720px, calc(100svh - 74px));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.2s ease both;
}

.home-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 13, 10, 0.95) 0%, rgba(13, 13, 10, 0.78) 34%, rgba(13, 13, 10, 0.15) 67%, rgba(13, 13, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 13, 10, 0.36), transparent 45%);
}

.home-hero-content {
  display: flex;
  min-height: max(720px, calc(100svh - 74px));
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 76px;
  padding-bottom: 50px;
  animation: contentRise 900ms 100ms ease both;
}

.display-name {
  display: flex;
  margin-bottom: 25px;
  flex-direction: column;
  color: var(--white);
  font-size: clamp(5.1rem, 10.5vw, 10.25rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.display-name span:last-child {
  margin-left: clamp(34px, 7vw, 108px);
  color: var(--gold-light);
  font-style: italic;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.25;
}

.hero-copy {
  max-width: 510px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-scroll > span {
  position: relative;
  width: 40px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.hero-scroll > span::after {
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  content: "";
  animation: lineTravel 2s infinite ease-in-out;
}

/* Home sections */

.paths-section,
.recipe-section,
.pillar-section,
.steps-section,
.fit-section,
.about-section {
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(23, 23, 18, 0.68);
}

.two-column-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-centered h2 {
  margin-inline: auto;
}

.path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 22px;
}

.path-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.path-card-shake {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
}

.path-card-media {
  overflow: hidden;
  aspect-ratio: 1.15;
  min-height: 0;
}

.path-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.path-card:hover .path-card-media img {
  transform: scale(1.025);
}

.path-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(30px, 5vw, 58px);
}

.path-card-content h3 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
}

.path-card-content > p:not(.card-label) {
  max-width: 520px;
  margin-bottom: 25px;
  color: rgba(23, 23, 18, 0.66);
}

.path-card-opportunity {
  display: flex;
  min-height: 640px;
  background: var(--ink-soft);
  color: var(--white);
}

.path-card-opportunity .path-card-content {
  justify-content: flex-start;
}

.path-card-opportunity .path-card-content > p:not(.card-label) {
  color: rgba(255, 255, 255, 0.67);
}

.path-card-arch {
  position: absolute;
  right: clamp(26px, 5vw, 64px);
  bottom: -118px;
  left: clamp(26px, 5vw, 64px);
  display: grid;
  height: 330px;
  place-items: center;
  border: 1px solid rgba(209, 162, 73, 0.62);
  border-radius: var(--image-shape);
  background:
    radial-gradient(circle at 50% 20%, rgba(209, 162, 73, 0.23), transparent 56%),
    #1b1a16;
}

.path-card-arch span {
  margin-top: -68px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 4.4rem;
  letter-spacing: -0.12em;
}

.values-section {
  padding: clamp(84px, 10vw, 146px) 0;
  background: var(--paper-deep);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  min-height: 330px;
  padding: 38px clamp(24px, 4vw, 48px) 36px;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-number {
  display: block;
  margin-bottom: 72px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.value-card h3 {
  margin-bottom: 16px;
}

.value-card p {
  color: rgba(23, 23, 18, 0.66);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: 67% center;
  border-radius: var(--image-shape);
  box-shadow: var(--shadow);
}

.about-stamp {
  position: absolute;
  right: -16px;
  bottom: 30px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.about-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(23, 23, 18, 0.7);
}

.about-copy .text-link {
  margin-top: 16px;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 170px) 0;
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
}

.quote-section::before,
.quote-section::after {
  position: absolute;
  width: 300px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--image-shape);
  content: "";
}

.quote-section::before {
  top: -180px;
  left: -80px;
  transform: rotate(24deg);
}

.quote-section::after {
  right: -60px;
  bottom: -250px;
  transform: rotate(-22deg);
}

.quote-mark {
  display: block;
  height: 60px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 16px auto 34px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.quote-section p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Subpage hero */

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0 clamp(80px, 10vw, 142px);
  background: var(--ink);
  color: var(--white);
}

.subpage-hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 520px;
  height: 650px;
  border: 1px solid rgba(209, 162, 73, 0.2);
  border-radius: var(--image-shape);
  content: "";
  transform: rotate(-18deg);
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 116px);
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(48px, 7vw, 88px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--gold-light);
}

.subpage-hero-copy h1 {
  max-width: 630px;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: clamp(4.2rem, 8vw, 8rem);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.subpage-hero-copy .hero-lead {
  margin-bottom: 16px;
}

.subpage-hero-copy > p:not(.hero-kicker, .hero-lead) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.arch-image {
  position: relative;
}

.arch-image img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: 48% center;
  border: 1px solid rgba(230, 195, 119, 0.72);
  border-radius: var(--image-shape);
}

.opportunity-portrait img {
  object-position: 69% center;
}

.image-caption {
  position: absolute;
  right: -18px;
  bottom: 30px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom right;
}

/* Shake */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recipe-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.recipe-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1.06;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #534332, #1d1b17 70%);
}

.recipe-visual::before,
.recipe-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.recipe-visual::before {
  width: 190px;
  height: 190px;
  right: -76px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.recipe-visual-02 {
  background:
    radial-gradient(circle at 20% 22%, rgba(198, 86, 93, 0.75) 0 9px, transparent 10px),
    radial-gradient(circle at 78% 70%, rgba(98, 95, 144, 0.8) 0 12px, transparent 13px),
    linear-gradient(145deg, #7e3f4c, #20191c 72%);
}

.recipe-visual-03 {
  background:
    radial-gradient(circle at 74% 28%, rgba(196, 129, 66, 0.42), transparent 24%),
    linear-gradient(145deg, #65412f, #1b1512 74%);
}



.recipe-card-copy {
  padding: 30px 28px 34px;
}

.recipe-card-copy h3 {
  margin-bottom: 14px;
}

.recipe-card-copy > p:not(.card-label) {
  color: rgba(23, 23, 18, 0.66);
}

.recipe-card-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.recipe-card-copy li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.7rem;
  line-height: 1.2;
}

.foundation-section,
.process-section,
.opportunity-final {
  padding: clamp(88px, 11vw, 156px) 0;
  background: var(--ink-soft);
  color: var(--white);
}

.foundation-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 126px);
}

.foundation-image img {
  aspect-ratio: 0.86;
  object-position: 33% center;
}

.foundation-copy h2,
.process-intro h2,
.opportunity-final h2 {
  margin-bottom: 42px;
}

.benefit-list {
  border-top: 1px solid var(--line-light);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.benefit-list article > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-list h3,
.benefit-list p {
  margin-bottom: 5px;
}

.benefit-list h3 {
  font-size: 1.45rem;
}

.benefit-list p {
  color: rgba(255, 255, 255, 0.64);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.step-card > span {
  display: block;
  margin-bottom: 82px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-card h3 {
  margin-bottom: 14px;
}

.step-card p {
  color: rgba(23, 23, 18, 0.66);
}

.content-note {
  max-width: 820px;
  margin: 34px auto 0;
  color: rgba(23, 23, 18, 0.56);
  font-size: 0.78rem;
  text-align: center;
}

.page-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  padding-top: clamp(78px, 9vw, 128px);
  padding-bottom: clamp(78px, 9vw, 128px);
  border-top: 1px solid var(--line);
}

.page-cta h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.page-cta > div:last-child > p {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(23, 23, 18, 0.68);
}

/* Opportunity */

.opportunity-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.opportunity-pillars article {
  min-height: 360px;
  padding: 36px clamp(24px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
}

.opportunity-pillars article:last-child {
  border-right: 0;
}

.opportunity-pillars span {
  display: block;
  margin-bottom: 100px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
}

.opportunity-pillars h3 {
  margin-bottom: 16px;
}

.opportunity-pillars p {
  color: rgba(23, 23, 18, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 10vw, 142px);
}

.process-intro {
  position: sticky;
  top: 124px;
  align-self: start;
}

.process-intro p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.process-list p {
  color: rgba(255, 255, 255, 0.62);
}

.fit-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px 80px;
}

.fit-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--terracotta);
  font-weight: 700;
}

.transparency-note {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  margin-top: 46px;
  padding: 32px;
  border: 1px solid rgba(168, 95, 67, 0.38);
  background: rgba(168, 95, 67, 0.08);
}

.transparency-note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.transparency-note h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.transparency-note p {
  max-width: 900px;
  color: rgba(23, 23, 18, 0.68);
}

.faq-section {
  padding: clamp(86px, 11vw, 156px) 0;
  background: var(--paper-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.5rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--terracotta);
  font-family: var(--sans);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 46px 24px 0;
  color: rgba(23, 23, 18, 0.66);
}

.opportunity-final {
  background: var(--terracotta);
}

.opportunity-final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.opportunity-final-grid > div:last-child > p {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
}

/* Legal */

.legal-page {
  background: #ece4d8;
}

.legal-hero {
  padding: 66px 0 84px;
  background: var(--ink);
  color: var(--white);
}

.back-link-dark {
  margin-bottom: 54px;
}

.legal-hero h1 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.legal-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.legal-jump {
  display: none;
  gap: 10px;
  margin-top: 30px;
}

.legal-jump a {
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: 72px;
  padding-bottom: 120px;
}

.legal-aside {
  position: sticky;
  top: 118px;
  display: flex;
  height: fit-content;
  flex-direction: column;
}

.legal-aside p {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-aside a {
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-aside span {
  margin-top: 24px;
  color: rgba(23, 23, 18, 0.54);
  font-size: 0.72rem;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-card {
  scroll-margin-top: 106px;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(23, 23, 18, 0.16);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(33, 29, 20, 0.06);
}

.legal-card h2 {
  margin-bottom: 48px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.legal-card h3 {
  margin: 36px 0 12px;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-card p,
.legal-card address {
  max-width: 850px;
  color: rgba(23, 23, 18, 0.76);
  font-style: normal;
  overflow-wrap: anywhere;
}

.legal-card a {
  color: #7b462f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-columns h3 {
  margin-top: 0;
}

.legal-intro {
  margin-bottom: 44px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

/* Footer */

.site-footer {
  background: #11110e;
  color: var(--white);
}

.footer-cta {
  padding-top: clamp(84px, 10vw, 142px);
  padding-bottom: clamp(76px, 9vw, 126px);
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 74px;
}

.footer-cta-grid h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.3rem);
}

.footer-cta-grid > div > p {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 100px;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.brand-mark-footer {
  justify-self: start;
}

.footer-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer-bottom nav {
  display: flex;
  justify-self: end;
  gap: 22px;
}

.footer-bottom nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.footer-bottom nav a:hover {
  color: var(--gold-light);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes contentRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineTravel {
  0% { transform: translateX(-105%); }
  65%, 100% { transform: translateX(105%); }
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a:last-child {
    display: none;
  }

  .home-hero-image {
    object-position: 56% center;
  }

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

  .path-card {
    min-height: 610px;
  }

  .subpage-hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(350px, 1.04fr);
    gap: 48px;
  }

  .recipe-card-copy {
    padding-inline: 22px;
  }

  .foundation-grid,
  .process-grid {
    gap: 64px;
  }

  .footer-cta-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .nav-shell,
  .mobile-menu nav {
    width: min(100% - 36px, 720px);
  }

  .desktop-nav,
  .instagram-link span:last-child {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    gap: 12px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero-image {
    object-position: 63% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 13, 10, 0.9) 0%, rgba(13, 13, 10, 0.68) 54%, rgba(13, 13, 10, 0.18) 100%),
      linear-gradient(0deg, rgba(13, 13, 10, 0.48), transparent 50%);
  }

  .home-hero-content {
    min-height: 760px;
  }

  .display-name {
    font-size: clamp(4.9rem, 14vw, 7.3rem);
  }

  .two-column-heading,
  .page-cta,
  .opportunity-final-grid,
  .footer-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .path-grid,
  .about-section,
  .subpage-hero-grid,
  .foundation-grid,
  .process-grid,
  .fit-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .path-card-shake {
    min-height: 660px;
  }

  .path-card-opportunity {
    min-height: 560px;
  }

  .values-grid,
  .recipe-grid,
  .steps-grid,
  .opportunity-pillars {
    grid-template-columns: 1fr;
  }

  .value-card,
  .opportunity-pillars article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child,
  .opportunity-pillars article:last-child {
    border-bottom: 0;
  }

  .value-number,
  .opportunity-pillars span {
    margin-bottom: 36px;
  }

  .about-image-wrap {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .about-image-wrap img {
    aspect-ratio: 1.05;
    border-radius: var(--image-shape);
  }

  .subpage-hero-copy {
    order: 1;
  }

  .subpage-hero-media {
    order: 2;
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .arch-image img {
    aspect-ratio: 1.15;
  }

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

  .recipe-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .foundation-image {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .process-intro {
    position: static;
  }

  .fit-list {
    margin-top: 20px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    display: none;
  }

  .legal-jump {
    display: flex;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr;
    padding: 24px 0;
  }

  .footer-bottom > p {
    text-align: right;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 14px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .nav-shell,
  .mobile-menu nav {
    width: min(100% - 28px, 560px);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 3.75rem);
  }

  .nav-shell {
    min-height: 68px;
  }

  .instagram-link {
    display: none;
  }

  .home-hero,
  .home-hero-content {
    min-height: calc(100svh - 68px);
  }

  .home-hero {
    min-height: 710px;
  }

  .home-hero-content {
    min-height: 710px;
    justify-content: flex-end;
    padding-top: 110px;
    padding-bottom: 42px;
  }

  .home-hero-image {
    object-position: 68% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 13, 10, 0.96) 0%, rgba(13, 13, 10, 0.79) 42%, rgba(13, 13, 10, 0.08) 82%),
      linear-gradient(90deg, rgba(13, 13, 10, 0.25), transparent);
  }

  .display-name {
    margin-bottom: 22px;
    font-size: clamp(4.25rem, 22vw, 6.5rem);
    line-height: 0.76;
  }

  .display-name span:last-child {
    margin-left: 20px;
  }

  .hero-lead {
    font-size: 1.38rem;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .home-hero .button-row,
  .opportunity-final .button-row,
  .footer-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero .button,
  .opportunity-final .button,
  .footer-cta .button {
    width: 100%;
  }

  .hero-scroll {
    margin-top: 28px;
  }

  .path-card-shake {
    min-height: 610px;
  }

  .path-card-content {
    padding: 30px 24px;
  }

  .path-card-content h3 {
    font-size: 2.4rem;
  }

  .path-card-opportunity {
    min-height: 500px;
  }

  .path-card-arch {
    bottom: -165px;
  }

  .value-card {
    padding: 30px 10px;
  }

  .about-image-wrap img {
    aspect-ratio: 0.9;
  }

  .about-stamp {
    right: -4px;
    width: 104px;
    height: 104px;
    font-size: 0.56rem;
  }

  .quote-section blockquote {
    font-size: 2.3rem;
  }

  .subpage-hero {
    padding-top: 40px;
  }

  .back-link {
    margin-bottom: 38px;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }


  .arch-image img {
    aspect-ratio: 0.95;
    border-radius: var(--image-shape);
  }

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

  .recipe-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .recipe-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .recipe-visual {
    aspect-ratio: auto;
    min-height: 330px;
  }


  .recipe-card-copy {
    padding: 26px 20px;
  }

  .recipe-card-copy h3 {
    font-size: 1.65rem;
  }

  .recipe-card-copy li {
    font-size: 0.64rem;
  }

  .foundation-grid {
    gap: 46px;
  }

  .benefit-list article,
  .process-list li {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .step-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .step-card > span {
    margin-bottom: 42px;
  }

  .page-cta {
    padding-inline: 0;
  }

  .opportunity-pillars article {
    padding-inline: 10px;
  }

  .transparency-note {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 1.27rem;
  }

  .legal-hero {
    padding-top: 42px;
  }

  .legal-hero h1 {
    font-size: clamp(2.25rem, 12vw, 5.5rem);
    overflow-wrap: anywhere;
  }

  .legal-layout {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .legal-content {
    gap: 1px;
  }

  .legal-card {
    padding: 38px 20px 56px;
    border-right: 0;
    border-left: 0;
  }

  .legal-card h2 {
    margin-bottom: 36px;
  }

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

  .legal-card p,
  .legal-card address {
    font-size: 0.98rem;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 4px 18px;
  }
}

@media (max-width: 410px) {

  .nav-actions {
    gap: 6px;
  }

  .display-name {
    font-size: 4.05rem;
  }

  .recipe-card {
    grid-template-columns: 1fr;
  }

  .recipe-visual {
    min-height: 250px;
  }

  .legal-jump {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* One shared image treatment across all editorial sections. */
.about-image-wrap img,
.arch-image img {
  height: auto;
  aspect-ratio: 1;
  border-radius: var(--image-shape);
  border: 1px solid rgba(209, 162, 73, 0.45);
  box-shadow: var(--shadow);
}
.subpage-hero .image-caption { display: none; }
/* Shared controls, readable on desktop and mobile. */
.back-link > span[aria-hidden="true"] {
  display: inline-block;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.language-switch { display: flex; align-items: center; gap: 2px; }
.language-switch a { display: grid; place-items: center; min-width: 36px; min-height: 44px; font-size: .75rem; font-weight: 700; color: var(--white); text-decoration: none; }
.language-switch a[aria-current="true"] { color: var(--gold-light); text-decoration: underline; text-underline-offset: 6px; }
.about-intro { max-width: 760px; margin-inline: auto; padding-block: clamp(64px, 8vw, 110px); }
.about-intro h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.about-intro p:not(.eyebrow) { max-width: 680px; }
.subpage-hero-media img[src$="adrian-hero.jpg"] { object-position: 82% center; }
.arch-image img[src$="shake-ritual.jpg"] { object-position: left center; }
.foundation-image img[src$="shake-ingredients.webp"] { object-position: center; }
.foundation-grid > * { min-width: 0; }
.foundation-copy h2 { overflow-wrap: anywhere; hyphens: auto; }
.subpage-hero-grid { align-items: start; grid-template-rows: 44px auto; row-gap: 32px; }
.subpage-hero-grid > .back-link { grid-column: 1; grid-row: 1; margin: 0; }
.subpage-hero-grid > .subpage-hero-copy { grid-column: 1; grid-row: 2; }
.subpage-hero-grid > .subpage-hero-media { grid-column: 2; grid-row: 1 / 3; }
.subpage-hero .subpage-hero-copy h1 { min-height: 2.16em; }
/* A quiet utility control, separate from editorial calls to action. */
.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 900;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(230, 195, 119, .55);
  border-radius: 50%;
  background: rgba(23, 23, 18, .72);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, background 180ms ease, visibility 180ms;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: rgba(23, 23, 18, .95); }
.back-to-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 860px) {
  .subpage-hero-grid { grid-template-rows: 44px auto auto; }
  .subpage-hero-grid > .subpage-hero-media { grid-column: 1; grid-row: 3; }
  .subpage-hero-grid > .back-link { order: 0; }
  .subpage-hero .subpage-hero-copy h1 { min-height: 0; }
}
@media (max-width: 1050px) {
  .subpage-hero-copy .hero-kicker { min-height: 2lh; }
}
@media print { .back-to-top { display: none; } }
/* Commercial links remain separate from personal contact and readable at every width. */
.partner-actions { margin-top: 28px; }
.partner-actions .button-row { flex-wrap: wrap; gap: 12px; }
.button-ghost { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.6); }
.button-ghost:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }
.partner-notice { margin: 16px 0 8px; font-size: .875rem; line-height: 1.65; color: #dedbd3; max-width: 65ch; }
.partner-notice strong { font-weight: 700; }
.partner-meta { margin: 0; font-size: .8125rem; line-height: 1.65; color: #dedbd3; }
.partner-meta a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.partner-meta a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.partner-registration { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(230,195,119,.35); }
.partner-registration h3 { margin: 10px 0 16px; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; }
.partner-registration > .button { margin-top: 10px; }
.partner-registration .partner-notice { margin-top: 18px; font-size: .875rem; line-height: 1.65; }
.partner-registration .partner-meta { font-size: .8125rem; }
.partner-registration .partner-notice,
.partner-registration .partner-meta,
.partner-registration .partner-meta a { color: var(--white); }
.legal-card #partnerlinks { scroll-margin-top: 110px; }
@media (max-width: 600px) {
  .partner-actions .button-row > .button,
  .partner-registration > .button { width: 100%; white-space: normal; text-align: center; }
}
@media (max-width: 1100px) { .nav-shell { gap: 20px; } .desktop-nav { gap: 22px; } .nav-actions { gap: 14px; } }
@media (max-width: 420px) { .nav-actions { gap: 10px; } .language-switch a { min-width: 32px; } }
