:root {
            --ink: #1C2B22;
            --ink-2: #233324;
            --paper: #F7F2E7;
            --paper-2: #EFE6D2;
            --accent-red: #B23A2E;
            --accent-gold: #B8912F;
            --text: #20241D;
            --text-muted: #5B5A4E;
            --line: #D9CFB8;
            --radius: 2px;
            --font-display: Georgia, 'Times New Roman', serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--paper);
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
        }

        :focus-visible {
            outline: 2px solid var(--accent-red);
            outline-offset: 3px;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.001ms !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ---------- HEADER ---------- */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: var(--paper);
            border-bottom: 1px solid var(--line);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo svg {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }

        .logo-word {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--ink);
        }

        .logo-sub {
            display: block;
            font-family: var(--font-body);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: -2px;
        }

        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav.main-nav a {
            text-decoration: none;
            color: var(--text);
            font-size: 15px;
            position: relative;
            padding: 4px 0;
        }

        nav.main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width .2s ease;
        }

        nav.main-nav a:hover::after {
            width: 100%;
        }

        .nav-phone {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
        }

        .burger {
            display: none;
            background: none;
            border: none;
            width: 36px;
            height: 36px;
            position: relative;
        }

        .burger span,
        .burger span::before,
        .burger span::after {
            content: "";
            position: absolute;
            left: 8px;
            right: 8px;
            height: 2px;
            background: var(--ink);
            transition: transform .2s ease, opacity .2s ease;
        }

        .burger span {
            top: 17px;
        }

        .burger span::before {
            top: -8px;
        }

        .burger span::after {
            top: 8px;
        }

        .burger.open span {
            background: transparent;
        }

        .burger.open span::before {
            transform: translateY(8px) rotate(45deg);
        }

        .burger.open span::after {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ---------- HERO ---------- */
        .hero {
            position: relative;
            background: var(--ink);
            color: var(--paper);
            overflow: hidden;
        }

        .hero-ruled {
            position: absolute;
            inset: 0;
            opacity: 0.14;
            background-image: repeating-linear-gradient(to bottom, transparent 0 39px, var(--paper) 39px 40px);
            pointer-events: none;
        }

        .hero-stitch {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 56px;
            width: 0;
            border-left: 2px dashed var(--accent-red);
            opacity: 0.55;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            padding: 96px 24px 88px;
            max-width: 1080px;
            margin: 0 auto;
            padding-left: 96px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            border: 1px solid rgba(184, 145, 47, 0.5);
            padding: 6px 12px;
            border-radius: var(--radius);
            margin-bottom: 28px;
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.15;
            font-weight: 700;
            max-width: 16ch;
            margin-bottom: 20px;
        }

        .hero-sub {
            font-size: 17px;
            color: #D8D2C0;
            max-width: 52ch;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius);
            border: 1px solid transparent;
            transition: transform .15s ease, background .15s ease, border-color .15s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
        }

        .btn-primary {
            background: var(--accent-red);
            color: #fff;
        }

        .btn-primary:hover {
            background: #9B2F25;
        }

        .btn-ghost {
            border-color: rgba(247, 242, 231, 0.4);
            color: var(--paper);
            background: transparent;
        }

        .btn-ghost:hover {
            border-color: var(--paper);
        }

        .hero-promo {
            margin-top: 20px;
            font-size: 13px;
            color: #C9C3B0;
        }

        .stamp {
            position: absolute;
            right: 40px;
            bottom: 36px;
            width: 118px;
            height: 118px;
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            text-align: center;
            transform: rotate(-10deg);
            color: var(--accent-gold);
            font-family: var(--font-mono);
            font-size: 10.5px;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1.4;
            padding: 10px;
        }

        /* ---------- SECTION LABELS ---------- */
        .section {
            padding: 72px 24px;
        }

        .section-head {
            margin-bottom: 44px;
            max-width: 60ch;
        }

        .kicker {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-red);
            margin-bottom: 10px;
            display: block;
        }

        h2 {
            font-family: var(--font-display);
            font-size: clamp(26px, 3.4vw, 34px);
            color: var(--ink);
            font-weight: 700;
        }

        .section-lead {
            color: var(--text-muted);
            margin-top: 12px;
            font-size: 16px;
            max-width: 56ch;
        }

        /* ---------- ABOUT ---------- */
        #about {
            background: var(--paper);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 56px;
            align-items: start;
        }

        .about-text p {
            margin-bottom: 16px;
            color: var(--text);
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .facts {
            border-top: 1px solid var(--line);
        }

        .fact {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 18px 0;
            border-bottom: 1px solid var(--line);
            gap: 16px;
        }

        .fact-num {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--ink);
        }

        .fact-label {
            color: var(--text-muted);
            font-size: 14px;
            text-align: right;
        }

        /* ---------- SERVICES ---------- */
        #services {
            background: var(--paper-2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .services-list {
            border-top: 1px solid var(--line);
        }

        .service-row {
            display: grid;
            grid-template-columns: 64px 44px 1fr;
            gap: 20px;
            align-items: start;
            padding: 26px 0;
            border-bottom: 1px solid var(--line);
        }

        .service-index {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--accent-red);
            font-weight: 700;
            padding-top: 4px;
        }

        .service-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-icon svg {
            width: 22px;
            height: 22px;
        }

        .service-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .service-desc {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 62ch;
        }

        /* ---------- CONTACT / REQUEST ---------- */
        #request {
            background: var(--ink);
            color: var(--paper);
        }

        #request .kicker {
            color: var(--accent-gold);
        }

        #request h2 {
            color: var(--paper);
        }

        #request .section-lead {
            color: #C9C3B0;
        }

        .request-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 56px;
            align-items: start;
        }

        .team-note {
            font-size: 15px;
            color: #D8D2C0;
            margin-bottom: 24px;
        }

        .contact-list {
            list-style: none;
            margin-top: 8px;
        }

        .contact-list li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 14px 0;
            border-bottom: 1px solid rgba(247, 242, 231, 0.15);
        }

        .contact-list li:first-child {
            padding-top: 0;
        }

        .contact-list svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--accent-gold);
        }

        .contact-list a {
            text-decoration: none;
        }

        .contact-list a:hover {
            text-decoration: underline;
        }

        .contact-label {
            display: block;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #9A9484;
            margin-bottom: 3px;
        }

        .contact-value {
            font-family: var(--font-mono);
            font-size: 16px;
        }

        form {
            background: var(--paper);
            color: var(--text);
            padding: 32px;
            border-radius: var(--radius);
            background-image: repeating-linear-gradient(to bottom, transparent 0 43px, var(--line) 43px 44px);
        }

        .field {
            margin-bottom: 18px;
        }

        .field label {
            display: block;
            font-size: 13px;
            margin-bottom: 6px;
            color: var(--text-muted);
        }

        .field input,
        .field textarea {
            width: 100%;
            border: none;
            border-bottom: 2px solid var(--ink);
            background: transparent;
            font-family: var(--font-body);
            font-size: 16px;
            padding: 8px 2px;
            color: var(--text);
        }

        .field input:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--accent-red);
        }

        .field textarea {
            resize: vertical;
            min-height: 64px;
        }

        .consent {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 22px;
        }

        .consent input {
            margin-top: 4px;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .consent label {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .consent a {
            color: var(--accent-red);
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            border: none;
            background: var(--accent-red);
            color: #fff;
            padding: 15px;
            font-size: 16px;
            font-weight: 700;
            border-radius: var(--radius);
            transition: background .15s ease;
        }

        .submit-btn:hover {
            background: #9B2F25;
        }

        .form-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 12px;
            text-align: center;
        }

        .thanks-banner {
            display: none;
            background: var(--accent-gold);
            color: var(--ink);
            padding: 16px 20px;
            border-radius: var(--radius);
            margin-bottom: 24px;
            font-weight: 600;
            align-items: center;
            gap: 10px;
        }

        .thanks-banner.show {
            display: flex;
        }

        /* ---------- FOOTER ---------- */
        footer {
            background: var(--ink-2);
            color: #B9B29E;
            padding: 32px 24px;
            font-size: 13px;
        }

        .footer-inner {
            max-width: 1080px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .footer-inner a {
            text-decoration: none;
        }

        .footer-inner a:hover {
            text-decoration: underline;
        }

        .footer-legal {
            max-width: 1080px;
            margin: 10px auto 0;
            font-size: 12px;
            opacity: 0.75;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width:860px) {

            .about-grid,
            .request-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .hero-inner {
                padding-left: 56px;
            }
        }

        @media (max-width:720px) {
            nav.main-nav {
                position: fixed;
                top: 65px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--paper);
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 24px;
                gap: 24px;
                transform: translateX(100%);
                transition: transform .25s ease;
                overflow-y: auto;
            }

            nav.main-nav.open {
                transform: translateX(0);
            }

            nav.main-nav a {
                font-size: 18px;
            }

            .burger {
                display: block;
            }

            .stamp {
                display: none !important;
            }

            .hero-inner {
                padding: 64px 20px 64px 48px;
            }

            .hero-stitch {
                left: 24px;
            }

            .service-row {
                grid-template-columns: 32px 1fr;
            }

            .service-index {
                display: none;
            }

            form {
                padding: 24px 20px;
            }
        }

        .page {
            padding: 72px 24px;
            padding: 5px 72px 72px 10px;
        }

        .page h1 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 900;
            max-width: max-content;
            margin-bottom: 20px;
        }
