@charset "UTF-8";
/*
Theme Name: Christian Conrad Portfolio
Theme URI: https://example.com
Author: Christian Conrad
Description: Minimal custom portfolio theme.
Version: 1.0
*/
/* =========================================================
   MAIN.SCSS
========================================================= */
/* =========================================================
   BASE
========================================================= */
/* =========================================================
   GENERAL SANS
========================================================= */
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans/GeneralSans-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-display: swap;
}
/* =========================================================
   GEIST
========================================================= */
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist/Geist[wght].woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
/* =========================================================
   _RESET.SCSS
   ---------------------------------------------------------
   Moderner Minimal Reset
   Ziel:
   - konsistentes Verhalten
   - weniger Browser-Unterschiede
   - bessere Basis für Editorial Layouts
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  /* =====================================================
     COLORS
  ===================================================== */
  --color-slate:
      #2B2B33;
  --color-deep-slate:
       #1C1C20;
  --color-clay:
      #3E3A36;
  --color-ember:
      #B5522C;
  --color-bone:
      #F5F1EB;
  --color-dust:
      #8E877F;
  /* =========================================================
     LAYOUT WIDTHS
  ========================================================= */
  --content-wide: 1480px;
  --content: 1180px;
  --content-narrow: 760px;
  /* =========================================================
     SECTION SPACING
  ========================================================= */
  --space-section-xl: 14rem;
  --space-section: 10rem;
  --space-section-sm: 7rem;
  /* =====================================================
     TEXT
  ===================================================== */
  --color-text-primary:
      var(--color-bone);
  --color-text-secondary:
      rgba(245,241,235,0.72);
  /* =====================================================
     BACKGROUNDS
  ===================================================== */
  --color-background:
      var(--color-deep-slate);
  --color-surface:
      rgba(255,255,255,0.03);
  /* =====================================================
     BORDERS
  ===================================================== */
  --color-border:
      rgba(255,255,255,0.08);
  /* =====================================================
     SELECTION
  ===================================================== */
  --color-selection-bg:
      var(--color-ember);
  --color-selection-text:
      var(--color-bone);
  /* =====================================================
     SHADOWS
  ===================================================== */
  --shadow-soft:
      0 10px 30px rgba(0,0,0,0.2);
  /* =====================================================
     TRANSITIONS
  ===================================================== */
  --transition-fast:
      0.2s ease;
  --transition-medium:
      0.4s ease;
  /* =====================================================
     RADII
  ===================================================== */
  --radius-small:
      0.125rem;
  --radius-medium:
      0.25rem;
  --radius-large:
      0.4rem;
  /* =====================================================
     LAYOUT
  ===================================================== */
  --container-width:
      1440px;
  /* =====================================================
     Z-INDEX
  ===================================================== */
  --z-navigation:
      999;
}

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

html {
  scroll-behavior: smooth;
}

:root {
  --page-padding:
      clamp(1.5rem, 3vw, 4.5rem);
}

