:root {
    --cream: #F8F4EF;
    --blush: #EDD8E2;
    --rose: #C4909E;
    --rose-dark: #A87080;
    --deep: #2C1F1A;
    --warm-grey: #7A6C66;
    --white: #FDFAF7;
    --section-gap: 100px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--deep);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 250, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--blush);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: 0 2px 20px rgba(44,31,26,0.08); }

  .nav-logo {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
  }
  .nav-logo .logo-glamour {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--deep);
    line-height: 1;
  }
  .nav-logo .logo-vision-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-logo .logo-line {
    height: 0.5px;
    width: 16px;
    background: var(--rose);
    display: inline-block;
    flex-shrink: 0;
  }
  .nav-logo .logo-vision {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: var(--rose);
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
  }
  .nav-logo .logo-by {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--warm-grey);
    line-height: 1;
    margin-top: 2px;
  }
  .footer-brand .nav-logo .logo-by { color: rgba(237,216,226,0.7); }
  .footer-brand .nav-logo .logo-glamour { color: var(--blush); }

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

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-grey);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
  }

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

  /* ── DROPDOWN ── */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .nav-dropdown > a::after {
    content: '▾';
    font-size: 0.7rem;
    transition: transform 0.25s;
    display: inline-block;
  }
  .nav-dropdown.open > a::after { transform: rotate(180deg); }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    z-index: 200;
    min-width: 210px;
  }
  .dropdown-menu-inner {
    background: var(--white);
    border: 1px solid var(--blush);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(44,31,26,0.1);
    overflow: hidden;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu a {
    display: block !important;
    padding: 13px 20px !important;
    font-size: 0.83rem !important;
    letter-spacing: 0.06em;
    color: var(--warm-grey) !important;
    border-bottom: 1px solid var(--blush);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover { background: var(--cream); color: var(--rose) !important; }

  /* Mobile dropdown */
  @media (max-width: 900px) {
    .dropdown-menu {
      position: static;
      transform: none;
      padding-top: 0;
    }
    .dropdown-menu-inner {
      box-shadow: none;
      border: none;
      border-radius: 0;
      background: var(--cream);
    }
    .nav-dropdown > a { justify-content: space-between; }
    .dropdown-menu a { padding: 12px 32px !important; font-size: 0.85rem !important; }
  }

  .nav-cta {
    background: var(--rose);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 400 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--rose-dark) !important; color: var(--white) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--deep);
    transition: all 0.3s;
  }

  /* ── PAGE SYSTEM ── */
  .page { display: none; padding-top: 70px; min-height: 100vh; }
  .page.active { display: block; }

  /* ── HERO ── */
  .hero {
    background: var(--cream);
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    overflow: hidden;
  }

  .hero-text {
    padding: 80px 60px 80px 80px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--deep);
    margin-bottom: 28px;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--warm-grey);
    max-width: 440px;
    margin-bottom: 44px;
    line-height: 1.8;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--rose);
    color: var(--white);
    border: none;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--deep);
    border: 1.5px solid var(--deep);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--deep); color: var(--white); }

  .btn-ghost {
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover { background: var(--rose); color: var(--white); }

  .hero-visual {
    height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
  }

  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blush) 0%, #D4B0BC 40%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .hero-image-placeholder .img-hint {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 0 40px;
  }

  .img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, var(--blush) 0%, #D4B0BC 60%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }

  .img-placeholder-square {
    aspect-ratio: 1;
  }

  .img-placeholder-portrait {
    aspect-ratio: 3/4;
  }

  .img-placeholder-wide {
    aspect-ratio: 16/7;
  }

  .img-label {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    text-align: center;
    padding: 0 20px;
  }

  /* ── SECTION BASE ── */
  .section {
    padding: 100px 80px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
    font-weight: 400;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--deep);
    margin-bottom: 20px;
  }

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

  .section-intro {
    font-size: 1.05rem;
    color: var(--warm-grey);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 60px;
  }

  /* ── HOME: THEMEN GRID ── */
  .topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
  }

  .topic-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .topic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,31,26,0.1); }

  .topic-card-img {
    height: 220px;
  }

  .topic-card-body {
    padding: 28px;
  }

  .topic-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--deep);
  }

  .topic-card-text {
    font-size: 0.9rem;
    color: var(--warm-grey);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .link-arrow {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    font-weight: 400;
    background: none;
    border: none;
    font-family: var(--font-body);
  }
  .link-arrow:hover { gap: 10px; }
  .link-arrow::after { content: '→'; }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--deep);
    padding: 60px 80px;
  }

  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }

  .trust-item {
    color: var(--blush);
  }

  .trust-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 8px;
  }

  .trust-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  /* ── FREEBIE STRIP ── */
  .freebie-strip {
    background: var(--blush);
    padding: 80px;
  }

  .freebie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .freebie-list {
    list-style: none;
    margin: 20px 0 36px;
  }
  .freebie-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(44,31,26,0.1);
    font-size: 0.95rem;
    color: var(--deep);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .freebie-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  /* ── BRAUT SECTION ── */
  .braut-section {
    background: var(--cream);
  }

  .braut-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ── ABOUT STRIP (Home) ── */
  .about-strip {
    padding: 100px 80px;
  }
  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--deep);
    border-left: 2px solid var(--rose);
    padding-left: 24px;
    margin: 28px 0;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--cream);
    padding: 100px 80px;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
  }
  .testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 4px;
  }
  .testimonial-stars {
    color: var(--rose);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--deep);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
    margin-bottom: 20px;
  }
  .testimonial-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-grey);
  }

  /* ── CONTENT PAGES ── */
  .page-hero {
    background: var(--cream);
    padding: 80px 80px 60px;
    border-bottom: 1px solid var(--blush);
  }
  .page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
  }

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

  /* ── TIPS GRID ── */
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
  }
  .tip-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 4px;
  }
  .tip-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 300;
  }
  .tip-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .tip-text { font-size: 0.9rem; color: var(--warm-grey); line-height: 1.7; }

  /* ── PRODUCT CTA ── */
  .product-cta {
    background: var(--deep);
    border-radius: 4px;
    padding: 60px;
    text-align: center;
    margin: 60px 0 0;
  }
  .product-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--blush);
    font-weight: 300;
    margin-bottom: 16px;
  }
  .product-cta p {
    color: rgba(232,213,200,0.7);
    margin-bottom: 32px;
    font-size: 0.95rem;
  }

  /* ── EBOOK CARDS ── */
  .ebook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
  }
  .ebook-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s;
  }
  .ebook-card:hover { transform: translateY(-4px); }

  .ebook-cover {
    height: 260px;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .ebook-cover-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    text-align: center;
    line-height: 1.4;
  }
  .ebook-body {
    padding: 28px;
  }
  .ebook-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .ebook-desc {
    font-size: 0.88rem;
    color: var(--warm-grey);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .ebook-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--rose);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .ebook-tag.free { background: #7A9E7E; }

  /* ── PRICING ── */
  .price-tag {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep);
    font-weight: 300;
    margin-bottom: 16px;
  }

  /* ── BRAUT PAGE ── */
  .braut-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 40px 0;
  }
  .braut-step {
    padding: 36px 28px;
    border-top: 2px solid var(--rose);
  }
  .braut-step-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
  }
  .braut-step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .braut-step-text {
    font-size: 0.88rem;
    color: var(--warm-grey);
    line-height: 1.7;
  }

  /* ── TERMIN PAGE ── */
  .booking-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }
  .booking-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 32px 0 12px;
    font-weight: 300;
  }
  .booking-info p { font-size: 0.95rem; color: var(--warm-grey); line-height: 1.8; }

  .booking-form {
    background: var(--cream);
    padding: 44px;
    border-radius: 4px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--blush);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--rose);
  }
  .form-group textarea { min-height: 100px; resize: vertical; }

  /* ── UBER MICH ── */
  .about-page-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
  }

  .expertise-list {
    list-style: none;
    margin: 24px 0;
  }
  .expertise-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--blush);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .expertise-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  /* ── KONTAKT ── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .contact-method {
    padding: 32px;
    background: var(--cream);
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .contact-method h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .contact-method p {
    font-size: 0.9rem;
    color: var(--warm-grey);
    line-height: 1.7;
  }

  /* ── LEGAL ── */
  .legal-content {
    max-width: 720px;
    margin: 0 auto;
  }
  .legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 40px 0 12px;
    color: var(--deep);
  }
  .legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin: 28px 0 8px;
  }
  .legal-content p {
    font-size: 0.9rem;
    color: var(--warm-grey);
    line-height: 1.8;
    margin-bottom: 14px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    color: var(--blush);
    padding: 70px 80px 40px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(232,213,200,0.15);
  }
  .footer-brand .nav-logo { display: flex; margin-bottom: 20px; }
  .footer-brand p {
    font-size: 0.88rem;
    color: rgba(232,213,200,0.6);
    line-height: 1.8;
    max-width: 280px;
  }
  .footer-col h5 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(232,213,200,0.6);
    text-decoration: none;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--blush); }
  .footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(232,213,200,0.4);
  }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: var(--blush);
    margin: 0;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--white);
      padding: 20px 40px 40px;
      border-top: 1px solid var(--blush);
      gap: 0;
      z-index: 99;
    }
    .nav-links.open li { border-bottom: 1px solid var(--blush); }
    .nav-links.open a { padding: 16px 0; display: block; font-size: 0.95rem; }
    .hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { height: 50vw; min-height: 280px; }
    .hero-text { padding: 50px 24px; }

    .section { padding: 60px 24px; }
    .topics-grid { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: 1fr 1fr; }
    .freebie-strip { padding: 60px 24px; }
    .freebie-inner { grid-template-columns: 1fr; gap: 40px; }
    .braut-inner { grid-template-columns: 1fr; }
    .about-strip { padding: 60px 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .braut-steps { grid-template-columns: 1fr; }
    .ebook-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .about-page-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .page-hero { padding: 50px 24px; }
    .page-hero-inner { grid-template-columns: 1fr; }
    .content-section { padding: 50px 24px; }
    .product-cta { padding: 40px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    footer { padding: 60px 24px 30px; }
    nav { padding: 0 24px; }
    .trust-strip { padding: 60px 24px; }
    .braut-section { padding: 60px 24px; }
    .testimonials { padding: 60px 24px; }
    .booking-form { padding: 28px 24px; }
  }

  @media (max-width: 480px) {
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { text-align: center; }
  }

  /* ── PAGE TRANSITION ── */
  .page.active {
    animation: fadeIn 0.25s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── ACTIVE NAV LINK ── */
  .nav-links a.nav-active {
    color: var(--rose);
  }

  /* ── HAMBURGER OPEN STATE ── */
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#kontaktForm { scroll-margin-top: 90px; }

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--deep);
  line-height: 1.15;
}
.footer-brand .nav-logo .logo-main { color: var(--blush); }

.nav-logo { color: var(--deep); }
.nav-logo .logo-main {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
  line-height: 1.25;
}
.nav-logo .logo-by {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--rose);
  line-height: 1;
  margin-top: 4px;
}
.footer-brand .nav-logo, .footer-brand .nav-logo .logo-main { color: var(--blush); }
.footer-brand .nav-logo .logo-by { color: rgba(237,216,226,0.75); }

.booking-info h3:first-child { margin-top: 0; }
