    /* ===== TOKENS ===== */
    :root {
      --bg:             #F3F5F7;
      --bg-cool:        #EBF0F4;
      --surface:        #FFFFFF;
      --text:           #141821;
      --text-secondary: #4A5060;
      --text-muted:     #7B8394;
      --accent:         #3FBFB0;
      --accent-dark:    #2A9A8C;
      --accent-light:   #D2F0EC;
      --purple:         #7B6BA5;
      --purple-light:   #E8E3F3;
      --cyan:           #5CD6D6;
      --border:         #D4DAE2;
      --border-light:   #E6EAF0;

      --radius-card:    10px;
      --radius-btn:     50px;

      --section-v:      100px;
      --section-h:      24px;
      --max-w:          1200px;
    }

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

    /* ===== FIXED BACKGROUND ===== */
    .bg-fixed {
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image: url('studio.jpg');
      background-size: cover;
      background-position: center 30%;
    }
    /* Soft light tint so brand colors stay vivid */
    .bg-fixed::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(243, 245, 247, 0.65);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: transparent;
      color: var(--text);
      font-weight: 400;
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ===== LANGUAGE TOGGLE ===== */
    .lang-toggle {
      position: fixed;
      top: 20px;
      right: 24px;
      z-index: 100;
      display: flex;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 30px;
      box-shadow: 0 2px 12px rgba(20,24,33,0.09), 0 1px 3px rgba(20,24,33,0.06);
      overflow: hidden;
    }
    .lang-toggle button {
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      padding: 6px 14px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .lang-toggle button.active {
      background: var(--text);
      color: #fff;
      border-radius: 30px;
    }
    .lang-toggle button:hover:not(.active) { color: var(--text); }

    /* ===== LANGUAGE VISIBILITY ===== */
    /* body prefix raises specificity to [0,1,1], beating .btn [0,1,0] */
    body [data-lang="en"] { display: none; }
    body.en [data-lang="pl"] { display: none; }
    body.en [data-lang="en"] { display: revert; }

    /* ===== CONTAINER ===== */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--section-h);
    }

    /* ===== SECTION WRAPPER ===== */
    section {
      padding: var(--section-v) 0;
      position: relative;
    }
    /* Each section has a frosted-glass backing so text stays crisp */
    section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    /* ===== SECTION LABEL ===== */
    .section-label {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-dark);
      margin-bottom: 14px;
    }

    /* ===== HEADINGS ===== */
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.02em;
    }
    h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
    h3 { font-size: 1.25rem; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      border-radius: var(--radius-btn);
      padding: 14px 32px;
      cursor: pointer;
      border: none;
      transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, border-color 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 4px 16px rgba(63,191,176,0.28), 0 1px 4px rgba(63,191,176,0.18);
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(42,154,140,0.32), 0 2px 6px rgba(42,154,140,0.2);
    }
    .btn-primary:active { transform: translateY(0); }
    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--text);
    }
    .btn-outline:hover {
      border-color: var(--text);
      transform: translateY(-1px);
    }
    .btn-outline:active { transform: translateY(0); }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ================================================
       HERO
    ================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px var(--section-h);
      overflow: hidden;
    }
    /* Hero is fully transparent — the fixed studio image shows through */
    #hero::before { display: none; }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    /* Subtle brand color washes on top of the real photo */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 20% 80%, var(--accent-light) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 20%, var(--purple-light) 0%, transparent 50%);
      opacity: 0.25;
    }
    /* Soft vignette at bottom to ease transition into next section */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(243,245,247,0.85) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }

    .hero-logo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 28px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease 0.2s, transform 0.55s cubic-bezier(0.34,1.4,0.64,1) 0.2s;
      box-shadow: 0 8px 32px rgba(20,24,33,0.12), 0 2px 8px rgba(20,24,33,0.08);
    }
    .hero-logo.in { opacity: 1; transform: translateY(0); }

    .hero-eyebrow {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.5s ease 0.38s, transform 0.5s ease 0.38s;
    }
    .hero-eyebrow.in { opacity: 1; transform: translateY(0); }

    .hero-h1 {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease 0.52s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.52s;
      margin-bottom: 24px;
    }
    .hero-h1.in { opacity: 1; transform: translateY(0); }

    .hero-subtitle {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease 0.68s, transform 0.55s ease 0.68s;
      max-width: 640px;
      margin: 0 auto 40px;
    }
    .hero-subtitle.in { opacity: 1; transform: translateY(0); }

    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease 0.84s, transform 0.5s ease 0.84s;
    }
    .hero-ctas.in { opacity: 1; transform: translateY(0); }

    .hero-eyebrow span {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ================================================
       PORTFOLIO
    ================================================ */
    #portfolio {
      background: rgba(243, 245, 247, 0.801);
      backdrop-filter: blur(2px);
    }

    .portfolio-header {
      margin-bottom: 56px;
      text-align: center;
    }
    .portfolio-desc {
      max-width: 600px;
      color: var(--text-secondary);
      font-size: 1.05rem;
      margin: 14px auto 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }

    .gallery-item {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      background: var(--bg-cool);
      cursor: pointer;
    }
    /* Rows 1 & 2 — landscape 16:9, 3 per row */
    .gallery-item.landscape {
      grid-column: span 4;
      aspect-ratio: 16 / 9;
    }
    /* Row 3 — portrait 9:16, 4 per row */
    .gallery-item.portrait {
      grid-column: span 3;
      aspect-ratio: 9 / 16;
    }
    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .gallery-item:hover img,
    .gallery-item:hover video { transform: scale(1.04); }
    .gallery-item.playing video { transform: none; }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,24,33,0.78) 0%, transparent 52%);
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-overlay-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      margin-bottom: 3px;
    }
    .gallery-overlay-caption {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
    }

    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(20,24,33,0.25);
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
    }
    .gallery-item:hover .play-icon {
      transform: translate(-50%, -50%) scale(1.1);
    }
    .play-icon svg { margin-left: 4px; }

    /* ================================================
       SERVICES & PRICING
    ================================================ */
    .services-section {
      background: rgba(255, 255, 255, 0.91);
      backdrop-filter: blur(2px);
    }

    .services-header {
      margin-bottom: 56px;
      text-align: center;
    }
    .services-desc {
      max-width: 600px;
      color: var(--text-secondary);
      font-size: 1.05rem;
      margin: 14px auto 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .price-card {
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      background: var(--surface);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.28s ease, box-shadow 0.28s ease;
      position: relative;
      overflow: hidden;
    }
    .price-card:hover {
      transform: translateY(-3px);
      border-color: var(--accent);
      box-shadow: 0 12px 40px rgba(63,191,176,0.12), 0 4px 12px rgba(63,191,176,0.08);
    }
    .price-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .price-card.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, #f0f7f6 0%, #eaf0f5 100%);
    }
    .price-card.featured::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    }

    .card-icon {
      width: 42px;
      height: 42px;
      background: var(--accent-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }
    .price-card.featured .card-icon {
      background: rgba(63,191,176,0.15);
    }
    .card-icon svg { color: var(--accent-dark); }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 10px;
      color: var(--text);
    }
    .card-desc {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .deliverables {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
      flex: 1;
    }
    .deliverables li {
      font-size: 0.86rem;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border-light);
    }
    .deliverables li:last-child { border-bottom: none; padding-bottom: 0; }
    .deliverables li::before {
      content: '✓';
      color: var(--accent-dark);
      font-weight: 600;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .card-price {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text);
    }
    .card-price-unit {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-left: 4px;
    }

    /* ================================================
       ABOUT
    ================================================ */
    #o-mnie {
      background: rgba(243, 245, 247, 0.644);
      backdrop-filter: blur(2px);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 72px;
      align-items: start;
    }

    .about-photo {
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-card);
      background: var(--bg-cool);
      border: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.84rem;
      font-style: italic;
      text-align: center;
      padding: 20px;
    }

    .about-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .about-text {
      color: var(--text-secondary);
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .stats-strip {
      display: flex;
      gap: 40px;
      margin-top: 36px;
      padding-top: 32px;
      border-top: 1px solid var(--border-light);
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2rem;
      color: var(--accent-dark);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      max-width: 100px;
    }

    /* ================================================
       CONTACT
    ================================================ */
    #kontakt {
      background: rgba(255, 255, 255, 0.91);
      backdrop-filter: blur(2px);
    }

    .contact-inner {
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .contact-desc {
      color: var(--text-secondary);
      font-size: 1.05rem;
      margin-top: 14px;
      margin-bottom: 36px;
    }
    .contact-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .contact-phone {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .contact-phone a {
      color: var(--accent-dark);
      font-weight: 500;
      transition: color 0.2s;
    }
    .contact-phone a:hover { color: var(--accent); }

    /* Social links */
    .social-links {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 20px;
    }
    .social-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      transition: border-color 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    }
    .social-link:hover {
      border-color: var(--accent);
      color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(63,191,176,0.18);
    }
    .social-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    /* Footer social links */
    footer .social-links { margin: 0 0 14px; }

    /* WhatsApp icon */
    .btn-whatsapp {
      background: #25D366;
      color: #fff;
      box-shadow: 0 4px 16px rgba(37,211,102,0.22);
    }
    .btn-whatsapp:hover {
      background: #1da851;
      transform: translateY(-2px);
    }

    /* ================================================
       FOOTER
    ================================================ */
    footer {
      background: rgba(255, 255, 255, 0.93);
      backdrop-filter: blur(4px);
      border-top: 1px solid var(--border-light);
      padding: 32px var(--section-h);
      text-align: center;
    }
    .footer-logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 14px;
      opacity: 0.85;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ================================================
       RESPONSIVE
    ================================================ */
    @media (max-width: 768px) {
      :root {
        --section-v: 64px;
      }

      .lang-toggle {
        top: 12px;
        right: 12px;
      }

      .hero-logo { width: 100px; height: 100px; }

      .gallery-item.landscape { grid-column: span 12; }
      .gallery-item.portrait  { grid-column: span 6; }

      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .stats-strip {
        gap: 24px;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 500px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ================================================
       LIGHTBOX
    ================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .lightbox.open {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0s linear 0s;
    }
    .lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 20, 0.93);
    }

    /* wrapper that sizes the video + controls together */
    .lb-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: min(90vw, 1100px);
      max-height: 90vh;
    }
    .lb-wrap.is-portrait  { max-width: min(52vh, 480px); }

    .lb-wrap video {
      display: block;
      width: 100%;
      height: auto;
      max-height: calc(90vh - 56px);
      border-radius: 8px 8px 0 0;
      background: #000;
      box-shadow: 0 24px 60px rgba(0,0,0,0.7);
      object-fit: contain;
    }
    .lb-wrap.is-portrait video {
      max-height: calc(90vh - 56px);
      width: auto;
      max-width: min(52vh, 480px);
    }

    /* ── custom controls bar ── */
    .lb-controls {
      width: 100%;
      background: rgba(10,12,20,0.82);
      border-radius: 0 0 8px 8px;
      padding: 8px 14px 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.7);
    }
    .lb-btn {
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.85;
      flex-shrink: 0;
      transition: opacity 0.15s;
    }
    .lb-btn:hover { opacity: 1; }

    .lb-time {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
      white-space: nowrap;
      flex-shrink: 0;
      min-width: 80px;
    }

    /* seek bar — custom div, no input[range] */
    .lb-seek-track {
      flex: 1;
      position: relative;
      height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      margin: 0 4px;
    }
    /* expanded hit area */
    .lb-seek-track::before {
      content: '';
      position: absolute;
      inset: -10px 0;
    }
    .lb-seek-fill {
      position: absolute;
      inset: 0;
      width: 0%;
      background: var(--accent);
      border-radius: 2px;
      pointer-events: none;
    }
    .lb-seek-thumb {
      position: absolute;
      top: 50%;
      left: 0%;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #fff;
      transform: translate(-50%, -50%);
      pointer-events: none;
      box-shadow: 0 0 0 3px rgba(63,191,176,0.45);
      transition: transform 0.1s ease;
    }
    .lb-seek-track:hover .lb-seek-thumb { transform: translate(-50%,-50%) scale(1.2); }
    /* hidden native range that captures all drag events reliably */
    #lbSeekInput {
      position: absolute;
      inset: -10px 0;
      width: 100%;
      height: calc(100% + 20px);
      opacity: 0;
      cursor: pointer;
      margin: 0;
      padding: 0;
      -webkit-appearance: none;
      appearance: none;
      z-index: 2;
    }

    /* close button */
    .lightbox-close {
      position: fixed;
      top: 20px;
      right: 24px;
      z-index: 502;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.1); }

    /* click-to-close area behind the player */
    .lightbox-backdrop { cursor: pointer; }

    @media (max-width: 768px) {
      .lb-wrap { max-width: 96vw; }
      .lb-time { display: none; }
    }

    /* ===== FAQ ===== */
    #faq {
      padding: var(--section-v) var(--section-h);
      background: rgba(235, 240, 244, 0.7);
      backdrop-filter: blur(6px);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: box-shadow 0.25s, border-color 0.25s;
    }

    .faq-item[open] {
      box-shadow: 0 4px 24px rgba(63,191,176,0.13);
      border-color: var(--accent-light);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      list-style: none;
      user-select: none;
      transition: color 0.2s;
    }

    .faq-question::-webkit-details-marker { display: none; }
    .faq-question::marker { display: none; }
    .faq-question:hover { color: var(--accent-dark); }

    .faq-q-text { flex: 1; }

    .faq-chevron {
      flex-shrink: 0;
      color: var(--accent);
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
    }

    .faq-item[open] .faq-chevron { transform: rotate(180deg); }

    .faq-answer {
      padding: 0 24px 20px;
      color: var(--text-secondary);
      line-height: 1.75;
      font-size: 0.95rem;
      border-top: 1px solid var(--border-light);
      padding-top: 16px;
    }

    @media (max-width: 600px) {
      .faq-question { font-size: 0.95rem; padding: 16px 18px; }
      .faq-answer { padding: 14px 18px 18px; }
    }
