/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ─── Tokens — Shrymp Brand ──────────────────────────────── */
:root {
  --black:   #292520;        /* Soft Black */
  --white:   #F5EDE1;        /* Off White */
  --pink:    #F3ACC8;        /* Pink — accent only */
  --g100:    #ECE4D8;
  --g200:    #d8d0c4;
  --g400:    #9a9388;
  --g600:    #5a544c;
  --g800:    #34302b;
  --border:  rgba(245,237,225,0.10);
  --font:    'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(0.16,1,0.3,1);
}

/* ─── Base ───────────────────────────────────────────────── */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: var(--black); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--g800); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── Accessibility: Focus States ─────────────────────────── */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline-offset: 4px;
}

/* ─── Accessibility: Reduced Motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--white);
  color: var(--black);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ─── Typography helpers ─────────────────────────────────── */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.display {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .section { padding: 8rem 0; } }

/* ─── Grid helpers ───────────────────────────────────────── */
.grid-2 { display: grid; gap: 3rem; }
.grid-3 { display: grid; gap: 1px; background: var(--border); }
.grid-4 { display: grid; gap: 1px; background: var(--border); }
.grid-6 { display: grid; gap: 1px; background: var(--border); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-6 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { gap: 6rem; }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
  .grid-6 { grid-template-columns: repeat(3,1fr); }
}

/* ─── Nav ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(41,37,32,0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
#nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(245,237,225,0.85);
}
.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
@media (min-width: 900px) { .nav-links { display: flex; align-items: center; } }
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.lang-btn {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.35);
  transition: color 0.2s;
  padding: 4px;
}
.lang-btn:hover { color: var(--white); }

.nav-cta {
  display: none;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,225,0.18);
  padding: 0.5rem 1.2rem;
  color: rgba(245,237,225,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover { border-color: rgba(245,237,225,0.5); color: var(--white); }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Mobile menu */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
@media (min-width: 900px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(245,237,225,0.6);
  transition: transform 0.2s, opacity 0.2s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 99;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.5);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--white); }
#mobile-menu a:last-child { border-bottom: none; color: var(--white); }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-monogram {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(10rem, 30vw, 22rem);
  font-weight: 200;
  color: rgba(245,237,225,0.022);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-container { position: relative; z-index: 2; width: 100%; }

.hero-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.35fr 1fr;
    gap: 5rem;
  }
}

.hero-content { position: relative; }

/* ─── Hero Photo (modern) ────────────────────────────────── */
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  animation: heroPhotoIn 1.2s var(--ease) 0.4s both;
}
@media (min-width: 1024px) { .hero-photo { margin: 0 0 0 auto; } }

.hero-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -40px rgba(0,0,0,0.7),
    0 20px 40px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(245,237,225,0.06);
  isolation: isolate;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 55%, rgba(41,37,32,0.55) 100%),
    radial-gradient(ellipse at top right, rgba(243,172,200,0.08), transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(243,172,200,0.45), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.hero-photo:hover .hero-photo-frame::after { opacity: 1; }

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(100%) contrast(1.08) brightness(1.05);
  display: block;
  transition: filter 0.7s var(--ease), transform 1s var(--ease);
}

.hero-photo:hover .hero-photo-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.04);
}

.hero-photo-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  background: rgba(41,37,32,0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245,237,225,0.10);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,237,225,0.85);
}

.hero-photo-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(243,172,200,0.6);
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.hero-eyebrow {
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-headline {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,237,225,0.82);
  max-width: 38rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-body {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(245,237,225,0.75);
  max-width: 38rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1.2rem 2.4rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--g100); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.70);
  padding: 1rem 2rem;
  border: 1px solid rgba(245,237,225,0.18);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(245,237,225,0.4); }

.btn-arrow { font-size: 0.8rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  max-width: 30rem;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.stat-cell {
  background: var(--black);
  padding: 1.2rem 1.5rem;
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.72);
}

/* ─── Section header ─────────────────────────────────────── */
.section-header {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .section-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.section-eyebrow { margin-bottom: 1.2rem; }

/* Section header without intro: keep heading on one line */
#theses .section-header,
#linkedin .section-header {
  grid-template-columns: 1fr;
}

.section-intro {
  font-size: 1rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.8;
  max-width: 28rem;
}

/* ─── About ──────────────────────────────────────────────── */
.about-grid { display: grid; gap: 3rem; max-width: 56rem; }

.about-bio { display: flex; flex-direction: column; gap: 1.2rem; justify-content: center; }

.bio-p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}
.bio-p:first-child { color: var(--white); font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.4rem); }
.bio-p + .bio-p { color: rgba(245,237,225,0.80); }

.traits { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }

.trait {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(245,237,225,0.14);
}
.trait-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.trait-text {
  font-size: 0.95rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.7;
}

