/* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #1A1A2E;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }

    /* ── TOKENS ── */
    :root {
      --gold:        #C9923F;
      --gold-light:  #E8B96A;
      --gold-pale:   #F5ECD9;
      --dark:        #1A1A2E;
      --dark-mid:    #2D2D45;
      --sand:        #F5F0E8;
      --white:       #FFFFFF;
      --muted:       #6B6880;
      --hint:        #A09CB0;
      --border:      #E2DDD6;
      --border-dark: rgba(255,255,255,0.08);
      --radius:      4px;
      --radius-lg:   8px;
    }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 68px;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo-mark {
      width: 36px;
      height: 36px;
      background: var(--dark);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .nav-logo-mark::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 0; height: 0;
      border-style: solid;
      border-width: 0 36px 20px 0;
      border-color: transparent var(--gold) transparent transparent;
    }
    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 0.02em;
      line-height: 1.2;
    }
    .nav-logo-sub {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      font-weight: 400;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--dark); }
    .nav-cta {
      background: var(--dark);
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 10px 22px;
      border-radius: var(--radius);
      border: none;
      transition: background 0.2s, opacity 0.2s;
    }
    .nav-cta:hover { background: var(--dark-mid); }
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(26,26,46,0.93) 0%,
        rgba(26,26,46,0.82) 45%,
        rgba(26,26,46,0.45) 100%
      );
    }
    /* signature diagonal slashes */
    .hero-slash {
      position: absolute;
      top: 0; bottom: 0;
      width: 5px;
      background: var(--gold);
      transform: skewX(-8deg);
      opacity: 0.85;
    }
    .hero-slash-1 { right: 36%; }
    .hero-slash-2 { right: calc(36% + 18px); width: 2px; opacity: 0.4; background: var(--gold-light); }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 5%;
      max-width: 720px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .hero-eyebrow-line {
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--gold);
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      font-weight: 300;
      max-width: 520px;
      margin-bottom: 36px;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .btn-gold {
      background: var(--gold);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: none;
      transition: background 0.2s;
    }
    .btn-gold:hover { background: #b8832e; }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.28);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .hero-pill {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      border: 1px solid rgba(201,146,63,0.38);
      color: rgba(201,146,63,0.9);
    }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--gold);
    }
    .stat-item {
      padding: 1.4rem 1.5rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.22);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
    }

    /* ── SECTION UTILITIES ── */
    .section-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 38px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 520px;
    }

    /* ── SERVICES ── */
    .services {
      padding: 96px 5%;
      background: var(--white);
    }
    .services-intro { margin-bottom: 52px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .svc-card {
      background: var(--white);
      padding: 2.25rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background 0.22s;
    }
    .svc-card:hover { background: var(--sand); }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.28s ease;
    }
    .svc-card:hover::before { transform: scaleY(1); }
    .svc-icon {
      width: 48px; height: 48px;
      border-radius: var(--radius);
      background: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 22px;
    }
    .svc-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .svc-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .svc-list {
      list-style: none;
      margin-bottom: 22px;
      border-top: 1px solid var(--border);
    }
    .svc-list li {
      font-size: 13px;
      color: var(--muted);
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .svc-list li::before {
      content: '';
      flex-shrink: 0;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
    }
    .svc-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .svc-link:hover { gap: 10px; }

    /* ── ABOUT ── */
    .about {
      padding: 96px 5%;
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-image-wrap { position: relative; }
    .about-img {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--dark-mid);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.18);
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      flex-direction: column;
      gap: 8px;
      background-image: url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?w=800&q=80');
      background-size: cover;
      background-position: center top;
    }
    .about-accent-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 150px; height: 150px;
      background: var(--gold);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
    }
    .about-accent-num {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .about-accent-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-top: 6px;
    }
    .about-blockquote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--dark);
      line-height: 1.55;
      padding-left: 22px;
      border-left: 3px solid var(--gold);
      margin-bottom: 24px;
    }
    .about-body {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 28px;
    }
    .founder-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      margin-bottom: 28px;
    }
    .founder-initials {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--gold);
      flex-shrink: 0;
    }
    .founder-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 2px;
    }
    .founder-role {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .values-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .value-card {
      text-align: center;
      padding: 18px 10px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .value-card i {
      font-size: 22px;
      color: var(--gold);
      display: block;
      margin-bottom: 8px;
    }
    .value-name {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--dark);
    }

    /* ── PORTFOLIO ── */
    .portfolio {
      padding: 96px 5%;
      background: var(--white);
    }
    .portfolio-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .portfolio-all-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .portfolio-all-link:hover { gap: 10px; }
    .portfolio-grid {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 14px;
    }
    .proj-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--dark-mid);
    }
    .proj-card:nth-child(1) { grid-row: 1 / 3; }
    .proj-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 55%, transparent 100%);
      transition: background 0.3s;
    }
    .proj-card:hover .proj-inner {
      background: linear-gradient(to top, rgba(26,26,46,0.98) 0%, rgba(26,26,46,0.5) 60%, transparent 100%);
    }
    .proj-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }
    .proj-card:hover .proj-bg { transform: scale(1.04); }
    .proj-cat {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 5px;
    }
    .proj-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 6px;
    }
    .proj-card:nth-child(1) .proj-name { font-size: 24px; }
    .proj-loc {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      padding: 96px 5%;
      background: var(--dark);
    }
    .testimonials .section-h2 { color: var(--white); margin-bottom: 52px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .testi-card {
      background: var(--dark-mid);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
    }
    .testi-quotemark {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      line-height: 0.9;
      color: var(--gold);
      opacity: 0.65;
      margin-bottom: 14px;
      display: block;
    }
    .testi-text {
      font-size: 14px;
      font-style: italic;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-bottom: 22px;
    }
    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }
    .testi-star { font-size: 13px; color: var(--gold); }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .testi-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .testi-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 2px;
    }
    .testi-role { font-size: 11px; color: rgba(255,255,255,0.38); }

    /* ── CONTACT ── */
    .contact {
      padding: 96px 5%;
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 72px;
      align-items: start;
    }
    .contact-sub {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .contact-icon {
      width: 38px; height: 38px;
      background: var(--gold-pale);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 17px;
      flex-shrink: 0;
    }
    .contact-item-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--hint);
      margin-bottom: 3px;
    }
    .contact-item-val {
      font-size: 13px;
      color: var(--dark);
      font-weight: 500;
    }
    .whatsapp-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      background: #25D366;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 15px 24px;
      border-radius: var(--radius);
      border: none;
      transition: background 0.2s;
    }
    .whatsapp-btn:hover { background: #1fba58; }
    .whatsapp-btn i { font-size: 20px; }

    /* FORM */
    .contact-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 2.25rem 2rem;
    }
    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .form-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }
    .form-field label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      padding: 11px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--dark);
      background: var(--sand);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
    }
    .form-field textarea { min-height: 100px; resize: vertical; }
    .form-submit {
      width: 100%;
      background: var(--dark);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px;
      border-radius: var(--radius);
      border: none;
      margin-top: 6px;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--dark-mid); }

    /* ── FOOTER ── */
    .footer {
      background: var(--dark);
      padding: 56px 5% 28px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.38);
      line-height: 1.75;
      margin-top: 14px;
      max-width: 260px;
    }
    .footer-col-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.42);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.28);
    }
    .footer-tagline {
      font-size: 12px;
      font-style: italic;
      color: rgba(255,255,255,0.28);
    }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--dark);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--white);
      text-decoration: none;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 22px; right: 5%;
      background: none;
      border: none;
      color: var(--white);
      font-size: 28px;
      cursor: pointer;
    }
    .mobile-nav-cta {
      margin-top: 8px;
      background: var(--gold);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .about { grid-template-columns: 1fr; gap: 48px; }
      .about-accent-box { right: 0; }
      .contact { grid-template-columns: 1fr; gap: 48px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: block; }
      .hero { min-height: 100svh; }
      .hero-slash-1, .hero-slash-2 { display: none; }
      .hero-h1 { font-size: clamp(34px, 9vw, 52px); }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .services-grid { grid-template-columns: 1fr; }
      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
      }
      .proj-card:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
      .testi-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .values-row { grid-template-columns: repeat(3,1fr); }
    }

    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .btn-gold, .btn-ghost { text-align: center; }
      .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
      }
      .proj-card:nth-child(1) { grid-column: auto; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .proj-bg { transition: none; }
    }