body {
  margin: 0;
  background: var(--color-deep-slate);
  color: var(--color-bone);
  font-family: "Geist", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

/* =========================================================
   CONTAINERS
========================================================= */
.container-wide {
  width: min(100% - var(--page-padding) * 2, 1540px);
  margin-inline: auto;
}

.container {
  width: min(100% - var(--page-padding) * 2, 1320px);
  margin-inline: auto;
}

.container-editorial {
  width: min(100% - var(--page-padding) * 2, 1080px);
  margin-inline: auto;
}

/* =========================================================
   BUTTON
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-small);
  background: var(--color-ember);
  color: white;
  font-family: "General Sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* =========================================================
   SECTION RHYTHM
========================================================= */
.section-xl {
  padding-block: var(--space-section-xl);
}

.section {
  padding-block: var(--space-section);
}

.section-sm {
  padding-block: var(--space-section-sm);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .container-wide,
  .container,
  .container-editorial {
    width: min(100% - 2rem, 100%);
  }
}
/* =========================================================
   MOBILE BUTTON RESET
========================================================= */
@media (max-width: 900px) {
  .button {
    padding: 0.95rem 1.6rem;
  }
}
/* =========================================================
   TYPOGRAPHY SYSTEM
========================================================= */
/* =========================================================
   FLUID TYPE SCALE
========================================================= */
:root {
  --step--1:
      clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:
      clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:
      clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  --step-2:
      clamp(1.44rem, 1.2rem + 1.2vw, 2rem);
  --step-3:
      clamp(1.728rem, 1.3rem + 2vw, 3rem);
  --step-4:
      clamp(2.074rem, 1.5rem + 3vw, 4rem);
  --step-5:
      clamp(2.488rem, 1.8rem + 4vw, 5.5rem);
  --step-6:
      clamp(3rem, 2rem + 6vw, 8rem);
}

/* =========================================================
   BODY
========================================================= */
body {
  font-family: "Geist", system-ui, sans-serif;
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

/* =========================================================
   HEADLINES
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* =========================================================
   H1
========================================================= */
h1 {
  font-size: var(--step-6);
  max-width: 10ch;
}

/* =========================================================
   H2
========================================================= */
h2 {
  font-size: var(--step-5);
}

/* =========================================================
   H3
========================================================= */
h3 {
  font-size: var(--step-3);
}

/* =========================================================
   PARAGRAPHS
========================================================= */
p {
  max-width: 68ch;
  text-wrap: pretty;
}

/* =========================================================
   SMALL TEXT
========================================================= */
small {
  font-size: var(--step--1);
  opacity: 0.7;
}

/* =========================================================
   LINKS
========================================================= */
a {
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

/* =========================================================
   STRONG
========================================================= */
strong {
  font-weight: 500;
}

/* =========================================================
   LAYOUT
========================================================= */
/* =========================================================
   _GRID.SCSS
   ---------------------------------------------------------
   Layout & Grid Foundation
========================================================= */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

/* =========================================================
   COMMON GRID LAYOUTS
========================================================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   FLOATING NAVIGATION
========================================================= */
.floating-nav {
  position: fixed;
  top: 10vh;
  right: 7vw;
  z-index: 999;
  transition: top 0.45s ease, right 0.45s ease, transform 0.45s ease;
}

body.is-scrolled .floating-nav {
  top: 1.5rem;
  right: 1.5rem;
}

.floating-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  transition: gap 0.45s ease, padding 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease;
}

body.is-scrolled .floating-nav__menu {
  gap: 2rem;
  padding: 1.1rem;
  background: rgba(18, 18, 22, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-large);
}

.floating-menu {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.floating-menu a {
  font-family: "General Sans", sans-serif;
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.03em;
  opacity: 0.72;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.floating-menu a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--color-bone);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle span:first-child {
  top: 1.15rem;
  transform: translateX(-50%);
}

.nav-toggle span:last-child {
  top: 1.75rem;
  transform: translateX(-50%);
}

body.nav-open .nav-toggle span:first-child {
  transform: translateX(-50%) rotate(45deg);
  top: 1.45rem;
}

body.nav-open .nav-toggle span:last-child {
  transform: translateX(-50%) rotate(-45deg);
  top: 1.45rem;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.hero__content {
  max-width: 980px;
}

.hero__title {
  max-width: 8.2ch;
}

.hero__text {
  max-width: 34ch;
  margin-top: 2.5rem;
  line-height: 1.72;
  opacity: 0.76;
}

/* =========================================================
   TECH STACK
========================================================= */
.tech-stack {
  margin-top: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-stack__row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  opacity: 0.38;
}

.tech-stack__row span {
  font-size: 0.76rem;
}

/* =========================================================
   SECTION RHYTHM
========================================================= */
.content-section {
  position: relative;
}

.content-section--gestalter {
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.content-section--spuren {
  padding-top: 9rem;
  padding-bottom: 14rem;
}

.quote-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.content-section--hintergrund {
  padding-top: 11rem;
  padding-bottom: 8rem;
}

.contact-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.section-label {
  margin-bottom: 2.5rem;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.34;
}

.content-section--gestalter h2,
.content-section--hintergrund h2,
.contact-section h2 {
  max-width: 17ch;
  font-size: clamp(4.2rem, 4.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.content-section--spuren .section-head {
  max-width: 1320px;
  margin-bottom: 10rem;
}

.content-section--spuren h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  opacity: 0.9;
}

.section-text {
  margin-top: 2rem;
  max-width: 38ch;
  line-height: 1.74;
  opacity: 0.66;
}

/* =========================================================
   SPUREN GRID
========================================================= */
.spuren-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10rem 4rem;
}

/* =========================================================
   MONUMENT
========================================================= */
.spur-card--monument {
  grid-column: 1/-1;
  margin-bottom: 5rem;
}

.spur-card--monument .spur-card__media {
  width: 92%;
  margin-left: auto;
  aspect-ratio: 16/5.4;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.spur-card--monument .spur-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spur-card--monument .spur-card__content {
  width: 66%;
  margin-top: -8rem;
  margin-left: 3rem;
  position: relative;
  z-index: 2;
}

.spur-card--monument .spur-card__catchphrase {
  max-width: 10ch;
  font-size: clamp(3rem, 3.6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

/* =========================================================
   FRAGMENTS
========================================================= */
.spur-card--fragment {
  grid-column: span 5;
}

.spur-card--fragment:nth-child(even) {
  margin-top: 6rem;
}

.spur-card--fragment .spur-card__media {
  aspect-ratio: 4/4.8;
}

.spur-card--fragment .spur-card__content {
  margin-top: 2rem;
}

.spur-card--fragment .spur-card__catchphrase {
  max-width: 8ch;
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 0.92;
}

/* =========================================================
   SIGNALS
========================================================= */
.spur-card--signal {
  grid-column: span 4;
}

.spur-card--signal:nth-child(odd) {
  margin-top: 5rem;
}

.spur-card--signal .spur-card__media {
  aspect-ratio: 1/1.18;
}

.spur-card--signal .spur-card__content {
  margin-top: 1.5rem;
}

.spur-card--signal .spur-card__catchphrase {
  max-width: 10ch;
  font-size: var(--step-1);
  line-height: 0.94;
}

/* =========================================================
   MEDIA
========================================================= */
.spur-card__media {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-small);
}

.spur-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.spur-card:hover .spur-card__media img {
  transform: scale(1.02);
}

/* =========================================================
   CONTENT
========================================================= */
.spur-card__content {
  margin-top: 2rem;
}

.spur-card__meta {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-ember);
  opacity: 0.68;
}

.spur-card__headline {
  margin-top: 1rem;
  opacity: 0.82;
}

.spur-card__description {
  margin-top: 1.1rem;
  max-width: 34ch;
  line-height: 1.66;
  opacity: 0.58;
}

.spur-card__link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: var(--step--1);
  opacity: 0.62;
}

/* =========================================================
   QUOTE
========================================================= */
.quote-section blockquote {
  max-width: 28ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(3rem, 3.6vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  opacity: 0.9;
}

/* =========================================================
   BREAKPOINTS
========================================================= */
@media (max-width: 1180px) {
  .floating-nav {
    right: 3rem;
  }
  .spur-card--monument .spur-card__content {
    width: 56%;
  }
  .spur-card--fragment {
    grid-column: span 6;
  }
  .spur-card--signal {
    grid-column: span 6;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .content-section--gestalter,
  .content-section--spuren,
  .quote-section,
  .content-section--hintergrund,
  .contact-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .content-section--gestalter h2,
  .content-section--hintergrund h2,
  .contact-section h2 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    max-width: 10ch;
  }
  .content-section--spuren h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .spuren-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .spur-card,
  .spur-card--monument,
  .spur-card--fragment,
  .spur-card--signal {
    grid-column: 1;
  }
  .spur-card__media,
  .spur-card--monument .spur-card__media {
    width: 100%;
    aspect-ratio: 4/5;
    margin: 0;
  }
  .spur-card__content,
  .spur-card--monument .spur-card__content {
    width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
  }
  .spur-card__catchphrase,
  .spur-card--monument .spur-card__catchphrase {
    max-width: 10ch;
    font-size: var(--step-3);
  }
  .nav-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
  }
  .floating-nav {
    top: 0;
    right: 0;
  }
  .floating-nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 16, 0.96);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  body.nav-open .floating-nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .floating-menu {
    align-items: center;
  }
  .floating-menu a {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .floating-nav .button {
    margin-top: 2rem;
  }
}
/* =========================================================
   _NAVIGATION.SCSS
========================================================= */
.main-navigation {
  display: flex;
  align-items: center;
}

/* =========================================================
   MENU
========================================================= */
.main-menu {
  display: flex;
  gap: 2rem;
}

/* =========================================================
   LINKS
========================================================= */
.main-menu a {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

/* =========================================================
   HOVER
========================================================= */
.main-menu a:hover {
  color: var(--color-ember);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  margin-top: 10rem;
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

/* =========================================================
   META
========================================================= */
.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-clay);
  opacity: 0.62;
}

/* =========================================================
   NAVIGATION
========================================================= */
.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-footer__nav a {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--color-clay);
  opacity: 0.56;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.site-footer__nav a:hover {
  opacity: 1;
  color: var(--color-bone);
}

/* =========================================================
   SOCIAL
========================================================= */
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-footer__social a {
  width: 1rem;
  height: 1rem;
  opacity: 0.42;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-footer__social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__social svg {
  width: 100%;
  height: 100%;
  fill: var(--color-clay);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .site-footer {
    margin-top: 7rem;
    padding: 2.5rem 0 3rem;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.25rem;
  }
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 1.4rem;
  }
}
/* =========================================================
   FLUENT FORMS — EDITORIAL THEME
========================================================= */
.contact-section .ff-default .ff-el-group {
  margin-bottom: 2rem;
}

.contact-section .ff-default label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-bone);
  opacity: 0.72;
}

.contact-section .ff-default .ff-el-form-control {
  width: 100%;
  padding: 0 0 0.75rem 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-bone);
  transition: border-color 0.35s ease, opacity 0.35s ease;
}

.contact-section .ff-default .ff-el-form-control::placeholder {
  color: rgba(255, 255, 255, 0.34);
  opacity: 1;
}

.contact-section .ff-default .ff-el-form-control:focus {
  border-bottom-color: var(--color-ember) !important;
}

.contact-section textarea.ff-el-form-control {
  min-height: 7.5rem;
  resize: vertical;
  padding-top: 0.2rem;
}

/* =========================================================
   RADIO GROUP
========================================================= */
.contact-section .ff-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-section .ff-el-form-check {
  margin-bottom: 0 !important;
}

.contact-section .ff-el-form-check label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  font-size: 0.96rem;
  text-transform: none;
  letter-spacing: -0.01em;
  opacity: 0.82;
  cursor: pointer;
}

.contact-section .ff-el-form-check input[type=radio] {
  appearance: none;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.15rem;
  background: transparent;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-section .ff-el-form-check input[type=radio]:checked {
  border-color: var(--color-ember);
}

.contact-section .ff-el-form-check input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.08rem;
  background: var(--color-ember);
}

/* =========================================================
   BUTTON
========================================================= */
.contact-section .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
  padding: 0 0 0.7rem 0 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "General Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ember) !important;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.contact-section .ff-btn-submit::after {
  content: " ↗";
  font-size: 1rem;
  transform: translateY(-1px);
}

