
    :root {
      --black: #111111;
      --graphite: #1c1b19;
      --milk: #f7f1e8;
      --milk-2: #fffaf2;
      --emerald: #006b4f;
      --emerald-dark: #064536;
      --red: #a52222;
      --red-soft: #c94b3d;
      --beige: #d9c3a5;
      --muted: #6f665c;
      --white: #ffffff;
      --line: rgba(17, 17, 17, 0.09);
      --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
      --radius-xl: 34px;
      --radius-lg: 26px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background:
        radial-gradient(circle at 5% 10%, rgba(0, 107, 79, 0.11), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(165, 34, 34, 0.08), transparent 28%),
        var(--milk);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    text-decoration: none;
    }

    .brand-mark {
    width: 128px;
    height: 128px;
    object-fit: contain;
    padding: 6px;
    border-radius: 50%;
    background: rgba(0, 107, 79, 0.1);
    border: 1px solid rgba(0, 107, 79, 0.22);
    }

    .brand-text {
    font-family: "Oranienbaum", serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--black);
    white-space: nowrap;
    }

    .brand-text span {
    color: var(--emerald);
    }

    .brand:hover .brand-mark {
    transform: rotate(-4deg) scale(1.04);
    }

    .brand-mark {
    transition: transform 0.25s ease;
    }

    footer .brand-text {
    color: var(--white);
    }

    footer .brand-text span {
    color: var(--beige);
    }

    .brand-footer {
    margin-bottom: 10px;
    }

    @media (max-width: 520px) {
    .brand {
        gap: 9px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-text {
        font-size: 24px;
    }
    }

    .container {
      width: min(1180px, 92%);
      margin: 0 auto;
    }

    .ornament-bg {
      position: relative;
      overflow: hidden;
    }

    .ornament-bg::before,
    .ornament-bg::after {
      content: "";
      position: absolute;
      width: 210px;
      height: 210px;
      opacity: 0.18;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 8%, var(--emerald) 0 5px, transparent 6px),
        radial-gradient(circle at 50% 92%, var(--emerald) 0 5px, transparent 6px),
        radial-gradient(circle at 8% 50%, var(--red) 0 5px, transparent 6px),
        radial-gradient(circle at 92% 50%, var(--red) 0 5px, transparent 6px),
        conic-gradient(from 45deg, transparent 0 18%, var(--emerald) 18% 20%, transparent 20% 43%, var(--red) 43% 45%, transparent 45% 68%, var(--emerald) 68% 70%, transparent 70% 100%);
      border-radius: 50%;
      filter: blur(0.1px);
    }

    .ornament-bg::before {
      left: -92px;
      top: -92px;
    }

    .ornament-bg::after {
      right: -92px;
      bottom: -92px;
      transform: rotate(180deg);
    }

    header {
      padding: 18px 0;
      border-bottom: 1px solid rgba(17, 17, 17, 0.08);
      position: sticky;
      top: 0;
      background: rgba(247, 241, 232, 0.9);
      backdrop-filter: blur(18px);
      z-index: 20;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .logo {
      display: inline-grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 12px;
      color: var(--black);
      min-width: max-content;
    }

    .logo-mark {
      width: 42px;
      height: 54px;
      border: 1px solid rgba(0, 107, 79, 0.42);
      border-radius: 999px 999px 18px 18px;
      position: relative;
      background: linear-gradient(180deg, rgba(0, 107, 79, 0.12), rgba(165, 34, 34, 0.04));
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 12px;
      width: 15px;
      height: 15px;
      border: 2px solid var(--red);
      border-left: 0;
      border-bottom: 0;
      transform: translateX(-50%) rotate(45deg);
      border-radius: 2px 8px 2px 8px;
    }

    .logo-mark::after {
      content: "✦";
      position: absolute;
      left: 50%;
      bottom: 5px;
      transform: translateX(-50%);
      color: var(--emerald);
      font-size: 16px;
      line-height: 1;
    }

    .logo-text {
      font-family: "Oranienbaum", serif;
      font-size: 27px;
      line-height: 0.86;
      letter-spacing: 3px;
      text-transform: uppercase;
      transform: scaleY(1.18);
    }

    .logo-text span {
      display: block;
      color: var(--emerald);
      letter-spacing: 4px;
    }

    .menu {
      display: flex;
      gap: 26px;
      font-size: 14px;
      color: var(--muted);
      align-items: center;
    }

    .menu a {
      position: relative;
      transition: color 0.2s ease;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width 0.2s ease;
    }

    .menu a:hover {
      color: var(--black);
    }

    .menu a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      background: var(--emerald);
      color: var(--white);
      font-weight: 800;
      border: 1px solid transparent;
      box-shadow: 0 16px 36px rgba(0, 107, 79, 0.22);
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn:hover {
      background: var(--emerald-dark);
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(0, 107, 79, 0.28);
    }

    .btn-red {
      background: var(--red);
      box-shadow: 0 16px 36px rgba(165, 34, 34, 0.2);
    }

    .btn-red:hover {
      background: #851818;
      box-shadow: 0 20px 44px rgba(165, 34, 34, 0.25);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(17, 17, 17, 0.35);
      color: var(--black);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
    }

    .hero {
      padding: 88px 0 74px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 58px;
      right: -130px;
      width: 440px;
      height: 440px;
      border: 1px solid rgba(165, 34, 34, 0.22);
      border-radius: 50%;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 8%;
      top: 108px;
      width: 160px;
      height: 160px;
      opacity: 0.08;
      background: repeating-linear-gradient(45deg, var(--emerald) 0 5px, transparent 5px 15px);
      border-radius: 44px;
      transform: rotate(12deg);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .tag {
      display: inline-flex;
      padding: 8px 14px;
      border: 1px solid rgba(0, 107, 79, 0.25);
      border-radius: 999px;
      color: var(--emerald);
      background: rgba(255, 255, 255, 0.46);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 24px;
    }

    h1, h2, h3 {
      font-family: "Oranienbaum", serif;
      font-weight: 400;
      line-height: 1.04;
    }

    h1 {
      font-size: clamp(48px, 7vw, 94px);
      max-width: 790px;
      margin-bottom: 28px;
      letter-spacing: -1px;
    }

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

    .hero p {
      font-size: 20px;
      color: var(--muted);
      max-width: 640px;
      margin-bottom: 34px;
    }

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

    .hero-proof {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .hero-proof span::before {
      content: "✦";
      color: var(--red);
      margin-right: 7px;
    }

    .market-preview {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 22px;
      background: var(--graphite);
      color: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .market-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 15%, rgba(0, 107, 79, 0.36), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(165, 34, 34, 0.28), transparent 24%);
      pointer-events: none;
    }

    .market-preview-head {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
    }

    .mini-market-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .mini-card {
      min-height: 210px;
      border-radius: 24px;
      padding: 18px;
      background: var(--milk-2);
      color: var(--black);
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* .mini-card:nth-child(2) {
      transform: translateY(24px);
    } */

    .mini-card:nth-child(3) {
      grid-column: span 2;
      min-height: 160px;
      flex-direction: row;
      align-items: flex-end;
    }

    .mini-card::after {
      content: "";
      position: absolute;
      right: -35px;
      bottom: -35px;
      width: 120px;
      height: 120px;
      border-radius: 30px;
      background: rgba(0, 107, 79, 0.14);
      transform: rotate(18deg);
    }

    .mini-card strong {
      font-size: 13px;
      color: var(--emerald);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

    .mini-card h3 {
      font-size: 30px;
      position: relative;
      z-index: 1;
      max-width: 240px;
    }

    .mini-card p {
      font-size: 13px;
      margin: 8px 0 0;
      color: var(--muted);
      position: relative;
      z-index: 1;
    }

    .mini-img {
      width: 88px;
      height: 114px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--beige), var(--white));
      box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .mini-img::before {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      background: var(--emerald);
      opacity: 0.18;
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 44px;
    }

    .section-kicker {
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-head h2 {
      font-size: clamp(38px, 5vw, 66px);
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
    }

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

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

    .card {
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      min-height: 220px;
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      right: -26px;
      top: -26px;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      border: 1px solid rgba(0, 107, 79, 0.18);
    }

    .card .num {
      color: var(--red);
      font-weight: 900;
      margin-bottom: 16px;
      letter-spacing: 1px;
    }

    .card h3 {
      font-size: 30px;
      margin-bottom: 12px;
    }

    .card p {
      color: var(--muted);
    }

    .dark {
      background: var(--black);
      color: var(--white);
    }

    .dark.ornament-bg::before,
    .dark.ornament-bg::after {
      opacity: 0.12;
    }

    .dark .section-head p,
    .dark .card p {
      color: rgba(255, 255, 255, 0.68);
    }

    .dark .card {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .market-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .market-strip-card {
      border-radius: 24px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--line);
    }

    .market-strip-card b {
      color: var(--emerald);
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 1.3px;
    }

    .market-strip-card p {
      margin-top: 9px;
      color: var(--muted);
      font-size: 14px;
    }

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

    .price-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 34px;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 500px;
      box-shadow: 0 14px 44px rgba(17, 17, 17, 0.05);
    }

    .price-card.featured {
      background: var(--emerald);
      color: var(--white);
      transform: translateY(-18px);
      box-shadow: 0 26px 70px rgba(0, 107, 79, 0.25);
    }

    .price-card h3 {
      font-size: 42px;
      margin-bottom: 12px;
    }

    .price-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .price-card.featured p,
    .price-card.featured li {
      color: rgba(255, 255, 255, 0.78);
    }

    ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    li::before {
      content: "•";
      color: var(--red);
      margin-right: 10px;
      font-weight: 900;
    }

    .portfolio-section {
      background: linear-gradient(180deg, var(--milk), #efe2cf);
    }

    .portfolio-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }

    .portfolio-top .section-head {
      margin-bottom: 0;
    }

    .portfolio-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .filter-chip {
      border: 1px solid rgba(0, 107, 79, 0.24);
      color: var(--emerald);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.5);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .work-card {
      border: 0;
      text-align: left;
      cursor: pointer;
      border-radius: 26px;
      background: var(--white);
      box-shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      padding: 0;
      font-family: inherit;
      color: inherit;
    }

    .work-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 70px rgba(17, 17, 17, 0.16);
    }

    .work-cover {
      aspect-ratio: 3 / 4;
      background:
        linear-gradient(145deg, rgba(0, 107, 79, 0.18), rgba(165, 34, 34, 0.07)),
        var(--beige);
      overflow: hidden;
      position: relative;
    }

    .work-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .work-card:hover .work-cover img {
      transform: scale(1.04);
    }

    .work-cover::after {
      content: "Смотреть";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      text-align: center;
      border-radius: 999px;
      padding: 10px 12px;
      color: var(--white);
      background: rgba(0, 107, 79, 0.86);
      font-size: 13px;
      font-weight: 900;
      opacity: 0;
      transform: translateY(8px);
      transition: 0.22s ease;
    }

    .work-card:hover .work-cover::after {
      opacity: 1;
      transform: translateY(0);
    }

    .work-info {
      padding: 16px 16px 18px;
    }

    .work-info small {
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 11px;
    }

    .work-info h3 {
      font-size: 24px;
      margin-top: 6px;
      margin-bottom: 8px;
    }

    .work-info p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .portfolio-note {
      margin-top: 30px;
      border-radius: 26px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.56);
      border: 1px solid var(--line);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .portfolio-note p {
      color: var(--muted);
      max-width: 720px;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, 0.82);
      backdrop-filter: blur(10px);
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }

    .modal.is-open {
      display: flex;
    }

    .modal-dialog {
      width: min(1120px, 100%);
      max-height: 92vh;
      overflow: auto;
      border-radius: 30px;
      background: var(--milk);
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
      position: relative;
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      padding: 26px 28px 18px;
      border-bottom: 1px solid var(--line);
    }

    .modal-head h3 {
      font-size: 42px;
    }

    .modal-head p {
      color: var(--muted);
      margin-top: 6px;
    }

    .modal-close {
      border: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--black);
      color: var(--white);
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
    }

    .modal-gallery {
      padding: 24px 28px 30px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .modal-gallery img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 18px;
      background: var(--beige);
      box-shadow: 0 12px 34px rgba(17, 17, 17, 0.1);
    }



    .image-viewer {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      background: rgba(8, 8, 8, 0.94);
      backdrop-filter: blur(12px);
      padding: 22px;
    }

    .image-viewer.is-open {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 14px;
    }

    .image-viewer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--white);
      width: min(1220px, 100%);
      margin: 0 auto;
    }

    .image-viewer-title {
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .image-viewer-count {
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
      margin-top: 4px;
    }

    .viewer-close,
    .viewer-arrow {
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      cursor: pointer;
      transition: 0.2s ease;
    }

    .viewer-close:hover,
    .viewer-arrow:hover {
      background: var(--emerald);
      border-color: var(--emerald);
    }

    .viewer-close {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      font-size: 28px;
      line-height: 1;
    }

    .image-viewer-body {
      width: min(1220px, 100%);
      min-height: 0;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 58px 1fr 58px;
      align-items: center;
      gap: 14px;
    }

    .viewer-arrow {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      font-size: 38px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .image-viewer-stage {
      min-width: 0;
      min-height: 0;
      height: calc(100vh - 160px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-viewer-stage img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 18px;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
      background: var(--milk);
    }

    .viewer-hint {
      text-align: center;
      color: rgba(255, 255, 255, 0.56);
      font-size: 13px;
    }

    .modal-gallery img {
      cursor: zoom-in;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .modal-gallery img:hover {
      transform: translateY(-3px) scale(1.015);
      box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
    }

    .faq {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: var(--white);
      border-radius: 24px;
      padding: 24px;
      border: 1px solid var(--line);
    }

    .faq-item h3 {
      font-size: 26px;
      margin-bottom: 8px;
    }

    .faq-item p {
      color: var(--muted);
    }

    .cta {
      text-align: center;
      padding: 112px 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 84% 30%, rgba(165, 34, 34, 0.18), transparent 26%),
        var(--emerald);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta h2 {
      font-size: clamp(42px, 6vw, 78px);
      max-width: 940px;
      margin: 0 auto 24px;
    }

    .cta p {
      max-width: 660px;
      margin: 0 auto 34px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 18px;
    }

    .cta .btn {
      background: var(--white);
      color: var(--black);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    }

    footer {
      background: var(--black);
      color: var(--white);
      padding: 42px 0;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      color: rgba(255, 255, 255, 0.62);
      align-items: center;
    }

    footer .logo-text {
      color: var(--white);
    }

    footer .logo-text span {
      color: #7bb9a5;
    }

    @media (max-width: 1100px) {
      .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 920px) {
      .hero-grid,
      .grid-3,
      .grid-4,
      .pricing,
      .market-strip {
        grid-template-columns: 1fr;
      }

      .price-card.featured {
        transform: none;
      }

      .portfolio-top,
      .portfolio-note {
        align-items: flex-start;
        flex-direction: column;
      }

      .portfolio-filters {
        justify-content: flex-start;
      }

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

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

      .menu {
        display: none;
      }

      .hero {
        padding-top: 58px;
      }

      .mini-card:nth-child(2) {
        transform: none;
      }
    }

    @media (max-width: 560px) {
      .nav .btn {
        display: none;
      }

      .logo-text {
        font-size: 22px;
      }

      h1 {
        font-size: 48px;
      }

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

      .hero-actions .btn,
      .portfolio-note .btn {
        width: 100%;
      }

      .modal {
        padding: 10px;
      }

      .modal-head h3 {
        font-size: 32px;
      }


      .image-viewer {
        padding: 10px;
      }

      .image-viewer-body {
        grid-template-columns: 1fr;
      }

      .viewer-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        font-size: 30px;
        background: rgba(0, 0, 0, 0.34);
      }

      .viewer-prev {
        left: 12px;
      }

      .viewer-next {
        right: 12px;
      }

      .image-viewer-stage {
        height: calc(100vh - 140px);
      }

      .image-viewer-stage img {
        border-radius: 12px;
      }
    }