*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --cream: #f4f0e8;
      --cream-dark: #e8e2d6;
      --warm-white: #faf8f4;
      --warm-black: #1a1714;
      --tobacco: #3d3428;
      --oxblood: #6b2d3e;
      --oxblood-light: #8a3a4f;
      --brass: #a08c5a;
      --brass-muted: #b8a677;
      --slate: #5c6b73;
      --clay: #a0785a;
      --text: #2e2a24;
      --text-muted: #6e665c;
      --border: #d4cfc4;
      --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
      --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    body.no-scroll {
      overflow: hidden;
    }

    /* Nav */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.25rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s;
    }

    nav.scrolled {
      background: rgba(244, 240, 232, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--warm-black);
      text-decoration: none;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--oxblood);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--warm-black);
      margin: 5px 0;
      transition: 0.3s;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 6rem 2rem 7rem;
      position: relative;
      background: var(--warm-white);
    }

    .hero-content {
      max-width: 720px;
    }

    .hero-stamp {
      width: 88px;
      height: 88px;
      margin: 0 auto 2.5rem;
      color: var(--warm-black);
    }

    .hero-stamp svg {
      width: 100%;
      height: 100%;
    }

    .hero-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.75rem;
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 1.75rem;
      color: var(--warm-black);
      letter-spacing: -0.01em;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--oxblood);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      font-weight: 300;
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.25rem;
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--warm-black);
      color: var(--warm-black);
      transition: all 0.3s;
    }

    .btn:hover {
      background: var(--warm-black);
      color: var(--cream);
    }

    .btn-fill {
      background: var(--oxblood);
      border-color: var(--oxblood);
      color: var(--cream);
    }

    .btn-fill:hover {
      background: var(--oxblood-light);
      border-color: var(--oxblood-light);
      color: var(--cream);
    }

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .scroll-hint .tick {
      width: 1px;
      height: 32px;
      background: var(--border);
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 3rem;
      background: var(--cream);
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .divider-dot {
      width: 6px;
      height: 6px;
      background: var(--brass);
      border-radius: 50%;
      margin: 0 1.5rem;
    }

    /* Section defaults */
    section {
      padding: 5.5rem 3rem;
    }

    .section-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      color: var(--warm-black);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .section-title em {
      font-style: italic;
      color: var(--oxblood);
    }

    /* About */
    #about {
      background: var(--cream);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .about-text p {
      color: var(--text-muted);
      font-size: 1.02rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
      font-weight: 300;
    }

    .about-aside {
      border-left: 1px solid var(--border);
      padding-left: 2.5rem;
    }

    .about-aside blockquote {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-style: italic;
      color: var(--oxblood);
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .about-aside .attr {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    /* What We Do */
    #work {
      background: var(--warm-black);
      color: var(--cream);
    }

    #work .section-label {
      color: var(--brass-muted);
    }

    #work .section-title {
      color: var(--cream);
    }

    #work .section-title em {
      color: var(--brass-muted);
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin-top: 3rem;
    }

    .work-card {
      background: var(--warm-black);
      padding: 2.5rem;
      transition: background 0.3s;
    }

    .work-card:hover {
      background: #231f1a;
    }

    .work-card h3 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
      color: var(--cream);
    }

    .work-card p {
      font-size: 0.9rem;
      color: rgba(244, 240, 232, 0.55);
      line-height: 1.7;
      font-weight: 300;
    }

    .work-card .card-num {
      font-family: var(--serif);
      font-size: 2rem;
      color: var(--brass);
      opacity: 0.3;
      margin-bottom: 1rem;
      line-height: 1;
    }

    /* Approach */
    #approach {
      background: var(--warm-white);
    }

    .approach-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
      align-items: start;
    }

    .approach-list {
      list-style: none;
      counter-reset: approach;
    }

    .approach-list li {
      counter-increment: approach;
      padding: 1.75rem 0;
      border-bottom: 1px solid var(--border);
    }

    .approach-list li:last-child {
      border-bottom: none;
    }

    .approach-list li::before {
      content: counter(approach, decimal-leading-zero);
      font-family: var(--serif);
      font-size: 0.85rem;
      color: var(--brass);
      display: block;
      margin-bottom: 0.5rem;
    }

    .approach-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      font-weight: 300;
      margin-top: 0.75rem;
    }

    .approach-list h3 {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      margin-bottom: 0.35rem;
    }

    .approach-list p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Contact */
    #contact {
      background: var(--cream);
      text-align: center;
    }

    .contact-inner {
      max-width: 560px;
      margin: 0 auto;
    }

    .contact-inner p {
      color: var(--text-muted);
      font-size: 1.02rem;
      line-height: 1.75;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
      font-family: var(--sans);
      font-size: 0.95rem;
      padding: 0.85rem 1rem;
      border: 1px solid var(--border);
      background: var(--warm-white);
      color: var(--text);
      border-radius: 0;
      outline: none;
      transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--oxblood);
    }

    .contact-form textarea {
      resize: vertical;
    }

    .contact-form button {
      align-self: flex-start;
      cursor: pointer;
    }

    .form-status {
      font-size: 0.85rem !important;
      margin-bottom: 0 !important;
    }

    .form-status.success {
      color: #2d6a4f;
    }

    .form-status.error {
      color: var(--oxblood);
    }

    .contact-details {
      display: flex;
      justify-content: center;
      gap: 3.5rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .contact-details .detail-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 0.4rem;
    }

    .contact-details a,
    .contact-details p {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.92rem;
      transition: color 0.3s;
      font-weight: 400;
    }

    .contact-details a:hover {
      color: var(--oxblood);
    }

    /* Footer */
    footer {
      background: var(--warm-black);
      color: rgba(244, 240, 232, 0.4);
      padding: 2.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      letter-spacing: 0.04em;
    }

    footer .footer-logo {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--cream);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-mark {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    footer .footer-tagline {
      font-style: italic;
      font-family: var(--serif);
      color: rgba(244, 240, 232, 0.35);
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        font-size: 1rem;
        color: var(--warm-black);
      }

      .nav-toggle {
        display: block;
        z-index: 200;
      }

      section {
        padding: 3.5rem 1.5rem;
      }

      .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about-aside {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 2rem;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .contact-details {
        flex-direction: column;
        gap: 1.5rem;
      }

      footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 2rem 1.5rem;
      }

      .hero-stamp {
        width: 72px;
        height: 72px;
      }

      .divider {
        padding: 0.5rem 1.5rem;
      }
    }