    /* ============================================
       DESIGN TOKENS
       ============================================ */
    :root {
      --color-deep: #061924;
      --color-deep-lighter: #0a2a3d;
      --color-titan: #8D847E;
      --color-gray-light: #d2d0cf;
      --color-gray-medium-light: #aba6a3;
      --color-gray-medium: #706a66;
      --color-gray-dark: #595552;
      --color-white: #FFFFFF;
      --color-off-white: #f5f4f3;
      --color-accent-glow: rgba(141, 132, 126, 0.12);

      --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;

      --text-sm: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
      --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
      --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
      --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
      --text-2xl: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
      --text-3xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.75rem);

      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2.5rem;
      --space-xl: 4rem;
      --space-2xl: 6rem;
      --space-3xl: 8rem;
      --space-section: clamp(5rem, 4rem + 5vw, 9rem);

      --max-width-text: 38rem;
      --max-width-page: 72rem;
      --gutter: clamp(1.25rem, 1rem + 2vw, 3rem);

      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --duration-normal: 0.4s;
    }

    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: var(--text-base);
      line-height: 1.7;
      color: var(--color-gray-dark);
      background-color: var(--color-deep);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: 0.03em;
    }

    p {
      max-width: var(--max-width-text);
    }

    /* ============================================
       WORDMARK
       ============================================ */
    .wordmark {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: var(--text-lg);
      letter-spacing: 0.22em;
      text-transform: lowercase;
      color: var(--color-white);
    }

    /* ============================================
       LAYOUT
       ============================================ */
    .section {
      padding: var(--space-section) var(--gutter);
    }

    .section-inner {
      max-width: var(--max-width-page);
      margin: 0 auto;
    }

    /* ============================================
       SCROLL-DRIVEN ANIMATIONS
       ============================================ */

    /* Fade up — the workhorse reveal */
    .fade-up {
      opacity: 0;
      transform: translateY(2rem);
      animation: fadeUp 0.8s var(--ease-out) forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Fade in from left */
    .fade-left {
      opacity: 0;
      transform: translateX(-2rem);
      animation: fadeLeft 0.8s var(--ease-out) forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }

    @keyframes fadeLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Fade in from right */
    .fade-right {
      opacity: 0;
      transform: translateX(2rem);
      animation: fadeRight 0.8s var(--ease-out) forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }

    @keyframes fadeRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Scale reveal — for emphasis elements */
    .scale-reveal {
      opacity: 0;
      transform: scale(0.95);
      animation: scaleReveal 1s var(--ease-out) forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }

    @keyframes scaleReveal {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Fallback for browsers without scroll-driven animations */
    @supports not (animation-timeline: view()) {
      .fade-up,
      .fade-left,
      .fade-right,
      .scale-reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* ============================================
       STAGGERED HERO REVEAL
       ============================================ */
    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-reveal {
      opacity: 0;
      animation: heroReveal 1s var(--ease-out) forwards;
    }

    .hero-reveal-1 { animation-delay: 200ms; }
    .hero-reveal-2 { animation-delay: 600ms; }
    .hero-reveal-3 { animation-delay: 1000ms; }
    .hero-reveal-4 { animation-delay: 1400ms; }

    /* ============================================
       DECORATIVE ANIMATED LINE
       A thin glowing line that pulses subtly
       ============================================ */
    .glow-line {
      display: block;
      max-width: var(--max-width-text);
      margin: 0 auto;
      height: 1px;
      border: none;
      background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-titan) 30%,
        var(--color-titan) 70%,
        transparent 100%
      );
      opacity: 0.35;
      position: relative;
    }

    @supports (animation-timeline: view()) {
      .glow-line {
        transform: scaleX(0);
        animation: lineExpand 1.2s var(--ease-out) forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 50%;
      }
    }

    @keyframes lineExpand {
      to {
        transform: scaleX(1);
      }
    }

    /* Accent dot on line center */
    .glow-line::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background-color: var(--color-titan);
      opacity: 0.6;
    }

    /* ============================================
       SECTION 1: HERO
       ============================================ */
    .hero {
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: var(--color-deep);
      background-image: url('image/output_1536620418_0.jpeg');
      background-size: cover;
      background-position: center;
      color: var(--color-white);
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(6, 25, 36, 0.65) 0%,
        rgba(6, 25, 36, 0.75) 50%,
        rgba(6, 25, 36, 0.9) 100%
      );
      z-index: 0;
    }

    .hero > * {
      position: relative;
      z-index: 1;
    }

    .hero-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: var(--space-lg) var(--gutter);
    }

    .hero .section-inner {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .hero h1 {
      font-size: var(--text-3xl);
      color: var(--color-white);
      max-width: 18em;
      font-weight: 400;
    }

    .hero-subline {
      font-size: var(--text-lg);
      color: var(--color-gray-light);
      max-width: 32em;
      font-weight: 300;
      line-height: 1.6;
    }

    .hero-rule {
      width: 3rem;
      height: 1px;
      background-color: var(--color-titan);
      border: none;
      margin-top: var(--space-sm);
    }

    /* Subtle scroll indicator */
    .hero-scroll-hint {
      position: absolute;
      bottom: var(--space-lg);
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: heroReveal 1s var(--ease-out) forwards;
      animation-delay: 2000ms;
    }

    .hero-scroll-hint::before {
      content: '';
      width: 1px;
      height: 2rem;
      background: linear-gradient(180deg, var(--color-titan), transparent);
      animation: scrollPulse 2.5s var(--ease-smooth) infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 0.7; transform: scaleY(1.2); }
    }

    /* ============================================
       SECTION: LIGHT
       ============================================ */
    .section-light {
      background-color: var(--color-white);
      color: var(--color-gray-dark);
    }

    .section-light h2 {
      font-size: var(--text-2xl);
      color: var(--color-deep);
      margin-bottom: var(--space-lg);
    }

    .section-light p {
      margin-bottom: var(--space-md);
    }

    /* ============================================
       SECTION: DARK
       ============================================ */
    .section-dark {
      background-color: var(--color-deep);
      color: var(--color-gray-light);
      position: relative;
    }

    .section-dark h2 {
      font-size: var(--text-2xl);
      color: var(--color-white);
      margin-bottom: var(--space-lg);
    }

    .section-dark p {
      margin-bottom: var(--space-md);
      color: var(--color-gray-light);
    }

    /* ============================================
       PHONE SHOWCASE — Three phones with depth
       ============================================ */
    .phone-showcase {
      background-color: var(--color-deep);
      padding: var(--space-2xl) var(--gutter);
      overflow: hidden;
      position: relative;
    }

    /* Radial glow behind phones */
    .phone-showcase::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      height: 80%;
      background: radial-gradient(
        ellipse at center,
        rgba(141, 132, 126, 0.08) 0%,
        transparent 70%
      );
      pointer-events: none;
    }

    .phone-showcase-inner {
      max-width: var(--max-width-page);
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(1.5rem, 3vw, 3.5rem);
      position: relative;
    }

    .phone-mock {
      flex: 0 0 auto;
      filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    }

    .phone-mock img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Left phone — smaller, tilted, pushed back */
    .phone-mock-1 {
      width: clamp(140px, 16vw, 210px);
      transform: rotate(-4deg) translateY(2rem);
      opacity: 0.85;
    }

    /* Center phone — hero, largest, straight */
    .phone-mock-2 {
      width: clamp(180px, 22vw, 280px);
      transform: translateY(0);
      z-index: 2;
    }

    /* Right phone — smaller, tilted opposite */
    .phone-mock-3 {
      width: clamp(140px, 16vw, 210px);
      transform: rotate(4deg) translateY(2rem);
      opacity: 0.85;
    }

    /* Scroll-driven phone entrance */
    @supports (animation-timeline: view()) {
      .phone-mock-1 {
        animation: phoneLeft 1.2s var(--ease-out) forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
        opacity: 0;
      }

      .phone-mock-2 {
        animation: phoneCenter 1s var(--ease-out) forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 35%;
        opacity: 0;
      }

      .phone-mock-3 {
        animation: phoneRight 1.2s var(--ease-out) forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
        opacity: 0;
      }

      @keyframes phoneLeft {
        from {
          opacity: 0;
          transform: rotate(-4deg) translateX(-3rem) translateY(5rem) scale(0.9);
        }
        to {
          opacity: 0.85;
          transform: rotate(-4deg) translateY(2rem);
        }
      }

      @keyframes phoneCenter {
        from {
          opacity: 0;
          transform: translateY(4rem) scale(0.92);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes phoneRight {
        from {
          opacity: 0;
          transform: rotate(4deg) translateX(3rem) translateY(5rem) scale(0.9);
        }
        to {
          opacity: 0.85;
          transform: rotate(4deg) translateY(2rem);
        }
      }
    }

    @supports not (animation-timeline: view()) {
      .phone-mock { opacity: 1; }
      .phone-mock-1 { opacity: 0.85; }
      .phone-mock-3 { opacity: 0.85; }
    }

    @media (max-width: 36rem) {
      .phone-showcase {
        padding: var(--space-xl) var(--gutter);
      }

      .phone-showcase-inner {
        gap: 0.75rem;
      }

      .phone-mock-1 {
        width: clamp(90px, 25vw, 120px);
        transform: rotate(-3deg) translateY(1rem);
      }

      .phone-mock-2 {
        width: clamp(120px, 34vw, 160px);
      }

      .phone-mock-3 {
        width: clamp(90px, 25vw, 120px);
        transform: rotate(3deg) translateY(1rem);
      }
    }

    /* ============================================
       WERTE: VALUE PILLARS with animated reveal
       ============================================ */
    .value-pillars {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      margin-top: var(--space-xl);
    }

    @media (min-width: 48rem) {
      .value-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
      }
    }

    .value-pillar {
      position: relative;
      padding-top: var(--space-md);
    }

    .value-pillar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2rem;
      height: 1px;
      background-color: var(--color-titan);
      opacity: 0.5;
    }

    .value-pillar strong {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: var(--text-sm);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-white);
      display: block;
      margin-bottom: var(--space-sm);
    }

    .value-pillar p {
      margin-bottom: 0;
      font-size: var(--text-base);
      line-height: 1.7;
    }

    /* Staggered pillar reveal */
    @supports (animation-timeline: view()) {
      .value-pillar:nth-child(1) { animation-delay: 0ms; }
      .value-pillar:nth-child(2) { animation-delay: 150ms; }
      .value-pillar:nth-child(3) { animation-delay: 300ms; }
    }

    /* ============================================
       SECTION: WARM (off-white)
       ============================================ */
    .section-warm {
      background-color: var(--color-off-white);
      color: var(--color-gray-dark);
    }

    .section-warm h2 {
      font-size: var(--text-2xl);
      color: var(--color-deep);
      margin-bottom: var(--space-lg);
    }

    .section-warm p {
      margin-bottom: var(--space-md);
    }

    /* ============================================
       CITIES — horizontal flow
       ============================================ */
    .cities {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 0;
      margin-top: var(--space-lg);
      list-style: none;
      padding: 0;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: var(--text-xl);
      letter-spacing: 0.08em;
      color: var(--color-titan);
      line-height: 1;
    }

    .city {
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    .city:not(:last-child)::after {
      content: '\00b7';
      display: inline-block;
      padding: 0 0.6em;
      color: var(--color-gray-medium-light);
      font-weight: 300;
    }

    @media (max-width: 36rem) {
      .cities {
        flex-direction: column;
        gap: var(--space-xs);
      }

      .city:not(:last-child)::after {
        display: none;
      }
    }

    /* ============================================
       SECTION: PARTNER — visually distinct
       ============================================ */
    .section-partner {
      background-color: var(--color-deep);
      color: var(--color-gray-light);
      position: relative;
      overflow: hidden;
    }

    /* Subtle diagonal gradient overlay */
    .section-partner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(141, 132, 126, 0.06) 0%,
        transparent 50%
      );
      pointer-events: none;
    }

    .section-partner .section-inner {
      position: relative;
      border-left: 1px solid rgba(141, 132, 126, 0.3);
      padding-left: var(--space-lg);
    }

    .section-partner h2 {
      font-size: var(--text-2xl);
      color: var(--color-white);
      margin-bottom: var(--space-lg);
    }

    .section-partner p {
      margin-bottom: var(--space-md);
      color: var(--color-gray-light);
    }

    .section-partner .cta-button {
      margin-top: var(--space-sm);
    }

    @media (max-width: 48rem) {
      .section-partner .section-inner {
        padding-left: var(--space-md);
      }
    }

    /* ============================================
       CTA SECTION
       ============================================ */
    .section-cta {
      background-color: var(--color-deep);
      color: var(--color-white);
      text-align: center;
      position: relative;
    }

    /* Subtle radial glow from center */
    .section-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      height: 100%;
      background: radial-gradient(
        ellipse at top center,
        rgba(141, 132, 126, 0.06) 0%,
        transparent 70%
      );
      pointer-events: none;
    }

    .section-cta .section-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .section-cta h2 {
      font-size: var(--text-2xl);
      color: var(--color-white);
      margin-bottom: var(--space-lg);
    }

    .section-cta p {
      color: var(--color-gray-light);
      margin-bottom: var(--space-lg);
      text-align: center;
    }

    /* CTA Buttons */
    .cta-button {
      display: inline-block;
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--color-white);
      border: 1px solid var(--color-titan);
      padding: 1rem 2.5rem;
      transition: background-color var(--duration-normal) var(--ease-smooth),
                  color var(--duration-normal) var(--ease-smooth),
                  border-color var(--duration-normal) var(--ease-smooth),
                  transform var(--duration-normal) var(--ease-smooth),
                  box-shadow var(--duration-normal) var(--ease-smooth);
    }

    .cta-button:hover,
    .cta-button:focus-visible {
      background-color: var(--color-white);
      color: var(--color-deep);
      border-color: var(--color-white);
      transform: scale(1.02);
      box-shadow: 0 4px 24px rgba(141, 132, 126, 0.2);
    }

    .cta-button:focus-visible {
      outline: 2px solid var(--color-white);
      outline-offset: 4px;
    }

    .cta-group {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-reassurance {
      font-size: var(--text-sm);
      color: var(--color-gray-medium);
      margin-top: var(--space-lg);
    }

    .cta-region {
      font-size: var(--text-sm);
      color: var(--color-gray-medium);
      margin-top: var(--space-xs);
      letter-spacing: 0.06em;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background-color: var(--color-deep);
      border-top: 1px solid rgba(141, 132, 126, 0.15);
      padding: var(--space-lg) var(--gutter);
      text-align: center;
    }

    .footer-inner {
      max-width: var(--max-width-page);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-sm);
    }

    .footer .wordmark {
      font-size: var(--text-sm);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 48rem) {
      .hero {
        min-height: 100svh;
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-lg);
      }

      .hero .section-inner {
        gap: var(--space-md);
      }

      .hero h1 {
        font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.25rem);
      }

      .hero-subline {
        font-size: var(--text-base);
      }

      .hero-scroll-hint {
        display: none;
      }
    }

    @media (min-width: 48rem) {
      .hero .section-inner {
        padding-top: var(--space-xl);
      }
    }

    @media (min-width: 64rem) {
      .hero h1 {
        max-width: 16em;
      }

      .cities {
        font-size: var(--text-xl);
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .fade-up,
      .fade-left,
      .fade-right,
      .scale-reveal,
      .hero-reveal,
      .glow-line,
      .phone-mock {
        opacity: 1;
        transform: none;
        animation: none;
      }

      .phone-mock-1,
      .phone-mock-3 {
        opacity: 0.85;
      }

      html {
        scroll-behavior: auto;
      }

      .cta-button {
        transition: none;
      }

      .hero-scroll-hint {
        display: none;
      }
    }

    /* ============================================
       UTILITY CLASSES
       ============================================ */
    .pullquote {
      font-size: var(--text-xl);
      font-family: var(--font-display);
      line-height: 1.5;
      color: var(--color-deep);
      max-width: 36em;
    }

    .section-partner-subtitle {
      color: var(--color-white);
      font-size: var(--text-lg);
      margin-bottom: var(--space-lg);
    }

    .section-seasonal-note {
      margin-top: var(--space-md);
      color: var(--color-gray-medium);
    }
