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

    :root {
      --bg: #f0f0f0;
      --bg2: #e4e4e4;
      --bg3: #d8d8d8;
      --paper: #f8f8f8;
      --ink: #111111;
      --ink2: #444444;
      --ink3: #888888;
      --rust: #333333;
      --rust-lt: #666666;
      --sage: #555555;
      --line: rgba(0, 0, 0, 0.13);
      --max: 1200px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--ink);
      font-size: 15px;
      line-height: 1.75;
        }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 300px 300px;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 3rem;
      position: relative;
      z-index: 1;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(240, 240, 240, 0.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow 0.3s;
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 84px;
    }

    .nav-logo {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: 0.05em;
    }

    .nav-logo span {
      font-style: italic;
      color: var(--rust);
    }

    .nav-links {
      display: flex;
      gap: 4rem;
      list-style: none;
    }

    .nav-links a {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ink2);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--rust);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-direction: column;
      gap: 5px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--ink);
      transition: all 0.3s;
    }

    /* HERO */
    #hero {
      padding-top: 84px;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      position: relative;
    }

    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 3rem;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 560px;
      gap: 4rem;
      align-items: center;
    }

    .hero-text {
      padding: 5rem 0;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1.5px;
      background: var(--rust);
    }

    .hero-eyebrow span {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--rust);
    }

    h1.hero-name {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(3.5rem, 6vw, 6.5rem);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 2rem;
    }

    h1.hero-name em {
      font-style: italic;
      color: var(--rust);
      display: block;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--ink2);
      max-width: 460px;
      line-height: 1.85;
      margin-bottom: 3rem;
      font-style: italic;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 11.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--paper);
      background: var(--ink);
      padding: 14px 28px;
      text-decoration: none;
      transition: background 0.25s;
    }

    .hero-cta:hover {
      background: var(--rust);
    }

    .hero-cta::after {
      content: '→';
      font-style: normal;
      font-size: 14px;
      letter-spacing: 0;
    }

    .hero-image-col {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 5rem 0;
    }

    .hero-photo-wrap {
      position: relative;
      width: 100%;
      max-width: 500px;
      align-self: flex-end;
    }

    .hero-photo {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(155deg, #888 0%, #555 50%, #222 100%);
      display: flex;
      align-items: stretch;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
      opacity: 0.6;
      pointer-events: none;
      z-index: 1;
    }

    .hero-photo-inner {
      width: 100%;
      height: 100%;
      background: url("https://abbasmojarad.com/images/abbas-mojarad.jpg") center top / contain no-repeat;
      position: relative;
      z-index: 0;
    }


    .hero-photo-label {
      display: none;
    }

    .photo-border-deco {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      border: 1.5px solid #888888;
      pointer-events: none;
    }

    .hero-tags {
      margin-top: 2.5rem;
      align-self: flex-end;
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .tag-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink3);
    }

    .tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }

    /* SECTION SHARED */
    section {
      position: relative;
      z-index: 1;
    }

    .sec-label {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .sec-label::after {
      content: '';
      display: block;
      height: 1px;
      width: 48px;
      background: var(--rust-lt);
    }

    .sec-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--ink);
    }
    #works .sec-title { color: #ffffff; }
    #works .sec-title em { color: #ffffff; font-style: italic; }
    #works .sec-label { color: #aaaaaa; }
    #works .sec-label::after { background: #666; }
    #works .fbtn { color: #aaa; border-color: rgba(255,255,255,0.2); }
    #works .fbtn:hover { color: #fff; border-color: #fff; }
    #works .fbtn.on { background: #fff; border-color: #fff; color: #111; }

    .sec-title em {
      font-style: italic;
      color: var(--rust);
    }

    .sec-header {
      margin-bottom: 3.5rem;
    }

    /* ABOUT */
    #about {
      background: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 7rem 0;
    }

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

    .about-text p {
      color: var(--ink2);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 1.4rem;
    }

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

    .aside-card {
      background: var(--bg2);
      padding: 2rem;
      border-left: 3px solid var(--rust);
      margin-bottom: 2rem;
    }

    .aside-card:last-child {
      margin-bottom: 0;
    }

    .aside-title {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      font-size: 10.5px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1rem;
    }

    .aside-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .aside-list li {
      font-size: 13.5px;
      color: var(--ink2);
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
    }

    .aside-list li::before {
      content: '–';
      color: var(--rust-lt);
      flex-shrink: 0;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin-top: 3.5rem;
    }

    .stat-cell {
      background: var(--paper);
      padding: 1.8rem 1.5rem;
      text-align: center;
    }

    .stat-num {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 2.6rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1;
      display: block;
    }

    .stat-lbl {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink3);
      margin-top: 0.4rem;
      display: block;
    }

    /* WORKS */
    #works {
      padding: 7rem 0;
      background: #111111;
    }

    .works-toolbar {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      gap: 1.5rem;
      flex-wrap: wrap;
      color: #f0f0f0;
    }

    .filter-row {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .fbtn {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 7px 18px;
      background: none;
      border: 1px solid var(--line);
      color: var(--ink3);
      cursor: pointer;
      transition: all 0.2s;
    }

    .fbtn:hover {
      border-color: var(--ink2);
      color: var(--ink);
    }

    .fbtn.on {
      background: var(--rust);
      border-color: var(--rust);
      color: var(--paper);
    }

    .works-mosaic {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 10px;
    }

    .wcard {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: #111111;
    }

    .wcard-a {
      grid-column: span 7;
    }

    .wcard-b {
      grid-column: span 5;
    }

    .wcard-c {
      grid-column: span 4;
    }

    .wcard-d {
      grid-column: span 4;
    }

    .wcard-e {
      grid-column: span 4;
    }

    .wcard-f {
      grid-column: span 6;
    }

    .wcard-g {
      grid-column: span 6;
    }

    .wthumb {
      width: 100%;
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
    }

    .wcard-a .wthumb {
      aspect-ratio: 16/9;
    }

    .wthumb-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.7s ease;
    }

    .wcard:hover .wthumb-bg {
      transform: scale(1.05);
    }

    .wthumb-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(44, 36, 22, 0.88) 0%, rgba(44, 36, 22, 0.1) 55%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wcard:hover .wthumb-veil {
      opacity: 1;
    }

    .wplay {
      width: 50px;
      height: 50px;
      border: 1.5px solid rgba(248, 243, 235, 0.7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--paper);
      font-size: 16px;
    }

    .f1 {
      background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 60%, #555 100%);
    }

    .f2 {
      background: linear-gradient(160deg, #141414 0%, #2e2e2e 60%, #4a4a4a 100%);
    }

    .f3 {
      background: linear-gradient(120deg, #1e1e1e 0%, #3c3c3c 60%, #5a5a5a 100%);
    }

    .f4 {
      background: linear-gradient(150deg, #181818 0%, #323232 50%, #4e4e4e 100%);
    }

    .f5 {
      background: linear-gradient(140deg, #121212 0%, #282828 60%, #444444 100%);
    }

    .f6 {
      background: linear-gradient(130deg, #1c1c1c 0%, #343434 55%, #525252 100%);
    }

    .f7 {
      background: linear-gradient(155deg, #161616 0%, #303030 55%, #4c4c4c 100%);
    }

    .film-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
      opacity: 0.5;
      mix-blend-mode: overlay;
    }

    .winfo {
      padding: 1rem 1.2rem 1.2rem;
      border-top: 2px solid #555;
      background: #1a1a1a;
    }

    .wtype {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 0.25rem;
    }

    .wtitle {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: #f0f0f0;
      line-height: 1.25;
    }

    .wmeta {
      font-size: 11.5px;
      color: #666;
      margin-top: 0.25rem;
      font-style: italic;
    }

    

    /* PROCESS */
    #process {
      padding: 7rem 0;
      background: var(--bg2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

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

    .process-flow::after {
      content: '';
      position: absolute;
      top: 2.1rem;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--rust-lt), var(--rust-lt), transparent);
    }

    .pstep {
      position: relative;
      padding: 0 1.5rem 2.5rem;
      text-align: center;
    }

    .pstep-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--rust);
      border: 3px solid var(--bg2);
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
      outline: 1px solid var(--rust-lt);
    }

    .pstep-num {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 200;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rust-lt);
      margin-bottom: 0.6rem;
    }

    .pstep-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--ink);
      margin-bottom: 0.8rem;
    }

    .pstep-body {
      font-size: 13px;
      color: var(--ink3);
      line-height: 1.85;
    }

    .tools-strip {
      margin-top: 4rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      border-top: 1px solid var(--line);
      padding-top: 2rem;
      flex-wrap: wrap;
    }

    .tools-label {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 10.5px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ink3);
      white-space: nowrap;
    }

    .tool-tag {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.15em;
      padding: 5px 14px;
      border: 1px solid var(--line);
      color: var(--ink2);
      background: var(--paper);
    }

    /* CONTACT */
    #contact {
      padding: 7rem 0;
      background: var(--bg3);
      border-top: 1px solid var(--line);
    }

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

    .contact-headline {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }

    .contact-headline em {
      font-style: italic;
      color: var(--rust);
    }

    .contact-sub {
      font-size: 0.97rem;
      color: var(--ink2);
      line-height: 1.85;
      margin-bottom: 3rem;
      font-style: italic;
    }

    .contact-email-link {
      display: inline-block;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.25rem;
      font-style: italic;
      color: var(--rust);
      text-decoration: none;
      border-bottom: 1px solid var(--rust-lt);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
      margin-bottom: 3rem;
    }

    .contact-email-link:hover {
      color: var(--ink);
      border-color: var(--ink);
    }

    .contact-social {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      list-style: none;
    }

    .contact-social a {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 10.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink3);
      text-decoration: none;
      border: 1px solid var(--line);
      padding: 7px 16px;
      transition: all 0.2s;
    }

    .contact-social a:hover {
      background: var(--rust);
      border-color: var(--rust);
      color: var(--paper);
    }

    .contact-info-card {
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 2.5rem;
    }

    .info-row {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--line);
    }

    .info-row:first-child {
      padding-top: 0;
    }

    .info-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .info-key {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ink3);
    }

    .info-val {
      font-size: 14px;
      color: var(--ink);
    }

    /* FOOTER */
    .site-footer {
      position: relative;
      z-index: 1;
      background: #111111;
      padding: 2rem 3rem;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-inner span {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 200;
      font-size: 10.5px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242, 235, 224, 0.28);
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* MOBILE */
    @media (max-width: 900px) {
      .wrap {
        padding: 0 1.5rem;
      }

      .nav-inner {
        padding: 0 1.5rem;
      }

      .nav-links {
        display: none;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--line);
        z-index: 199;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--line);
      }

      .nav-toggle {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
      }

      .hero-image-col {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2rem 2rem;
        overflow: visible;
      }

      .hero-text {
        padding: 3rem 0 1.5rem;
        text-align: center;
      }

      .hero-eyebrow {
        justify-content: center;
      }

      .hero-cta {
        display: inline-flex;
      }

      .hero-photo-wrap {
        overflow: visible;
      }

      #about,
      #works,
      #process,
      #contact {
        padding: 4.5rem 0;
      }

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

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

      .works-mosaic {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .wcard-a,
      .wcard-b,
      .wcard-c,
      .wcard-d,
      .wcard-e,
      .wcard-f,
      .wcard-g {
        grid-column: span 1;
      }

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

      .process-flow {
        grid-template-columns: 1fr 1fr;
      }

      .process-flow::after {
        display: none;
      }

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

      .site-footer {
        padding: 1.5rem;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
      }
    }

    @media (max-width: 520px) {
      .process-flow {
        grid-template-columns: 1fr;
      }

      .stat-strip {
        grid-template-columns: 1fr 1fr;
      }
    }