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

  :root {
    --black: #0f0f0f;
    --surface: #151515;
    --surface2: #1a1a1a;
    --border: rgba(255,255,255,0.07);
    --border-mid: rgba(255,255,255,0.13);
    --text-primary: #f2f2f2;
    --text-secondary: #a0a0a0;
    --text-muted: #464646;
    --accent: #E8541A;
    --font: 'Inter', 'Helvetica Neue', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
  }

  /* MAX WIDTH CONTAINER */
  .site-wrap {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(15,15,15,0.94);
    backdrop-filter: blur(16px);
    padding: 0 3rem;
  }

  .nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.4rem 0;
  }

  .logo {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }

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

  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-active {
    color: var(--text-primary) !important;
  }

  .nav-cta {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-mid);
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .nav-cta:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.25); }

  /* HERO */
  .hero {
    min-height: 65vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 3rem 4rem;
    border-bottom: 1px solid var(--border);
  }

  .hero-top {
    position: absolute; top: 5.5rem; left: 3rem; right: 3rem;
    display: flex; justify-content: space-between; align-items: flex-start;
  }

  .hero-status {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 0.6rem;
  }

  .status-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }

  .hero-location {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
  }

  .hero-heading {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 860px;
    margin-bottom: 3rem;
  }

  .hero-heading .dim { color: var(--text-muted); font-weight: 400; }

  .hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 440px;
    line-height: 1.25;
  }

  .hero-actions {
    display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem;
    flex-shrink: 0;
  }

  .hero-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 0.4rem;
  }

  .hero-link:hover { color: var(--text-primary); }
  .hero-link .arrow { transition: transform 0.2s; display: inline-block; }
  .hero-link:hover .arrow { transform: translate(2px, -2px); }

  /* SECTIONS */
  section {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 5rem;
  }

  .section-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 3.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .section-index {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }

  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }

  /* WORK */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }

  .work-card {
    background: var(--black);
    padding: 2.5rem;
    cursor: pointer;
    transition: background 0.25s;
    display: flex; flex-direction: column; gap: 1.25rem;
  }

  .work-card:hover { background: var(--surface); }

  .work-card.featured {
    grid-column: span 2;
    flex-direction: row; gap: 3rem;
    align-items: center;
  }

  .work-thumb {
    background: var(--surface2);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .work-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .work-card:hover .work-thumb img { transform: scale(1.03); }

  .work-thumb.large { width: 340px; height: 255px; }
  .work-thumb.small { width: 100%; aspect-ratio: 4/3; }

  .thumb-text {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .work-meta { flex: 1; }

  .work-tag {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }

  .work-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .work-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .work-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 0.3rem;
  }

  .work-card:hover .work-link { color: var(--text-primary); }

  .work-num {
    font-size: 11px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
    letter-spacing: 0.04em;
  }

  .work-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    flex-shrink: 0;
  }

  .work-img-placeholder img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
  }

  .work-card:hover .work-img-placeholder img { transform: scale(1.03); }

  .work-thumb-ph-text {
    font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted);
  }

  .logo-brand { color: var(--accent); }

  .contact-envelope {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .contact-envelope:hover { opacity: 0.75; }
  .contact-envelope svg { width: 22px; height: 22px; flex-shrink: 0; }

  .nav-email {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-email:hover { opacity: 0.75; }

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

  .about-text p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .about-availability {
    margin-top: 2rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 13px;
    font-weight: 400;
    color: var(--accent);
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-bottom: 2rem;
  }

  .stat-cell {
    background: var(--black);
    padding: 1.75rem;
  }

  .stat-num {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

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

  .disciplines { display: flex; flex-direction: column; }

  .discipline-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .discipline-name {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
  }

  .discipline-years {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .service-card {
    background: var(--black);
    padding: 2.5rem 2rem;
  }

  .service-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--surface2);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
  }

  .service-num {
    font-size: 12px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
  }

  .service-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.25;
  }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .contact-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  .contact-email {
    display: block;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-mid);
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s, border-color 0.2s;
  }

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

  .contact-links { display: flex; flex-direction: column; }

  .contact-link-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .contact-link-row:hover { color: var(--text-primary); }

  .contact-detail {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
  }

  .contact-detail p { margin-bottom: 0.5rem; }

  /* FOOTER */
  footer {
    padding: 2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-copy {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
  }

  .footer-coords {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
  }

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

  .hero-heading { animation: fadeUp 0.7s ease both 0.15s; }
  .hero-bottom { animation: fadeUp 0.7s ease both 0.3s; }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--text-secondary); }
  .mobile-menu-footer {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    font-size: 12px;
    color: var(--text-muted);
  }

  /* TABLET */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    section { padding: 4rem 1.5rem; }
    .hero { padding: 0 1.5rem 4rem; }
    .hero-top { left: 1.5rem; right: 1.5rem; top: 5rem; }

    .work-grid { grid-template-columns: 1fr 1fr; }
    .work-card.featured { grid-column: span 2; flex-direction: column; }
    .work-thumb.large { width: 100%; height: 240px; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  /* MOBILE */
  @media (max-width: 600px) {
    nav { padding: 1rem 1.25rem; }

    .hero { padding: 0 1.25rem 3rem; min-height: 100svh; }
    .hero-top { left: 1.25rem; right: 1.25rem; top: 4.5rem; flex-direction: column; gap: 0.4rem; }
    .hero-heading { font-size: clamp(2.2rem, 10vw, 3rem); margin-bottom: 2rem; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-actions { align-items: flex-start; flex-direction: row; gap: 1.5rem; }

    section { padding: 3rem 1.25rem; }

    .section-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

    .work-grid { grid-template-columns: 1fr; }
    .work-card { padding: 1.5rem; }
    .work-card.featured { grid-column: span 1; flex-direction: column; }
    .work-thumb.large { width: 100%; height: 200px; }
    .work-thumb.small { aspect-ratio: 4/3; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-text p { font-size: 15px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .stat-cell { padding: 1.25rem; }
    .stat-num { font-size: 1.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.75rem 1.25rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .contact-sub { font-size: 15px; }

    footer { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1.5rem 1.25rem; }
    .footer-coords { display: none; }
  }