/* About facts */
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
}
.about-fact {
  background: var(--black);
  padding: 1.5rem;
}
.about-fact-val {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.about-fact-lbl {
  font-size: 0.7rem;
  color: rgba(245,237,225,0.72);
  line-height: 1.5;
}

/* ─── LinkedIn ──────────────────────────────────────────── */
.linkedin-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .linkedin-grid { grid-template-columns: 1fr 380px; gap: 5rem; }
}
.linkedin-text { max-width: 38rem; }
.linkedin-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(245,237,225,0.80);
  line-height: 1.85;
  margin-top: 1rem;
}
.linkedin-body:first-of-type { margin-top: 1.5rem; }

.linkedin-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(245,237,225,0.06);
  isolation: isolate;
}
.linkedin-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(41,37,32,0.4));
  pointer-events: none;
}
.linkedin-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(1.05);
  display: block;
  transition: filter 0.7s var(--ease), transform 1s var(--ease);
}
.linkedin-photo:hover .linkedin-photo-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.04);
}

/* LinkedIn Posts */
.linkedin-posts-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  font-weight: 600;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.linkedin-posts {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  margin: 0 -2rem;
  padding: 0 2rem 0.5rem;
  scroll-padding: 0 2rem;
  scrollbar-width: none;
}
.linkedin-posts::-webkit-scrollbar { display: none; }

.linkedin-post-card {
  flex: 0 0 calc(100vw - 5rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 900px) {
  .linkedin-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .linkedin-post-card { flex: initial; }
}
@media (min-width: 1200px) {
  .linkedin-posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.linkedin-post-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(245,237,225,0.02), rgba(245,237,225,0.005));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.linkedin-post-card:hover {
  border-color: rgba(245,237,225,0.20);
  transform: translateY(-2px);
}
@media (min-width: 768px) { .linkedin-post-card { padding: 2.25rem; } }

.linkedin-post-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.linkedin-post-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.linkedin-post-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.linkedin-post-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
}
.linkedin-post-shrymp {
  font-size: 0.85rem;
  margin-left: 2px;
}

.linkedin-post-date {
  font-size: 0.65rem;
  color: rgba(245,237,225,0.55);
  letter-spacing: 0.02em;
}

.linkedin-post-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #0A66C2;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
}

.linkedin-post-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245,237,225,0.88);
  white-space: normal;
  flex: 1;
}

.linkedin-post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  padding-top: 0.85rem;
  border-top: 1px solid rgba(243,172,200,0.30);
  margin-top: auto;
  align-self: flex-start;
  transition: gap 0.2s var(--ease), color 0.2s, border-color 0.2s;
}
.linkedin-post-link span:last-child { color: var(--pink); font-size: 1rem; }
.linkedin-post-link:hover { gap: 0.8rem; color: var(--pink); border-color: var(--pink); }

.linkedin-cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

/* ─── Events ────────────────────────────────────────────── */
.events-content {
  max-width: 38rem;
}
.events-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(245,237,225,0.80);
  line-height: 1.85;
  margin-top: 1.5rem;
}
.events-cta {
  color: rgba(245,237,225,0.90);
  font-weight: 400;
  margin-top: 1.5rem;
}

.events-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}
.events-photo {
  background: var(--black);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .events-gallery {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 16 / 10;
  }
  .events-photo { aspect-ratio: auto; height: 100%; }
  .events-photo-wide { grid-column: 1; grid-row: 1 / span 2; }
}

.events-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(1.02);
  display: block;
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.events-photo:hover .events-photo-img {
  filter: grayscale(0%) contrast(1.05);
}

/* ─── Expertise ──────────────────────────────────────────── */
.expertise-card {
  background: var(--black);
  padding: 2.5rem;
  transition: background 0.3s;
}
.expertise-card:hover { background: rgba(245,237,225,0.015); }

.card-num {
  font-size: 0.55rem;
  color: rgba(245,237,225,0.18);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.card-text {
  font-size: 0.8rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.75;
}

/* ─── Results ────────────────────────────────────────────── */
.result-card {
  background: var(--black);
  padding: 2.5rem;
}

.result-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.50);
  margin-bottom: 1.5rem;
}

.result-before {
  font-size: 0.8rem;
  color: rgba(245,237,225,0.2);
  text-decoration: line-through;
  margin-bottom: 0.3rem;
  min-height: 1.2rem;
}

.result-after {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.result-context {
  font-size: 0.7rem;
  color: rgba(245,237,225,0.55);
  line-height: 1.6;
}

.results-disclaimer {
  margin-top: 1rem;
  font-size: 0.65rem;
  color: rgba(245,237,225,0.2);
}

/* ─── Process ────────────────────────────────────────────── */
.process-body {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .process-body { grid-template-columns: 1fr 320px; gap: 5rem; }
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.step-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(245,237,225,0.18);
  padding-top: 2px;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.8rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.75;
}

.model-box {
  border: 1px solid var(--border);
  padding: 2rem;
  height: fit-content;
}

.model-title {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  margin-bottom: 1.5rem;
}

.model-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.model-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(245,237,225,0.72);
  line-height: 1.6;
}