.contact-section .ff-btn-submit:hover {
  color: var(--color-ember-light) !important;
  border-color: var(--color-ember-light) !important;
  transform: translateX(3px);
}

/* =========================================================
   REMOVE FLUENT DEFAULT STYLING
========================================================= */
.contact-section .ff-default .ff-btn {
  background: transparent !important;
}

/* =========================================================
   SUCCESS MESSAGE
========================================================= */
.contact-section .ff-message-success {
  position: relative;
  margin-top: 6rem;
  padding: 3rem;
  max-width: 34rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(210, 100, 40, 0.45);
  backdrop-filter: blur(12px);
  overflow: hidden;
  color: var(--color-bone);
  font-size: 1.02rem;
  line-height: 2;
  letter-spacing: -0.015em;
  animation: successReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   SUCCESS HEADER
========================================================= */
.contact-section .ff-message-success .success-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* =========================================================
   SVG ICON
========================================================= */
.contact-section .ff-message-success .success-head::before {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  opacity: 0.92;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97442' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9 10h.01'/%3E%3Cpath d='M15 10h.01'/%3E%3Cpath d='M8.5 14c1 1 2 1.5 3.5 1.5s2.5-.5 3.5-1.5'/%3E%3C/svg%3E");
}

/* =========================================================
   GLOW
========================================================= */
.contact-section .ff-message-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(210, 100, 40, 0.09), transparent 55%);
  pointer-events: none;
}

