:root {
    --bordeaux: #8B1A47;
    --bordeaux-light: #A8235A;
    --bordeaux-dim: rgba(139,26,71,0.13);
    --bordeaux-border: rgba(139,26,71,0.28);
    --amber: #F0A830;
    --amber-light: #F5C060;
    --amber-dim: rgba(240,168,48,0.13);
    --amber-border: rgba(240,168,48,0.3);
    --dark: #100B0E;
    --dark-2: #180F13;
    --dark-3: #20141A;
    --dark-4: #281820;
    --cream: #F5EDD8;
    --cream-dim: rgba(245,237,216,0.72);
    --cream-muted: rgba(245,237,216,0.42);
    --white: #FDFAF4;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background-color: var(--dark);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* â”€â”€ NOISE TEXTURE â”€â”€ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  section, nav, footer { position: relative; z-index: 1; }

  /* â”€â”€ NAV â”€â”€ */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-bottom: 1px solid var(--bordeaux-border);
  }

  .nav-logo-wrap {
    display: flex;
    align-items: center;
    background: var(--dark);
    padding: 14px 36px;
    border-right: 1px solid var(--bordeaux-border);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.25s;
  }
  .nav-logo-wrap:hover { opacity: 0.75; }

  .nav-logo-wrap img {
    height: 60px;
    width: auto;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
  }

  .nav-links { display: flex; align-items: center; gap: 4px; padding: 0 24px; }
  .nav-link { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-muted); text-decoration: none; padding: 8px 12px; transition: color 0.2s; }
  .nav-link:hover, .nav-link.active { color: var(--amber); }

  .nav-right {
    display: flex;
    align-items: center;
    padding: 0 32px;
  }

  .nav-cta {
    font-size: 0.73rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border: 1px solid var(--amber-border);
    padding: 10px 26px;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .nav-cta:hover { background: var(--amber-dim); border-color: var(--amber); }

  /* â”€â”€ HERO – SPLIT â”€â”€ */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }

  .hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 56px;
    position: relative;
  }

  .hero-text-side::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(139,26,71,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-photo-side {
    position: relative;
    overflow: hidden;
  }

  .hero-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% top;
    display: block;
  }

  .hero-photo-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, var(--dark), transparent);
    z-index: 1;
  }

  .hero-photo-side::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 28px;
    animation: fadeUp 1s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeUp 1s ease 0.15s both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--amber-light);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-dim);
    margin-top: 24px;
    margin-bottom: 52px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeUp 1s ease 0.3s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.45s both;
  }

  .hero-badge {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    animation: fadeUp 1s ease 0.6s both;
  }

  .hero-badge-item .val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--amber);
    display: block;
    line-height: 1;
  }

  .hero-badge-item .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-muted);
    display: block;
    margin-top: 5px;
  }

  /* â”€â”€ BUTTONS â”€â”€ */
  .btn-primary {
    display: inline-block;
    background: var(--bordeaux);
    color: var(--white);
    padding: 18px 48px;
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bordeaux-light);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-outline {
    display: inline-block;
    color: var(--amber);
    padding: 16px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.73rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--amber-border);
    transition: all 0.3s ease;
  }

  .btn-outline:hover { background: var(--amber-dim); border-color: var(--amber); }

  .btn-primary-large {
    display: inline-block;
    background: var(--bordeaux);
    color: var(--white);
    padding: 22px 64px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bordeaux-light);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .btn-primary-large:hover::before { transform: translateX(0); }
  .btn-primary-large span { position: relative; z-index: 1; }

  /* â”€â”€ DIVIDER â”€â”€ */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    opacity: 0.35;
  }

  .divider::before, .divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: var(--bordeaux);
  }

  .divider span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--amber);
  }

  /* â”€â”€ SECTIONS â”€â”€ */
  .section {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 32px;
  }

  .section-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px;
  }

  .section-label {
    font-size: 0.63rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
  }

  .section-title em { font-style: italic; color: var(--amber-light); }

  .section-body {
    font-size: 1.05rem;
    color: var(--cream-dim);
    line-height: 1.85;
  }

  .section-body p { margin-bottom: 20px; }

  /* â”€â”€ DARK SECTION â”€â”€ */
  .dark-section {
    background: var(--dark-2);
    border-top: 1px solid var(--bordeaux-border);
    border-bottom: 1px solid var(--bordeaux-border);
  }

  /* â”€â”€ ZITAT BOX â”€â”€ */
  .quote-box {
    background: var(--dark-3);
    border: 1px solid var(--bordeaux-border);
    padding: 52px 48px;
    margin-top: 48px;
    position: relative;
    text-align: center;
  }

  .quote-box::before {
    content: '\2726';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-3);
    padding: 0 16px;
    color: var(--amber);
    font-size: 1.1rem;
  }

  .quote-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
  }

  /* â”€â”€ MARKTLÜCKE â”€â”€ */
  .gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
    background: var(--bordeaux-border);
  }

  .gap-item {
    background: var(--dark-2);
    padding: 28px 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.3s ease;
  }

  .gap-item:hover { background: var(--dark-3); }

  .gap-icon {
    color: var(--amber);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .gap-text { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.65; }
  .gap-text strong { color: var(--cream); font-weight: 400; display: block; margin-bottom: 4px; }

  /* â”€â”€ GENIUS CARDS â”€â”€ */
  .genius-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 52px;
    background: var(--bordeaux-border);
  }

  .genius-card {
    background: var(--dark-2);
    padding: 44px 36px;
    transition: background 0.3s ease;
  }

  .genius-card:hover { background: var(--dark-3); }

  .genius-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(139,26,71,0.18);
    line-height: 1;
    margin-bottom: 16px;
  }

  .genius-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--amber-light);
    margin-bottom: 12px;
  }

  .genius-desc { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.75; }

  /* â”€â”€ SOUL CLIENT QUOTES â”€â”€ */
  .pain-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(139,26,71,0.1);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream-dim);
    line-height: 1.6;
  }

  .pain-list li::before {
    content: '\2014';
    color: var(--amber);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: -2px;
  }

  /* â”€â”€ PROFILES â”€â”€ */
  .profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    margin-top: 48px;
    background: var(--bordeaux-border);
  }

  .profile-card {
    background: var(--dark-3);
    padding: 40px 32px;
    transition: background 0.3s ease;
  }

  .profile-card:hover { background: var(--dark-4); }

  .profile-number {
    font-size: 0.63rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
  }

  .profile-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .profile-desc { font-size: 0.92rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: 20px; }

  .profile-pain {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--cream-muted);
    border-left: 2px solid var(--bordeaux);
    padding-left: 16px;
    line-height: 1.65;
  }

  /* â”€â”€ ANGEBOTE â”€â”€ */
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 52px;
    background: var(--bordeaux-border);
  }

  .offer-card {
    background: var(--dark-2);
    padding: 44px 32px;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .offer-card:hover { background: var(--dark-3); }

  .offer-card.highlight {
    background: var(--dark-3);
    border-top: 2px solid var(--bordeaux);
  }

  .offer-card.highlight:hover { background: var(--dark-4); }

  .offer-card.urfeuer {
    background: var(--dark-3);
    border-top: 2px solid var(--amber);
  }

  .offer-card.urfeuer:hover { background: var(--dark-4); }
  .offer-card.urfeuer .offer-price { color: var(--amber); }
  .offer-card.urfeuer .offer-level { color: var(--amber-light); }

  .offer-level {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
  }

  .offer-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 4px;
  }

  .offer-price-sub {
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    color: var(--cream-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .offer-meta {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 16px;
  }

  .offer-desc { font-size: 0.92rem; color: var(--cream-dim); line-height: 1.7; flex-grow: 1; }

  .offer-features {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .offer-features li {
    font-size: 0.87rem;
    color: var(--cream-dim);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .offer-features li::before {
    content: '\2726';
    color: var(--amber);
    font-size: 0.52rem;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .offer-cta {
    display: block;
    margin-top: 28px;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bordeaux-light);
    text-decoration: none;
    border: 1px solid var(--bordeaux-border);
    padding: 12px 20px;
    transition: all 0.3s ease;
  }

  .offer-cta:hover { background: var(--bordeaux-dim); border-color: var(--bordeaux); }

  .offer-cta-solid {
    display: block;
    margin-top: 28px;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--bordeaux);
    text-decoration: none;
    padding: 14px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
  }

  .offer-cta-solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bordeaux-light);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .offer-cta-solid:hover::before { transform: translateX(0); }
  .offer-cta-solid span { position: relative; z-index: 1; }

  /* â”€â”€ PHASEN â”€â”€ */
  .phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 48px;
    background: var(--bordeaux-border);
  }

  .phase-card {
    background: var(--dark-2);
    padding: 40px 32px;
    transition: background 0.3s ease;
  }

  .phase-card:hover { background: var(--dark-3); }

  .phase-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(240,168,48,0.18);
    line-height: 1;
    margin-bottom: 12px;
  }

  .phase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--amber-light);
    margin-bottom: 6px;
  }

  .phase-duration {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 14px;
  }

  .phase-desc { font-size: 0.92rem; color: var(--cream-dim); line-height: 1.7; }

  /* â”€â”€ ÜBER KATJA â”€â”€ */
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 32px;
  }

  .about-photo {
    overflow: hidden;
    border: 1px solid var(--bordeaux-border);
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    aspect-ratio: 3/4;
  }

  .about-creds {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 28px;
  }

  .about-cred {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.87rem;
    color: var(--cream-dim);
  }

  .about-cred::before {
    content: '\2726';
    color: var(--amber);
    font-size: 0.58rem;
    flex-shrink: 0;
  }

  /* â”€â”€ FUNNEL â”€â”€ */
  .funnel-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
  }

  .funnel-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(139,26,71,0.1);
    align-items: start;
  }

  .funnel-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: rgba(240,168,48,0.25);
    line-height: 1;
    padding-top: 4px;
  }

  .funnel-step-price {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
  }

  .funnel-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
  }

  .funnel-step-desc { font-size: 0.92rem; color: var(--cream-dim); line-height: 1.65; }

  /* â”€â”€ PHOTO MOOD SECTION â”€â”€ */
  .mood-section {
    position: relative;
    height: 440px;
    overflow: hidden;
  }

  .mood-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }

  .mood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      rgba(16,11,14,0.85) 0%,
      rgba(16,11,14,0.5) 45%,
      rgba(16,11,14,0.15) 100%
    );
    display: flex;
    align-items: center;
  }

  .mood-text {
    padding: 0 64px;
    max-width: 560px;
  }

  .mood-text blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
  }

  .mood-text cite {
    display: block;
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    font-style: normal;
  }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--bordeaux-border);
    padding: 48px 32px;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo img {
    height: 80px;
    width: auto;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--cream-muted);
    margin-bottom: 32px;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .footer-links a {
    color: var(--cream-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--amber); }

  /* â”€â”€ ANIMATIONS â”€â”€ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* â”€â”€ RESPONSIVE â”€â”€ */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-photo-side { height: 60vw; order: -1; }
    .hero-photo-side::before { display: none; }
    .hero-photo-side::after {
      height: 100px;
      background: linear-gradient(to top, var(--dark), transparent);
    }
    .hero-text-side { padding: 48px 32px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .gap-grid { grid-template-columns: 1fr; }
    .mood-text { padding: 0 32px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 600px) {
    nav { flex-direction: column; align-items: stretch; }
    .nav-logo-wrap { justify-content: center; }
    .nav-links { order: 3; width: 100%; padding: 12px 16px; border-top: 1px solid var(--bordeaux-border); justify-content: center; flex-wrap: wrap; }
    .nav-right { justify-content: center; padding: 16px 24px; }
    .mood-section { height: 520px; }
    .mood-overlay { align-items: flex-end; padding-bottom: 40px; }
    .mood-text { padding: 0 24px; }
  }
