/* =============================================
       CSS CUSTOM PROPERTIES
    ============================================= */
    :root {
      --bg-dark: #0F0E0C;
      --bg-mid: #1C1A17;
      --bg-light: #F5F0E8;
      --text-light: #F5F0E8;
      --text-dark: #1C1A17;
      --gold: #C4A35A;
      --gold-light: #D4B87A;
      --gold-dim: rgba(196, 163, 90, 0.3);
      --text-muted: rgba(245, 240, 232, 0.6);
      --text-muted-dark: rgba(28, 26, 23, 0.6);

      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 8rem;

      --max-width: 1200px;
      --nav-height: 80px;

      --transition: 0.3s ease;
      --transition-slow: 0.6s ease;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    ul {
      list-style: none;
    }

    /* =============================================
       UTILITY
    ============================================= */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 2rem;
    }

    .gold-line {
      display: block;
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 1.5rem 0;
    }

    .gold-line--center {
      margin: 1.5rem auto;
    }

    .section-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* =============================================
       FADE-IN ANIMATION (Intersection Observer)
    ============================================= */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

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

    /* =============================================
       NAVIGATION
    ============================================= */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      transition: background var(--transition), box-shadow var(--transition);
      padding: 0 2rem;
    }

    .nav.scrolled {
      background: rgba(15, 14, 12, 0.97);
      box-shadow: 0 1px 0 var(--gold-dim);
    }

    .nav__inner {
      max-width: var(--max-width);
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav__logo {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 1.6rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

    .nav__links a {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      opacity: 0.8;
      transition: opacity var(--transition), color var(--transition);
    }

    .nav__links a:hover {
      opacity: 1;
      color: var(--gold);
    }

    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.75rem 1.75rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }

    .btn:hover {
      background: var(--gold);
      color: var(--bg-dark);
    }

    .btn--filled {
      background: var(--gold);
      color: var(--bg-dark);
    }

    .btn--filled:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
    }

    .btn--dark {
      border-color: var(--text-dark);
      color: var(--text-dark);
    }

    .btn--dark:hover {
      background: var(--text-dark);
      color: var(--bg-light);
    }

    /* Hamburger */
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .nav__hamburger span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--text-light);
      transition: all var(--transition);
    }

    .nav__hamburger.active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav__hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav__hamburger.active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* Mobile menu */
    .nav__mobile {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: rgba(15, 14, 12, 0.98);
      border-top: 1px solid var(--gold-dim);
      padding: 2rem;
      flex-direction: column;
      gap: 1.5rem;
      z-index: 999;
    }

    .nav__mobile.open {
      display: flex;
    }

    .nav__mobile a {
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-light);
      opacity: 0.8;
      transition: opacity var(--transition), color var(--transition);
    }

    .nav__mobile a:hover {
      opacity: 1;
      color: var(--gold);
    }

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

    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1541849546-216549ae216d?w=1920&q=80');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.88) 100%);
    }

    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 2rem;
      max-width: 860px;
      margin: 0 auto;
    }

    .hero__label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero__title {
      font-family: var(--font-heading);
      font-weight: 300;
      font-size: clamp(2.6rem, 5.5vw, 4.5rem);
      line-height: 1.1;
      letter-spacing: 0.02em;
      color: var(--text-light);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.5s forwards;
    }

    .hero__sub {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 300;
      color: rgba(245, 240, 232, 0.75);
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.7s forwards;
    }

    .hero__ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
    }

    .hero__scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }

    .hero__scroll span {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }

    .hero__scroll-arrow {
      width: 1px;
      height: 40px;
      background: var(--gold);
      position: relative;
      animation: scrollPulse 2s ease-in-out infinite;
    }

    .hero__scroll-arrow::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 6px;
      height: 6px;
      border-right: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
    }

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

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* =============================================
       INTRO (LIGHT)
    ============================================= */
    .intro {
      background: var(--bg-light);
      color: var(--text-dark);
      padding: var(--spacing-xl) 0;
      text-align: center;
    }

    .intro__quote {
      font-family: var(--font-heading);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      line-height: 1.4;
      color: var(--text-dark);
      max-width: 800px;
      margin: 0 auto 2rem;
      letter-spacing: 0.01em;
    }

    .intro__text {
      max-width: 640px;
      margin: 0 auto;
      color: var(--text-muted-dark);
      font-size: 1rem;
      line-height: 1.85;
    }

    /* =============================================
       SERVICES (DARK)
    ============================================= */
    .services {
      background: var(--bg-dark);
      padding: var(--spacing-xl) 0;
    }

    .section-header {
      margin-bottom: 4rem;
    }

    .section-header--center {
      text-align: center;
    }

    .section-title {
      font-family: var(--font-heading);
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      line-height: 1.2;
      letter-spacing: 0.02em;
      color: var(--text-light);
    }

    .section-title--dark {
      color: var(--text-dark);
    }

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

    .service-card {
      background: var(--bg-mid);
      padding: 3rem 2.5rem;
      border-top: 2px solid var(--gold);
      transition: background var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
      opacity: 0;
      transition: opacity var(--transition);
    }

    .service-card:hover {
      background: #232118;
      transform: translateY(-4px);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card__icon {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--gold);
      line-height: 1;
    }

    .service-card__title {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 1.5rem;
      letter-spacing: 0.03em;
      color: var(--text-light);
      margin-bottom: 1.25rem;
    }

    .service-card__list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .service-card__list li {
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--text-muted);
      padding-left: 1rem;
      position: relative;
      line-height: 1.5;
    }

    .service-card__list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.75rem;
    }

    /* =============================================
       WHY HERITUM (LIGHT)
    ============================================= */
    .why {
      background: var(--bg-light);
      color: var(--text-dark);
      padding: var(--spacing-xl) 0;
    }

    .why__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .why__image {
      position: relative;
    }

    .why__image img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      object-position: center;
    }

    .why__image::before {
      content: '';
      position: absolute;
      inset: -12px;
      border: 1px solid var(--gold);
      z-index: 0;
      pointer-events: none;
    }

    .why__image img {
      position: relative;
      z-index: 1;
    }

    .why__content .section-label {
      color: var(--gold);
      display: block;
      margin-bottom: 0.5rem;
    }

    .why__usp-list {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin-top: 2.5rem;
    }

    .usp-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .usp-item__check {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      color: var(--gold);
      font-size: 0.65rem;
    }

    .usp-item__text strong {
      display: block;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--text-dark);
      margin-bottom: 0.2rem;
    }

    .usp-item__text span {
      font-size: 0.875rem;
      color: var(--text-muted-dark);
      line-height: 1.6;
    }

    /* =============================================
       PROCESS (DARK)
    ============================================= */
    .process {
      background: var(--bg-mid);
      padding: var(--spacing-xl) 0;
    }

    .process__steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 4rem;
    }

    .process__steps::before {
      content: '';
      position: absolute;
      top: 24px;
      left: calc(12.5% + 24px);
      right: calc(12.5% + 24px);
      height: 1px;
      background: var(--gold-dim);
      z-index: 0;
    }

    .process-step {
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
      z-index: 1;
    }

    .process-step__number {
      width: 48px;
      height: 48px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.75rem;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 300;
      color: var(--gold);
      background: var(--bg-mid);
      transition: background var(--transition), color var(--transition);
    }

    .process-step:hover .process-step__number {
      background: var(--gold);
      color: var(--bg-dark);
    }

    .process-step__title {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 0.75rem;
    }

    .process-step__desc {
      font-size: 0.825rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* =============================================
       STATS (LIGHT)
    ============================================= */
    /* FAQ */
    .faq { padding: var(--section-padding) 0; background: var(--bg-light); }
    .faq .section-title { color: var(--text-dark); max-width: 600px; }
    .faq .section-label { color: var(--gold); }
    .faq .gold-line { background: var(--gold); }
    .faq__list { margin-top: 3rem; max-width: 800px; }
    .faq__item { border-bottom: 1px solid rgba(28,26,23,0.12); }
    .faq__question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.5rem 0; gap: 1rem;
      font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400;
      color: var(--text-dark); text-align: left; transition: color var(--transition);
    }
    .faq__question:hover { color: var(--gold); }
    .faq__icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
    .faq__item.open .faq__icon { transform: rotate(45deg); }
    .faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .faq__answer p { padding-bottom: 1.5rem; color: var(--text-dark); opacity: 0.8; line-height: 1.8; font-size: 0.95rem; }
    .faq__item.open .faq__answer { max-height: 300px; }

    .stats {
      background: var(--bg-light);
      color: var(--text-dark);
      padding: var(--spacing-xl) 0;
    }

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

    .stat-card {
      padding: 3.5rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(196, 163, 90, 0.3);
      background: transparent;
    }

    .stat-card__number {
      font-family: var(--font-heading);
      font-weight: 300;
      font-size: clamp(3rem, 5vw, 4.5rem);
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.75rem;
      letter-spacing: 0.02em;
    }

    .stat-card__label {
      font-size: 0.825rem;
      color: var(--text-muted-dark);
      line-height: 1.6;
      max-width: 200px;
      margin: 0 auto;
    }

    /* =============================================
       CONTACT (DARK)
    ============================================= */
    .contact {
      background: var(--bg-dark);
      padding: var(--spacing-xl) 0;
    }

    .contact__inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact__form-wrap .section-title {
      margin-bottom: 0.5rem;
    }

    .contact__form {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
    }

    .form-group input,
    .form-group textarea {
      background: var(--bg-mid);
      border: 1px solid rgba(196, 163, 90, 0.2);
      color: var(--text-light);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 300;
      padding: 0.85rem 1rem;
      outline: none;
      transition: border-color var(--transition);
      resize: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(245, 240, 232, 0.3);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group textarea {
      height: 130px;
    }

    .contact__form .btn {
      align-self: flex-start;
      font-size: 0.75rem;
    }

    .contact__info {
      padding-top: 1rem;
    }

    .contact__info-title {
      font-family: var(--font-heading);
      font-weight: 300;
      font-size: 1.4rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      margin-top: 2rem;
    }

    .contact__details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact__detail {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .contact__detail-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .contact__detail-value {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .contact__map {
      margin-top: 2.5rem;
      background: var(--bg-mid);
      border: 1px solid var(--gold-dim);
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.75rem;
      color: var(--text-muted);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

    .contact__map-icon {
      font-size: 1.5rem;
      color: var(--gold);
      opacity: 0.6;
    }

    /* =============================================
       FOOTER
    ============================================= */
    .footer {
      background: var(--bg-mid);
      border-top: 1px solid var(--gold-dim);
      padding: 3.5rem 0 2.5rem;
    }

    .footer__inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer__brand .nav__logo {
      display: inline-block;
      margin-bottom: 1rem;
    }

    .footer__tagline {
      font-size: 0.825rem;
      color: var(--text-muted);
      max-width: 260px;
      line-height: 1.7;
    }

    .footer__col-title {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }

    .footer__links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer__links a {
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: color var(--transition);
    }

    .footer__links a:hover {
      color: var(--text-light);
    }

    .footer__bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(245, 240, 232, 0.07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer__copy {
      font-size: 0.75rem;
      color: rgba(245, 240, 232, 0.3);
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .services__grid {
        grid-template-columns: 1fr;
      }

      .why__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .why__image img {
        height: 400px;
      }

      .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
      }

      .process__steps::before {
        display: none;
      }

      .stats__grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      :root {
        --spacing-xl: 5rem;
        --spacing-lg: 2.5rem;
      }

      .nav__links,
      .nav__cta {
        display: none;
      }

      .nav__hamburger {
        display: flex;
      }

      .hero__ctas {
        flex-direction: column;
        align-items: center;
      }

      .services__grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        padding: 2.5rem 1.75rem;
      }

      .process__steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .stats__grid {
        grid-template-columns: 1fr;
      }

      .stat-card {
        padding: 2.5rem 1.5rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .why__image::before {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1.25rem;
      }

      .hero__title {
        font-size: 2.2rem;
      }
    }

    /* ============ MOBILE FIXES (appended 2026-04-19) ============ */
    /* Min 44px tap targets pro všechny klikatelné elementy */
    a, button, [role=button], summary, .btn, input[type=submit], input[type=button] {
      min-height: 44px !important;
      display: inline-block;
      padding: 8px 6px;
      box-sizing: border-box;
    }
    /* Zachovat inline emphasis */
    a em, button em, h1 a, h1 em, h2 a, h2 em, h3 a, h3 em, p em, li em, strong, em {
      display: inline;
      min-height: 0 !important;
      padding: 0;
    }
    /* Flex children — zachovat flex layout */
    .btn, .button, nav a, .nav a, header a, footer a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    /* Readable font-size ≥14px */
    body, p, li, td, span, div {
      font-size: max(14px, 1em);
    }
    small, .small, .footer, .footer *, .colophon, .credits, .copyright, .legal {
      font-size: 14px !important;
    }
    /* Viewport fix — zamezit horizontal scroll */
    html, body { overflow-x: hidden; max-width: 100vw; }
    img, video, iframe { max-width: 100%; height: auto; }