.model-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245,237,225,0.28);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ─── Shrymp ─────────────────────────────────────────────── */
#shrymp {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(243,172,200,0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(243,172,200,0.05), transparent 50%),
    rgba(245,237,225,0.012);
  position: relative;
  overflow: hidden;
}
#shrymp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
}

.shrymp-body { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .shrymp-body { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.shrymp-tagline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--pink);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.shrymp-question {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.shrymp-cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

.shrymp-desc {
  font-size: 1rem;
  color: rgba(245,237,225,0.80);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.shrymp-focus {
  font-size: 0.9rem;
  color: rgba(245,237,225,0.75);
  margin-bottom: 2.5rem;
}

.shrymp-preview {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 2rem;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(243,172,200,0.18);
  isolation: isolate;
}
.shrymp-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(41,37,32,0.55));
  pointer-events: none;
}
.shrymp-preview::after {
  content: 'SHRYMP COMMERCE';
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 3;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--pink);
  font-weight: 700;
}
.shrymp-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease), filter 0.7s var(--ease);
}
.shrymp-preview:hover .shrymp-preview-img {
  transform: scale(1.04);
}

.shrymp-features {
  list-style: none;
  margin-bottom: 2rem;
}

.shrymp-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(245,237,225,0.75);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245,237,225,0.05);
}

.feat-num {
  font-size: 0.55rem;
  color: rgba(245,237,225,0.18);
  letter-spacing: 0.1em;
  width: 1.5rem;
  flex-shrink: 0;
}

.shrymp-founders {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,172,200,0.75);
  font-weight: 600;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,172,200,0.18);
}

.shrymp-services-block {
  border: 1px solid rgba(243,172,200,0.20);
  padding: 2rem;
  border-radius: 8px;
  background: rgba(243,172,200,0.025);
}

#shrymp .btn-primary {
  background: var(--pink);
  color: var(--black);
}
#shrymp .btn-primary:hover {
  background: var(--white);
}
.shrymp-services-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  margin-bottom: 1rem;
}
.shrymp-services-list {
  font-size: 0.9rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,225,0.25);
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  color: rgba(245,237,225,0.75);
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 2.5rem;
}
.btn-outline:hover { border-color: rgba(245,237,225,0.5); color: var(--white); }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--black);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote-mark {
  font-size: 3rem;
  font-weight: 300;
  color: rgba(245,237,225,0.18);
  line-height: 1;
}

.quote-text {
  font-size: 1rem;
  color: rgba(245,237,225,0.82);
  line-height: 1.8;
  flex: 1;
}

.quote-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245,237,225,0.80);
}

.quote-company {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.65);
  margin-top: 0.2rem;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-body { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .contact-body { grid-template-columns: 1fr 380px; gap: 5rem; }
}

.contact-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(245,237,225,0.06);
  isolation: isolate;
}
.contact-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(41,37,32,0.4));
  pointer-events: none;
}
.contact-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(1.05);
  display: block;
  transition: filter 0.7s var(--ease), transform 1s var(--ease);
}
.contact-photo:hover .contact-photo-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.04);
}

.contact-intro {
  font-size: 1rem;
  color: rgba(245,237,225,0.80);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 26rem;
}

.contact-alt-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1rem;
  color: rgba(245,237,225,0.80);
  transition: color 0.2s;
}
.contact-email:hover { color: var(--white); }

.contact-response {
  font-size: 0.7rem;
  color: rgba(245,237,225,0.55);
  margin-top: 1rem;
}

/* Contact links */
.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.contact-link-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.contact-link-item:last-child { border-bottom: 1px solid var(--border); }
.contact-link-item:hover { background: rgba(245,237,225,0.015); }
.contact-link-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  min-width: 4rem;
}
.contact-link-value {
  font-size: 1rem;
  color: rgba(245,237,225,0.80);
}

.contact-link-item--multi { cursor: default; }
.contact-link-item--multi:hover { background: transparent; }
.contact-social-link {
  color: rgba(245,237,225,0.80);
  border-bottom: 1px solid rgba(245,237,225,0.18);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-social-link:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,237,225,0.1);
  padding: 0.8rem 0;
  font: 300 0.85rem/1.6 var(--font);
  color: rgba(245,237,225,0.8);
  outline: none;
  transition: border-color 0.2s;
}
.form-field::placeholder { color: rgba(245,237,225,0.35); }
.form-field:hover { border-color: rgba(245,237,225,0.22); }
.form-field:focus { border-color: rgba(245,237,225,0.4); }

