@font-face {
  font-family: "DM Sans";
  src: url("/assets/DMSans-VariableFont_opsz_wght_024TU8xKTl_JWSQ8iEN-W.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0c10;
  --ink-soft: #14171d;
  --paper: #e9e5dc;
  --paper-soft: #f4f1ea;
  --muted: #8e8b84;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(10, 12, 16, 0.16);
  --accent: #c9b596;
  --header-height: 78px;
  --radius: 2px;
  --page: min(1240px, calc(100vw - 48px));
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 12, 16, .84);
  border-bottom-color: var(--line-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-shell {
  position: relative;
  width: var(--page);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 34px;
  height: 36px;
  opacity: .94;
  transition: opacity .25s ease;
}
.brand-mark:hover { opacity: .7; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 3vw, 46px);
  width: max-content;
  transform: translate(-50%, -50%);
}
.nav-links a,
.header-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
  font-size: .79rem;
  font-weight: 480;
  letter-spacing: .12em;
}
.nav-links a::after,
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .3s cubic-bezier(.2,.75,.25,1);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.header-contact:hover::after,
.header-contact:focus-visible::after { right: 0; }
.header-contact {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  min-width: 72px;
  text-align: right;
}
.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.is-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.is-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0b0c10;
}
.hero-media {
  position: absolute;
  inset: -3%;
  z-index: -3;
  background-image: url("/assets/Background_big-topaz-sharpen_little_3ZYJ52SvEmYM3iSy1o696.jpg");
  background-size: cover;
  background-position: center;
  animation: hero-drift 32s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, .48), rgba(6, 8, 11, .06) 38%, rgba(6, 8, 11, .72)),
    radial-gradient(circle at 50% 45%, transparent 0, rgba(4, 6, 9, .16) 52%, rgba(4, 6, 9, .48) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 80%, transparent);
}
@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(-.5%, -.5%, 0); }
  to { transform: scale(1.08) translate3d(.8%, .6%, 0); }
}
.hero-inner {
  width: var(--page);
  min-height: 100svh;
  margin: auto;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 30px) 0 88px;
}
.hero-logo-wrap {
  width: clamp(320px, 40vw, 600px);
  margin-top: -1.5vh;
  filter: drop-shadow(0 24px 54px rgba(0,0,0,.46));
  animation: hero-logo-float 11s ease-in-out infinite;
}
.hero-logo-interactive {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  transform-style: preserve-3d;
  transform: perspective(980px) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.hero-logo-stage {
  position: relative;
  width: 100%;
  isolation: isolate;
}
.hero-logo-image {
  position: relative;
  z-index: 8;
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%);
  animation: hero-logo-reveal 1.6s .12s both cubic-bezier(.2,.75,.2,1);
}
.hero-sun-bloom,
.hero-sun-halo,
.hero-sun-glow,
.hero-sun-beam,
.hero-sun-flare,
.hero-sun-ghost {
  position: absolute;
  left: 39.7%;
  top: 28.3%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 999px;
}
.hero-sun-bloom {
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 230, 196, .16) 0%, rgba(228, 196, 126, .14) 20%, rgba(142, 119, 78, .08) 43%, rgba(10, 12, 16, 0) 74%);
  filter: blur(28px);
  opacity: .78;
  mix-blend-mode: screen;
  animation: hero-sun-bloom 12s ease-in-out infinite;
}
.hero-sun-halo {
  z-index: 2;
  width: 25%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 239, 220, .42) 0%, rgba(228, 210, 168, .18) 38%, rgba(228, 210, 168, 0) 72%);
  filter: blur(10px);
  opacity: .9;
  mix-blend-mode: screen;
  animation: hero-sun-halo 7.5s ease-in-out infinite;
}
.hero-sun-glow {
  z-index: 3;
  width: 11.8%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 251, 235, .98) 0%, rgba(255, 243, 205, .9) 22%, rgba(255, 218, 136, .46) 48%, rgba(255, 218, 136, 0) 76%);
  mix-blend-mode: screen;
  filter: blur(1.4px);
  box-shadow: 0 0 22px rgba(255, 229, 158, .36), 0 0 64px rgba(255, 229, 158, .18), 0 0 120px rgba(255, 210, 122, .12);
  animation: hero-sun-pulse 4.8s ease-in-out infinite;
}
.hero-sun-beam {
  z-index: 1;
  width: 58%;
  height: 9%;
  background: linear-gradient(90deg, rgba(255,244,214,0) 0%, rgba(255,236,184,.08) 14%, rgba(255,240,206,.4) 50%, rgba(255,236,184,.08) 86%, rgba(255,244,214,0) 100%);
  filter: blur(8px);
  opacity: .56;
  mix-blend-mode: screen;
  animation: hero-sun-beam 8.8s ease-in-out infinite;
}
.hero-sun-flare {
  z-index: 1;
  width: 54%;
  aspect-ratio: 1;
  background: conic-gradient(from 210deg, rgba(255,255,255,0) 0deg, rgba(255,244,210,.18) 26deg, rgba(255,255,255,0) 64deg, rgba(255,255,255,0) 360deg);
  mix-blend-mode: screen;
  opacity: .54;
  filter: blur(12px);
  animation: hero-sun-flare 9.5s linear infinite;
}
.hero-sun-ghost {
  background: radial-gradient(circle, rgba(255,245,218,.58) 0%, rgba(255,229,168,.26) 36%, rgba(255,223,160,0) 72%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: .24;
}
.hero-sun-ghost-1 {
  z-index: 4;
  left: 51.5%;
  top: 41.2%;
  width: 5.8%;
  aspect-ratio: 1;
  animation: hero-sun-ghost-1 6.8s ease-in-out infinite;
}
.hero-sun-ghost-2 {
  z-index: 4;
  left: 64.5%;
  top: 54.8%;
  width: 3.8%;
  aspect-ratio: 1;
  opacity: .18;
  animation: hero-sun-ghost-2 8.2s ease-in-out infinite;
}
.hero-sun-ghost-3 {
  z-index: 4;
  left: 77.5%;
  top: 69.4%;
  width: 2.4%;
  aspect-ratio: 1;
  opacity: .12;
  animation: hero-sun-ghost-3 9.4s ease-in-out infinite;
}
@keyframes hero-logo-reveal {
  from { opacity: 0; transform: translateY(18px) scale(.975); filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%) blur(6px); }
  to { opacity: 1; transform: none; filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%); }
}
@keyframes hero-sun-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .82; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes hero-sun-halo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .56; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: .95; }
}
@keyframes hero-sun-bloom {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .44; }
  50% { transform: translate(-50%, -50%) scale(1.07); opacity: .82; }
}
@keyframes hero-sun-beam {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scaleX(.96); opacity: .26; }
  50% { transform: translate(-50%, -50%) rotate(-1.6deg) scaleX(1.05); opacity: .72; }
}
@keyframes hero-sun-flare {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: .2; }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.04); opacity: .56; }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: .2; }
}
@keyframes hero-sun-ghost-1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .12; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: .28; }
}
@keyframes hero-sun-ghost-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .1; }
  50% { transform: translate(-50%, -50%) scale(1.14); opacity: .22; }
}
@keyframes hero-sun-ghost-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .06; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: .16; }
}
@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-quote {
  position: absolute;
  left: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  bottom: 48px;
  width: min(360px, calc(100vw - 150px));
  margin: 0;
  padding: 0 0 0 17px;
  border: 0;
  color: rgba(244, 241, 234, .72);
  font-size: clamp(.72rem, .9vw, .83rem);
  font-weight: 320;
  line-height: 1.62;
  letter-spacing: .035em;
  opacity: 0;
  filter: blur(.45px);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
  animation: hero-quote-reveal 1.4s 1.05s both cubic-bezier(.2,.75,.2,1);
}
.hero-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 1px;
  height: 31px;
  background: linear-gradient(to bottom, rgba(244,241,234,.72), rgba(244,241,234,.12));
}
.hero-quote span { display: block; }
.hero-quote cite {
  display: block;
  margin-top: 8px;
  color: rgba(244, 241, 234, .46);
  font-size: .61rem;
  font-style: normal;
  font-weight: 520;
  text-transform: uppercase;
  letter-spacing: .17em;
}
@keyframes hero-quote-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: .62; transform: translateY(0); }
}
.hero:hover .hero-quote,
.hero-quote:focus-within {
  opacity: .9;
  filter: none;
}
.hero-socials {
  position: absolute;
  right: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  bottom: 46px;
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.social-link { color: rgba(244,241,234,.78); }
.social-link:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.social-link svg { width: 15px; height: 15px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 1px;
  height: 55px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}
.scroll-cue::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--paper);
  animation: scroll-cue 2.3s ease-in-out infinite;
}
@keyframes scroll-cue { 0% { transform: translateY(0); } 60%,100% { transform: translateY(200%); } }