/* =========================================================
   ACCENT LINE
========================================================= */
.contact-section .ff-message-success::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-ember), transparent);
  opacity: 0.8;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.contact-section .ff-message-success strong {
  display: block;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

/* =========================================================
   REVEAL
========================================================= */
@keyframes successReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.985);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .contact-section .ff-message-success {
    margin-top: 3rem;
    padding: 2rem 1.5rem 2rem 2rem;
    max-width: 100%;
    line-height: 1.8;
  }
  .contact-section .ff-default .ff-el-group {
    margin-bottom: 1.7rem;
  }
  .contact-section .ff-default label {
    margin-bottom: 0.65rem;
  }
  .contact-section .ff-radio-group {
    gap: 0.7rem;
  }
  .contact-section .ff-btn-submit {
    width: 100%;
    justify-content: space-between;
  }
}
/* =========================================================
   GESTALTER STACK
========================================================= */
.gestalter-stack {
  position: relative;
  width: 78%;
  margin-left: 2rem;
  aspect-ratio: 1/1.02;
}

/* =========================================================
   CARDS
========================================================= */
.gestalter-card {
  position: absolute;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.14);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gestalter-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02) brightness(0.94);
  transition: filter 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.gestalter-card--thinking img {
  filter: grayscale(1) contrast(1.02) brightness(1);
}

.gestalter-card--reading img {
  filter: grayscale(1) contrast(1.02) brightness(0.82);
}

/* =========================================================
   COLOR REVEAL
========================================================= */
.gestalter-stack:hover .gestalter-card img {
  filter: grayscale(0) contrast(1) brightness(1);
}

/* =========================================================
   THINKING
========================================================= */
.gestalter-card--thinking {
  width: 62%;
  aspect-ratio: 1/1.12;
  top: 0;
  right: 13%;
  z-index: 4;
  transform: rotate(2deg);
}

