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

      :root {
        --butter: #f5c842;
        --ink: #1a1208;
        --cream: #fdf6e3;
        --warm-gray: #8c7b5e;
        --rust: #c94a2b;
        --paper: #faf0d7;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--cream);
        color: var(--ink);
        font-family: "DM Sans", sans-serif;
        overflow-x: hidden;
        cursor: none;
      }

      /* Custom cursor */
      .cursor {
        width: 14px;
        height: 14px;
        background: var(--butter);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition:
          transform 0.15s ease,
          background 0.2s;
        transform: translate(-50%, -50%);
      }
      .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1.5px solid var(--ink);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition:
          transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
          opacity 0.2s;
        transform: translate(-50%, -50%);
      }

      /* 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 3rem;
        background: var(--cream);
        border-bottom: 2px solid var(--ink);
        mix-blend-mode: normal;
      }
      .nav-logo {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.7rem;
        letter-spacing: 0.08em;
        color: var(--ink);
        text-decoration: none;
      }
      .nav-logo span {
        color: var(--rust);
      }
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--ink);
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--rust);
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 74px;
        border-bottom: 2px solid var(--ink);
      }
      .hero-left {
        padding: 5rem 3rem 5rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 2px solid var(--ink);
        position: relative;
        overflow: hidden;
      }
      .hero-left::before {
        content: "";
        position: absolute;
        top: -60px;
        left: -60px;
        width: 320px;
        height: 320px;
        background: var(--butter);
        border-radius: 50%;
        opacity: 0.35;
        z-index: 0;
      }
      .hero-eyebrow {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--rust);
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 1;
      }
      .hero-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(4.5rem, 8vw, 7.5rem);
        line-height: 0.95;
        letter-spacing: 0.01em;
        color: var(--ink);
        position: relative;
        z-index: 1;
      }
      .hero-title .accent {
        color: var(--rust);
      }
      .hero-subtitle {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1.2rem;
        color: var(--warm-gray);
        margin-top: 1.8rem;
        max-width: 380px;
        line-height: 1.7;
        position: relative;
        z-index: 1;
      }
      .hero-cta {
        margin-top: 2.8rem;
        display: flex;
        gap: 1rem;
        position: relative;
        z-index: 1;
      }
      .btn-primary {
        background: var(--ink);
        color: var(--butter);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.9rem 2.2rem;
        border: 2px solid var(--ink);
        transition:
          background 0.2s,
          color 0.2s;
        display: inline-block;
      }
      .btn-primary:hover {
        background: var(--butter);
        color: var(--ink);
      }
      .btn-secondary {
        background: transparent;
        color: var(--ink);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.9rem 2.2rem;
        border: 2px solid var(--ink);
        transition:
          background 0.2s,
          color 0.2s;
        display: inline-block;
      }
      .btn-secondary:hover {
        background: var(--ink);
        color: var(--cream);
      }

      .hero-right {
        background: var(--ink);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        gap: 1.8rem;
        padding: 4rem 2.5rem;
      }
      .hero-right::after {
        content: "BUTTER DESIGNS";
        position: absolute;
        bottom: 1.5rem;
        right: 2rem;
        font-family: "Bebas Neue", sans-serif;
        font-size: 0.85rem;
        letter-spacing: 0.25em;
        color: rgba(245, 200, 66, 0.2);
      }
      .book-mockup {
        width: 160px;
        background: var(--paper);
        border: 2px solid rgba(255, 255, 255, 0.08);
        padding: 1.8rem 1.4rem;
        box-shadow:
          8px 8px 0 var(--butter),
          16px 16px 0 rgba(245, 200, 66, 0.2);
        transition: transform 0.3s ease;
        flex-shrink: 0;
      }
      .book-mockup:hover {
        transform: translate(-4px, -4px);
      }
      .book-mockup:nth-child(2) {
        width: 140px;
        box-shadow:
          8px 8px 0 var(--rust),
          16px 16px 0 rgba(201, 74, 43, 0.2);
        margin-top: -1rem;
      }
      .book-mockup:nth-child(3) {
        width: 170px;
        box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.15);
        margin-top: -0.5rem;
      }
      .bm-line {
        height: 2px;
        background: var(--butter);
        margin-bottom: 0.7rem;
        opacity: 0.6;
      }
      .bm-line.short {
        width: 60%;
      }
      .bm-line.med {
        width: 85%;
      }
      .bm-line.full {
        width: 100%;
      }
      .bm-line.rust {
        background: var(--rust);
      }
      .bm-line.white {
        background: white;
      }
      .bm-block {
        height: 5px;
        background: rgba(245, 200, 66, 0.15);
        margin-bottom: 0.5rem;
      }
      .bm-title {
        font-family: "Playfair Display", serif;
        font-size: 0.6rem;
        color: var(--butter);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
      }
      .bm-body {
        font-size: 0.45rem;
        color: rgba(253, 246, 227, 0.4);
        line-height: 1.8;
      }

      /* MARQUEE */
      .marquee-bar {
        background: var(--butter);
        border-bottom: 2px solid var(--ink);
        padding: 0.75rem 0;
        overflow: hidden;
      }
      .marquee-track {
        display: flex;
        gap: 3rem;
        animation: marquee 18s linear infinite;
        white-space: nowrap;
      }
      .marquee-track span {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1rem;
        letter-spacing: 0.15em;
        color: var(--ink);
      }
      .marquee-track .dot {
        color: var(--rust);
      }
      @keyframes marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* SERVICES */
      .section {
        padding: 6rem 3rem;
      }
      .section-header {
        display: flex;
        align-items: baseline;
        gap: 1.5rem;
        border-bottom: 2px solid var(--ink);
        padding-bottom: 1.2rem;
        margin-bottom: 4rem;
      }
      .section-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1rem;
        color: var(--rust);
        letter-spacing: 0.1em;
      }
      .section-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        letter-spacing: 0.03em;
        line-height: 1;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border: 2px solid var(--ink);
      }
      .service-card {
        padding: 2.5rem 2rem;
        border-right: 2px solid var(--ink);
        transition: background 0.25s;
        position: relative;
        overflow: hidden;
      }
      .service-card:last-child {
        border-right: none;
      }
      .service-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--butter);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .service-card:hover {
        background: var(--ink);
      }
      .service-card:hover .service-name,
      .service-card:hover .service-desc {
        color: var(--cream);
      }
      .service-card:hover::after {
        transform: scaleX(1);
      }
      .service-icon {
        font-size: 2rem;
        margin-bottom: 1.2rem;
      }
      .service-name {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.8rem;
        transition: color 0.25s;
      }
      .service-desc {
        font-size: 0.85rem;
        color: var(--warm-gray);
        line-height: 1.7;
        transition: color 0.25s;
      }
      .service-tag {
        display: inline-block;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        background: var(--butter);
        color: var(--ink);
        padding: 0.2rem 0.6rem;
        margin-bottom: 1rem;
        font-weight: 500;
      }

      /* PORTFOLIO */
      .portfolio {
        background: var(--ink);
        color: var(--cream);
        padding: 6rem 3rem;
      }
      .portfolio .section-header {
        border-bottom-color: rgba(255, 255, 255, 0.15);
      }
      .portfolio .section-title {
        color: var(--cream);
      }
      .portfolio .section-num {
        color: var(--butter);
      }

      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 2px solid rgba(255, 255, 255, 0.15);
      }
      .portfolio-item {
        border-right: 2px solid rgba(255, 255, 255, 0.15);
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        transition: background 0.25s;
        cursor: pointer;
      }
      .portfolio-item:nth-child(3n) {
        border-right: none;
      }
      .portfolio-item:nth-child(n + 4) {
        border-bottom: none;
      }
      .portfolio-item:hover {
        background: rgba(245, 200, 66, 0.08);
      }
      .portfolio-item:hover .pi-arrow {
        opacity: 1;
        transform: translate(0, 0);
      }
      .portfolio-cover {
        height: auto;
        max-height: 200px; /* adjust to taste */
        width: auto;
        display: block;
        margin-bottom: 1.2rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(253, 246, 227, 0.05);
      }
      .pi-genre {
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--butter);
        margin-bottom: 1rem;
      }
      .pi-title {
        font-family: "Playfair Display", serif;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
      }
      .pi-author {
        font-size: 0.8rem;
        color: rgba(253, 246, 227, 0.5);
        margin-bottom: 1.5rem;
        font-style: italic;
      }
      .pi-page-preview {
        background: rgba(253, 246, 227, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem;
        margin-bottom: 1.2rem;
      }
      .pp-line {
        height: 1.5px;
        background: rgba(253, 246, 227, 0.15);
        margin-bottom: 0.45rem;
      }
      .pp-line.short {
        width: 55%;
      }
      .pp-line.med {
        width: 78%;
      }
      .pp-line.full {
        width: 100%;
      }
      .pp-dropcap {
        float: left;
        font-family: "Playfair Display", serif;
        font-size: 2.2rem;
        line-height: 0.8;
        color: var(--butter);
        margin-right: 0.3rem;
        margin-bottom: 0;
      }
      .pi-meta {
        display: flex;
        gap: 1.5rem;
        font-size: 0.7rem;
        color: rgba(253, 246, 227, 0.4);
        letter-spacing: 0.05em;
      }
      .pi-arrow {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.2rem;
        color: var(--butter);
        opacity: 0;
        transform: translate(-6px, 6px);
        transition:
          opacity 0.25s,
          transform 0.25s;
      }

      /* PROCESS */
      .process {
        padding: 6rem 3rem;
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: relative;
      }
      .process-steps::before {
        content: "";
        position: absolute;
        top: 2.5rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--ink);
      }
      .process-step {
        padding: 0 1.5rem;
        text-align: center;
        position: relative;
      }
      .ps-num {
        width: 48px;
        height: 48px;
        background: var(--ink);
        color: var(--butter);
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.2rem;
        letter-spacing: 0.08em;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        position: relative;
        z-index: 1;
      }
      .ps-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.1rem;
        letter-spacing: 0.06em;
        margin-bottom: 0.6rem;
      }
      .ps-desc {
        font-size: 0.8rem;
        color: var(--warm-gray);
        line-height: 1.65;
      }

      /* ABOUT */
      .about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 2px solid var(--ink);
        border-bottom: 2px solid var(--ink);
      }
      .about-left {
        background: var(--butter);
        padding: 6rem 4rem;
        border-right: 2px solid var(--ink);
        position: relative;
        overflow: hidden;
      }
      .about-left::before {
        content: '"';
        font-family: "Playfair Display", serif;
        font-size: 20rem;
        color: rgba(26, 18, 8, 0.06);
        position: absolute;
        top: -3rem;
        left: 1rem;
        line-height: 1;
        pointer-events: none;
      }
      .about-quote {
        font-family: "Playfair Display", serif;
        font-size: 1.7rem;
        line-height: 1.5;
        font-style: italic;
        color: var(--ink);
        position: relative;
        z-index: 1;
        margin-bottom: 2rem;
      }
      .about-attr {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 500;
        color: var(--rust);
      }
      .about-right {
        padding: 6rem 4rem;
      }
      .about-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--rust);
        font-weight: 500;
        margin-bottom: 1rem;
      }
      .about-heading {
        font-family: "Bebas Neue", sans-serif;
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 1.5rem;
      }
      .about-body {
        font-size: 0.92rem;
        line-height: 1.85;
        color: var(--warm-gray);
        margin-bottom: 1.2rem;
      }
      .stats-row {
        display: flex;
        gap: 3rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(26, 18, 8, 0.15);
      }
      .stat-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2.5rem;
        color: var(--rust);
        line-height: 1;
      }
      .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--warm-gray);
        margin-top: 0.25rem;
      }

      /* TESTIMONIALS */
      .testimonials {
        background: var(--paper);
        padding: 6rem 3rem;
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--ink);
        border: 2px solid var(--ink);
      }
      .testi-card {
        background: var(--paper);
        padding: 2.5rem;
      }
      .testi-stars {
        color: var(--butter);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        letter-spacing: 0.15em;
      }
      .testi-text {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
        color: var(--ink);
      }
      .testi-name {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--rust);
      }
      .testi-role {
        font-size: 0.72rem;
        color: var(--warm-gray);
        margin-top: 0.2rem;
      }

      /* CONTACT */
      .contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 2px solid var(--ink);
      }
      .contact-left {
        padding: 6rem 4rem;
        border-right: 2px solid var(--ink);
      }
      .contact-heading {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(3rem, 5vw, 5rem);
        line-height: 0.95;
        margin-bottom: 1.5rem;
      }
      .contact-heading .accent {
        color: var(--rust);
      }
      .contact-sub {
        font-size: 0.9rem;
        color: var(--warm-gray);
        line-height: 1.75;
        max-width: 360px;
        margin-bottom: 2.5rem;
      }
      .contact-detail {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
      }
      .cd-icon {
        width: 36px;
        height: 36px;
        background: var(--ink);
        color: var(--butter);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        flex-shrink: 0;
      }
      .contact-right {
        padding: 6rem 4rem;
        background: var(--ink);
      }
      .form-group {
        margin-bottom: 1.5rem;
      }
      .form-label {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(253, 246, 227, 0.5);
        margin-bottom: 0.5rem;
      }
      .form-input,
      .form-select,
      .form-textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--cream);
        padding: 0.85rem 1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.2s;
      }
      .form-input::placeholder,
      .form-textarea::placeholder {
        color: rgba(253, 246, 227, 0.25);
      }
      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        border-color: var(--butter);
      }
      .form-select option {
        background: var(--ink);
      }
      .form-textarea {
        height: 120px;
        resize: none;
      }
      .form-submit {
        width: 100%;
        background: var(--butter);
        color: var(--ink);
        border: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        padding: 1rem;
        cursor: pointer;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .form-submit:hover {
        background: var(--rust);
        color: var(--cream);
      }

      /* FOOTER */
      footer {
        background: var(--ink);
        color: var(--cream);
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 3px solid var(--butter);
      }
      .footer-logo {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        color: var(--butter);
      }
      .footer-copy {
        font-size: 0.75rem;
        color: rgba(253, 246, 227, 0.35);
      }
      .footer-links {
        display: flex;
        gap: 2rem;
      }
      .footer-links a {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        color: rgba(253, 246, 227, 0.5);
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--butter);
      }

      /* ANIMATIONS */
      .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 900px) {
        body {
          cursor: auto;
        }
        .cursor,
        .cursor-ring {
          display: none;
        }
        nav {
          padding: 1rem 1.5rem;
        }
        .nav-links {
          display: none;
        }
        .hero {
          grid-template-columns: 1fr;
        }
        .hero-right {
          min-height: 340px;
        }
        .services-grid {
          grid-template-columns: 1fr 1fr;
        }
        .service-card:nth-child(2) {
          border-right: none;
        }
        .service-card {
          border-bottom: 2px solid var(--ink);
        }
        .portfolio-grid {
          grid-template-columns: 1fr;
        }
        .portfolio-item {
          border-right: none;
        }
        .portfolio-item:nth-child(n + 4) {
          border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        }
        .portfolio-item:last-child {
          border-bottom: none;
        }
        .process-steps {
          grid-template-columns: 1fr 1fr;
          gap: 2.5rem;
        }
        .process-steps::before {
          display: none;
        }
        .about,
        .contact {
          grid-template-columns: 1fr;
        }
        .about-left,
        .contact-left {
          border-right: none;
          border-bottom: 2px solid var(--ink);
        }
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .section {
          padding: 4rem 1.5rem;
        }
        .hero-left {
          padding: 3rem 1.5rem;
        }
      }
    </style>