.elementor-7300 .elementor-element.elementor-element-41888e5{--display:flex;}/* Start custom CSS for container, class: .elementor-element-41888e5 */:root {
            --white: #FFFFFF;
            --brown: #241812;
            --brown-deep: #180f0a;
            --midnight: #0F172A;
            --gold: #C8A96B;
            --gold-soft: #e2cda2;
            --maroon: #6B1F2A;
            --ivory: #F8F4EC;
            --grey: #8a8a8a;
            --line-light: rgba(15, 23, 42, 0.10);
            --line-dark: rgba(248, 244, 236, 0.14);
            --ease: cubic-bezier(.22, 1, .36, 1);
            --slant: 4.2vw;
           
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--white);
            color: var(--midnight);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
          
        }

        h1,
        h2,
        h3,
        h4,
        .display {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.01em;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* grain texture overlay */
        body::after {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 60;
            opacity: 0.045;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
        }

        #progress {
            position: fixed;
            top: 0;
            left: var(--spine-w);
            right: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--gold), var(--maroon));
            z-index: 1000;
            transition: width .1s linear;
        }

        /* book-spine edge */
        .spine-track {
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            width: var(--spine-w);
            background: var(--brown-deep);
            z-index: 70;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 1px 0 0 rgba(200, 169, 107, .15);
        }

        .spine-text {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-family: 'Montserrat', sans-serif;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: .32em;
            text-transform: uppercase;
            color: var(--gold-soft);
            opacity: .75;
            white-space: nowrap;
        }

        .spine-text .dot {
            color: var(--maroon);
            opacity: .9;
            margin: 0 2px;
        }

        section {
            position: relative;
            padding: 130px clamp(24px, 7vw, 100px);
            overflow: hidden;
            z-index: 1;
        }

        section[data-theme="dark"] {
            background:
                radial-gradient(circle at 88% 6%, rgba(200, 169, 107, 0.10), transparent 40%),
                var(--brown);
            color: var(--ivory);
        }

        section[data-theme="light"] {
            background:
                radial-gradient(circle at 6% 100%, rgba(107, 31, 42, 0.045), transparent 40%),
                var(--white);
            color: var(--midnight);
        }

        section.cut {
            clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
            margin-top: calc(-1 * var(--slant));
            padding-top: calc(130px + var(--slant));
        }

        .chapter-mark {
            position: absolute;
            top: 6px;
            right: clamp(10px, 4vw, 50px);
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            line-height: .8;
            font-size: clamp(110px, 17vw, 270px);
            letter-spacing: -0.03em;
            pointer-events: none;
            z-index: 0;
            user-select: none;
        }

        section[data-theme="light"] .chapter-mark {
            color: var(--midnight);
            opacity: 0.045;
        }

        section[data-theme="dark"] .chapter-mark {
            color: var(--ivory);
            opacity: 0.05;
        }

        .eyebrow {
            position: relative;
            z-index: 2;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .eyebrow .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border: 1px solid currentColor;
            border-radius: 50%;
            font-size: 11px;
            color: var(--maroon);
        }

        section[data-theme="dark"] .eyebrow .num {
            color: var(--gold-soft);
            border-color: rgba(226, 205, 162, 0.4);
        }

        .section-head {
            position: relative;
            z-index: 2;
            max-width: 780px;
            margin-bottom: 60px;
        }

        .section-head h2 {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.08;
        }

        .section-head p {
            margin-top: 20px;
            font-size: 16px;
            line-height: 1.8;
            max-width: 640px;
        }

        section[data-theme="light"] .section-head p {
            color: #3c3c3c;
        }

        section[data-theme="dark"] .section-head p {
            color: var(--ivory);
            opacity: .88;
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
            position: relative;
            z-index: 2;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background:
                radial-gradient(circle at 82% 15%, rgba(200, 169, 107, 0.18), transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(107, 31, 42, 0.18), transparent 40%),
                var(--brown);
        }

        .hero-eyebrow {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .32em;
            color: var(--gold-soft);
            text-transform: uppercase;
            margin-bottom: 28px;
            opacity: .85;
        }

        #hero h1 {
            font-size: clamp(56px, 10vw, 132px);
            font-weight: 900;
            line-height: 0.9;
            color: var(--ivory);
            position: relative;
            z-index: 2;
        }

        #hero h1 span {
            color: var(--gold);
            font-style: normal;
        }

        .hero-quote {
            margin-top: 48px;
            max-width: 520px;
            font-size: 18px;
            font-weight: 300;
            color: var(--ivory);
            border-left: 2px solid var(--gold);
            padding-left: 20px;
            line-height: 1.7;
            opacity: .9;
            position: relative;
            z-index: 2;
        }

        .hero-quote .translit {
            display: block;
            margin-top: 10px;
            font-size: 13.5px;
            opacity: .6;
            font-style: italic;
            color: var(--gold-soft);
        }

        .scroll-cue {
            position: absolute;
            bottom: 40px;
            left: clamp(24px, 7vw, 100px);
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            letter-spacing: 0.2em;
            color: var(--gold-soft);
            opacity: .75;
            text-transform: uppercase;
        }

        .scroll-cue .line {
            width: 36px;
            height: 1px;
            background: var(--gold);
            position: relative;
            overflow: hidden;
        }

        .scroll-cue .line::after {
            content: "";
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: var(--ivory);
            animation: travel 2.2s ease-in-out infinite;
        }

        @keyframes travel {
            0% {
                left: -100%;
            }

            50% {
                left: 100%;
            }

            100% {
                left: 100%;
            }
        }

        .triptych {
            position: absolute;
            right: clamp(24px, 9vw, 140px);
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 16px;
            align-items: flex-end;
            height: 260px;
            z-index: 1;
        }

        .triptych .bar {
            width: 11px;
            border-radius: 8px;
            transform-origin: bottom;
            animation: breathe 3.6s ease-in-out infinite;
        }

        .triptych .bar:nth-child(1) {
            background: linear-gradient(var(--gold), transparent);
            animation-delay: 0s;
            height: 70%;
        }

        .triptych .bar:nth-child(2) {
            background: linear-gradient(var(--ivory), transparent);
            animation-delay: .5s;
            height: 100%;
        }

        .triptych .bar:nth-child(3) {
            background: linear-gradient(var(--maroon), transparent);
            animation-delay: 1s;
            height: 55%;
        }

        @keyframes breathe {

            0%,
            100% {
                transform: scaleY(0.72);
                opacity: .55;
            }

            50% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        @media (max-width:900px) {
            .triptych {
                display: none;
            }
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 64px;
            align-items: start;
        }

        .founders {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 26px;
        }

        .founder {
            border-left: 2px solid var(--gold);
            padding-left: 18px;
        }

        .founder .name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 15px;
        }

        .founder .role {
            font-size: 13px;
            opacity: .65;
            margin-top: 2px;
        }

        .repertoire {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .rep-card {
            border: 1px solid var(--line-light);
            padding: 20px 16px;
            border-radius: 3px;
            transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
        }

        .rep-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
        }

        .rep-card .rep-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14.5px;
            color: var(--maroon);
        }

        .rep-card .rep-desc {
            font-size: 12.5px;
            margin-top: 6px;
            opacity: .75;
            line-height: 1.55;
        }

        .body-copy {
            font-size: 16px;
            line-height: 1.85;
        }

        section[data-theme="light"] .body-copy {
            color: #3c3c3c;
        }

        section[data-theme="dark"] .body-copy {
            color: var(--ivory);
            opacity: .9;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .mv-card {
            position: relative;
        }

        .mv-card h3 {
            font-size: 23px;
            color: var(--gold);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .mv-card p {
            line-height: 1.85;
            font-size: 15px;
            opacity: .9;
            position: relative;
            z-index: 1;
        }

        .mv-quote {
            margin-top: 28px;
            font-size: 20px;
            font-weight: 300;
            color: var(--ivory);
            border-left: 2px solid var(--gold);
            padding-left: 20px;
            font-style: italic;
            position: relative;
        }

        .mv-quote .translit {
            display: block;
            font-size: 13px;
            opacity: .55;
            margin-top: 6px;
            font-style: italic;
        }

        .quote-mark {
            position: absolute;
            top: -64px;
            left: -10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 150px;
            color: var(--gold);
            opacity: .12;
            line-height: 1;
            z-index: 0;
            pointer-events: none;
        }

        .trait-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 1px;
            background: var(--line-light);
            border: 1px solid var(--line-light);
            margin-top: 16px;
        }

        .trait {
            background: var(--white);
            padding: 34px 26px;
            transition: background .3s;
        }

        .trait:hover {
            background: var(--ivory);
        }

        .trait .t-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            color: var(--gold);
            font-weight: 700;
            letter-spacing: .08em;
        }

        .trait h4 {
            margin-top: 12px;
            font-size: 17.5px;
            color: var(--gold);
            font-weight: 700;
        }

        .trait p {
            margin-top: 10px;
            font-size: 13.5px;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .logo-versions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 56px;
            perspective: 1000px;
        }

        .logo-card {
            border: 1px solid var(--line-dark);
            padding: 52px 24px;
            text-align: center;
            border-radius: 3px;
            transition: transform .15s linear, box-shadow .3s;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .logo-card.v1 {
            background: var(--ivory);
            color: var(--midnight);
        }

        .logo-card.v2 {
            background: var(--midnight);
            color: var(--ivory);
            border-color: rgba(255, 255, 255, .12);
        }

        .logo-card:hover {
            box-shadow: 0 26px 50px rgba(0, 0, 0, .28);
        }

        .logo-mark {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 27px;
            letter-spacing: .04em;
        }

        .logo-card .cap {
            margin-top: 16px;
            font-size: 11.5px;
            letter-spacing: .12em;
            text-transform: uppercase;
            opacity: .6;
        }

        .info-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 52px;
        }

        .placement-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 14px;
            font-size: 14.5px;
            line-height: 1.65;
            opacity: .88;
        }

        .placement-list li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 16px;
        }

        .mini-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .mini-table td {
            padding: 13px 0;
            border-bottom: 1px solid var(--line-dark);
            font-size: 14px;
        }

        .mini-table td:first-child {
            color: var(--gold);
            font-weight: 600;
            width: 45%;
        }

        .usage-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 14px;
            font-size: 14.5px;
            line-height: 1.65;
            color: #3c3c3c;
        }

        .usage-list li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--maroon);
            font-weight: 700;
            font-size: 16px;
        }

        .dodont {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            margin-top: 56px;
        }

        .dodont.on-light {
            background: var(--line-light);
            border: 1px solid var(--line-light);
        }

        .dodont.on-dark {
            background: var(--line-dark);
            border: 1px solid var(--line-dark);
        }

        .dodont .col {
            padding: 0;
        }

        .dodont.on-light .col {
            background: var(--white);
        }

        .dodont.on-dark .col {
            background: var(--brown);
        }

        .dodont h4 {
            padding: 20px 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .dodont.on-light .do h4 {
            color: #2c6b3f;
        }

        .dodont.on-light .dont h4 {
            color: var(--maroon);
        }

        .dodont.on-dark .do h4 {
            color: #8fbf8a;
        }

        .dodont.on-dark .dont h4 {
            color: #d98a8a;
        }

        .dodont .col li {
            padding: 14px 24px;
            font-size: 13.5px;
            line-height: 1.55;
        }

        .dodont.on-light .col li {
            border-top: 1px solid var(--line-light);
            color: #444;
        }

        .dodont.on-dark .col li {
            border-top: 1px solid var(--line-dark);
            opacity: .85;
        }

        .swatch-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .swatch {
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--line-light);
            position: relative;
            transition: transform .35s var(--ease), box-shadow .35s;
        }

        .swatch:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 34px rgba(0, 0, 0, .12);
        }

        .swatch .chip {
            height: 128px;
        }

        .swatch .meta {
            padding: 18px;
            background: var(--white);
        }

        .swatch .meta .cname {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: var(--midnight);
        }

        .swatch .meta .crgb {
            font-size: 11.5px;
            color: var(--grey);
            margin-top: 5px;
        }

        .swatch .meta .chex {
            font-size: 12px;
            color: var(--grey);
            margin-top: 2px;
            letter-spacing: .04em;
        }

        .swatch .meta .cuse {
            font-size: 11.5px;
            color: var(--maroon);
            margin-top: 8px;
            font-weight: 500;
        }

        .copy-toast {
            position: fixed;
            bottom: 30px;
        left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--brown);
            color: var(--gold-soft);
            padding: 13px 24px;
            border-radius: 30px;
            font-size: 13px;
            letter-spacing: .04em;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s, transform .3s;
            z-index: 1200;
            box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
        }

        .copy-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .combo-list {
            margin-top: 56px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
        }

        .combo {
            border: 1px solid var(--line-dark);
            border-radius: 6px;
            overflow: hidden;
            transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
        }

        .combo:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 46px rgba(0, 0, 0, .34);
            border-color: rgba(200, 169, 107, .35);
        }

        .combo-preview {
            height: 118px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            gap: 6px;
        }

        .combo-preview .sample {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 36px;
            line-height: 1;
        }

        .combo-preview .sub {
            font-family: 'Poppins', sans-serif;
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            opacity: .75;
        }

        .combo-preview .avoid-mark {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 30px;
            color: #e07a7a;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border: 2px solid #e07a7a;
            border-radius: 50%;
        }

        .combo-body {
            padding: 20px 22px 24px;
            background: var(--brown-deep);
            border-top: 1px solid var(--line-dark);
        }

        .combo-body .clabel {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .02em;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .combo-body .clabel .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        .combo-body.is-avoid .clabel {
            color: #e07a7a;
        }

        .combo-body.is-avoid .clabel .dot {
            background: #e07a7a;
        }

        .combo-body .cdesc {
            margin-top: 10px;
            font-size: 13px;
            color: var(--ivory);
            opacity: .75;
            line-height: 1.65;
        }

        .combo-chips {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .combo-chip {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            flex-shrink: 0;
            border: 2px solid rgba(248, 244, 236, .25);
            transition: transform .25s var(--ease), border-color .25s;
            position: relative;
        }

        .combo-chip:hover {
            transform: scale(1.22);
            border-color: var(--gold);
        }

        .combo-copy-all {
            margin-left: auto;
            font-family: 'Poppins', sans-serif;
            font-size: 10.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--gold-soft);
            opacity: .7;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(226, 205, 162, .3);
            padding: 6px 12px;
            border-radius: 20px;
            transition: opacity .25s, border-color .25s;
        }

        .combo-copy-all:hover {
            opacity: 1;
            border-color: var(--gold);
        }

        table.type-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 14px;
        }

        table.type-table tr {
            transition: background .25s var(--ease);
        }

        table.type-table tr:hover {
            background: rgba(200, 169, 107, .06);
        }

        table.type-table td {
            padding: 16px 14px 16px 0;
            border-bottom: 1px solid var(--line-dark);
            font-size: 14.5px;
            line-height: 1.6;
        }

        table.type-table td:first-child {
            color: var(--gold);
            font-weight: 700;
            width: 28%;
            font-family: 'Montserrat', sans-serif;
            font-size: 13.5px;
            vertical-align: top;
            padding-top: 20px;
        }

        table.type-table td:last-child {
            opacity: .9;
        }

        .lang-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 16px;
        }

        .lang-card {
            border: 1px solid var(--line-light);
            padding: 24px;
            border-radius: 4px;
            background: var(--white);
            transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
        }

        .lang-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 18px 32px rgba(0, 0, 0, .09);
        }

        .lang-card .lname {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--gold);
            font-size: 13.5px;
            letter-spacing: .02em;
        }

        .lang-card .lsample {
            margin-top: 14px;
            font-size: 28px;
            line-height: 1.4;
            color: var(--midnight);
        }

        .lang-card .lsample.font-mukta {
            font-family: 'Mukta Vaani', sans-serif;
            font-weight: 600;
        }

        .lang-card .lsample.font-hind {
            font-family: 'Hind Vadodara', sans-serif;
            font-weight: 600;
        }

        .lang-card .lsample.font-fallback {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-style: italic;
            font-size: 13px;
            color: #888;
            opacity: .85;
        }

        .lang-card .ltag {
            display: inline-block;
            margin-top: 12px;
            font-size: 10.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--maroon);
            opacity: .85;
            font-weight: 600;
        }

        .lang-card p {
            margin-top: 10px;
            font-size: 13.5px;
            color: #4a4a4a;
            opacity: 1;
            line-height: 1.7;
        }

        .type-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 16px;
        }

        .type-card {
            border: 1px solid var(--line-light);
            padding: 24px;
            border-radius: 4px;
            background: var(--white);
            transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
        }

        .type-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 18px 32px rgba(0, 0, 0, .09);
        }

        .type-card .tname {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--gold);
            font-size: 13.5px;
            letter-spacing: .02em;
        }

        .type-card .tsample {
            margin-top: 14px;
            font-size: 27px;
            line-height: 1.3;
            color: var(--midnight);
        }

        .type-card .ttag {
            display: inline-block;
            margin-top: 12px;
            font-size: 10.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--maroon);
            opacity: .85;
            font-weight: 600;
        }

        .type-card p {
            margin-top: 10px;
            font-size: 13.5px;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .hier-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 16px;
        }

        .hier-card {
            border: 1px solid var(--line-light);
            padding: 22px 24px;
            border-radius: 4px;
            background: var(--white);
            transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
        }

        .hier-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 18px 32px rgba(0, 0, 0, .09);
        }

        .hier-card .hlabel {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--gold);
            font-size: 12.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .hier-card .hspec {
            margin-top: 8px;
            font-size: 13px;
            color: #666;
            line-height: 1.55;
        }

        .hier-card .hpreview {
            margin-top: 16px;
            line-height: 1.25;
        }

        .rules-list li {
            font-size: 14.5px;
            padding: 12px 0;
            border-bottom: 1px solid var(--line-dark);
            opacity: .9;
            position: relative;
            padding-left: 22px;
        }

        .rules-list li::before {
            content: "◆";
            font-size: 8px;
            position: absolute;
            left: 0;
            top: 18px;
            color: var(--gold);
        }

        .subhead {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold);
            margin: 44px 0 4px;
            position: relative;
            z-index: 2;
        }

        table.formats {
            width: 100%;
            border-collapse: collapse;
            margin-top: 14px;
        }

        table.formats th {
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--maroon);
            padding: 14px 18px;
            border-bottom: 2px solid var(--midnight);
        }

        table.formats td {
            padding: 17px 18px;
            font-size: 13.5px;
            border-bottom: 1px solid var(--line-light);
            color: #333;
        }

        table.formats tr:hover td {
            background: var(--ivory);
        }

        .principles-list {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .principles-list li {
            font-size: 13.5px;
            padding: 16px 18px;
            background: var(--ivory);
            border-radius: 3px;
            line-height: 1.6;
            color: #3c3c3c;
            opacity: 1;
            position: relative;
            border-left: 3px solid var(--gold);
        }

        .pattern-band {
            height: 230px;
            border-radius: 4px;
            margin-bottom: 56px;
            position: relative;
            overflow: hidden;
            background-color: var(--brown-deep);
            background-image:
                linear-gradient(45deg, transparent 45%, rgba(200, 169, 107, .18) 45%, rgba(200, 169, 107, .18) 50%, transparent 50%),
                linear-gradient(45deg, transparent 45%, rgba(200, 169, 107, .18) 45%, rgba(200, 169, 107, .18) 50%, transparent 50%);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
            animation: driftPattern 16s linear infinite;
            border: 1px solid rgba(200, 169, 107, .15);
        }

        @keyframes driftPattern {
            to {
                background-position: 120px 120px, 150px 150px;
            }
        }

        .pattern-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 14px;
            font-size: 14.5px;
            line-height: 1.65;
            opacity: .88;
        }

        .pattern-list li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 16px;
        }

        .chevron-demo {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 38px;
            color: var(--maroon);
            font-weight: 700;
            margin-bottom: 6px;
        }

        .angle-tag {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 15px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--white);
            background: var(--maroon);
            padding: 9px 18px;
            transform: rotate(-3deg);
            border-radius: 2px;
            margin-bottom: 36px;
        }

        .ge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
            margin-top: 8px;
        }

        .ge-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            color: var(--maroon);
            margin-bottom: 12px;
        }

        .ge-card ul li {
            font-size: 13.5px;
            padding: 7px 0;
            color: #e6e5e5;
            position: relative;
            padding-left: 16px;
            line-height: 1.6;
        }

        .ge-card ul li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        .stationery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .stat-card {
            border: 1px solid var(--line-dark);
            padding: 24px;
            border-radius: 3px;
            transition: border-color .3s;
        }

        .stat-card:hover {
            border-color: var(--gold);
        }

        .stat-card .sc-title {
            font-family: 'Montserrat', sans-serif;
            color: var(--gold);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .stat-card p {
            font-size: 13.5px;
            opacity: .85;
            line-height: 1.7;
        }

        .sig-card {
            margin-top: 52px;
            border: 1px dashed rgba(200, 169, 107, .4);
            padding: 30px;
            border-radius: 3px;
        }

        .sig-card h4 {
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 16px;
            font-size: 15px;
        }

        .sig-card li {
            font-size: 13.5px;
            padding: 7px 0;
            opacity: .88;
        }

        .promo-list {
            margin-top: 20px;
        }

        .promo-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 14px;
            font-size: 14px;
            opacity: .88;
            line-height: 1.6;
        }

        .promo-list li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 16px;
        }

        .voice-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }

        .voice-card {
            padding: 24px 18px;
            border: 1px solid var(--line-light);
            border-radius: 3px;
            text-align: left;
            transition: transform .3s var(--ease);
        }

        .voice-card:hover {
            transform: translateY(-5px);
        }

        .voice-card .vname {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--gold);
            font-size: 14.5px;
        }

        .voice-card p {
            font-size: 13px;
            margin-top: 10px;
            color: #ebe6e6;
            line-height: 1.65;
        }

        .tabs {
            margin-top: 60px;
        }

        .tab-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            border-bottom: 1px solid var(--line-light);
            padding-bottom: 16px;
        }

        .tab-btn {
            font-size: 12.5px;
            padding: 10px 18px;
            border: 1px solid var(--line-light);
            background: var(--white);
            cursor: pointer;
            border-radius: 22px;
            color: #444;
            transition: .25s;
            font-family: 'Poppins', sans-serif;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--midnight);
            color: var(--ivory);
            border-color: var(--midnight);
        }

        .tab-panels {
            margin-top: 28px;
            min-height: 100px;
        }

        .tab-panel {
            display: none;
            font-size: 15px;
            line-height: 1.8;
            color: #c8c8c8;
            max-width: 660px;
        }

        .tab-panel.active {
            display: block;
        }

        .tab-panel .ctx {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            letter-spacing: .05em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        .approval-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
        }

        .steps {
            counter-reset: step;
        }

        .steps li {
            counter-increment: step;
            position: relative;
            padding: 18px 0 18px 48px;
            border-bottom: 1px solid var(--line-dark);
            font-size: 14.5px;
            opacity: .9;
            line-height: 1.6;
        }

        .steps li::before {
            content: counter(step, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 16px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--gold);
            font-size: 15px;
        }

        .warn-box {
            background: var(--maroon);
            color: var(--ivory);
            padding: 28px;
            border-radius: 3px;
            font-size: 13.5px;
            line-height: 1.75;
        }

        .warn-box strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold-soft);
            margin-bottom: 12px;
        }

        .use-table {
            width: 100%;
            margin-top: 26px;
            border-collapse: collapse;
        }

        .use-table td {
            padding: 16px 0;
            border-top: 1px solid var(--line-dark);
            font-size: 13.5px;
            opacity: .87;
            line-height: 1.55;
        }

        .use-table td:first-child {
            color: var(--gold);
            font-weight: 600;
            width: 32%;
        }

        .closing-mark {
            margin-top: 80px;
            padding-top: 36px;
            border-top: 1px solid var(--line-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            letter-spacing: .08em;
            text-transform: uppercase;
            opacity: .6;
            position: relative;
            z-index: 2;
        }

        .closing-mark .diamond {
            width: 7px;
            height: 7px;
            background: var(--gold);
            transform: rotate(45deg);
            flex-shrink: 0;
        }

        @media (max-width: 900px) {
            :root {
             
                --slant: 7vw;
            }

            .spine-track {
                display: none;
            }

            body {
                padding-left: 0;
            }

            .grid-2,
            .mv-grid,
            .info-cols,
            .logo-versions,
            .approval-grid {
                grid-template-columns: 1fr;
            }

            .repertoire {
                grid-template-columns: repeat(2, 1fr);
            }

            .lang-grid {
                grid-template-columns: 1fr;
            }

            .type-grid {
                grid-template-columns: 1fr;
            }

            .hier-grid {
                grid-template-columns: 1fr;
            }

            .swatch-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .voice-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ge-grid {
                grid-template-columns: 1fr;
            }

            .principles-list {
                grid-template-columns: 1fr;
            }

            .stationery-grid {
                grid-template-columns: 1fr;
            }

            .dodont {
                grid-template-columns: 1fr;
            }

            section {
                padding: 100px 22px;
            }

            section.cut {
                padding-top: calc(100px + var(--slant));
            }

            .chapter-mark {
                font-size: clamp(90px, 26vw, 140px);
            }
        }/* End custom CSS */