:root {
  --petrol: #004B57;
  --petrol-dark: #002D38;
  --petrol-light: #1A7A8A;
  --petrol-pale: #E0EEF0;
  --orange: #C0573E;
  --orange-pale: #FAEAE6;
  --slate: #4A4E52;
  --mocha: #6D514C;
  --mocha-pale: #F0EAE8;
  --sand: #E9DCC9;
  --sand-light: #F5F0E8;
  --sand-dark: #D4C4A8;
  --ink: #1A1A1A;
  --white: #FAFAF8;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-6: 60px;
  --space-8: 80px;
  --space-section: 100px;

  --max-width: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--sand-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p { max-width: 62ch; }

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

.mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 78, 82, 0.08);
  padding: 14px 60px;
}

.nav-logo {
  height: 58px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 500px) {
  .nav-logo { height: 44px; }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  background: var(--petrol);
  color: var(--white) !important;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--petrol-dark);
  transform: translateY(-1px);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--sand-light);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 40px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 75, 87, 0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(74, 78, 82, 0.1);
  }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 22px !important;
  }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(192, 87, 62, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 15% 90%, rgba(0, 75, 87, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(233, 220, 201, 0.6) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text .mono {
  color: var(--orange);
  margin-bottom: 24px;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}

.hero-text .mono::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 1px;
  background: var(--orange);
}

.hero-text h1 {
  margin-bottom: 32px;
}

.hero-text h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.hero-text .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 40px;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background: var(--petrol);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--petrol-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 75, 87, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}

.btn-secondary:hover {
  background: var(--petrol);
  color: var(--white);
}

.btn-ghost {
  color: var(--ink);
  padding: 16px 0;
  position: relative;
}

.btn-ghost::after {
  content: '→';
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s;
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

.hero-image {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 30px 80px rgba(0, 75, 87, 0.18),
    0 10px 30px rgba(109, 81, 76, 0.12);
}

.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  z-index: -1;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-right: 2px solid var(--petrol);
  border-bottom: 2px solid var(--petrol);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: 30px; left: -40px;
  background: var(--white);
  padding: 16px 24px;
  box-shadow: 0 10px 40px rgba(0, 75, 87, 0.15);
  max-width: 240px;
  border-left: 3px solid var(--orange);
}

.hero-badge .mono {
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}

.hero-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}

@media (max-width: 968px) {
  .hero { padding: 120px 0 80px; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-image {
    max-width: 420px;
  }
  .hero-badge {
    left: 20px;
    bottom: -30px;
  }
}

@media (max-width: 600px) {
  .hero-image::before, .hero-image::after {
    width: 50px; height: 50px;
    top: -10px; left: -10px;
  }
  .hero-image::after {
    top: auto; left: auto;
    bottom: -10px; right: -10px;
  }
  .hero-badge {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    padding: 14px 18px;
  }
  .hero-badge-text { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { width: 100%; }
  .btn-ghost { text-align: left; }
}

/* ========== SECTION BASIS ========== */
section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-label {
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 1px;
  background: var(--orange);
}

.section-title {
  margin-bottom: 32px;
  max-width: 18ch;
}

.section-intro {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--slate);
  max-width: 60ch;
  margin-bottom: 60px;
}

/* ========== VISION ========== */
.vision {
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.vision-blob {
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192, 87, 62, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
}

.vision .container {
  position: relative;
  z-index: 1;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.vision-text h2 {
  margin-bottom: 40px;
  max-width: 14ch;
}

.vision-text h2 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--petrol);
}

.vision-quote {
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 28px;
  margin-bottom: 40px;
  max-width: none;
}

.vision-quote p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
}

.vision-paragraphs p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.vision-paragraphs p:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--petrol);
  font-style: italic;
  line-height: 1.4;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 78, 82, 0.15);
}

@media (max-width: 968px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========== ÜBER YVONNE ========== */
.about {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(109, 81, 76, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 45, 56, 0.2);
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-text h2 {
  margin-bottom: 32px;
}

.about-text h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-tags {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(74, 78, 82, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}

.about-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
  background: rgba(0, 75, 87, 0.08);
  padding: 9px 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.about-tag:hover {
  background: rgba(0, 75, 87, 0.14);
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ========== FÜR WEN ========== */
.forwhom {
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.forwhom-blob {
  position: absolute;
  bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 75, 87, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
}

.forwhom .container {
  position: relative;
  z-index: 1;
}

.forwhom-intro {
  max-width: 680px;
  margin-bottom: 80px;
}

.forwhom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.forwhom-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s;
  border-top: 3px solid transparent;
}

.forwhom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 75, 87, 0.1);
  border-top-color: var(--orange);
}

.forwhom-card .mono {
  color: var(--orange);
  margin-bottom: 20px;
}

.forwhom-card h3 {
  margin-bottom: 20px;
  color: var(--petrol);
}

.forwhom-card p {
  color: var(--slate);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .forwhom-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .forwhom-cards { grid-template-columns: 1fr; }
  .forwhom-card { padding: 36px 28px; }
}

/* ========== WIE ICH ARBEITE ========== */
.how {
  background: var(--petrol);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(192, 87, 62, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(109, 81, 76, 0.2) 0%, transparent 60%);
  z-index: 0;
}

.how .container {
  position: relative;
  z-index: 1;
}

.how .section-label { color: var(--sand); }
.how .section-label::before { background: var(--sand); }

.how h2 { color: var(--white); }

.how .section-intro {
  color: rgba(250, 250, 248, 0.85);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 60px;
}

.principle {
  position: relative;
  padding: 32px 8px 0 0;
  border-top: 1px solid rgba(233, 220, 201, 0.2);
}

.principle-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--sand);
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.principle h3 {
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1.1;
}

.principle-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}