/* =========================================================
   TABLE
========================================================= */
.gestalter-card--table {
  width: 54%;
  aspect-ratio: 1/1;
  left: -18%;
  top: 28%;
  z-index: 2;
  transform: rotate(-4deg);
}

/* =========================================================
   PHOTOGRAPHY
========================================================= */
.gestalter-card--photography {
  width: 38%;
  aspect-ratio: 1/1.18;
  right: 10%;
  top: 55%;
  z-index: 3;
  transform: rotate(3deg);
}

/* =========================================================
   READING
========================================================= */
.gestalter-card--reading {
  width: 34%;
  aspect-ratio: 1/1;
  left: 19%;
  bottom: -2%;
  z-index: 5;
  transform: rotate(-15deg);
}

/* =========================================================
   HOVER MOTION
========================================================= */
.gestalter-stack:hover .gestalter-card--thinking {
  transform: rotate(1deg) translateY(-6px);
}

.gestalter-stack:hover .gestalter-card--table {
  transform: rotate(-5deg) translateY(4px);
}

.gestalter-stack:hover .gestalter-card--photography {
  transform: rotate(5deg) translateY(-2px);
}

.gestalter-stack:hover .gestalter-card--reading {
  transform: rotate(-4deg) translateY(-4px);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .gestalter-stack {
    width: 76%;
    margin-inline: auto;
    aspect-ratio: 1/1;
  }
}
/* =========================================================
   COMPONENTS
========================================================= */
/* =========================================================
   BUTTONS
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-medium);
  font-family: "General Sans", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform var(--transition-fast), background var(--transition-fast), opacity var(--transition-fast);
}

/* =========================================================
   PRIMARY BUTTON
========================================================= */
.button--primary {
  background: var(--color-ember);
  color: var(--color-bone);
}

/* =========================================================
   HOVER
========================================================= */
.button:hover {
  transform: translateY(-1px);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .button {
    padding: 0.85rem 1.2rem;
  }
}
/* =========================================================
   PAGES
   ---------------------------------------------------------
   Page styles bewusst zuletzt laden,
   damit sie globale Layout-Regeln überschreiben dürfen.
========================================================= */
/* =========================================================
   FLOATING NAVIGATION
========================================================= */
.floating-nav {
  position: fixed;
  top: 32vh;
  right: 14vw;
  z-index: 999;
  transition: top 0.35s ease, right 0.35s ease, transform 0.35s ease;
}

body.is-scrolled .floating-nav {
  top: 2.25rem;
  right: 2.25rem;
}

.floating-nav__menu {
  display: flex;
  flex-direction: column;
  width: 240px;
  gap: 7.4rem;
  transition: gap 0.45s ease, padding 0.35s ease, background 0.45s ease, backdrop-filter 0.45s ease;
}

