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

  :root {
    --black: #0a0a0a;
    --off-white: #edebe4;
    --green: #3a6644;
    --green-light: #4a7d55;
    --white: #f5f3ee;
    --gray: #888;
    --sidebar-w: 42px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'IBM Plex Mono', monospace;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ─── SIDEBAR ─── */
  .sidebar {
    position: fixed;
    left: 0; top: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 100;
    border-right: 1px solid #1a1a1a;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .nav-item {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    color: #555;
  }
  .nav-item:hover { color: #999; }
  .nav-item.active { color: var(--green); }
  .nav-item.active::after {
    content: '';
    position: absolute;
    right: -6px;
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
  }

  .nav-item svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  .sidebar-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
  }

  .sidebar-line {
    width: 1px;
    height: 60px;
    background: #222;
  }

  /* ─── MAIN ─── */
  main { margin-left: var(--sidebar-w); }

  section { min-height: 100vh; }
  #about, #store, #contact { min-height: auto; }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 100vh;
  }

  .hero-bg {
    position: absolute;
    inset: -40px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    filter: grayscale(30%) brightness(0.45);
    will-change: transform;
    transition: transform 0.1s linear;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
  }

  /* Simulated studio photo feel with CSS */
  .hero-photo-sim {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 75% 45%, rgba(255,255,255,0.03) 0%, transparent 50%),
      radial-gradient(circle at 55% 30%, rgba(100,150,100,0.04) 0%, transparent 40%);
    /* Grid overlay for DAW feel */
  }

  .hero-photo-sim::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.01) 79px, rgba(255,255,255,0.01) 80px);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8% 0 7%;
  }

  .hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
  }

  .hero-name-first {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.02em;
    display: block;
  }

  .hero-name-last {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    font-style: italic;
    color: var(--green);
    line-height: 0.95;
    letter-spacing: -0.02em;
    display: block;
  }

  .hero-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 40px;
  }

  .hero-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(58,102,68,0.5);
    background: transparent;
    padding: 12px 24px 12px 16px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .hero-play:hover {
    border-color: var(--green);
    background: rgba(58,102,68,0.08);
  }

  .play-icon {
    width: 22px; height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .play-icon::after {
    content: '';
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 2px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ─── SECTION LABEL ─── */
  .section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 48px;
    opacity: 0.8;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 8%;
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
  }

  .about-photo-wrap {
    position: relative;
    flex-shrink: 0;
  }

  .photo-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 10px;
  }

  .about-photo-container {
    position: relative;
    width: 340px;
    height: 420px;
    animation: floatY 5s ease-in-out infinite;
  }

  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.7s ease;
    display: block;
  }

  .about-photo-container:hover .about-photo {
    filter: grayscale(0%) contrast(1.0);
  }

  /* Green accent border */
  .about-photo-border {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(58,102,68,0.4);
    border-radius: 2px;
    pointer-events: none;
    transition: border-color 0.7s ease;
  }

  .about-photo-container:hover .about-photo-border {
    border-color: rgba(58,102,68,0.7);
  }

  .about-text { }

  .about-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
  }

  .about-heading em {
    font-style: italic;
    color: var(--green);
  }

  .about-body {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 36px;
  }

  .about-quote {
    border-left: 2px solid var(--black);
    padding-left: 20px;
  }

  .about-quote p {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 8px;
  }

  .about-quote cite {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
  }

  /* ─── PORTFOLIO ─── */
  #portfolio {
    background: var(--off-white);
    padding: 100px 8% 100px 7%;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .portfolio-header { margin-bottom: 52px; }

  .portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 12px;
  }
  .portfolio-title em { font-style: italic; color: var(--green); }

  .portfolio-desc {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    color: #666;
    max-width: 360px;
    line-height: 1.6;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* ── Card ── */
  .project-card {
    cursor: pointer;
  }

  .project-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 14px;
    background: #111;
  }

  .project-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.4s ease;
  }
  .project-card:hover .project-thumb img {
    transform: scale(1.05);
    filter: brightness(0.6);
  }

  .project-num {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    z-index: 3;
    letter-spacing: 0.05em;
  }

  /* Play button */
  .project-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .project-card:hover .project-play-btn { opacity: 1; }

  .play-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: rgba(10,10,10,0.55);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
  }
  .play-circle::after {
    content: '';
    border-left: 14px solid var(--green);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
  }

  /* EQ bars */
  .eq-bars {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 48px;
    display: flex;
    align-items: flex-end;
    padding: 0 6px 4px;
    gap: 3px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .project-card:hover .eq-bars { opacity: 1; }

  .eq-bar {
    flex: 1;
    background: rgba(58,102,68,0.65);
    border-radius: 1px 1px 0 0;
    transform-origin: bottom;
  }

  /* Card meta */
  .project-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
  }

  .project-artist {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .project-footer {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .project-role-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--green);
    border: 1px solid rgba(58,102,68,0.3);
    padding: 3px 9px;
    text-transform: uppercase;
  }

  .project-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gray);
  }

  .portfolio-track-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-top: 32px;
    text-transform: uppercase;
  }

  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open {
    display: flex;
  }

  .modal-box {
    width: 100%;
    max-width: 900px;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: -36px; right: 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--green); }
  .modal-close-x {
    width: 14px; height: 14px;
    position: relative;
  }
  .modal-close-x::before, .modal-close-x::after {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 1px;
    background: currentColor;
  }
  .modal-close-x::before { transform: rotate(45deg); }
  .modal-close-x::after  { transform: rotate(-45deg); }

  .modal-topbar {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .modal-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
  }
  .modal-topbar-left svg {
    width: 12px; height: 12px;
    stroke: var(--green); fill: none; stroke-width: 1.5;
  }
  .modal-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--green);
  }
  .modal-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: livePulse 1.5s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .modal-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
  }
  .modal-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }

  .modal-fallback {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #111;
  }
  .modal-fallback p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }
  .modal-fallback a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--green);
    text-decoration: none;
    border: 1px solid var(--green);
    padding: 10px 20px;
    transition: background 0.2s;
  }
  .modal-fallback a:hover { background: rgba(58,102,68,0.15); }


  .modal-bottombar {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 2px 2px;
    padding: 14px 18px;
  }
  .modal-track-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
  }
  .modal-track-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
  }

  /* ─── STORE ─── */
  #store {
    background: var(--off-white);
    display: flex;
    justify-content: center;
    padding: 60px 8%;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .store-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