main { overflow: clip; }
.section { position: relative; padding: clamp(96px, 12vw, 176px) 0; }
.section-shell { width: var(--page); margin: 0 auto; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-soft { background: var(--paper-soft); color: var(--ink); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .2em;
}
.eyebrow::before { content: ""; width: 31px; height: 1px; background: currentColor; opacity: .45; }
.display-title {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 260;
  line-height: .84;
  letter-spacing: -.07em;
}
.section-title {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.7rem);
  font-weight: 280;
  line-height: .94;
  letter-spacing: -.055em;
}
.lead {
  font-size: clamp(1.08rem, 1.75vw, 1.36rem);
  font-weight: 330;
  line-height: 1.66;
}
.text-muted { color: color-mix(in srgb, currentColor 62%, transparent); }

.vision-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(50px, 9vw, 135px);
  align-items: end;
  margin-bottom: clamp(85px, 12vw, 160px);
}
.vision-copy { max-width: 590px; margin: 0 0 8px; }
.vision-copy p { margin: 0; }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 31px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.editorial-link::after { content: "↗"; font-size: 1rem; transition: transform .25s ease; }
.editorial-link:hover::after { transform: translate(3px, -3px); }

.feature-stack { display: grid; gap: clamp(88px, 12vw, 160px); }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}
.feature:nth-child(even) { grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media {
  position: relative;
  min-height: 420px;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #181b20;
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.feature:hover .feature-media img { transform: scale(1.035); }
.feature-number {
  display: block;
  margin-bottom: 36px;
  color: color-mix(in srgb, currentColor 45%, transparent);
  font-size: .67rem;
  letter-spacing: .18em;
}
.feature-title {
  margin: 0 0 30px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 280;
  line-height: .98;
  letter-spacing: -.055em;
}
.feature-copy { max-width: 520px; }
.feature-copy p { margin: 0; }

.quote-band {
  padding: clamp(100px, 15vw, 210px) 0;
  background: #111319;
  color: var(--paper);
  text-align: center;
}
.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.4vw, 4.9rem);
  font-weight: 250;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.quote-band cite {
  display: block;
  margin-top: 32px;
  font-size: .68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}

.immersive-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(350px, 1.08fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
  margin-bottom: clamp(70px, 10vw, 130px);
}
.immersive-copy { max-width: 650px; }
.immersive-copy p { margin: 0 0 26px; }
.immersive-copy p:last-child { margin-bottom: 0; }
.immersive-visual {
  position: relative;
  width: min(100%, 980px);
  margin-left: auto;
  aspect-ratio: 1.85 / 1;
  overflow: hidden;
}
.immersive-visual img { width: 100%; height: 100%; object-fit: cover; }
.immersive-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.immersive-visual-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(8,10,13,.74);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: .61rem;
  letter-spacing: .17em;
}