body.is-scrolled .floating-nav__menu {
  gap: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: rgba(12, 12, 16, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(32px);
  border-radius: var(--radius-medium);
}

.floating-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.floating-menu a {
  font-family: "General Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  opacity: 0.36;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.floating-menu a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--color-bone);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle span:first-child {
  top: 1.15rem;
  transform: translateX(-50%);
}

.nav-toggle span:last-child {
  top: 1.75rem;
  transform: translateX(-50%);
}

body.nav-open .nav-toggle span:first-child {
  transform: translateX(-50%) rotate(45deg);
  top: 1.45rem;
}

body.nav-open .nav-toggle span:last-child {
  transform: translateX(-50%) rotate(-45deg);
  top: 1.45rem;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero__content {
  max-width: 1080px;
}

.hero .container-wide {
  max-width: 1280px;
  margin-inline: auto;
}

.hero__title {
  max-width: 11.2ch;
}

.hero__text {
  max-width: 70ch;
}

.hero__line {
  max-width: 28ch;
  font-size: var(--step-6);
  opacity: 0.76;
}

/* =========================================================
   TECH STACK
========================================================= */
.tech-stack {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-stack__row {
  display: flex;
  flex-wrap: wrap;
  padding-left: 7.5vw;
  gap: 2.5rem;
  opacity: 0.28;
}

.tech-stack__row span {
  font-size: 0.76rem;
}

/* =========================================================
   SECTION RHYTHM
========================================================= */
.content-section {
  position: relative;
}

/* =========================================================
   EDITORIAL WIDTH SYSTEM
========================================================= */
.content-section--gestalter .container-wide,
.content-section--spuren .container-wide {
  max-width: 1280px;
  margin-inline: auto;
}

.hero .container-wide {
  max-width: 1280px;
  margin-inline: auto;
}

/* =========================================================

   SECTION WIDTH CONTROL

========================================================= */
.content-section--gestalter .container-wide,
.content-section--spuren .container-wide {
  max-width: 1280px;
  margin-inline: auto;
}

.content-section--gestalter {
  padding-top: 8rem;
  padding-bottom: 10rem;
}

.content-section--spuren {
  padding-top: 7rem;
  padding-bottom: 14rem;
}

.quote-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.content-section--hintergrund {
  padding-top: 12rem;
  padding-bottom: 10rem;
}

.contact-section {
  padding-top: 8rem;
  padding-bottom: 10rem;
}

/* =========================================================
   CONTACT LAYOUT
========================================================= */
.contact-section__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.contact-section__meta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-section__meta span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.38;
}

.contact-section__meta p {
  opacity: 0.72;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.section-label {
  margin-bottom: 2.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.26;
}

.content-section--gestalter h2,
.content-section--hintergrund h2,
.contact-section h2 {
  max-width: 9ch;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.content-section--spuren .section-head {
  max-width: 1400px;
  margin-bottom: 4rem;
}

.content-section--spuren h2 {
  max-width: 28ch;
  font-size: clamp(1.9rem, 2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  opacity: 0.9;
}

.section-text {
  margin-top: 2.2rem;
  max-width: 52ch;
  line-height: 1.92;
  opacity: 0.58;
}

/* =========================================================
   SPUREN GRID
========================================================= */
.spuren-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10rem 2.5rem;
}

/* =========================================================
   MONUMENT
========================================================= */
.spur-card--monument {
  grid-column: 1/-1;
  margin-bottom: 1rem;
  position: relative;
}

.spur-card--monument .spur-card__media {
  width: 94%;
  margin-left: auto;
  margin-right: 8rem;
  margin-top: 2rem;
  aspect-ratio: 16/5.8;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.spur-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) contrast(1.04) saturate(0.94);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
}

.hero__title {
  font-size: clamp(3.9rem, 13vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.spur-card:hover img {
  transform: scale(1.018);
  filter: brightness(1) contrast(1.06) saturate(1);
}

.spur-card--monument .spur-card__content {
  width: 72%;
  max-width: 1280px;
  margin-top: -8rem;
  margin-left: 4rem;
  position: relative;
  z-index: 3;
}

.spur-card--monument .spur-card__catchphrase {
  max-width: 8ch;
  font-size: clamp(3rem, 3.6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

/* =========================================================
   FRAGMENTS
========================================================= */
.spur-card--fragment {
  grid-column: span 5;
}

.spur-card--fragment:nth-child(even) {
  margin-top: 4rem;
}

.spur-card--fragment .spur-card__media {
  width: 82%;
  aspect-ratio: 4/4.8;
}

.spur-card--fragment .spur-card__content {
  margin-top: 2rem;
}

.spur-card--fragment .spur-card__catchphrase {
  max-width: 8ch;
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 0.92;
}

/* =========================================================
   SIGNALS
========================================================= */
.spur-card--signal {
  grid-column: span 3;
}

.spur-card--signal:nth-child(3n) {
  margin-top: 5rem;
}

.spur-card--fragment:nth-child(2n) {
  margin-top: 6rem;
}

.spur-card--signal:nth-child(odd) {
  margin-top: 2rem;
}

.spur-card--signal .spur-card__media {
  width: 82%;
  aspect-ratio: 1/1.18;
}

.spur-card--signal .spur-card__content {
  margin-top: 1.5rem;
}

.spur-card--signal .spur-card__catchphrase {
  max-width: 14ch;
  font-size: clamp(1.3rem, 1.2vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

/* =========================================================
   MEDIA
========================================================= */
.spur-card__media {
  overflow: hidden;
  background: transparent;
  border-radius: var(--radius-small);
  line-height: 0;
}

.spur-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   CONTENT
========================================================= */
.spur-card__content {
  margin-top: 1.6rem;
}

.spur-card__meta {
  margin-bottom: 1rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ember);
  opacity: 0.68;
}

.spur-card__headline {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  opacity: 0.72;
}

.spur-card__description {
  margin-top: 1.6rem;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.82;
  opacity: 0.52;
}

.spur-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: var(--step--1);
  color: var(--color-ember);
  opacity: 0.82;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.spur-card__link:hover {
  color: var(--color-ember-light);
  opacity: 1;
  transform: translateX(3px);
}

/* =========================================================
   QUOTE
========================================================= */
.quote-section blockquote,
.portfolio-quote {
  max-width: 36ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.6rem, 3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  opacity: 0.9;
}

/* =========================================================
   BREAKPOINTS
========================================================= */
/* =========================================================
   XXL ALIGNMENT
========================================================= */
@media (min-width: 1700px) {
  .hero .container,
  .content-section--gestalter .container,
  .content-section--spuren .container,
  .quote-section .container,
  .content-section--hintergrund .container,
  .contact-section .container,
  .tech-stack .container {
    padding-left: 3.5rem;
  }
}
@media (max-width: 1180px) {
  .floating-nav {
    right: 3rem;
  }
  .spur-card--monument .spur-card__content {
    width: 56%;
  }
  .spur-card--fragment {
    grid-column: span 6;
  }
  .spur-card--signal {
    grid-column: span 6;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }
  .contact-section__layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .contact-section__intro,
  .contact-section__form {
    width: 100%;
    min-width: 0;
  }
  .content-section--gestalter,
  .content-section--spuren,
  .quote-section,
  .content-section--hintergrund,
  .contact-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .content-section--gestalter h2,
  .content-section--hintergrund h2,
  .contact-section h2 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    max-width: 10ch;
  }
  .content-section--spuren h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .spuren-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .spur-card,
  .spur-card--monument,
  .spur-card--fragment,
  .spur-card--signal {
    grid-column: 1;
  }
  .spur-card__media,
  .spur-card--monument .spur-card__media {
    width: 100%;
    aspect-ratio: 4/5;
    margin: 0;
  }
  .spur-card__content,
  .spur-card--monument .spur-card__content {
    width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
  }
  .spur-card__catchphrase,
  .spur-card--monument .spur-card__catchphrase {
    max-width: 10ch;
    font-size: var(--step-3);
  }
  .nav-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
  }
  .floating-nav {
    top: 0;
    right: 0;
  }
  .floating-nav__menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 12, 0.985);
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }
  body.nav-open .floating-nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .floating-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
  .floating-menu a {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    opacity: 0.72;
  }
  .floating-nav .button {
    margin-top: 2rem;
  }
  .spuren-grid {
    grid-template-columns: 1fr;
    gap: 7rem;
  }
  .gestalter-stack {
    width: 74%;
    margin-inline: auto;
    aspect-ratio: 1/1;
  }
  .gestalter-card--thinking {
    width: 72%;
  }
  .gestalter-card--table {
    width: 58%;
  }
  .gestalter-card--photography {
    width: 46%;
  }
  .gestalter-card--reading {
    width: 38%;
  }
}
/* =========================================================
   GESTALTER LAYOUT
========================================================= */
.gestalter-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.gestalter-layout__visual {
  position: relative;
}

.gestalter-layout__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-small);
}

/* =========================================================
   HOVER
========================================================= */
/* =========================================================

   TOOL GRID

========================================================= */
.tool-grid-section {
  margin-top: -2rem;
  padding-bottom: 10rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.tool-grid__item {
  aspect-ratio: 1/1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.028);
  border-radius: var(--radius-small);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, border-color 0.45s ease;
}

.tool-grid__item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.04);
}

