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

    :root {
      --parchment: #f2ead8;
      --parchment-dk: #e8ddc4;
      --linen:    #ede3cc;
      --red:      #c0392b;
      --red-dk:   #9b2e22;
      --ink:      #1a1410;
      --bark:     #3d2b1a;
      --mid:      #6b5040;
      --muted:    #9a8070;
      --line:     rgba(61,43,26,0.18);
      --serif:    'Playfair Display', serif;
      --slab:     'Libre Baskerville', serif;
      --sans:     'Nunito Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

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

    /* ── PAPER TEXTURE ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 9999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4vw;
      background: rgba(242,234,216,0.93);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid var(--red);
    }
    .nav-logo img {
      height: 52px;
      display: block;
    }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      font-family: var(--slab);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bark);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      font-family: var(--slab);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 2px solid var(--red);
      color: var(--red);
      padding: .5rem 1.3rem;
      text-decoration: none;
      font-weight: 700;
      transition: all .2s;
    }
    .nav-cta:hover { background: var(--red); color: #fff; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { width: 26px; height: 2px; background: var(--bark); display: block; }

    /* ── HERO ── */
    #hero {
      min-height: 100svh;
      padding-top: 74px;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 6vw 4vw 6vw 6vw;
      position: relative;
    }
    .hero-left::after {
      content: '';
      position: absolute; right: 0; top: 10%; bottom: 10%;
      width: 1px; background: var(--line);
    }
    .hero-stamp {
      width: min(280px, 72%);
      margin-bottom: 2.5rem;
      filter: drop-shadow(2px 3px 6px rgba(0,0,0,0.15));
    }
    .hero-tagline {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.2vw, 3.4rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--bark);
      margin-bottom: 1.6rem;
    }
    .hero-tagline em {
      font-style: italic;
      color: var(--red);
    }
    .hero-sub {
      font-family: var(--slab);
      font-size: 0.95rem;
      line-height: 1.95;
      color: var(--mid);
      max-width: 420px;
      margin-bottom: 2.8rem;
    }
    .hero-actions { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
    .btn-red {
      background: var(--red);
      color: #fff;
      font-family: var(--slab);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: .85rem 2.2rem;
      text-decoration: none;
      display: inline-block;
      border: 2px solid var(--red);
      transition: all .2s;
    }
    .btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); }
    .btn-outline {
      font-family: var(--slab);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 2px solid var(--bark);
      color: var(--bark);
      padding: .85rem 2.2rem;
      text-decoration: none;
      transition: all .2s;
    }
    .btn-outline:hover { background: var(--bark); color: var(--parchment); }

    /* hero decorative rule */
    .hero-rule {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 2rem;
    }
    .hero-rule::before,
    .hero-rule::after {
      content: ''; flex: 1; height: 1px; background: var(--line);
    }
    .hero-rule span {
      font-family: var(--slab);
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: var(--bark);
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 0.88;
      mix-blend-mode: luminosity;
      transition: transform .6s ease;
    }
    .hero-right:hover img { transform: scale(1.03); }
    .hero-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 2rem 2rem 1.6rem;
      background: linear-gradient(transparent, rgba(26,20,16,0.85));
    }
    .hero-caption p {
      font-family: var(--slab);
      font-size: 0.78rem;
      font-style: italic;
      color: rgba(242,234,216,0.85);
      line-height: 1.6;
    }
    .hero-caption strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.1rem;
      font-style: normal;
      color: var(--parchment);
      margin-bottom: .3rem;
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      overflow: hidden;
      background: var(--red);
      padding: .85rem 0;
      border-top: 2px solid var(--red-dk);
      border-bottom: 2px solid var(--red-dk);
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: roll 24s linear infinite;
    }
    .marquee-track span {
      font-family: var(--slab);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      padding: 0 2.4rem;
    }
    .marquee-track .sep {
      color: rgba(255,255,255,0.4);
      padding: 0;
    }
    @keyframes roll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTION COMMON ── */
    .eyebrow {
      font-family: var(--slab);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: .9rem;
    }
    .eyebrow::before {
      content: '✦';
      font-size: 0.5rem;
      color: var(--red);
    }
    h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--bark);
    }
    h2 em { font-style: italic; color: var(--red); }

    /* ── ABOUT ── */
    #about {
      padding: 9vw 6vw;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 8vw;
      align-items: center;
      background: var(--linen);
      border-top: 3px double var(--line);
      border-bottom: 3px double var(--line);
    }
    .about-copy p {
      font-family: var(--slab);
      font-size: 0.9rem;
      line-height: 2.05;
      color: var(--mid);
      margin-top: 1.4rem;
    }
    .about-copy p + p { margin-top: 1em; }
    .about-mascot {
      display: flex; flex-direction: column; align-items: center;
      gap: 1.8rem;
    }
    .mascot-img {
      width: 100%;
      max-width: 340px;
      border-radius: 3px;
      box-shadow: 4px 6px 20px rgba(0,0,0,0.18);
      border: 3px solid var(--bark);
    }
    .mascot-caption {
      font-family: var(--slab);
      font-size: 0.78rem;
      font-style: italic;
      color: var(--muted);
      text-align: center;
      max-width: 280px;
      line-height: 1.7;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 2.6rem;
      border: 1px solid var(--line);
    }
    .pillar {
      padding: 1.4rem;
      text-align: center;
      border-right: 1px solid var(--line);
    }
    .pillar:last-child { border-right: none; }
    .pillar-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }
    .pillar-label {
      font-family: var(--slab);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      margin-top: .4rem;
    }

    /* ── SERVICES ── */
    #services {
      padding: 9vw 6vw;
    }
    .services-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 4rem;
    }
    .services-header aside {
      font-family: var(--slab);
      font-size: 0.85rem;
      font-style: italic;
      color: var(--muted);
      max-width: 300px;
      text-align: right;
      line-height: 1.8;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }
    .svc {
      background: var(--parchment);
      padding: 2.8rem 2.2rem;
      position: relative;
      transition: background .25s;
    }
    .svc:hover { background: var(--parchment-dk); }
    .svc-num {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 900;
      color: rgba(192,57,43,0.12);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .svc-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--bark);
      margin-bottom: .9rem;
    }
    .svc-desc {
      font-family: var(--slab);
      font-size: 0.82rem;
      line-height: 1.95;
      color: var(--mid);
    }
    .svc::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--red);
      transition: width .35s;
    }
    .svc:hover::after { width: 100%; }

    /* ── WORK / GALLERY ── */
    #work {
      background: var(--bark);
      padding: 9vw 6vw;
    }
    #work .eyebrow { color: #c4924a; }
    #work .eyebrow::before { color: #c4924a; }
    #work h2 { color: var(--parchment); margin-bottom: .5rem; }
    #work h2 em { color: #c4924a; }
    .work-intro {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem;
    }
    .work-intro p {
      font-family: var(--slab);
      font-size: 0.85rem;
      font-style: italic;
      color: rgba(242,234,216,0.55);
      max-width: 340px;
      line-height: 1.8;
    }
    .ig-link {
      font-family: var(--slab);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #c4924a;
      text-decoration: none;
      border: 1.5px solid #c4924a;
      padding: .55rem 1.4rem;
      transition: all .2s;
      white-space: nowrap;
    }
    .ig-link:hover { background: #c4924a; color: var(--bark); }

    .work-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      grid-template-rows: auto auto;
      gap: 4px;
    }
    .work-item {
      overflow: hidden;
      position: relative;
      background: #2a1f14;
      cursor: default;
    }
    .work-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .55s ease, filter .4s;
      filter: saturate(0.8);
    }
    .work-item:hover img {
      transform: scale(1.05);
      filter: saturate(1);
    }
    .work-item.tall { grid-row: span 2; }
    .work-item.tall img { height: 100%; }
    .work-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.8rem 1.4rem 1.2rem;
      background: linear-gradient(transparent, rgba(26,20,16,0.82));
      transform: translateY(4px);
      transition: transform .3s;
    }
    .work-item:hover .work-label { transform: translateY(0); }
    .work-label strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--parchment);
    }
    .work-label span {
      font-family: var(--slab);
      font-size: 0.72rem;
      font-style: italic;
      color: rgba(242,234,216,0.6);
    }

    /* 3rd + 4th image row */
    .work-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4px;
      margin-top: 4px;
    }

    /* ── PROCESS ── */
    #process {
      padding: 9vw 6vw;
      background: var(--linen);
      border-top: 3px double var(--line);
      border-bottom: 3px double var(--line);
    }
    .process-header { text-align: center; margin-bottom: 5rem; }
    .process-header .eyebrow { justify-content: center; }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--line);
      border: 1px solid var(--line);
    }
    .step {
      background: var(--parchment);
      padding: 2.8rem 2rem;
      position: relative;
      text-align: center;
    }
    .step-num {
      width: 60px; height: 60px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 900;
      color: #fff;
      margin: 0 auto 1.6rem;
    }
    .step h3 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--bark);
      margin-bottom: .7rem;
    }
    .step p {
      font-family: var(--slab);
      font-size: 0.8rem;
      line-height: 1.9;
      color: var(--mid);
    }

    /* ── CONTACT ── */
    #contact {
      padding: 9vw 6vw;
      background: var(--bark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8vw;
    }
    .contact-left .eyebrow { color: #c4924a; }
    .contact-left .eyebrow::before { color: #c4924a; }
    .contact-left h2 { color: var(--parchment); margin-bottom: 1.4rem; }
    .contact-left h2 em { color: #c4924a; }
    .contact-left p {
      font-family: var(--slab);
      font-size: 0.9rem;
      line-height: 2;
      color: rgba(242,234,216,0.6);
      margin-bottom: 2.8rem;
    }
    .cdetails { display: flex; flex-direction: column; gap: 1.6rem; }
    .citem { display: flex; gap: 1.2rem; align-items: flex-start; }
    .cicon {
      width: 38px; height: 38px;
      border: 1.5px solid rgba(196,146,74,0.4);
      display: flex; align-items: center; justify-content: center;
      color: #c4924a;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .cinfo strong {
      display: block;
      font-family: var(--slab);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242,234,216,0.4);
      margin-bottom: .3rem;
    }
    .cinfo a, .cinfo span {
      font-family: var(--slab);
      font-size: 0.88rem;
      color: rgba(242,234,216,0.75);
      text-decoration: none;
      line-height: 1.6;
    }
    .cinfo a:hover { color: #c4924a; }

    .contact-form {}
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .cf-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
    .cf-group label {
      font-family: var(--slab);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242,234,216,0.4);
    }
    .cf-group input,
    .cf-group select,
    .cf-group textarea {
      background: rgba(242,234,216,0.07);
      border: 1px solid rgba(242,234,216,0.15);
      color: var(--parchment);
      font-family: var(--slab);
      font-size: 0.88rem;
      padding: .75rem 1rem;
      outline: none;
      width: 100%;
      -webkit-appearance: none;
      transition: border .2s;
    }
    .cf-group input::placeholder,
    .cf-group textarea::placeholder { color: rgba(242,234,216,0.25); }
    .cf-group input:focus,
    .cf-group select:focus,
    .cf-group textarea:focus { border-color: #c4924a; }
    .cf-group textarea { resize: vertical; min-height: 110px; }
    .cf-group select option { background: var(--bark); }
    .cf-submit {
      width: 100%;
      background: var(--red);
      color: #fff;
      border: 2px solid var(--red);
      font-family: var(--slab);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem;
      cursor: pointer;
      transition: all .2s;
      margin-top: .4rem;
    }
    .cf-submit:hover { background: var(--red-dk); border-color: var(--red-dk); }

    /* ── FOOTER ── */
    footer {
      background: #120e0a;
      padding: 4rem 6vw 2.5rem;
      border-top: 3px solid var(--red);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand img {
      height: 60px;
      margin-bottom: 1.2rem;
      filter: brightness(0) invert(1) opacity(0.85);
    }
    .footer-brand p {
      font-family: var(--slab);
      font-size: 0.78rem;
      line-height: 1.9;
      color: rgba(255,255,255,0.35);
      max-width: 220px;
    }
    .footer-socials { display: flex; gap: .7rem; margin-top: 1.5rem; }
    .fsoc {
      width: 36px; height: 36px;
      border: 1px solid rgba(192,57,43,0.4);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
      text-decoration: none;
      transition: all .2s;
    }
    .fsoc:hover { border-color: var(--red); color: var(--red); }
    .footer-col h4 {
      font-family: var(--slab);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 1.3rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
    .footer-col ul a {
      font-family: var(--slab);
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--red); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p {
      font-family: var(--slab);
      font-size: 0.72rem;
      color: rgba(255,255,255,0.2);
    }
    .footer-bottom .tagline {
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(192,57,43,0.5);
    }

    /* ── SCROLL REVEALS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }

    /* ── MOBILE ── */
    .mob-menu {
      display: none;
      position: fixed; inset: 0; z-index: 600;
      background: var(--bark);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mob-menu.open { display: flex; }
    .mob-close { position: absolute; top: 1.5rem; right: 4vw; background: none; border: none; font-size: 1.6rem; color: var(--parchment); cursor: pointer; }
    .mob-menu a { font-family: var(--serif); font-size: 2rem; color: var(--parchment); text-decoration: none; }
    .mob-menu a:hover { color: var(--red); }

    @media (max-width: 960px) {
      #hero { grid-template-columns: 1fr; }
      .hero-left::after { display: none; }
      .hero-right { height: 60vw; }
      #about { grid-template-columns: 1fr; }
      .about-mascot { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
      .mascot-img { max-width: 240px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .services-header aside { text-align: left; }
      .work-grid { grid-template-columns: 1fr; }
      .work-item.tall { grid-row: span 1; }
      .work-grid-2 { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }      #contact { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .cf-row { grid-template-columns: 1fr; }
      .about-pillars { grid-template-columns: 1fr; }
      .pillar { border-right: none; border-bottom: 1px solid var(--line); }
      .pillar:last-child { border-bottom: none; }
    }