<<<<<<< Updated upstream
=======
<<<<<<< Updated upstream
=======
>>>>>>> Stashed changes
    width: 100%;
  }

  .store-product-col {
    display: flex;
    flex-direction: column;
  }

  .store-product-col .section-label {
    margin-bottom: 20px;
  }

  .store-product-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 340px;
<<<<<<< Updated upstream
=======
    animation: floatY 5s ease-in-out infinite;
>>>>>>> Stashed changes
  }

  .store-photo-border {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(58,102,68,0.4);
    border-radius: 2px;
    pointer-events: none;
<<<<<<< Updated upstream
=======
>>>>>>> Stashed changes
>>>>>>> Stashed changes
  }

  .store-product-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #1a1208 0%, #2a1e0a 40%, #1a1208 100%);
    position: relative;
    overflow: hidden;
  }

  .store-product-img::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 60%, rgba(180,140,60,0.15) 0%, transparent 50%),
      radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 40%);
  }

  .product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .store-img-label {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--green);
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    padding: 3px 8px;
  }

  /* Drum visual */
  .drum-vis {
    position: absolute;
    bottom: 20%; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 60px;
    border: 2px solid rgba(180,140,60,0.4);
    border-radius: 50%;
    background: rgba(30,20,5,0.5);
  }
  .drum-vis::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 20px;
    border: 1px solid rgba(180,140,60,0.3);
    border-radius: 50%;
  }

  .store-info { }

  .store-breadcrumb {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .store-breadcrumb::before {
    content: '▣';
    color: var(--green);
    font-size: 10px;
  }

  .store-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    margin-bottom: 20px;
  }
  .store-title em {
    font-style: italic;
    color: var(--green);
  }

  .store-desc {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.65;
    color: #3a3a3a;
    margin-bottom: 24px;
  }

  .store-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .store-features li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .store-features li::before {
    content: '→';
    color: var(--green);
    flex-shrink: 0;
  }

  .btn-get {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 16px;
  }
  .btn-get:hover { background: var(--green-light); }

  .store-platform {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .store-platform span { color: #555; }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--black);
    display: flex;
    justify-content: center;
    padding: 60px 8%;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    width: 100%;
    gap: 0;
  }

  .contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .contact-heading em {
    font-style: italic;
    color: var(--green);
    display: block;
  }

  .contact-desc {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 44px;
    max-width: 480px;
  }

  .contact-email {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-bottom: 36px;
    transition: color 0.2s;
  }
  .contact-email:hover {
    color: var(--green);
  }

  .social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
  }
  .social-link:hover {
    border-color: var(--green);
    color: var(--green);
  }
  .social-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  .contact-right { }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
  }

  .form-input, .form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 10px 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--white);
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255,255,255,0.2);
  }
  .form-input:focus, .form-textarea:focus {
    border-bottom-color: var(--green);
  }

  .form-textarea {
    resize: none;
    height: 100px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .project-types {
    margin-bottom: 20px;
  }

  .type-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .type-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
  }
  .type-btn:hover, .type-btn.active {
    border-color: var(--green);
    color: var(--green);
    background: rgba(58,102,68,0.1);
  }

  .btn-send {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: var(--green);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 48px;
    border: 1px solid rgba(58,102,68,0.6);
    cursor: pointer;
    transition: all 0.25s;
    margin-bottom: 48px;
  }
  .btn-send:hover {
    border-color: var(--green);
    background: rgba(58,102,68,0.1);
    letter-spacing: 0.28em;
  }
  .btn-send svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    .about-inner, .store-inner, .contact-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .portfolio-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-name-first, .hero-name-last { font-size: clamp(40px, 10vw, 80px); }
  }