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

    :root {
      --teal:       #17787D;
      --teal-dark:  #0d5257;
      --teal-deep:  #0a3e42;
      --teal-light: #1f9099;
      --bg:         #ededed;
      --text:       #323232;
      --muted:      #6b7280;
      --white:      #ffffff;
      --radius:     6px;
      --max-w:      1080px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lora', Georgia, serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.75;
    }

    /* ── NOTO SANS elements ── */
    h1, h2, h3, h4,
    .section-label, .hero-eyebrow, .stat-label,
    .nav-brand, .nav-links, .hero-cta, .form-submit,
    .skill-group h4, .work-card .result, .form-note,
    .form-group label, .hero-byline, .btn-linkedin {
      font-family: 'Noto Sans', system-ui, sans-serif;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(13, 62, 66, 0.97);
      backdrop-filter: blur(8px);
      padding: 0 2rem;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
    }

    .nav-logo {
      height: 28px;
      width: auto;
      display: block;
    }

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

    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: #6dd4d9; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--bg);
      display: flex;
      align-items: center;
      padding: 100px 2rem 80px;
      position: relative;
      overflow: hidden;
    }

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

    .hero-content { max-width: 580px; }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      border: 1px solid rgba(23,120,125,0.35);
      padding: 0.4em 1.2em;
      border-radius: 100px;
      margin-bottom: 1.6rem;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 700;
      color: var(--text);
      line-height: 1.05;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }

    .hero-byline {
      font-size: 1.8rem;
      line-height: 2.25rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.8rem;
    }

    .hero-sub {
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 2.4rem;
      line-height: 1.8;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.8rem;
      flex-wrap: wrap;
    }

    .stat { text-align: left; }

    .stat-number {
      font-size: 2rem;
      color: var(--teal);
      font-weight: 700;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }

    .hero-cta {
      display: inline-block;
      background: var(--teal);
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.85em 2.2em;
      border-radius: var(--radius);
      transition: background 0.2s, transform 0.15s;
    }

    .hero-cta:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
    }

    /* Hero image */
    .hero-image-wrap {
      flex-shrink: 0;
      width: 360px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .hero-image-wrap img {
      width: 100%;
      max-width: 360px;
      display: block;
    }

    /* ── SHARED SECTION ── */
    section { padding: 96px 2rem; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.6rem;
    }

    h2 {
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--teal-dark);
      line-height: 1.15;
      margin-bottom: 1.4rem;
    }

    .divider {
      width: 44px;
      height: 3px;
      background: var(--teal);
      margin-bottom: 2rem;
      border-radius: 2px;
    }

    /* ── WORK (teal bg, second section) ── */
    #work { background: var(--teal); }

    #work .section-label { color: rgba(255,255,255,0.6); }

    #work h2 { color: var(--white); }

    #work .divider { background: rgba(255,255,255,0.4); }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .work-card {
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 2rem 1.75rem;
      border-top: 3px solid rgba(255,255,255,0.35);
      transition: transform 0.2s, background 0.2s;
    }

    .work-card:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.16);
    }

    .work-card-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .work-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .work-card p {
      font-family: 'Lora', serif;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
    }

    .work-card .result {
      display: block;
      margin-top: 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ── ABOUT ── */
    #about { background: var(--white); }

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

    .about-body p {
      font-family: 'Lora', serif;
      color: #444;
      font-size: 1.02rem;
      margin-bottom: 1.2rem;
      line-height: 1.8;
    }

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

    .skill-groups {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .skill-group h4 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(23,120,125,0.2);
    }

    .skill-group ul { list-style: none; }

    .skill-group ul li {
      font-family: 'Noto Sans', sans-serif;
      font-size: 0.88rem;
      color: #555;
      padding: 0.22rem 0;
    }

    .skill-group ul li::before {
      content: '→ ';
      color: var(--teal);
      font-weight: 700;
    }

    /* ── CONTACT ── */
    #contact { background: var(--teal-deep); }

    #contact h2 { color: var(--white); }
    #contact .section-label { color: #6dd4d9; }
    #contact .divider { background: rgba(255,255,255,0.25); }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info p {
      font-family: 'Lora', serif;
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .contact-details {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-details li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Noto Sans', sans-serif;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
    }

    .contact-icon {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.08);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .btn-linkedin {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #0a66c2;
      color: var(--white);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.55em 1.1em;
      border-radius: var(--radius);
      transition: background 0.2s, transform 0.15s;
    }

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

    .btn-linkedin svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
      flex-shrink: 0;
    }

    /* Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      color: var(--white);
      font-family: 'Lora', serif;
      font-size: 0.95rem;
      padding: 0.75em 1em;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #6dd4d9;
      background: rgba(255,255,255,0.1);
    }

    .form-group select option {
      background: var(--teal-deep);
      color: var(--white);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 130px;
    }

    .form-submit {
      background: var(--teal);
      color: var(--white);
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.9em 2.4em;
      border-radius: var(--radius);
      transition: background 0.2s, transform 0.15s;
      align-self: flex-start;
    }

    .form-submit:hover {
      background: var(--teal-light);
      transform: translateY(-1px);
    }

    .form-note {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.3);
      margin-top: -0.4rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #061f21;
      padding: 1.8rem 2rem;
      text-align: center;
    }

    footer p {
      font-family: 'Noto Sans', sans-serif;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.28);
    }

    footer a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
    }

    footer a:hover { color: #6dd4d9; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero-container {
        grid-template-columns: 1fr;
      }
      .hero-image-wrap {
        display: flex;
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
      }
      .hero-image-wrap img {
        max-width: 260px;
      }
      .hero-stats { justify-content: flex-start; }
      .about-grid,
      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .work-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      nav { padding: 0 1.25rem; }
      .nav-links { display: none; }
      section { padding: 72px 1.25rem; }
      .work-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.12em; }
      .hero-byline { font-size: 1.1rem; line-height: 2.0; letter-spacing: 0.1em; }
      .skill-groups { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
    }