    @font-face {
      font-family: 'Suls';
      src: url("{{ url_for('static', filename='fonts/Suls.ttf') }}") format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --ink: #17130f;
      --ink-2: #211b16;
      --ink-3: #2b231d;
      --paper: #f4efe6;
      --paper-2: #e9dfcf;
      --paper-3: #ded1bd;
      --white: #fffdf9;
      --gold: #b38b4d;
      --gold-2: #e0c286;
      --gold-3: #8e6935;
      --text: #29221c;
      --muted: #776d61;
      --muted-light: #aaa095;
      --line: rgba(23, 19, 15, .13);
      --line-light: rgba(255, 253, 249, .13);
      --shadow: 0 30px 90px rgba(28, 20, 13, .16);
      --serif: "Amiri", Georgia, serif;
      --naskh: "Noto Naskh Arabic", serif;
      --sans: "Vazirmatn", Tahoma, sans-serif;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      background: var(--paper);
      color: var(--text);
      font-family: var(--sans);
      overflow-x: hidden;
      width: 100%;
      min-width: 0;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 1000;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    ::selection {
      background: var(--gold);
      color: white;
    }

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

    button {
      font: inherit;
    }

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

    .cursor-glow {
      position: fixed;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 5;
      background: radial-gradient(circle, rgba(179,139,77,0.12), transparent 70%);
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      width: 100%;
      height: 100dvh;
      min-height: 100vh;
      background: var(--ink);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow: hidden;
      transition: opacity 1s ease, visibility 1s ease;
    }

    .loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-content {
      width: min(420px, 100%);
      max-width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }

    .loader-symbol {
      width: 76px;
      height: 76px;
      flex: 0 0 76px;
      border: 1px solid rgba(224,194,134,0.5);
      border-radius: 50%;
      position: relative;
      margin: 0 auto;
      animation: spin 6s linear infinite;
    }

    .loader-symbol::before {
      content: "";
      position: absolute;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(224,194,134,0.3);
      border-radius: 50%;
      top: 16px;
      left: 16px;
    }

    .loader-symbol::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 7px;
      background: var(--gold-2);
      border-radius: 50%;
      top: 33px;
      left: 33px;
      box-shadow: 0 0 25px var(--gold-2);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .loader-writing-container {
      position: relative;
      width: min(400px, 100%);
      height: 100px;
      margin: 20px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      direction: rtl;
      overflow: visible;
    }

    .loader-writing-svg {
      display: block;
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    @keyframes writeStroke {
      to {
        stroke-dashoffset: 0;
      }
    }

    @keyframes fillText {
      to {
        opacity: 1;
      }
    }

    .loader-line {
      width: min(130px, 45vw);
      height: 1px;
      background: rgba(224,194,134,0.25);
      margin: 20px auto 0;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: lineAppear 0.8s ease forwards 3.5s;
    }

    .loader-line::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--gold-2);
      transform: translateX(100%);
      animation: lineMove 1.3s ease infinite;
    }

    @keyframes lineMove {
      to {
        transform: translateX(-100%);
      }
    }

    @keyframes lineAppear {
      to {
        opacity: 1;
      }
    }

    .site-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 200;
      height: 90px;
      padding: 0 clamp(20px, 5vw, 80px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: all 0.45s var(--ease);
      color: var(--white);
      width: 100%;
    }

    .site-header.scrolled {
      height: 74px;
      background: rgba(244,239,230,0.92);
      backdrop-filter: blur(18px);
      color: var(--ink);
      box-shadow: 0 1px 0 var(--line);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      z-index: 10;
      flex: 0 0 auto;
      min-width: 0;
    }

    .brand-symbol {
      width: 41px;
      height: 41px;
      flex: 0 0 41px;
      border: 1px solid currentColor;
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
    }

    .brand-symbol::before,
    .brand-symbol::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    .brand-symbol::before {
      width: 1px;
      height: 22px;
    }

    .brand-symbol::after {
      width: 22px;
      height: 1px;
    }

    .brand-name {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.5px;
      white-space: nowrap;
    }

    .brand-sub {
      display: block;
      font-size: 8px;
      opacity: 0.7;
      letter-spacing: 2px;
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 2vw, 32px);
      font-size: 12px;
      font-weight: 400;
      flex: 1 1 auto;
      min-width: 0;
    }

    .nav a {
      position: relative;
      opacity: 0.85;
      transition: 0.3s;
      white-space: nowrap;
    }

    .nav a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.35s var(--ease);
    }

    .nav a:hover {
      opacity: 1;
    }

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

    .header-action {
      min-width: 135px;
      padding: 11px 18px;
      border: 1px solid currentColor;
      text-align: center;
      font-size: 10px;
      transition: all 0.35s;
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .header-action:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: white;
    }

    .mobile-menu {
      display: none;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border: 1px solid currentColor;
      background: transparent;
      color: inherit;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      position: relative;
      z-index: 160;
      transition: all 0.3s ease;
    }

    .mobile-menu:hover {
      background: rgba(179, 139, 77, 0.1);
    }

    .mobile-menu span {
      width: 18px;
      height: 1px;
      background: currentColor;
      transition: all 0.3s ease;
      display: block;
    }

    .mobile-menu.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(23, 19, 15, 0.6);
      backdrop-filter: blur(8px);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(85%, 360px);
      max-width: 100%;
      background: rgba(244, 239, 230, 0.98);
      backdrop-filter: blur(25px);
      z-index: 151;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
      padding: 100px 30px 40px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .mobile-nav-panel.active {
      transform: translateX(0);
    }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .mobile-nav-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold-3);
      letter-spacing: 0.1em;
    }

    .mobile-nav-close {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: all 0.3s ease;
    }

    .mobile-nav-close:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 1px;
      background: currentColor;
    }

    .mobile-nav-close::before {
      transform: rotate(45deg);
    }

    .mobile-nav-close::after {
      transform: rotate(-45deg);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
    }

    .mobile-nav-link {
      padding: 18px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease, padding-right 0.3s ease;
    }

    .mobile-nav-panel.active .mobile-nav-link {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(1) {
      transition-delay: 0.1s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(2) {
      transition-delay: 0.15s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(3) {
      transition-delay: 0.2s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(4) {
      transition-delay: 0.25s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(5) {
      transition-delay: 0.3s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(6) {
      transition-delay: 0.35s;
    }

    .mobile-nav-link:hover {
      color: var(--gold-3);
      padding-right: 12px;
    }

    .mobile-nav-link .nav-arrow {
      font-size: 14px;
      color: var(--gold-3);
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-nav-link:hover .nav-arrow {
      opacity: 1;
      transform: translateX(-5px);
    }

    .mobile-nav-footer {
      margin-top: auto;
      padding-top: 30px;
      border-top: 1px solid var(--line);
    }

    .mobile-nav-action {
      display: block;
      padding: 16px 24px;
      background: var(--gold);
      color: var(--white);
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .mobile-nav-action:hover {
      background: var(--gold-3);
      box-shadow: 0 8px 25px rgba(179, 139, 77, 0.3);
    }

    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 45%, rgba(179,139,77,0.12), transparent 26%),
        radial-gradient(circle at 80% 15%, rgba(179,139,77,0.14), transparent 24%),
        linear-gradient(135deg, #211b16, #0f0c0a 80%);
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 130px clamp(20px, 6vw, 90px) 80px;
      isolation: isolate;
    }

    .hero-background {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(224,194,134,0.12);
    }

    .orb-one {
      width: 70vw;
      height: 70vw;
      right: -30vw;
      top: -30vw;
      animation: orbFloat 16s ease-in-out infinite alternate;
    }

    .orb-two {
      width: 50vw;
      height: 50vw;
      left: -24vw;
      bottom: -26vw;
      animation: orbFloat 18s ease-in-out infinite alternate-reverse;
    }

    .orb-three {
      width: 25vw;
      height: 25vw;
      right: 7%;
      bottom: -16vw;
      border-color: rgba(224,194,134,0.08);
    }

    @keyframes orbFloat {
      from {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }

      to {
        transform: translate3d(30px, -30px, 0) rotate(8deg);
      }
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      opacity: 0.2;
      background-image:
        linear-gradient(rgba(224,194,134,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224,194,134,0.08) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(circle, black, transparent 80%);
    }

    .hero-content {
      width: min(1250px, 100%);
      max-width: 1250px;
      text-align: center;
      position: relative;
      z-index: 10;
      margin: auto;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--gold-2);
      font-size: 11px;
      letter-spacing: 0.18em;
      margin-bottom: 120px;
      opacity: 0;
      animation: fadeUp 1s 0.4s var(--ease) forwards;
      position: relative;
      z-index: 15;
      background: rgba(23, 19, 15, 0.45);
      padding: 12px 28px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(224, 194, 134, 0.25);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      max-width: 100%;
    }

    .hero-kicker::before,
    .hero-kicker::after {
      content: "";
      width: 50px;
      height: 1px;
      background: var(--gold);
      flex: 0 0 50px;
    }

    .hero-calligraphy {
      font-family: 'Suls', 'Noto Naskh Arabic', 'Amiri', serif;
      font-size: clamp(65px, 20vw, 100px);
      line-height: 0.85;
      letter-spacing: -0.15em;
      white-space: normal;
      color: #f6ecd9;
      /* اضافه کردن این خطوط: */
      -webkit-text-fill-color: #f6ecd9;
      text-fill-color: #f6ecd9;
      opacity: 1 !important;
      visibility: visible !important;
      display: block;
      position: relative;
      z-index: 5;
    }

    .hero-calligraphy .accent {
      color: var(--gold-2);
    }

    @keyframes calligraphyReveal {
      0% {
        opacity: 0;
        transform: translateY(60px) skewX(-5deg) scale(0.92);
        filter: blur(10px);
      }

      100% {
        opacity: 1;
        transform: translateY(0) skewX(-5deg) scale(1);
        filter: blur(0);
      }
    }

    .hero-title {
      margin-top: 60px;
      font-size: clamp(20px, 2.4vw, 32px);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 1s 0.7s var(--ease) forwards;
    }

    .hero-title strong {
      font-weight: 700;
      color: white;
    }

    .hero-description {
      width: min(620px, 100%);
      max-width: 620px;
      margin: 22px auto 0;
      color: #c4baae;
      font-size: 12px;
      line-height: 2.4;
      opacity: 0;
      animation: fadeUp 1s 0.9s var(--ease) forwards;
    }

    .hero-actions {
      margin-top: 38px;
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 1s 1.1s var(--ease) forwards;
      flex-wrap: wrap;
    }

    .btn {
      min-width: 175px;
      min-height: 50px;
      padding: 16px 26px;
      border: 1px solid rgba(244,239,230,0.4);
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      transition: all 0.4s var(--ease);
      text-align: center;
    }

    .btn-primary {
      background: var(--gold);
      border-color: var(--gold);
      color: white;
      box-shadow: 0 14px 40px rgba(179,139,77,0.25);
    }

    .btn-primary:hover {
      background: var(--gold-2);
      border-color: var(--gold-2);
      transform: translateY(-5px);
      box-shadow: 0 22px 55px rgba(179,139,77,0.35);
    }

    .btn-secondary {
      color: var(--paper);
    }

    .btn-secondary:hover {
      background: white;
      border-color: white;
      color: var(--ink);
      transform: translateY(-5px);
    }

    .hero-bottom {
      position: absolute;
      right: clamp(20px, 6vw, 90px);
      left: clamp(20px, 6vw, 90px);
      bottom: 30px;
      z-index: 20;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
    }

    .hero-side-note {
      writing-mode: vertical-rl;
      color: #9b9185;
      font-size: 9px;
      letter-spacing: 0.15em;
    }

    .scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #a89e91;
      font-size: 9px;
    }

    .scroll-indicator span:last-child {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s infinite;
    }

    @keyframes scrollPulse {
      0%, 100% {
        opacity: .3;
        transform: scaleY(.7);
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    .hero-stamp {
      width: 85px;
      height: 85px;
      flex: 0 0 85px;
      border: 1px solid rgba(224,194,134,0.3);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold-2);
      font-family: 'Suls', serif;
      font-size: 20px;
      transform: rotate(-12deg);
      position: relative;
    }

    .hero-stamp::before {
      content: "";
      position: absolute;
      inset: 7px;
      border: 1px solid rgba(224,194,134,0.2);
      border-radius: 50%;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(35px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .section {
      padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 90px);
      width: 100%;
    }

    .container {
      width: min(1280px, 100%);
      max-width: 1280px;
      margin: auto;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: clamp(30px, 5vw, 60px);
      margin-bottom: 75px;
    }

    .section-kicker {
      color: var(--gold-3);
      font-size: 9px;
      letter-spacing: 0.18em;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(36px, 4.8vw, 64px);
      line-height: 1.3;
      letter-spacing: -0.06em;
      font-weight: 400;
    }

    .section-title strong {
      font-weight: 700;
    }

    .section-intro {
      width: min(450px, 100%);
      max-width: 450px;
      color: var(--muted);
      font-size: 12px;
      line-height: 2.4;
    }

    .about {
      background: var(--paper);
      position: relative;
    }

    .about::before {
      content: "امید";
      position: absolute;
      left: -60px;
      top: 70px;
      font-family: 'Suls', serif;
      font-size: 260px;
      color: rgba(179,139,77,0.04);
      transform: rotate(-12deg);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: clamp(40px, 9vw, 120px);
      align-items: center;
      position: relative;
      z-index: 3;
    }

    .about-visual {
      min-height: 580px;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .about-main-image {
      width: 78%;
      height: 520px;
      object-fit: cover;
      margin-right: auto;
      filter: saturate(.7) sepia(.12);
      box-shadow: var(--shadow);
      transition: transform 0.6s;
      display: block;
      position: relative;
      z-index: 2;
    }

    .about-frame {
      position: absolute;
      width: 76%;
      height: 500px;
      right: 0;
      top: 38px;
      border: 1px solid rgba(179,139,77,0.4);
      pointer-events: none;
      z-index: 1;
    }

    .about-frame::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(179,139,77,0.2);
    }

    .about-small-image {
      position: absolute;
      width: 38%;
      height: 215px;
      left: 0;
      bottom: 0;
      object-fit: cover;
      border: 10px solid var(--paper);
      box-shadow: 0 20px 50px rgba(28,20,13,0.2);
      filter: saturate(.75);
      z-index: 3;
    }

    .about-seal {
      position: absolute;
      right: 5%;
      bottom: 20px;
      width: 84px;
      height: 84px;
      background: var(--ink);
      color: var(--gold-2);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: 'Suls', serif;
      font-size: 20px;
      transform: rotate(8deg);
      box-shadow: 0 20px 40px rgba(28,20,13,0.2);
      z-index: 4;
    }

    .about-copy .lead {
      font-size: clamp(22px, 2.3vw, 30px);
      line-height: 1.9;
      letter-spacing: -0.04em;
      margin-bottom: 25px;
    }

    .about-copy .body {
      color: var(--muted);
      font-size: 12px;
      line-height: 2.5;
      margin-bottom: 35px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .stat {
      padding: 26px 0;
      min-width: 0;
    }

    .stat + .stat {
      border-right: 1px solid var(--line);
      padding-right: 25px;
    }

    .stat-value {
      display: block;
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .stat-label {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 9px;
      line-height: 1.8;
    }

    .center-story {
      background: var(--ink);
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }

    .center-story .section-intro {
      color: #b1a89c;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 12px;
      position: relative;
      z-index: 5;
    }

    .story-image {
      height: 620px;
      position: relative;
      overflow: hidden;
      min-width: 0;
    }

    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.65) sepia(.14);
      transition: transform 1.2s var(--ease), filter .5s;
    }

    .story-image:hover img {
      transform: scale(1.05);
      filter: saturate(.85) sepia(.06);
    }

    .story-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,9,7,0.85), transparent 55%);
    }

    .story-caption {
      position: absolute;
      right: 30px;
      left: 30px;
      bottom: 28px;
    }

    .story-caption small {
      color: var(--gold-2);
      font-size: 10px;
    }

    .story-caption h3 {
      margin-top: 10px;
      font-size: 26px;
      font-weight: 400;
      line-height: 1.7;
    }

    .story-side {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      min-width: 0;
    }

    .story-card {
      position: relative;
      overflow: hidden;
      min-height: 300px;
      min-width: 0;
    }

    .story-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.6) sepia(.15);
      transition: transform 1s var(--ease);
    }

    .story-card:hover img {
      transform: scale(1.06);
    }

    .story-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,9,7,0.8), transparent 65%);
    }

    .story-card-content {
      position: absolute;
      right: 24px;
      left: 24px;
      bottom: 24px;
      z-index: 5;
    }

    .story-card-content small {
      color: var(--gold-2);
      font-size: 8px;
    }

    .story-card-content h3 {
      font-size: 19px;
      font-weight: 400;
      margin-top: 6px;
      line-height: 1.7;
    }

    .needs-section {
      background: #201a15;
      color: var(--paper);
    }

    .needs-section .section-intro {
      color: #a49b90;
    }

    .needs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line-light);
      border-right: 1px solid var(--line-light);
    }

    .need-card {
      min-height: 270px;
      padding: 32px 28px;
      border-left: 1px solid var(--line-light);
      border-bottom: 1px solid var(--line-light);
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
      min-width: 0;
    }

    .need-card::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 1px solid rgba(224,194,134,0.08);
      left: -60px;
      bottom: -70px;
      transition: transform 0.6s;
    }

    .need-card:hover {
      background: #2a231d;
    }

    .need-card:hover::before {
      transform: scale(2);
    }

    .need-number {
      font-family: var(--serif);
      font-size: 13px;
      color: var(--gold-2);
    }

    .need-icon {
      width: 42px;
      height: 42px;
      margin-top: 28px;
      border: 1px solid rgba(224,194,134,0.3);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold-2);
      font-family: var(--serif);
      font-size: 19px;
    }

    .need-card h3 {
      font-size: 18px;
      font-weight: 500;
      margin-top: 22px;
      line-height: 1.7;
    }

    .need-card p {
      color: #a0968a;
      font-size: 10px;
      line-height: 2;
      margin-top: 12px;
    }

    .need-arrow {
      position: absolute;
      left: 25px;
      bottom: 22px;
      color: #6d645b;
      font-size: 16px;
      transition: 0.3s;
    }

    .need-card:hover .need-arrow {
      color: var(--gold-2);
      transform: translate(-5px, -5px);
    }

    .support-section {
      background: var(--paper-2);
    }

    .support-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: clamp(40px, 8vw, 110px);
      align-items: start;
    }

    .support-title {
      font-size: clamp(40px, 4.8vw, 66px);
      line-height: 1.35;
      letter-spacing: -0.07em;
      font-weight: 400;
    }

    .support-title strong {
      font-weight: 700;
    }

    .support-description {
      color: var(--muted);
      font-size: 12px;
      line-height: 2.5;
      margin-top: 24px;
    }

    .support-note {
      margin-top: 30px;
      padding: 22px;
      background: rgba(255,253,249,0.5);
      border-right: 3px solid var(--gold);
      font-size: 10px;
      line-height: 2.1;
    }

    .support-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .support-card {
      min-height: 250px;
      padding: 30px;
      background: rgba(255,253,249,0.6);
      border: 1px solid var(--line);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      transition: all 0.5s var(--ease);
      min-width: 0;
    }

    .support-card::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(179,139,77,0.1);
      left: -80px;
      bottom: -90px;
      transition: transform 0.6s;
    }

    .support-card:hover {
      transform: translateY(-8px);
      background: white;
      box-shadow: var(--shadow);
    }

    .support-card:hover::before {
      transform: scale(1.8);
    }

    .support-card.featured {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }

    .support-period {
      color: var(--gold-3);
      font-size: 10px;
    }

    .featured .support-period {
      color: var(--gold-2);
    }

    .support-card h3 {
      font-size: 24px;
      font-weight: 400;
      margin-top: 22px;
      line-height: 1.6;
    }

    .support-card p {
      color: var(--muted);
      font-size: 10px;
      line-height: 2;
      margin-top: 10px;
    }

    .featured p {
      color: #c2b8ad;
    }

    .support-link {
      font-size: 10px;
      position: relative;
      z-index: 5;
    }

    .support-link span {
      display: inline-block;
      margin-right: 8px;
      transition: 0.3s;
    }

    .support-card:hover .support-link span {
      transform: translateX(-8px);
    }

    .impact {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 8vw, 110px);
      align-items: center;
    }

    .impact-quote {
      font-family: var(--naskh);
      font-size: clamp(36px, 4.2vw, 60px);
      line-height: 1.7;
      letter-spacing: -0.06em;
    }

    .impact-quote strong {
      color: var(--gold-3);
    }

    .impact-text {
      color: var(--muted);
      font-size: 12px;
      line-height: 2.5;
      margin-top: 25px;
    }

    .impact-list {
      margin-top: 35px;
      border-top: 1px solid var(--line);
    }

    .impact-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      font-size: 11px;
    }

    .impact-item span:last-child {
      color: var(--gold-3);
      white-space: nowrap;
    }

    .impact-visual {
      min-height: 520px;
      position: relative;
      width: 100%;
    }

    .impact-image {
      width: 82%;
      height: 480px;
      object-fit: cover;
      margin-right: auto;
      filter: saturate(.65) sepia(.1);
      box-shadow: var(--shadow);
    }

    .impact-card {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 50%;
      padding: 28px;
      background: var(--ink);
      color: var(--paper);
      box-shadow: 0 30px 70px rgba(20,15,10,0.25);
    }

    .impact-card strong {
      display: block;
      font-size: 38px;
      font-weight: 400;
      color: var(--gold-2);
    }

    .impact-card span {
      display: block;
      color: #b8afa4;
      font-size: 10px;
      margin-top: 8px;
      line-height: 1.8;
    }

    .gallery-section {
      background: #e2d7c6;
      overflow: hidden;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      grid-template-rows: 300px 300px;
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      background: #d6c8b4;
      min-width: 0;
    }

    .gallery-item:first-child {
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.65) sepia(.1);
      transition: transform 1s var(--ease), filter .5s;
    }

    .gallery-item:hover img {
      transform: scale(1.07);
      filter: saturate(.9) sepia(.02);
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,15,11,0.7), transparent 60%);
      pointer-events: none;
    }

    .gallery-label {
      position: absolute;
      right: 24px;
      bottom: 22px;
      z-index: 5;
      color: white;
      max-width: calc(100% - 48px);
    }

    .gallery-label small {
      color: var(--gold-2);
      font-size: 8px;
    }

    .gallery-label strong {
      display: block;
      font-size: 16px;
      font-weight: 400;
      margin-top: 6px;
      line-height: 1.7;
    }

    .gallery-view {
      margin-top: 24px;
      display: flex;
      justify-content: flex-end;
    }

    .gallery-view a {
      font-size: 11px;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 6px;
    }

    .transparency {
      background: var(--white);
    }

    .transparency-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 8vw, 110px);
    }

    .reports {
      border-top: 1px solid var(--line);
    }

    .report {
      min-height: 100px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-width: 0;
    }

    .report > div {
      min-width: 0;
    }

    .report-title {
      font-size: 13px;
      line-height: 1.7;
    }

    .report-description {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 9px;
      line-height: 1.8;
    }

    .report-link {
      color: var(--gold-3);
      font-size: 9px;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .trust-panel {
      background: var(--ink);
      color: var(--paper);
      padding: 50px;
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .trust-panel::before {
      content: "اعتماد";
      position: absolute;
      left: -40px;
      bottom: -60px;
      font-family: 'Suls', serif;
      font-size: 190px;
      color: rgba(224,194,134,0.04);
    }

    .trust-panel h3 {
      font-size: 33px;
      font-weight: 400;
      position: relative;
      z-index: 3;
      line-height: 1.6;
    }

    .trust-panel p {
      color: #b6ada2;
      font-size: 11px;
      line-height: 2.5;
      margin-top: 20px;
      position: relative;
      z-index: 3;
    }

    .trust-sign {
      margin-top: 45px;
      padding-top: 20px;
      border-top: 1px solid var(--line-light);
      color: var(--gold-2);
      font-size: 9px;
      position: relative;
      z-index: 3;
    }

    .final-cta {
      min-height: 620px;
      padding: 100px clamp(20px, 6vw, 90px);
      background:
        linear-gradient(rgba(15,11,8,0.75), rgba(15,11,8,0.85)),
        url("{{ url_for('static', filename='images/final-cta.jpg') }}") center/cover;
      color: var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .final-content {
      width: min(800px, 100%);
      max-width: 800px;
      z-index: 5;
      margin: auto;
    }

    .final-kicker {
      color: var(--gold-2);
      font-size: 10px;
      letter-spacing: 0.2em;
    }

    .final-title {
      font-size: clamp(40px, 5vw, 70px);
      font-weight: 400;
      line-height: 1.45;
      letter-spacing: -0.06em;
      margin-top: 22px;
    }

    .final-title strong {
      color: var(--gold-2);
      font-weight: 700;
    }

    .final-description {
      width: min(560px, 100%);
      max-width: 560px;
      margin: 22px auto 0;
      color: #c8beb2;
      font-size: 12px;
      line-height: 2.4;
    }

    .final-actions {
      margin-top: 36px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    footer {
      background: #0d0a08;
      color: var(--paper);
      padding: 90px clamp(20px, 6vw, 90px) 30px;
    }

    .footer-top {
      width: min(1280px, 100%);
      max-width: 1280px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 70px;
      padding-bottom: 70px;
      border-bottom: 1px solid rgba(255,253,249,0.1);
    }

    .footer-brand {
      min-width: 0;
    }

    .footer-brand-title {
      font-family: 'Suls', 'Noto Naskh Arabic', serif;
      font-size: 52px;
      font-weight: 400;
      color: var(--gold-2);
      transform: skewX(-5deg);
    }
    .header-brand-title {
      font-family: 'Suls', 'Noto Naskh Arabic', serif;
      font-size: clamp(65px, 20vw, 100px);
      font-weight: 400;
      color: var(--gold-2);
      transform: skewX(-5deg);
    }
    .footer-brand-description {
      width: min(350px, 100%);
      max-width: 350px;
      color: #8d847b;
      font-size: 10px;
      line-height: 2.3;
      margin-top: 16px;
    }

    .footer-links {
      display: flex;
      gap: 80px;
      flex-wrap: wrap;
    }

    .footer-column {
      min-width: 100px;
    }

    .footer-column h4 {
      color: var(--gold-2);
      font-size: 10px;
      font-weight: 500;
      margin-bottom: 22px;
    }

    .footer-column a {
      display: block;
      color: #aaa197;
      font-size: 10px;
      margin-bottom: 15px;
      transition: 0.3s;
    }

    .footer-column a:hover {
      color: white;
    }

    .footer-bottom {
      width: min(1280px, 100%);
      max-width: 1280px;
      margin: auto;
      padding-top: 25px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #6b625c;
      font-size: 9px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(45px);
      transition: opacity 1s ease, transform 1s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: .08s;
    }

    .reveal-delay-2 {
      transition-delay: .16s;
    }

    .reveal-delay-3 {
      transition-delay: .24s;
    }

    .parallax {
      will-change: transform;
    }

    @media (max-width: 1200px) {
      .nav {
        gap: 16px;
        font-size: 11px;
      }

      .header-action {
        min-width: 120px;
        padding-inline: 14px;
      }

      .about-grid,
      .support-layout,
      .impact-grid,
      .transparency-grid {
        gap: 5vw;
      }

      .footer-links {
        gap: 50px;
      }
    }

    @media (max-width: 1050px) {
      .site-header {
        padding-inline: 4vw;
      }

      .nav {
        gap: 14px;
        font-size: 10px;
      }

      .header-action {
        min-width: 110px;
        font-size: 9px;
      }

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

      .about-grid,
      .impact-grid {
        gap: 5vw;
      }

      .section-header {
        gap: 35px;
      }

      .story-image {
        height: 560px;
      }

      .story-card {
        min-height: 274px;
      }

      .footer-top {
        gap: 45px;
      }
    }

    @media (max-width: 850px) {
      .site-header {
        height: 74px;
        padding-inline: 24px;
      }

      .site-header.scrolled {
        height: 68px;
      }

      .nav,
      .header-action {
        display: none;
      }

      .mobile-menu {
        display: flex;
      }

      .hero {
        padding: 110px 5vw 95px;
      }

      .hero-content {
        width: 100%;
      }

      .hero-kicker {
        margin-bottom: 80px;
        font-size: 10px;
        padding: 10px 20px;
      }

      .hero-kicker::before,
      .hero-kicker::after {
        width: 30px;
        flex-basis: 30px;
      }

      .hero-calligraphy {
        font-size: clamp(80px, 18vw, 160px);
        letter-spacing: -0.13em;
      }

      .hero-title {
        margin-top: 50px;
      }

      .hero-description {
        font-size: 11px;
      }

      .hero-bottom {
        right: 5vw;
        left: 5vw;
        bottom: 24px;
      }

      .hero-stamp {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
        font-size: 16px;
      }

      .section {
        padding: 100px 5vw;
      }

      .section-header {
        display: block;
        margin-bottom: 50px;
      }

      .section-intro {
        margin-top: 20px;
      }

      .about-grid,
      .story-grid,
      .support-layout,
      .impact-grid,
      .transparency-grid {
        grid-template-columns: 1fr;
      }

      .about-visual {
        min-height: 580px;
        position: relative;
        overflow: hidden;
      }

      .about-main-image {
        height: 430px;
        width: 82%;
      }

      .about-frame {
        height: 420px;
      }

      .story-image {
        height: 500px;
      }

      .story-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px;
      }

      .support-layout {
        gap: 50px;
      }

      .impact-visual {
        min-height: 450px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 230px 230px;
      }

      .gallery-item:first-child {
        grid-row: span 2;
      }

      .footer-top {
        flex-direction: column;
      }
    }

    @media (max-width: 650px) {
      .site-header {
        padding-inline: 18px;
      }

      .brand {
        gap: 10px;
      }

      .brand-symbol {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
      }

      .brand-symbol::before {
        height: 20px;
      }

      .brand-symbol::after {
        width: 20px;
      }

      .brand-name {
        font-size: 15px;
      }

      .mobile-nav-panel {
        width: min(88%, 360px);
        padding: 90px 24px 30px;
      }

      .hero {
        min-height: 760px;
        padding: 105px 18px 90px;
      }

      .hero-kicker {
        margin-bottom: 60px;
        gap: 10px;
        font-size: 9px;
        letter-spacing: 0.12em;
        padding: 9px 14px;
      }

      .hero-kicker::before,
      .hero-kicker::after {
        width: 20px;
        flex-basis: 20px;
      }

        .hero-calligraphy {
          font-size: clamp(65px, 20vw, 100px);
          line-height: 1.2 !important;
          letter-spacing: -0.02em !important; /* کاهش letter-spacing منفی */
          white-space: normal !important;
          transform: none !important; /* حذف skewX */
          display: block !important;
          width: 100% !important;
          word-break: keep-all;
          overflow-wrap: normal;
          text-align: center;
        }

      .hero-title {
        margin-top: 42px;
        font-size: 18px;
        line-height: 1.9;
      }

      .hero-description {
        font-size: 10px;
        line-height: 2.3;
      }

      .hero-actions {
        margin-top: 30px;
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 360px);
        margin-inline: auto;
      }

      .btn {
        width: 100%;
        min-width: 0;
      }

      .hero-bottom {
        bottom: 18px;
        align-items: center;
      }

      .hero-side-note {
        display: none;
      }

      .scroll-indicator {
        margin-inline: auto;
      }

      .hero-stamp {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 14px;
      }

      .hero-stamp::before {
        inset: 5px;
      }

      .section {
        padding: 80px 5vw;
      }

      .section-kicker {
        font-size: 8px;
        margin-bottom: 14px;
      }

      .section-title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.4;
      }

      .section-intro {
        font-size: 11px;
        line-height: 2.35;
      }

      .about::before {
        font-size: 160px;
        left: -50px;
        top: 80px;
      }

      .about-visual {
        min-height: 400px;
      }

      .about-main-image {
        width: 86%;
        height: 360px;
      }

      .about-frame {
        width: 84%;
        height: 350px;
        top: 25px;
      }

      .about-frame::before {
        inset: 10px;
      }

      .about-small-image {
        width: 42%;
        height: 150px;
        border-width: 7px;
      }

      .about-seal {
        width: 68px;
        height: 68px;
        right: 4%;
        bottom: 12px;
        font-size: 17px;
      }

      .about-copy .lead {
        font-size: 22px;
        line-height: 1.9;
      }

      .about-copy .body {
        font-size: 11px;
        line-height: 2.4;
      }

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

      .stat {
        padding: 20px 0;
      }

      .stat + .stat {
        border-right: 0;
        border-top: 1px solid var(--line);
        padding-right: 0;
      }

      .stat-value {
        font-size: 31px;
      }

      .story-image {
        height: 400px;
      }

      .story-caption {
        right: 20px;
        left: 20px;
        bottom: 20px;
      }

      .story-caption h3 {
        font-size: 21px;
      }

      .story-side {
        grid-template-columns: 1fr;
        grid-template-rows: 230px 230px;
      }

      .story-card-content {
        right: 20px;
        left: 20px;
        bottom: 20px;
      }

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

      .need-card {
        min-height: 220px;
        padding: 28px 22px;
      }

      .support-cards {
        grid-template-columns: 1fr;
      }

      .support-card {
        min-height: 225px;
        padding: 26px;
      }

      .support-title {
        font-size: clamp(38px, 11vw, 52px);
      }

      .impact-quote {
        font-size: clamp(34px, 10vw, 46px);
      }

      .impact-item {
        font-size: 10px;
      }

      .impact-visual {
        min-height: 410px;
      }

      .impact-image {
        width: 88%;
        height: 370px;
      }

      .impact-card {
        width: 55%;
        padding: 20px;
      }

      .impact-card strong {
        font-size: 32px;
      }

      .impact-card span {
        font-size: 9px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 330px repeat(4, 210px);
      }

      .gallery-item:first-child {
        grid-row: auto;
      }

      .gallery-label {
        right: 18px;
        bottom: 18px;
        max-width: calc(100% - 36px);
      }

      .gallery-label strong {
        font-size: 15px;
      }

      .report {
        min-height: 90px;
      }

      .report-title {
        font-size: 12px;
      }

      .report-description {
        font-size: 8px;
      }

      .report-link {
        font-size: 8px;
      }

      .trust-panel {
        padding: 35px 25px;
      }

      .trust-panel h3 {
        font-size: 28px;
      }

      .trust-panel p {
        font-size: 10px;
        line-height: 2.4;
      }

      .final-cta {
        min-height: 550px;
        padding: 80px 20px;
      }

      .final-title {
        font-size: clamp(36px, 10vw, 46px);
      }

      .final-description {
        font-size: 10px;
      }

      .final-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 360px);
        margin-inline: auto;
      }

      footer {
        padding: 70px 5vw 25px;
      }

      .footer-top {
        gap: 45px;
        padding-bottom: 45px;
      }

      .footer-brand-title {
        font-size: 43px;
      }

      .footer-brand-description {
        font-size: 9px;
      }

      .footer-links {
        gap: 30px;
      }

      .footer-column {
        min-width: 90px;
      }

      .footer-bottom {
        display: block;
        line-height: 2;
      }

      .footer-bottom span {
        display: block;
        margin-bottom: 6px;
      }
    }

    @media (max-width: 400px) {
      .brand-name {
        font-size: 14px;
      }

      .brand-symbol {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
      }

      .mobile-menu {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
      }

      .hero {
        min-height: 720px;
      }

      .hero-kicker {
        font-size: 8px;
        padding-inline: 10px;
      }

      .hero-kicker::before,
      .hero-kicker::after {
        display: none;
      }

      .hero-calligraphy {
        font-size: 62px;
      }

      .hero-title {
        font-size: 17px;
      }

      .hero-stamp {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 13px;
      }

      .scroll-indicator {
        font-size: 8px;
      }

      .scroll-indicator span:last-child {
        height: 38px;
      }

      .section {
        padding-top: 70px;
        padding-bottom: 70px;
      }

      .about-main-image {
        height: 320px;
      }

      .about-frame {
        height: 310px;
      }

      .about-visual {
        min-height: 360px;
      }

      .about-small-image {
        height: 125px;
      }

      .about-seal {
        width: 60px;
        height: 60px;
        font-size: 15px;
      }

      .story-image {
        height: 350px;
      }

      .story-side {
        grid-template-rows: 210px 210px;
      }

      .need-card {
        min-height: 205px;
      }

      .impact-visual {
        min-height: 360px;
      }

      .impact-image {
        height: 320px;
      }

      .impact-card {
        width: 58%;
      }

      .gallery-grid {
        grid-template-rows: 290px repeat(4, 190px);
      }

      .trust-panel {
        padding: 30px 20px;
      }

      .footer-links {
        gap: 22px;
      }

      .footer-column {
        min-width: 82px;
      }
    }

    @media (max-height: 700px) and (min-width: 851px) {
      .hero {
        padding-top: 100px;
        padding-bottom: 70px;
      }

      .hero-kicker {
        margin-bottom: 65px;
      }

      .hero-title {
        margin-top: 40px;
      }

      .hero-bottom {
        bottom: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
      }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 19, 15, 0.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #faf8f5;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(179, 139, 77, 0.15);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #6b5f4f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(23, 19, 15, 0.06);
  color: #2c241a;
}