.principle p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.82);
  max-width: none;
}

@media (max-width: 1100px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .principles { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== TEAM-FITNESS-CHECK ========== */
.teamcheck {
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.teamcheck-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(192, 87, 62, 0.2) 0%, transparent 55%);
  z-index: 0;
}

.teamcheck .container {
  position: relative;
  z-index: 1;
}

.teamcheck-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.teamcheck-text .section-label {
  color: var(--orange);
}

.teamcheck-text h2 {
  max-width: 14ch;
}

.teamcheck-text h2 .highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 45%, rgba(192, 87, 62, 0.2) 45%, rgba(192, 87, 62, 0.2) 100%);
  padding: 0 4px;
}

.teamcheck-lead {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 52ch;
}

.teamcheck-bullets {
  list-style: none;
  margin-bottom: 40px;
  max-width: 54ch;
}

.teamcheck-bullets li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid rgba(74, 78, 82, 0.12);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.teamcheck-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 1.5px;
  background: var(--orange);
}

.teamcheck-visual {
  position: relative;
  background: var(--white);
  padding: 48px 40px;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 75, 87, 0.12);
}

.teamcheck-visual::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
}

.teamcheck-visual::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60px; height: 60px;
  border-right: 2px solid var(--petrol);
  border-bottom: 2px solid var(--petrol);
}

.teamcheck-visual .mono {
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.teamcheck-visual h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--petrol);
  margin-bottom: 20px;
  line-height: 1.05;
}

.teamcheck-visual p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

.teamcheck-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(74, 78, 82, 0.15);
  border-bottom: 1px solid rgba(74, 78, 82, 0.15);
}

.teamcheck-stat {
  text-align: center;
}

.teamcheck-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.teamcheck-stat span {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

@media (max-width: 968px) {
  .teamcheck-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ========== KONTAKT ========== */
.contact {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.contact-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(192, 87, 62, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(0, 75, 87, 0.12) 0%, transparent 55%);
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-inner {
  max-width: 800px;
}

.contact h2 {
  max-width: 16ch;
  margin-bottom: 32px;
}

.contact h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.contact-lead {
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 54ch;
}

.contact-microcopy {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
  max-width: 60ch;
}
.contact-microcopy::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 1px;
  background: var(--orange);
}

.contact-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(74, 78, 82, 0.2);
  max-width: 600px;
}

.contact-detail .mono {
  color: var(--slate);
  display: block;
  margin-bottom: 8px;
}

.contact-detail a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--petrol);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--orange); }

@media (max-width: 600px) {
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  .contact-actions { flex-direction: column; align-items: stretch; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--petrol-dark);
  color: var(--sand);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(233, 220, 201, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 52px;
}

.footer-logo-img {
  height: 100%;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(233, 220, 201, 0.8);
  margin-top: 12px;
  max-width: 32ch;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--sand);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--orange); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(233, 220, 201, 0.6);
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .footer-inner { align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== WELLEN-ORNAMENT ========== */
.wave-ornament {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0;
}
/* ========== LEGAL SUBPAGES ========== */
.legal-page {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.legal-page-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(192, 87, 62, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(0, 75, 87, 0.12) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.legal-page .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 48px;
  max-width: 16ch;
}

.legal-page h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}

.legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--petrol);
  margin-top: 56px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 18px;
  max-width: 72ch;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 10px;
  padding-left: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--petrol);
  border-bottom: 1px solid rgba(0, 75, 87, 0.3);
  transition: all 0.2s;
}

.legal-content a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.legal-content strong { font-weight: 600; }

.legal-content .mono-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
}

.legal-content .mono-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 1px;
  background: var(--orange);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(74, 78, 82, 0.15);
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: var(--petrol);
  transition: color 0.2s;
}

.legal-back::before {
  content: '←';
  transition: transform 0.3s;
}

.legal-back:hover {
  color: var(--orange);
}

.legal-back:hover::before {
  transform: translateX(-4px);
}

.legal-content address {
  font-style: normal;
  line-height: 1.8;
  padding: 20px 0;
}