.tool-grid__item svg {
  width: 3rem;
  height: 3rem;
  fill: var(--color-clay);
  stroke: none;
  opacity: 0.82;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.tool-grid__item:hover svg {
  transform: scale(1.04);
  opacity: 1;
}

/* =========================================================
   MONUMENT TEXT WIDTH
========================================================= */
.spur-card--monument .spur-card__catchphrase {
  max-width: 14ch;
}

/* =========================================================
   DESKTOP BUTTON PROPORTIONS
========================================================= */
@media (min-width: 901px) {
  .button {
    padding: 0.38rem 3.2rem;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .gestalter-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .tool-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  .tool-grid__item svg {
    width: 1.7rem;
    height: 1.7rem;
  }
  .tool-grid__item svg .spur-card__headline {
    max-width: 26ch;
  }
}
/* =========================================================
   HERO LINE REVEAL
========================================================= */
.hero__title {
  display: flex;
  flex-direction: column;
}

.hero__line {
  display: block;
  transform: translateY(1.2rem);
  opacity: 0;
  filter: blur(8px);
  animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line:nth-child(1) {
  animation-delay: 0.15s;
}

.hero__line:nth-child(2) {
  animation-delay: 0.3s;
}

.hero__line:nth-child(3) {
  animation-delay: 0.45s;
}

@keyframes heroReveal {
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
/* =========================================================
   SECTION REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   IMAGE DRIFT
========================================================= */
.drift {
  will-change: transform;
  transition: transform 0.12s linear;
}

/* =========================================================
   REMOVE IMAGE HOVER ZOOM
========================================================= */
.spur-card__media {
  transform: translateZ(0);
}

/* =========================================================
   SINGLE SPUREN
========================================================= */
.single-spuren {
  padding-top: 2rem;
  padding-bottom: 8rem;
}

.single-spuren__article {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 2rem;
}

.single-spuren__hero {
  margin-bottom: 6rem;
}

.single-spuren__hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-small);
}

.single-spuren__content {
  width: min(100%, 920px);
  margin: 0 auto;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.single-spuren__content h1 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.single-spuren__content h2 {
  margin-top: 8rem;
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.single-spuren__content h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.single-spuren__content p {
  max-width: 42ch;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.72;
}

.single-spuren__content ul {
  margin: 2rem 0;
  padding-left: 1.2rem;
}

.single-spuren__content li {
  margin-bottom: 1rem;
  opacity: 0.72;
  line-height: 1.7;
}

.single-spuren__content blockquote {
  margin: 6rem 0;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1.8rem, 2vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  opacity: 0.92;
}

.single-spuren__content hr {
  margin: 5rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================================
   SINGLE HERO IMAGE FIX
========================================================= */
.single-spuren__hero {
  margin-bottom: 6rem;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.single-spuren__hero img {
  width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  display: block;
}

/* =========================================================
   GUTENBERG IMAGE RESET
========================================================= */
.single-spuren img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

.single-spuren figure {
  margin: 0 0 4rem;
}

.single-spuren .wp-block-image {
  margin-bottom: 5rem;
}

.single-spuren .wp-block-image img {
  border-radius: var(--radius-small);
}

/* =========================================================
   Backlink
========================================================= */
.single-spuren__backlink {
  margin-top: 6rem;
}

.single-spuren__backlink a {
  font-size: 0.9rem;
  opacity: 0.52;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.single-spuren__backlink a:hover {
  opacity: 1;
  transform: translateX(-4px);
}

/* =========================================================
   DEFAULT PAGE
========================================================= */
.page-default {
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.page-default__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-default__header {
  margin-bottom: 5rem;
}

.page-default__header h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.page-default__content {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.74;
}

.page-default__content h2 {
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-default__content p {
  margin-bottom: 2rem;
}

.page-default__content a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-default__content ul {
  margin: 2rem 0;
  padding-left: 1.2rem;
}

.page-default__content li {
  margin-bottom: 0.8rem;
}

.page-default__content strong {
  color: var(--color-bone);
}

/* =========================================================
   PAGE BACKLINK
========================================================= */
.page-default__backlink {
  margin-top: 6rem;
}

.page-default__backlink a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--color-ember);
  opacity: 0.78;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.page-default__backlink a:hover {
  color: var(--color-ember-light);
  opacity: 1;
  transform: translateX(-3px);
}

/* =========================================================
   MOBILE LINK COMFORT
========================================================= */
.spur-card__link {
  margin-top: 2rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.page-default__backlink a,
.single-spuren__backlink a {
  padding: 0.45rem 0;
  font-size: 0.95rem;
}

/* Gutenberg Bild & Video Drift */
figure.wp-block-image.spur-card__media,
figure.wp-block-video.spur-card__media {
  margin: 0;
  overflow: visible !important;
  border-radius: 0 !important;
}

figure.wp-block-image.spur-card__media img,
figure.wp-block-video.spur-card__media video {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  will-change: transform;
}

/* =========================================================
   LOGIN — CHRISTIAN CONRAD
========================================================= */
body.login {
  background: radial-gradient(circle at top left, rgba(210, 100, 40, 0.08), transparent 30%), #0b0b11;
  font-family: "General Sans", sans-serif;
  color: #f3efe8;
}

/* =========================================================
   LOGIN BOX
========================================================= */
body.login #login {
  width: 420px;
  padding-top: 8vh;
}

body.login form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: none;
}

/* =========================================================
   LOGO
========================================================= */
.login h1 a {
  background-image: none !important;
  text-indent: 0;
  width: auto;
  height: auto;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #f3efe8;
}

/* =========================================================
   LABELS
========================================================= */
.login label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* =========================================================
   INPUTS
========================================================= */
.login input[type=text],
.login input[type=password] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: #f3efe8;
  padding: 0.75rem 0;
  box-shadow: none;
}

.login input:focus {
  border-color: #d97442;
  box-shadow: none;
}

/* =========================================================
   BUTTON
========================================================= */
.wp-core-ui .button-primary {
  background: #d97442 !important;
  border: none !important;
  border-radius: 0.45rem;
  padding: 0.25rem 1.6rem !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wp-core-ui .button-primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* =========================================================
   LINKS
========================================================= */
.login #nav a,
.login #backtoblog a {
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   404
========================================================= */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}

.error-404__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 2rem;
}

.error-404__label {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.32;
}

.error-404__title {
  max-width: 10ch;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.94;
}

.error-404__text {
  max-width: 34ch;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.62;
}

.error-404__backlink {
  margin-top: 5rem;
}

.error-404__backlink a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--color-ember);
  opacity: 0.78;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.error-404__backlink a:hover {
  color: var(--color-ember-light);
  opacity: 1;
  transform: translateX(-3px);
}

/*# sourceMappingURL=main.css.map */