textarea.form-field { resize: none; min-height: 120px; }

.form-submit { margin-top: 0.5rem; }

.success-msg {
  display: none;
  padding: 3rem;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245,237,225,0.5);
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand { font-size: 0.8rem; color: rgba(245,237,225,0.55); }
.footer-tagline { font-size: 0.7rem; color: rgba(245,237,225,0.45); margin-top: 2px; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a, .footer-copyright {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.50);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(245,237,225,0.80); }

/* ─── Theses / Überzeugungen ─────────────────────────────── */
.theses-list {
  display: flex;
  flex-direction: column;
}

.thesis-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.25s;
}
.thesis-item:last-child { border-bottom: 1px solid var(--border); }

@media (min-width: 768px) {
  .thesis-item { grid-template-columns: 5rem 1fr; gap: 3rem; padding: 3rem 0; }
}

.thesis-num {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(245,237,225,0.65);
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
}

.thesis-body { display: flex; flex-direction: column; gap: 0.8rem; }

.thesis-claim {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.thesis-text {
  font-size: 1rem;
  color: rgba(245,237,225,0.78);
  line-height: 1.8;
  max-width: 52rem;
}

/* ─── Background / Hintergrund ───────────────────────────── */
.bg-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .bg-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .bg-grid { grid-template-columns: repeat(3,1fr); } }

.bg-item {
  background: var(--black);
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.25s;
}
.bg-item:hover { background: rgba(245,237,225,0.015); }

.bg-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  margin-bottom: 0.4rem;
}

.bg-value {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: rgba(245,237,225,0.92);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bg-detail {
  font-size: 0.9rem;
  color: rgba(245,237,225,0.72);
  line-height: 1.65;
}

/* ─── Shrymp section overrides ───────────────────────────── */
.shrymp-section { background: rgba(245,237,225,0.012); }

.shrymp-offers {
  display: flex;
  flex-direction: column;
}

.shrymp-offer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shrymp-offer:last-child { border-bottom: 1px solid var(--border); }

.shrymp-offer-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,237,225,0.88);
  letter-spacing: 0.01em;
}

.shrymp-offer-text {
  font-size: 0.93rem;
  color: rgba(245,237,225,0.75);
  line-height: 1.7;
}

/* ─── Contact extras ─────────────────────────────────────── */
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.contact-tags .tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,225,0.20);
  padding: 0.45rem 0.9rem;
  color: rgba(245,237,225,0.70);
}

.contact-shrymp-link {
  font-size: 0.72rem;
  color: rgba(245,237,225,0.65);
  border-bottom: 1px solid rgba(245,237,225,0.20);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-shrymp-link:hover {
  color: rgba(245,237,225,0.90);
  border-color: rgba(245,237,225,0.45);
}

/* ─── Aktuell / Featured Article ─────────────────────────── */
.featured-article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,237,225,0.025), rgba(245,237,225,0.008));
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  overflow: hidden;
}
.featured-article:hover {
  border-color: rgba(245,237,225,0.20);
  background: linear-gradient(135deg, rgba(245,237,225,0.04), rgba(245,237,225,0.012));
}
@media (min-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr 80px;
    padding: 3rem;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .featured-article { padding: 4rem; }
}

.featured-article-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 52rem;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.featured-tag {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}
.featured-date {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
}

.featured-article-title {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0.3rem 0 0.5rem;
}

.featured-article-excerpt {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(245,237,225,0.78);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.featured-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding: 0.4rem 0;
  margin-top: 0.5rem;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.featured-article-cta:hover { gap: 1rem; }
.featured-article-arrow { font-size: 1rem; }

.featured-article-deco {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding-top: 0.5rem;
}
@media (min-width: 768px) { .featured-article-deco { display: flex; } }
.deco-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(245,237,225,0.10);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.deco-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(245,237,225,0.18), transparent);
  min-height: 80px;
}

/* Aktuell grid */
.aktuell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .aktuell-grid { grid-template-columns: 1fr 1fr; }
}

.aktuell-block {
  background: var(--black);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}
@media (min-width: 768px) { .aktuell-block { padding: 2.5rem; } }

.aktuell-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,225,0.55);
  font-weight: 600;
}

.aktuell-quote {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.005em;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(245,237,225,0.30);
  font-style: italic;
}
.aktuell-quote::before { content: '"'; }
.aktuell-quote::after { content: '"'; }

.aktuell-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,237,225,0.80);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: color 0.2s, gap 0.2s var(--ease);
}
.aktuell-link:hover { color: var(--white); gap: 0.6rem; }

.aktuell-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,237,225,0.78);
  margin: 0;
  flex: 1;
}

.aktuell-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  margin-top: auto;
  padding-top: 0.5rem;
}
.aktuell-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(243,172,200,0.6);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(243,172,200,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(243,172,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(243,172,200,0); }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
