:root {
      --red: #e30613;
      --black: #111111;
      --white: #ffffff;
      --page-max: 1480px;
      --side-space: 28px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;
    }

    main section[id] {
      scroll-margin-top: 20px;
    }

    body {
      overflow-x: hidden;
      background: var(--white);
      color: var(--black);
      font-family: Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }


    /* =========================================================
       HYBRIDNÍ ŠÍŘKA WEBU
       Hlavička + hero zůstávají v původní omezené šířce.
       Sekce od Služeb níže využívají celou šířku obrazovky.
       ========================================================= */

    .services-inner,
    .about-inner,
    .pricing-inner,
    .contact-inner,
    .footer-inner {
      width: 100%;
      max-width: none;
      padding-left: 32px;
      padding-right: 32px;
    }


    /* =========================================================
       HLAVIČKA PŘES CELOU ŠÍŘKU
       Hero zůstává užší a centrované.
       ========================================================= */

    .header-inner {
      width: 100%;
      max-width: none;
      padding-left: 32px;
      padding-right: 32px;
    }

    /* =========================================================
       HLAVIČKA + NAVIGACE
       ========================================================= */

    .site-header {
      width: 100%;
      height: 84px;
      background: var(--white);
    }

    .header-inner {
      width: 100%;
      max-width: none;
      height: 84px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;

      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .brand {
      display: block;
      flex: 0 0 auto;
      margin-top: 17px;
      text-decoration: none;
    }

    .brand img {
      display: block;
      width: 181px;
      height: auto;
    }

    .main-navigation {
      display: flex;
      align-items: flex-start;
      gap: 43px;
      margin-top: 29px;
    }

    .main-navigation a {
      position: relative;
      display: inline-block;
      padding: 0 0 11px;

      color: var(--black);
      text-decoration: none;

      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.01em;
    }

    .main-navigation a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;

      width: 100%;
      height: 2px;

      background: var(--red);

      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 150ms ease;
    }

    .main-navigation a:hover::after,
    .main-navigation a:focus-visible::after {
      transform: scaleX(1);
    }

    .menu-button {
      display: none;
      width: 40px;
      height: 40px;
      margin-top: 16px;
      padding: 8px;

      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .menu-button span {
      display: block;
      width: 24px;
      height: 2px;
      margin: 5px 0;
      background: var(--black);
    }


    .brand:focus-visible,
    .main-navigation a:focus-visible,
    .hero-cta:focus-visible,
    .mail-link:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 5px;
      border-radius: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .main-navigation a::after,
      .hero-cta span,
      .mail-link span {
        transition: none !important;
      }
    }

    /* =========================================================
       HERO – podle schváleného mockupu
       ========================================================= */

    .hero {
      width: 100%;
      min-height: calc(100vh - 84px);
      overflow: hidden;
      background: #fff;
    }

    .hero-inner {
      position: relative;
      width: min(var(--page-max), calc(100% - (var(--side-space) * 2)));
      min-height: calc(100vh - 84px);
      margin: 0 auto;
    }

    .hero-copy {
      position: relative;
      z-index: 2;

      width: 58%;
      padding-top: clamp(110px, 16vh, 180px);
    }

    .hero h1 {
      margin: 0 0 24px;

      font-size: clamp(38px, 4.1vw, 49px);
      line-height: 0.98;
      letter-spacing: -0.045em;
      font-weight: 800;
    }

    .hero h1 span {
      display: block;
    }

    .hero h1 .line-1,
    .hero h1 .line-2 {
      white-space: nowrap;
    }

    .hero h1 .accent {
      color: var(--red);
    }

    .hero p {
      width: 84%;
      max-width: 470px;
      margin: 0 0 32px;

      font-size: 18px;
      line-height: 1.56;
      font-weight: 400;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 11px;

      color: var(--red);
      text-decoration: none;

      font-size: 16px;
      font-weight: 800;
      line-height: 1;
    }

    .hero-cta span {
      transition: transform 150ms ease;
    }

    .hero-cta:hover span,
    .hero-cta:focus-visible span {
      transform: translateX(4px);
    }

    /*
      Fudži + červený tah štětcem jsou převzaté z odsouhlaseného
      grafického návrhu, nikoli nově překreslené.
    */
    .hero-art {
      position: absolute;
      z-index: 1;

      right: 1.5%;
      bottom: 18px;

      height: min(calc(100vh - 125px), 760px);
      width: auto;
      pointer-events: none;
    }

    .hero-art img {
      display: block;
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    /* Prázdná plocha pod hero – další část zatím záměrně nevytváříme. */
    .preview-end {
      min-height: 42vh;
      background: #fff;
    }


    /* =========================================================
       SLUŽBY
       ========================================================= */

    .services {
      width: 100%;
      background: #0f0f10;
      color: #ffffff;
      padding: 52px 0 54px;
    }

    .services-inner {
      width: 100%;
      max-width: none;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;

      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .service-card {
      min-width: 0;
      padding: 4px 22px 0;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.22);
    }

    .service-card:first-child {
      padding-left: 0;
    }

    .service-card:last-child {
      padding-right: 0;
      border-right: 0;
    }

    .service-icon {
      width: 46px;
      height: 46px;
      margin: 0 auto 20px;

      fill: none;
      stroke: var(--red);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-icon .fill-dot {
      fill: var(--red);
      stroke: none;
    }

    .service-card h2 {
      min-height: 44px;
      margin: 0 0 17px;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .service-card p {
      max-width: 185px;
      margin: 0 auto;

      color: #d5d5d8;
      font-size: 15.5px;
      line-height: 1.58;
      font-weight: 400;
    }


    /* =========================================================
       MF KEIRI
       ========================================================= */

    .about {
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid #e7e7e8;
    }

    .about-inner {
      width: 100%;
      max-width: none;
      min-height: 485px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;

      display: grid;
      grid-template-columns: 47% 53%;
      align-items: stretch;
    }

    .about-copy {
      padding: 70px 0 62px 64px;
      text-align: left;
    }

    .about-copy h2 {
      margin: 0 0 16px;

      color: var(--black);
      font-size: 42px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.035em;
    }

    .about-copy h3 {
      margin: 0 0 30px;

      color: var(--black);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
    }

    .about-copy p {
      max-width: 620px;
      margin: 0 0 24px;

      color: #222225;
      font-size: 16.5px;
      font-weight: 400;
      line-height: 1.68;
    }

    .about-copy p:last-child {
      margin-bottom: 0;
    }

    .about-copy strong {
      font-weight: 700;
    }

    .about-visual {
      min-height: 430px;
      overflow: hidden;
      position: relative;
      background: #ffffff;
    }

    .about-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 56%,
        rgba(255, 255, 255, 0.78) 82%,
        rgba(255, 255, 255, 1) 100%
      );
      pointer-events: none;
    }

    .about-visual img {
      position: absolute;
      inset: 50% auto auto 50%;
      display: block;
      width: 108%;
      height: 108%;
      object-fit: cover;
      object-position: center center;
      transform: translate(-50%, -50%) scaleX(-1);
    }


    /* =========================================================
       CENÍK
       ========================================================= */

    .pricing {
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid #e7e7e8;
    }

    .pricing-inner {
      width: 100%;
      max-width: none;
      min-height: 395px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;

      display: grid;
      grid-template-columns: 50% 50%;
      align-items: stretch;
    }

    .pricing-copy {
      padding: 70px 86px 62px 85px;
    }

    .pricing-copy h2 {
      margin: 0 0 16px;

      color: var(--black);
      font-size: 42px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.035em;
    }

    .pricing-copy h3 {
      margin: 0 0 30px;

      color: var(--black);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
    }

    .pricing-copy p {
      max-width: 620px;
      margin: 0;

      color: #222225;
      font-size: 16.5px;
      line-height: 1.68;
    }

    .price-list {
      margin: 60px 0 48px;
      padding-left: 62px;

      border-left: 1px solid #cfcfd2;
    }

    .price-list h3 {
      margin: 0 0 26px;

      color: var(--black);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
    }

    .price-row {
      min-height: 60px;

      display: grid;
      grid-template-columns: 210px minmax(0, 1fr);
      align-items: center;
      column-gap: 34px;

      border-bottom: 1px solid #dedee0;

      font-size: 16px;
      line-height: 1.4;
    }

    .price-row:last-child {
      border-bottom: 0;
    }

    .price-row > span:first-child {
      color: var(--black);
      font-weight: 400;
    }

    .price {
      color: #222225;
      font-size: 15.5px;
      white-space: nowrap;
      text-align: left;
    }

    .price strong {
      color: var(--red);
      font-size: 19px;
      font-weight: 500;
    }


    /* =========================================================
       KONTAKT
       ========================================================= */

    .contact {
      width: 100%;
      background: #ffffff;
      overflow: hidden;
    }

    .contact-inner {
      position: relative;

      width: 100%;
      max-width: none;
      min-height: 300px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;
    }

    .contact-copy {
      position: relative;
      z-index: 2;

      width: 46%;
      padding: 56px 0 48px 85px;
    }

    .contact-copy h2 {
      margin: 0 0 8px;

      color: var(--black);
      font-size: 29px;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }

    .mail-link {
      display: inline-flex;
      align-items: center;
      gap: 11px;

      margin: 0 0 20px;

      color: var(--red);
      text-decoration: none;

      font-size: 21px;
      font-weight: 400;
      line-height: 1.2;
    }

    .mail-link span {
      transition: transform 150ms ease;
    }

    .mail-link:hover span,
    .mail-link:focus-visible span {
      transform: translateX(4px);
    }

    .contact-copy address {
      margin: 0;

      color: var(--black);
      font-style: normal;
      font-size: 15px;
      line-height: 1.42;
    }

    .contact-copy address strong {
      display: inline-block;
      margin-bottom: 3px;

      font-size: 16.5px;
      font-weight: 700;
    }

    .contact-copy address a {
      color: inherit;
      text-decoration: none;
    }

    .contact-copy address a:hover,
    .contact-copy address a:focus-visible {
      color: var(--red);
    }

    .registry-info {
      display: inline-block;
      max-width: 390px;
      margin-top: 5px;
      color: #555559;
      font-size: 12.5px;
      line-height: 1.4;
    }

    .menu-button:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
      border-radius: 2px;
    }


    .contact-visual {
      position: absolute;
      z-index: 1;

      right: -2%;
      bottom: 0;

      width: 58%;
      opacity: 0.68;
      pointer-events: none;
    }

    .contact-visual::before {
      content: "";
      position: absolute;
      z-index: 2;
      top: 0;
      bottom: 0;
      left: -1px;
      width: 48%;
      pointer-events: none;

      background: linear-gradient(
        to right,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.96) 16%,
        rgba(255,255,255,0.80) 34%,
        rgba(255,255,255,0.48) 56%,
        rgba(255,255,255,0.16) 78%,
        rgba(255,255,255,0) 100%
      );
    }

    .contact-visual img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: auto;
    }


    /* =========================================================
       PATIČKA
       ========================================================= */

    .site-footer {
      width: 100%;
      background: #101011;
      color: #ffffff;
    }

    .footer-inner {
      width: 100%;
      max-width: none;
      min-height: 64px;
      margin: 0 auto;
      padding-left: 32px;
      padding-right: 32px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .footer-inner img {
      display: block;
      width: 138px;
      height: auto;
    }

    .footer-inner p {
      margin: 0;

      color: #efeff0;
      font-size: 12.5px;
      font-weight: 400;
      line-height: 1;
    }

    /* =========================================================
       TABLET
       ========================================================= */

    @media (max-width: 900px) {
      :root {
        --side-space: 24px;
      }

      .brand img {
        width: 170px;
      }

      .main-navigation {
        gap: 29px;
      }

      .hero-copy {
        width: 60%;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero-art {
        right: 0%;
        bottom: 18px;
        transform: none;
        width: auto;
        height: min(calc(100vh - 125px), 680px);
      }

      .services-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 32px;
      }

      .service-card:nth-child(3) {
        border-right: 0;
      }

      .service-card:nth-child(4) {
        padding-left: 0;
      }

      .about-inner {
        grid-template-columns: 46% 54%;
      }

      .about-copy {
        padding-left: 36px;
        padding-right: 0;
      }

      .pricing-inner {
        grid-template-columns: 50% 50%;
      }

      .pricing-copy {
        padding-right: 44px;
        padding-left: 42px;
      }

      .price-list {
        padding-left: 36px;
      }

      .price-row {
        grid-template-columns: 185px minmax(0, 1fr);
        column-gap: 24px;
      }

      .contact-copy {
        width: 50%;
        padding-left: 42px;
      }

      .contact-visual {
        width: 54%;
        right: -4%;
      }
    }

    /* =========================================================
       MOBIL
       ========================================================= */

    @media (max-width: 700px) {

      .services-inner,
      .about-inner,
      .pricing-inner,
      .contact-inner,
      .footer-inner {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
      }

      .site-header,
      .header-inner {
        height: 72px;
      }

      .header-inner {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
      }

      .brand {
        margin-top: 15px;
      }

      .brand img {
        width: 151px;
      }

      .menu-button {
        display: block;
      }

      .main-navigation {
        display: none;

        position: absolute;
        z-index: 100;

        top: 72px;
        left: 0;
        right: 0;

        margin: 0;
        padding: 22px 17px 25px;

        flex-direction: column;
        gap: 20px;

        background: #fff;

        border-top: 1px solid #ededed;
        border-bottom: 1px solid #ededed;
      }

      .main-navigation.open {
        display: flex;
      }

      .main-navigation a {
        padding-bottom: 6px;
      }

      .hero {
        min-height: auto;
        padding-top: 34px;
      }

      .hero-inner {
        width: calc(100% - 28px);
        min-height: auto;
      }

      .hero-copy {
        width: 100%;
        padding-top: 0;
      }

      .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(39px, 11.5vw, 56px);
      }

      .hero h1 .line-1,
      .hero h1 .line-2 {
        white-space: normal;
      }

      .hero p {
        width: 100%;
        max-width: 100%;
        margin-bottom: 26px;
        font-size: 16px;
      }

      .hero-art {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        transform: none;

        width: 115%;
        margin-top: 14px;
        margin-left: -7.5%;
      }

      .hero-cta {
        margin-bottom: 2px;
      }

      .services {
        padding: 42px 0 44px;
      }

      .services-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0;
      }

      .service-card {
        padding: 24px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }

      .service-card:first-child {
        padding-left: 16px;
      }

      .service-card:last-child {
        padding-right: 16px;
      }

      .service-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
      }

      .service-card:nth-child(even) {
        border-right: 0;
      }

      .service-card:nth-child(4) {
        padding-left: 16px;
      }

      .service-card:nth-last-child(-n+2) {
        border-bottom: 0;
      }

      .service-card h2 {
        min-height: 0;
        font-size: 17px;
      }

      .service-card p {
        font-size: 13.5px;
      }

      .about-inner {
        min-height: 0;
        display: block;
      }

      .about-copy {
        padding: 48px 0 52px;
      }

      .about-copy h2 {
        font-size: 36px;
      }

      .about-copy h3 {
        font-size: 18px;
      }

      .about-copy p {
        font-size: 15px;
      }

      .about-visual {
        min-height: 0;
        height: 280px;
        margin: 0 -17px;
      }

      .about-visual img {
        width: 106%;
        height: 106%;
        object-position: 42% center;
      }

      .about-visual::after {
        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0) 52%,
          rgba(255, 255, 255, 0.72) 82%,
          rgba(255, 255, 255, 1) 100%
        );
      }

      .pricing-inner {
        min-height: 0;
        display: block;
      }

      .pricing-copy {
        padding: 54px 0 38px;
      }

      .pricing-copy h2 {
        font-size: 36px;
      }

      .pricing-copy h3,
      .price-list h3 {
        font-size: 18px;
      }

      .pricing-copy p {
        font-size: 15px;
      }

      .price-list {
        margin: 0 0 42px;
        padding: 30px 0 0;
        border-left: 0;
        border-top: 1px solid #cfcfd2;
      }

      .price-row {
        min-height: 62px;
        grid-template-columns: 1fr;
        row-gap: 7px;
        padding: 12px 0;
        font-size: 13.5px;
      }

      .price {
        white-space: normal;
      }

      .price strong {
        font-size: 18px;
      }

      .contact-inner {
        min-height: 360px;
      }

      .contact-copy {
        width: 100%;
        padding: 46px 0 30px;
      }

      .contact-copy h2 {
        font-size: 27px;
      }

      .mail-link {
        font-size: 20px;
      }

      .contact-visual {
        right: -14%;
        bottom: 0;
        width: 105%;
        opacity: 0.55;
      }

      .footer-inner {
        min-height: 72px;
      }

      .footer-inner img {
        width: 124px;
      }

      .footer-inner p {
        font-size: 11.5px;
      }
    }
  
    /* =========================================================
       RESPONZIVNÍ DOLADĚNÍ
       Desktop nad 1180 px zůstává beze změny.
       ========================================================= */

    @media (max-width: 1180px) and (min-width: 901px) {
      .header-inner,
      .services-inner,
      .about-inner,
      .pricing-inner,
      .contact-inner,
      .footer-inner {
        padding-left: 28px;
        padding-right: 28px;
      }

      .main-navigation {
        gap: 32px;
      }

      .hero-copy {
        width: 57%;
      }

      .hero h1 {
        font-size: clamp(40px, 4.2vw, 47px);
      }

      .hero-art {
        right: 0;
        height: min(calc(100vh - 135px), 700px);
      }

      /* Na menším notebooku jsou 3 služby v řadě čitelnější než 6 úzkých sloupců. */
      .services-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 34px;
      }

      .service-card {
        padding-left: 28px;
        padding-right: 28px;
      }

      .service-card:nth-child(3),
      .service-card:nth-child(6) {
        border-right: 0;
      }

      .service-card:nth-child(4) {
        padding-left: 0;
      }

      .service-card:nth-child(6) {
        padding-right: 0;
      }

      .about-inner {
        grid-template-columns: 45% 55%;
      }

      .about-copy {
        padding-left: 48px;
        padding-right: 12px;
      }

      .pricing-copy {
        padding-left: 64px;
        padding-right: 58px;
      }

      .price-list {
        padding-left: 48px;
      }

      .price-row {
        grid-template-columns: 185px minmax(0, 1fr);
        column-gap: 24px;
      }

      .contact-copy {
        padding-left: 64px;
      }
    }

    /* Tablet / velmi úzký notebook */
    @media (max-width: 820px) and (min-width: 701px) {
      .hero {
        min-height: auto;
        padding: 72px 0 28px;
      }

      .hero-inner {
        min-height: auto;
      }

      .hero-copy {
        width: 100%;
        max-width: 610px;
        padding-top: 0;
      }

      .hero h1 {
        font-size: clamp(44px, 6.4vw, 52px);
      }

      .hero p {
        width: 78%;
        max-width: 540px;
      }

      .hero-art {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(78%, 640px);
        height: auto;
        margin: 24px 0 0 auto;
      }

      .hero-art img {
        width: 100%;
        height: auto;
      }

      .pricing-inner {
        display: block;
        min-height: 0;
      }

      .pricing-copy {
        padding: 62px 56px 42px;
      }

      .price-list {
        margin: 0 56px 54px;
        padding: 34px 0 0;
        border-left: 0;
        border-top: 1px solid #cfcfd2;
      }

      .price-row {
        grid-template-columns: minmax(190px, 1fr) minmax(0, 1fr);
        column-gap: 32px;
      }

      .contact-copy {
        width: 56%;
      }

      .contact-visual {
        width: 60%;
        right: -8%;
      }
    }

    /* Mobilní režim – navazuje na původní breakpoint 700 px. */
    @media (max-width: 700px) {
      .site-header {
        position: relative;
        z-index: 50;
      }

      .menu-button {
        position: relative;
        z-index: 102;
      }

      .main-navigation {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
      }

      .main-navigation a {
        width: fit-content;
        font-size: 16px;
      }

      .hero {
        padding-top: 40px;
      }

      .hero-inner {
        width: calc(100% - 36px);
      }

      .hero h1 {
        font-size: clamp(38px, 10.8vw, 50px);
        line-height: 1.01;
      }

      .hero p {
        max-width: 520px;
        font-size: 16px;
        line-height: 1.58;
      }

      .hero p br {
        display: none;
      }

      .hero-art {
        width: 108%;
        height: auto;
        margin-top: 24px;
        margin-left: -4%;
      }

      .hero-art img {
        width: 100%;
        height: auto;
      }

      .services {
        padding-top: 46px;
        padding-bottom: 48px;
      }

      .service-card {
        padding: 27px 17px;
      }

      .service-card h2 {
        margin-bottom: 14px;
        font-size: 18px;
      }

      .service-card p {
        max-width: 175px;
        font-size: 14px;
        line-height: 1.55;
      }

      /* Na mobilu jde nejdřív obsah, potom dekorativní obraz. */
      .about-inner {
        display: flex;
        flex-direction: column;
      }

      .about-copy {
        order: 1;
        padding: 54px 4px 44px;
      }

      .about-visual {
        order: 2;
        height: 250px;
        margin: 0 -14px;
      }

      .about-copy h2,
      .pricing-copy h2 {
        font-size: 35px;
      }

      .about-copy h3,
      .pricing-copy h3,
      .price-list h3 {
        font-size: 18px;
      }

      .about-copy p,
      .pricing-copy p {
        font-size: 15.5px;
        line-height: 1.65;
      }

      .pricing-copy {
        padding: 54px 4px 38px;
      }

      .price-list {
        margin: 0 4px 44px;
        padding-top: 31px;
      }

      .price-row {
        padding: 14px 0;
        font-size: 15px;
      }

      .price {
        font-size: 15px;
      }

      .contact-inner {
        min-height: 390px;
      }

      .contact-copy {
        width: 100%;
        max-width: 430px;
        padding: 52px 4px 34px;
      }

      .contact-copy h2 {
        font-size: 28px;
      }

      .contact-copy address {
        font-size: 15px;
      }

      .registry-info {
        max-width: 340px;
        font-size: 12px;
      }

      .contact-visual {
        right: -28%;
        width: 118%;
        opacity: 0.42;
      }

      .contact-visual::before {
        width: 62%;
        background: linear-gradient(
          to right,
          rgba(255,255,255,1) 0%,
          rgba(255,255,255,0.98) 18%,
          rgba(255,255,255,0.88) 38%,
          rgba(255,255,255,0.58) 62%,
          rgba(255,255,255,0.18) 84%,
          rgba(255,255,255,0) 100%
        );
      }

      .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
      }
    }

    /* Úzké telefony */
    @media (max-width: 430px) {
      .hero-inner {
        width: calc(100% - 32px);
      }

      .hero h1 {
        font-size: clamp(36px, 10.4vw, 45px);
      }

      .services-inner {
        padding-left: 10px;
        padding-right: 10px;
      }

      .service-card {
        padding-left: 12px;
        padding-right: 12px;
      }

      .service-card h2 {
        font-size: 16.5px;
      }

      .service-card p {
        font-size: 13.25px;
      }

      .about-copy,
      .pricing-copy,
      .contact-copy {
        padding-left: 2px;
        padding-right: 2px;
      }

      .about-copy h2,
      .pricing-copy h2 {
        font-size: 33px;
      }

      .price strong {
        font-size: 17.5px;
      }

      .footer-inner {
        min-height: 76px;
        gap: 14px;
      }

      .footer-inner img {
        width: 112px;
      }

      .footer-inner p {
        font-size: 10.5px;
        line-height: 1.25;
        text-align: right;
      }
    }

    /* Velmi úzké displeje: služby necháme po jedné pro čitelnost. */
    @media (max-width: 360px) {
      .services-inner {
        grid-template-columns: 1fr;
      }

      .service-card,
      .service-card:first-child,
      .service-card:last-child,
      .service-card:nth-child(4),
      .service-card:nth-child(odd),
      .service-card:nth-child(even) {
        padding: 25px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }

      .service-card:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }

      .service-card:last-child {
        border-bottom: 0;
      }

      .service-card p {
        max-width: 250px;
      }

      .footer-inner {
        flex-direction: column;
        justify-content: center;
        padding-top: 16px;
        padding-bottom: 16px;
      }

      .footer-inner p {
        text-align: center;
      }
    }