.modal-icon {
  font-size: 36px;
  color: #b38b4d;
  margin-bottom: 12px;
  text-align: center;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c241a;
  text-align: center;
  margin-bottom: 24px;
}

.modal-body {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  border: 1px solid #e8e0d6;
}

.modal-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

.modal-detail:first-child {
  border-bottom: 1px solid #f0ebe5;
}

.modal-label {
  font-size: 0.9rem;
  color: #6b5f4f;
  font-weight: 500;
}

.modal-value {
  font-size: 0.95rem;
  color: #2c241a;
  font-weight: 600;
}

.modal-value.highlight {
  color: #b38b4d;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
  text-align: center;
}

.modal-btn-primary {
  background: #b38b4d;
  color: white;
  box-shadow: 0 4px 16px rgba(179, 139, 77, 0.25);
}

.modal-btn-primary:hover {
  background: #8e6935;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(179, 139, 77, 0.3);
}

.modal-btn-secondary {
  background: transparent;
  color: #6b5f4f;
  border: 2px solid #e0d6c8;
}

.modal-btn-secondary:hover {
  border-color: #b38b4d;
  color: #2c241a;
  background: rgba(179, 139, 77, 0.05);
}

@media (max-width: 480px) {
  .modal-box {
    padding: 32px 20px 28px;
  }
  
  .modal-body {
    padding: 16px 18px;
  }
  
  .modal-detail {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  
  .modal-btn {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
  
  .modal-title {
    font-size: 1.1rem;
  }
}