:root {
      --bg:       #f8f6f1;
      --surface:  #ffffff;
      --border:   rgba(0,0,0,0.08);
      --red:      #0d9488;
      --red-dim:  rgba(13,148,136,0.1);
      --text:     #1a1a1a;
      --muted:    #888;
      --mid:      #555;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      min-height: 100vh;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 100;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 48px;
      background: rgba(248,246,241,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      letter-spacing: 1px;
    }

    .nav-logo span { color: var(--red); }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-split {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 80px;
      width: 100%;
      max-width: 900px;
    }

    .hero-photo {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--red);
      box-shadow: 0 0 0 8px rgba(13,148,136,0.1);
      flex-shrink: 0;
      background: #1a1a1a;
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transform: scale(1.1);
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -200px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 65%);
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: 0; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-tag::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--red);
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 10vw, 130px);
      line-height: 0.92;
      letter-spacing: 2px;
      color: var(--text);
      margin-bottom: 28px;
    }

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

    .hero-sub {
      font-size: 20px;
      font-weight: 400;
      color: var(--mid);
      max-width: 520px;
      margin-bottom: 44px;
      line-height: 1.6;
    }

    .hero-sub strong {
      color: var(--text);
      font-weight: 700;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn:hover {
      background: #0f766e;
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(0,0,0,0.15);
      color: var(--mid);
      margin-left: 14px;
    }

    .btn-ghost:hover {
      border-color: rgba(0,0,0,0.3);
      color: var(--text);
      background: transparent;
      transform: translateY(-1px);
    }

    /* ── SECTION BASE ── */
    section {
      padding: 100px 48px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 1px;
      background: var(--red);
    }

    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 54px);
      letter-spacing: 2px;
      color: var(--text);
      margin-bottom: 32px;
      line-height: 1;
    }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, var(--red) 0%, rgba(13,148,136,0.2) 40%, transparent 100%);
      margin-bottom: 56px;
    }

    /* ── ABOUT ── */
    #about .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      max-width: 640px;
      gap: 0;
    }

    #about p {
      color: var(--mid);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

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

    #about p strong { color: var(--text); font-weight: 700; }

    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--red);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border-radius: 10px;
      padding: 20px 24px;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--red);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }

    /* ── SERVICES ── */
    #services {
      background: #eef0eb;
      max-width: 100%;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    #services .inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 28px 24px;
      transition: border-color 0.2s, transform 0.15s;
    }

    .service-card:hover {
      border-color: rgba(13,148,136,0.4);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .service-icon {
      width: 44px;
      height: 44px;
      background: var(--red-dim);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .service-icon svg {
      width: 22px; height: 22px;
      stroke: var(--red);
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .service-desc {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }

    .tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--muted);
      background: rgba(0,0,0,0.04);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 3px 8px;
    }

    /* ── LINKS / FIND ME ── */
    #links .links-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .link-card {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 22px;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.15s;
      flex: 1;
      min-width: 200px;
    }

    .link-card:hover {
      border-color: rgba(13,148,136,0.4);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .link-card svg {
      width: 22px; height: 22px;
      stroke: var(--red);
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .link-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      display: block;
      margin-bottom: 2px;
    }

    .link-sub {
      font-size: 12px;
      color: var(--muted);
    }

    /* ── CONTACT ── */

    /* ── CONTACT FORM ── */
    #contact {
      text-align: left;
    }

    #contact h2 { margin-bottom: 16px; text-align: center; }
    #contact .section-label { justify-content: center; }

    .contact-intro {
      color: var(--muted);
      font-size: 17px;
      max-width: 480px;
      margin: 0 auto 40px;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      text-align: left;
    }

    .hidden { display: none; }

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

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 16px;
    }

    .form-row .form-group {
      margin-bottom: 0;
    }

    .form-group label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 8px;
      font-family: 'JetBrains Mono', monospace;
    }

    .form-group input,
    .form-group textarea {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: var(--text);
      transition: border-color 0.2s;
      outline: none;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--red);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--muted);
    }

    .contact-form .btn {
      margin-top: 8px;
      width: auto;
      padding: 14px 48px;
      justify-content: center;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-alt {
      margin-top: 24px;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
    }

    .contact-alt a {
      color: var(--red);
      text-decoration: none;
      font-weight: 700;
    }

    .contact-alt a:hover {
      text-decoration: underline;
    }


    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--surface);
      padding: 48px 48px 28px;
    }

    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 48px;
      align-items: start;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .foot-logo {
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
    }

    .foot-logo span { color: var(--red); }

    .footer-tagline {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-social {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, transform 0.15s;
    }

    .footer-social a:hover {
      border-color: var(--red);
      transform: translateY(-2px);
    }

    .footer-social svg {
      width: 16px; height: 16px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-social a:hover svg { stroke: var(--red); }

    .footer-bottom {
      max-width: 1000px;
      margin: 24px auto 0;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 12px;
      color: var(--muted);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag   { animation: fadeUp 0.6s ease both; }
    h1          { animation: fadeUp 0.6s 0.1s ease both; }
    .hero-sub   { animation: fadeUp 0.6s 0.2s ease both; }
    .hero-ctas  { animation: fadeUp 0.6s 0.3s ease both; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      #hero { padding: 100px 24px 60px; }
      .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .hero-photo {
        width: 140px;
        height: 140px;
        order: -1;
      }
      section { padding: 72px 24px; }
      #about .about-grid { grid-template-columns: 1fr; gap: 40px; }
      footer { flex-direction: column; gap: 8px; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-social { flex-direction: row; }
      footer { padding: 40px 24px 24px; }
    }