.vita-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}
.portrait-wrap {
  position: relative;
  max-width: 520px;
  aspect-ratio: .72 / 1;
  overflow: hidden;
  background: #12151a;
}
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .7s ease, transform 1s ease; }
.portrait-wrap:hover img { filter: grayscale(20%); transform: scale(1.025); }
.portrait-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); }
.vita-copy { max-width: 700px; }
.vita-copy .section-title { margin-bottom: 52px; }
.vita-copy p { margin: 0; }

.blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 68px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.blog-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  background: var(--paper-soft);
  text-decoration: none;
  transition: background .35s ease, color .35s ease;
}
.blog-card:hover { background: var(--ink); color: var(--paper); }
.blog-image { height: 250px; overflow: hidden; background: #1a1d22; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-content { flex: 1; display: flex; flex-direction: column; padding: 29px; }
.blog-meta { margin-bottom: 48px; text-transform: uppercase; font-size: .61rem; letter-spacing: .18em; opacity: .55; }
.blog-title { margin: auto 0 0; font-size: clamp(1.55rem, 2.4vw, 2.45rem); font-weight: 320; line-height: 1.08; letter-spacing: -.035em; }
.blog-arrow { margin-top: 28px; font-size: 1.25rem; }

.contact-section { overflow: hidden; }
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: url("/assets/Backgroundsmall_uVoKCUPeQ0mlv9bgczEUE.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.15);
}
.contact-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,16,.98) 0%, rgba(10,12,16,.9) 50%, rgba(10,12,16,.8)); }
.contact-section .section-shell { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: clamp(60px, 11vw, 160px);
  align-items: start;
}
.contact-copy .section-title { margin-bottom: 46px; }
.contact-copy .lead { max-width: 560px; margin: 0; }
.direct-contact { margin-top: 56px; display: grid; gap: 10px; }
.direct-contact a { width: fit-content; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-form { display: grid; gap: 28px; }
.field { position: relative; }
.field label { display: block; margin-bottom: 10px; text-transform: uppercase; font-size: .61rem; font-weight: 600; letter-spacing: .16em; color: rgba(255,255,255,.58); }
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  padding: 9px 0 15px;
  outline: 0;
  background: transparent;
  color: var(--paper);
  transition: border-color .25s ease;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--paper); }
