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

    :root {
      --ink: #1a1814;
      --paper: #f5f2ec;
      --stone: #8c8070;
      --gold: #b89a60;
      --gold-light: #d4b87a;
      --line: rgba(28,24,20,0.12);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Jost", sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    body.menu-open{
      overflow:hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 4rem;
      background: rgba(245,242,236,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      transition: padding .3s;
    }
    nav.scrolled { padding: 1rem 4rem; }

    .nav-logo {
      font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
      letter-spacing: .04em; color: var(--ink); text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
      text-decoration: none; color: var(--stone); transition: color .25s;
    }
    .nav-links a:hover { color: var(--ink); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 1px;
      background: var(--ink); transition: .3s;
    }

    /* ── HERO ── */
    #hero {
      display: grid;
      grid-template-columns: 2.1fr 1fr;
      position: relative; overflow: hidden;
      padding: 0;
      min-height: 80vh;
    }

    /* LEFT — text */
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 10rem 4rem 6rem 5rem;
      position: relative; z-index: 2;
    }

    .hero-eyebrow {
      font-family: var(--sans); font-size: .68rem;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2rem;
      opacity: 0; animation: fadeUp .8s .3s forwards;
    }

    .hero-name {
      font-family: var(--serif);
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 300; line-height: 1.05;
      letter-spacing: -.01em; margin-bottom: .5rem;
      opacity: 0; animation: fadeUp .8s .5s forwards;
    }
    .hero-name em { font-style: italic; color: var(--gold); display: block; }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      font-weight: 300; color: var(--stone); margin-bottom: 3rem;
      opacity: 0; animation: fadeUp .8s .65s forwards;
    }

    .hero-divider {
      width: 48px; height: 1px; background: var(--gold);
      margin-bottom: 2rem;
      opacity: 0; animation: fadeUp .8s .75s forwards;
    }

    .hero-taglines {
      display: flex; flex-direction: column; gap: .6rem;
      opacity: 0; animation: fadeUp .8s .85s forwards;
    }
    .hero-taglines p { font-size: .85rem; letter-spacing: .05em; color: var(--stone); }
    .hero-taglines p::before { content: "—"; margin-right: .6rem; color: var(--gold); }

    .hero-cta {
      margin-top: 3.5rem;
      display: inline-flex; align-items: center; gap: .8rem;
      font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
      text-decoration: none; color: var(--ink);
      border-bottom: 1px solid var(--gold); padding-bottom: .3rem;
      opacity: 0; animation: fadeUp .8s 1s forwards;
      transition: color .25s, gap .25s; width: fit-content;
    }
    .hero-cta:hover { color: var(--gold); gap: 1.2rem; }
    .hero-cta::after { content: "→"; }

    /* RIGHT — photo */
    .hero-right {
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: flex-end;
      min-height: 80vh;
    }
    .hero-right img {
      object-fit: cover;
      object-position: top center;
      display: block;
      width: 100%;
      height: auto;
      max-height: 95vh;
      opacity: 0; animation:
      fadeIn 3.1s .4s forwards;
    }
    /* blend left edge into paper */
    .hero-right::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--paper) 0%, transparent 18%);
      pointer-events: none;
    }

    /* ── SECTIONS COMMON ── */
    section { padding: 7rem 0; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }

    .section-label {
      font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .section-label::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

    .section-heading {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
    }

    /* ── WHAT I DO ── */
    #what-i-do { background: var(--ink); color: var(--paper); }
    #what-i-do .section-label { color: var(--gold); }
    #what-i-do .section-heading { color: var(--paper); }

    .do-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; margin-top: 4rem;
    }
    .do-intro {
      font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
      color: rgba(245,242,236,.7); line-height: 1.8;
    }
    .do-items { display: flex; flex-direction: column; gap: 0; }
    .do-item {
      display: flex; align-items: center; gap: 1.5rem;
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(245,242,236,.08);
      cursor: default; transition: padding-left .3s;
    }
    .do-item:hover { padding-left: .5rem; }
    .do-item:first-child { border-top: 1px solid rgba(245,242,236,.08); }
    .do-item:hover .do-arrow { opacity: 1; }
    .do-num { font-family: var(--serif); font-size: .8rem; color: var(--gold); min-width: 2rem; opacity: .7; }
    .do-text { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: var(--paper); }
    .do-arrow { margin-left: auto; color: var(--gold); opacity: 0; transition: opacity .3s; }

    /* ── WHAT I DON'T DO ── */
    #what-i-dont-do { background: var(--paper); border-top: 1px solid var(--line); }

    .dont-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; margin-top: 4rem; align-items: start;
    }
    .dont-note {
      font-family: var(--serif); font-size: 1.1rem; font-style: italic;
      color: var(--stone); line-height: 1.9;
      padding: 2rem; border-left: 2px solid var(--gold);
      background: rgba(184,154,96,.04);
    }
    .dont-list { display: flex; flex-direction: column; gap: .5rem; }
    .dont-tag {
      display: flex; align-items: center; gap: 1rem;
      padding: 1.1rem 1.4rem; border: 1px solid var(--line);
      font-size: .82rem; letter-spacing: .06em; color: var(--stone);
      position: relative; overflow: hidden; transition: border-color .3s;
    }
    .dont-tag::before {
      content: ""; position: absolute; left: 0; top: 0; bottom: 0;
      width: 0; background: rgba(184,154,96,.06); transition: width .3s;
    }
    .dont-tag:hover::before { width: 100%; }
    .dont-tag:hover { border-color: var(--gold); }
    .dont-cross { width: 16px; height: 16px; position: relative; flex-shrink: 0; }
    .dont-cross::before, .dont-cross::after {
      content: ""; position: absolute; left: 50%; top: 50%;
      width: 10px; height: 1px; background: var(--stone);
    }
    .dont-cross::before { transform: translate(-50%,-50%) rotate(45deg); }
    .dont-cross::after { transform: translate(-50%,-50%) rotate(-45deg); }

    /* ── WORK STYLE ── */
    #work-style { background: #1e1c18; color: var(--paper); overflow: hidden; position: relative; }

    .style-grid {
      display: grid; grid-template-columns: repeat(2,1fr);
      gap: 1px; background: rgba(245,242,236,.08);
      margin-top: 4rem; border: 1px solid rgba(245,242,236,.08);
    }
    .style-card {
      background: #1e1c18; padding: 2.5rem;
      position: relative; overflow: hidden; transition: background .3s;
    }
    .style-card:hover { background: #242018; }
    .style-icon { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; opacity: .8; }
    .style-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--paper); margin-bottom: .6rem; }
    .style-desc { font-size: .8rem; letter-spacing: .03em; color: rgba(245,242,236,.5); line-height: 1.8; }

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

    .contact-layout {
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 6rem; margin-top: 4rem; align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: 2rem; }
    .contact-item { display: flex; flex-direction: column; gap: .3rem; }
    .contact-label-sm { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
    .contact-value { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); text-decoration: none; transition: color .25s; }
    a.contact-value:hover { color: var(--gold); }
    .contact-response {
      margin-top: 3rem; padding: 1.5rem;
      border: 1px solid var(--line); border-left: 3px solid var(--gold);
      font-size: .82rem; letter-spacing: .04em; color: var(--stone); line-height: 1.8;
    }

    .contact-map-placeholder {
      aspect-ratio: 1; background: var(--ink);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem; color: var(--paper);
      position: relative; overflow: hidden;
    }
    .contact-map-placeholder::before {
      content: ""; position: absolute; inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(184,154,96,.04) 20px, rgba(184,154,96,.04) 21px);
    }
    .map-pin {
      width: 40px; height: 40px;
      border: 1.5px solid var(--gold);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      position: relative; z-index: 1;
    }
    .map-pin::after {
      content: ""; position: absolute; inset: 8px;
      background: var(--gold); border-radius: 50%;
    }
    .map-city { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--paper); position: relative; z-index: 1; letter-spacing: .08em; }
    .map-sub { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); position: relative; z-index: 1; }

    /* ── FOOTER ── */
    footer {
      padding: 2rem 4rem;
      border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center;
      font-size: .7rem; letter-spacing: .08em; color: var(--stone);
    }

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

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE DESIGN ── */

    /* LARGE SCREENS */
    @media (min-width: 1400px) {
      .hero-left { max-width: 700px; }
    }

    /* TABLET */
    @media (max-width: 1024px) {
      nav { padding: 1.2rem 2rem; }
      nav.scrolled { padding: 1rem 2rem; }

      #hero {
        grid-template-columns: 1.8fr 1fr;
        min-height: 90vh;
      }
      .hero-left { padding: 8rem 3rem 5rem 4rem; }
      .hero-right { min-height: 90vh; }
    }

    /* SMALL TABLET */
    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1.5fr 1fr;
        min-height: 80vh;
      }
      .hero-left { padding: 7rem 2.5rem 4rem 3rem; }
      .hero-right { min-height: 80vh; }
    }

    /* MOBILE LANDSCAPE */
    @media (max-width: 768px) {
      nav { padding: 1.2rem 1.5rem; }
      nav.scrolled { padding: 1rem 1.5rem; }
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 2rem;
        transition: right 0.35s ease;
        border-left: 1px solid var(--line);
      }
      .nav-links a {
        font-size: .9rem;
      }

      /* OPEN STATE */
      .nav-links.open {
        right: 0;
      }
      .hamburger {
        display: flex;
        z-index: 200;
      }

      #hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 2rem;
      }
      .hero-left {
        padding: 6rem 1.5rem 2rem;
        text-align: center;
        order: 2;
      }
      .hero-right {
        order: 1;
        min-height: 60vh;
        height: auto;
      }
      .hero-right img {
        max-height: 60vh;
        object-position: top center;
      }
      .hero-name {
        font-size: clamp(2.5rem, 8vw, 4rem);
      }
      .hero-title {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
      }
      .hero-taglines {
        align-items: center;
      }

      .container { padding: 0 1.5rem; }
      .do-grid, .dont-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .style-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: .8rem; text-align: center; }
    }

    /* SMALL MOBILE */
    @media (max-width: 480px) {
      .hero-left { padding: 4rem 1rem 1.5rem; }
      .hero-right { min-height: 50vh; height: auto; }
      .hero-right img {
        max-height: 50vh;
        object-position: top center;
      }
      .hero-name {
        font-size: clamp(2rem, 10vw, 3.5rem);
      }
      .hero-eyebrow { margin-bottom: 1.5rem; }
      .hero-title { margin-bottom: 2rem; }
      .hero-divider { margin-bottom: 1.5rem; }
      .hero-taglines { gap: .4rem; }
      .hero-taglines p { font-size: .8rem; }

      nav { padding: 1rem 1rem; }
      nav.scrolled { padding: 0.8rem 1rem; }
      .container { padding: 0 1rem; }
    }
  