.field textarea { min-height: 145px; resize: vertical; }
.submit-button {
  width: fit-content;
  margin-top: 14px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .25s ease, color .25s ease;
}
.submit-button:hover { background: var(--paper); color: var(--ink); }
.form-note { margin: -10px 0 0; color: rgba(255,255,255,.46); font-size: .72rem; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line-dark); background: var(--ink); }
.footer-shell { width: var(--page); margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-logo { width: 32px; opacity: .72; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer-nav a { text-decoration: none; font-size: .72rem; letter-spacing: .08em; }
.copyright { justify-self: end; color: rgba(255,255,255,.45); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Impressum */
.legal-page { min-height: 100svh; background: var(--paper); color: var(--ink); }
.legal-header { position: static; background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--line-dark); }
.legal-main { padding: clamp(90px, 13vw, 160px) 0; }
.legal-shell { width: min(900px, calc(100vw - 48px)); margin: auto; }
.legal-topline { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 80px; }
.back-link { text-decoration: none; font-size: .75rem; letter-spacing: .1em; }
.legal-title { margin: 0 0 85px; font-size: clamp(4rem, 10vw, 8rem); font-weight: 260; line-height: .88; letter-spacing: -.07em; }
.legal-content { display: grid; grid-template-columns: 180px 1fr; gap: 40px 70px; border-top: 1px solid var(--line-light); padding-top: 38px; }
.legal-content h2 { margin: 0; font-size: .7rem; text-transform: uppercase; letter-spacing: .17em; }
.legal-content p { margin: 0; max-width: 620px; }
.legal-content a { text-underline-offset: 4px; }
.legal-footer { background: var(--ink); color: var(--paper); }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 820px); }
  .nav-links {
    position: absolute;
    inset: auto;
    top: 100%;
    left: 50%;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    min-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(10,12,16,.965);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .site-header.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-links a {
    min-width: 150px;
    padding: 5px 18px;
    font-size: 1.38rem;
    font-weight: 300;
    line-height: 1.3;
  }
  .header-contact { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero-logo-wrap { width: min(66vw, 535px); }
  .vision-heading,
  .immersive-intro { grid-template-columns: 1fr; }
  .vision-copy { justify-self: end; max-width: 610px; }
  .feature,
  .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: initial; }
  .feature-copy { max-width: 650px; }
  .feature:nth-child(even) .feature-copy { justify-self: end; }
  .vita-grid { grid-template-columns: minmax(250px, .7fr) 1fr; gap: 55px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { max-width: 700px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 28px); --header-height: 68px; }
  body { font-size: 16px; }
  .hero-inner { padding: 86px 0 112px; }

  .hero-logo-wrap { width: min(80vw, 360px); margin-top: -2vh; }
  .hero-sun-bloom { width: 82%; }
  .hero-sun-halo { width: 28%; }
  .hero-sun-glow { width: 13.4%; }
  .hero-sun-beam { width: 66%; height: 10%; }
  .hero-sun-flare { width: 60%; }
  .hero-sun-ghost-1 { width: 7%; }
  .hero-sun-ghost-2 { width: 4.8%; }
  .hero-sun-ghost-3 { width: 3.2%; }
  .hero-quote {
    left: 18px;
    right: 78px;
    bottom: 30px;
    width: auto;
    max-width: 270px;
    padding-left: 13px;
    font-size: .7rem;
    line-height: 1.56;
    opacity: .76;
    filter: none;
  }
  .hero-quote::before { height: 26px; }
  .hero-quote cite { margin-top: 6px; font-size: .55rem; }
  .hero-socials { right: 18px; bottom: 28px; flex-direction: column; }
  .scroll-cue { display: none; }
  .section { padding: 92px 0; }
  .eyebrow { margin-bottom: 26px; }
  .display-title { font-size: clamp(3.45rem, 20vw, 5.3rem); }
  .section-title { font-size: clamp(2.7rem, 14vw, 4rem); }
  .vision-heading { gap: 45px; margin-bottom: 90px; }
  .feature-stack { gap: 100px; }
  .feature { gap: 32px; }
  .feature-media { min-height: 0; aspect-ratio: 1 / .86; }
  .feature-number { margin-bottom: 20px; }
  .feature-title { margin-bottom: 22px; }
  .quote-band { padding: 110px 20px; }
  .immersive-intro { margin-bottom: 58px; }
  .immersive-visual { aspect-ratio: .92 / 1; }
  .immersive-visual img { object-position: 56% center; }
  .vita-grid { grid-template-columns: 1fr; }
  .portrait-wrap { width: min(88%, 440px); }
  .vita-copy .section-title { margin-bottom: 35px; }
  .blog-head { align-items: start; flex-direction: column; margin-bottom: 44px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card,
  .blog-card:last-child { min-height: 430px; grid-column: auto; }
  .blog-image { height: 220px; }
  .contact-grid { gap: 70px; }
  .footer-shell { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; }
  .footer-logo { grid-row: 2; }
  .copyright { grid-row: 2; }
  .legal-shell { width: calc(100vw - 28px); }
  .legal-title { margin-bottom: 60px; }
  .legal-content { grid-template-columns: 1fr; gap: 13px; }
  .legal-content p { margin-bottom: 30px; }
}


@media (max-height: 760px) and (min-width: 681px) {
  .hero-inner { padding-bottom: 70px; }
  .hero-logo-wrap { width: min(38vw, 500px); margin-top: 0; }
  .hero-quote { bottom: 30px; }
  .hero-socials { bottom: 28px; }
  .scroll-cue { bottom: 18px; height: 40px; }
}

@media (max-width: 680px) and (max-height: 720px) {
  .hero-inner { padding-bottom: 98px; }
  .hero-logo-wrap { width: min(73vw, 320px); margin-top: -1vh; }
  .hero-quote { font-size: .66rem; max-width: 244px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-logo-wrap, .hero-logo-image, .hero-sun-bloom, .hero-sun-halo, .hero-sun-glow, .hero-sun-beam, .hero-sun-flare, .hero-sun-ghost { animation: none !important; }
  .hero-logo-interactive { transform: none !important; }
  .hero-quote { opacity: .72; transform: none; filter: none; }
}

