:root {
    --ink: #17201d;
    --forest: #17372d;
    --forest-deep: #0e2922;
    --sage: #596d63;
    --cream: #f5f1e8;
    --paper: #fbfaf6;
    --sand: #ded3c2;
    --copper: #995636;
    --gold: #c59a58;
    --line: rgba(23, 32, 29, .14);
    --white: #fff;
    --shadow: 0 28px 80px rgba(20, 34, 29, .12);
    --sans: "DM Sans", Arial, sans-serif;
    --display: "Manrope", Arial, sans-serif;
    --serif: "Playfair Display", Georgia, serif;
    --container: 1240px;
    --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.04em; line-height: 1.08; }
h1 { font-size: clamp(3.25rem, 7vw, 7.8rem); font-weight: 600; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h1 em, h2 em { color: var(--copper); font-family: var(--serif); font-weight: 500; }
::selection { color: var(--white); background: var(--copper); }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(90px, 11vw, 150px) 0; }
.section-tint { background: var(--cream); }
.section-warm { background: #efe5d7; }
.section-dark { color: var(--white); background: var(--forest-deep); }
.eyebrow {
    margin-bottom: 24px;
    color: var(--copper);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}
.eyebrow-light { color: #d7b382; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.4rem); line-height: 1.65; }
.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 45px; padding-inline: 21px; }
.button-primary { color: var(--white); background: var(--copper); }
.button-primary:hover { background: #7e4229; }
.button-dark { color: var(--white); background: var(--forest); }
.button-dark:hover { background: var(--forest-deep); }
.button-light { color: var(--forest); background: var(--white); }
.button-light:hover { background: var(--cream); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.text-link, .card-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: .9rem;
    font-weight: 700;
}
.text-link span, .card-link span { transition: transform .2s ease; }
.text-link:hover span, .card-link:hover span { transform: translateX(5px); }

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 246, .94);
    transition: height .3s ease, box-shadow .3s ease;
}
.site-header.is-sticky {
    position: fixed;
    inset: 0 0 auto;
    height: 72px;
    box-shadow: 0 10px 35px rgba(20, 32, 28, .07);
    backdrop-filter: blur(16px);
    animation: header-in .35s ease both;
}
@keyframes header-in { from { transform: translateY(-100%); } }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
    display: grid;
    width: 40px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--forest);
    transform: rotate(45deg);
}
.brand-mark span {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    transform: rotate(-45deg);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--display); font-size: 1rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 4px; color: var(--sage); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
.primary-nav ul { display: flex; gap: clamp(18px, 2.6vw, 38px); margin: 0; padding: 0; list-style: none; }
.primary-nav ul a { position: relative; padding: 10px 0; font-size: .82rem; font-weight: 600; }
.primary-nav ul a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.primary-nav ul a:hover::after, .primary-nav ul a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }

/* Home hero */
.hero { position: relative; }
.hero-home {
    min-height: calc(100vh - var(--header-height));
    padding: clamp(65px, 8vw, 105px) 0 0;
    background: linear-gradient(135deg, var(--paper) 60%, #e6ded0 60%);
    overflow: hidden;
}
.hero-backdrop { position: absolute; inset: 0; pointer-events: none; }
.weave { position: absolute; display: block; border: 1px solid rgba(185, 114, 75, .2); border-radius: 50%; }
.weave-one { width: 520px; height: 520px; top: -270px; left: 34%; }
.weave-two { width: 840px; height: 840px; right: -420px; bottom: -580px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.hero-copy h1 { margin-bottom: 32px; font-size: clamp(3.8rem, 6.6vw, 7rem); }
.hero-intro { max-width: 590px; margin-bottom: 38px; color: #4f5d57; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-visual { min-width: 0; }
.fabric-frame { position: relative; max-width: 500px; height: min(55vw, 610px); min-height: 490px; margin-left: auto; }
.fabric-image {
    position: absolute;
    inset: 0 34px 0 0;
    overflow: hidden;
    background:
        linear-gradient(125deg, transparent 0 42%, rgba(255,255,255,.12) 43%, transparent 49%),
        linear-gradient(160deg, #244b3e, #112c24 60%, #081b16);
    box-shadow: var(--shadow);
}
.fabric-image::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .34;
    background: repeating-linear-gradient(92deg, transparent 0 9px, rgba(255,255,255,.13) 10px, transparent 12px);
    transform: skewX(-13deg) scale(1.3);
}
.fabric-image::after {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    content: "";
    background: linear-gradient(transparent, rgba(5, 20, 16, .82));
}
.fabric-ridges { position: absolute; width: 160%; height: 80%; top: -4%; left: -46%; border: 40px solid rgba(255,255,255,.04); border-radius: 50%; transform: rotate(-18deg); }
.fabric-ridges::before, .fabric-ridges::after { position: absolute; inset: -100px; content: ""; border: 28px solid rgba(255,255,255,.035); border-radius: 50%; }
.fabric-ridges::after { inset: -180px; }
.visual-label { position: absolute; z-index: 2; bottom: 36px; left: 34px; color: var(--white); font-size: .78rem; font-weight: 600; letter-spacing: .13em; line-height: 1.8; text-transform: uppercase; }
.year-seal {
    position: absolute;
    z-index: 3;
    right: -20px;
    bottom: 74px;
    display: grid;
    width: 125px;
    aspect-ratio: 1;
    place-content: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: var(--copper);
    text-align: center;
    box-shadow: 0 18px 45px rgba(66, 34, 21, .2);
}
.year-seal span { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.year-seal strong { font-family: var(--serif); font-size: 1.85rem; font-weight: 500; }
.vertical-note { position: absolute; right: -54px; top: 40px; color: var(--sage); font-size: .55rem; letter-spacing: .24em; writing-mode: vertical-rl; }
.hero-metrics {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid var(--line);
}
.hero-metrics > div { display: grid; gap: 2px; padding: 27px 22px; border-right: 1px solid var(--line); }
.hero-metrics > div:first-child { border-left: 1px solid var(--line); }
.hero-metrics strong { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }
.hero-metrics span { color: var(--sage); font-size: .72rem; }

.split-heading { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 10vw, 150px); }
.split-heading h2 { max-width: 690px; }
.prose { max-width: 570px; padding-top: 42px; }
.prose p { color: #52605a; }
.prose .text-link { margin-top: 18px; color: var(--ink); }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 58px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin-bottom: 4px; color: #627069; }
.section-heading-centered { display: block; text-align: center; }

/* Business cards */
.business-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.business-card { position: relative; min-height: 690px; overflow: hidden; color: var(--white); }
.business-card-warm { background: #633e2f; }
.business-card-green { background: var(--forest); }
.card-number { position: absolute; z-index: 3; top: 28px; left: 30px; font-size: .68rem; letter-spacing: .15em; }
.business-card-visual { position: absolute; inset: 0; overflow: hidden; }
.business-card-visual::after { position: absolute; inset: 35% 0 0; content: ""; background: linear-gradient(transparent, rgba(7,15,12,.92)); }
.visual-kuberlaxmi { background: linear-gradient(135deg, #c09072, #7d4b38 48%, #3d241c); }
.thread-line { position: absolute; width: 180%; height: 160px; left: -35%; border: 2px solid rgba(255,255,255,.18); border-radius: 50%; transform: rotate(-28deg); }
.thread-line:nth-child(1) { top: 8%; }
.thread-line:nth-child(2) { top: 24%; left: -20%; }
.thread-line:nth-child(3) { top: 40%; left: -48%; }
.visual-mahalaxmi { background: linear-gradient(140deg, #456a5d, #16382e 55%, #0a211b); }
.velvet-fold { position: absolute; top: -15%; width: 36%; height: 85%; border-radius: 0 0 48% 48%; filter: blur(2px); transform: rotate(13deg); }
.fold-one { left: -5%; background: linear-gradient(90deg, #112d25, #527467, #183b30); }
.fold-two { left: 23%; background: linear-gradient(90deg, #0d281f, #3f6658, #102f26); }
.fold-three { left: 57%; background: linear-gradient(90deg, #0e2b23, #58776b, #0b251e); }
.business-card-content { position: absolute; z-index: 2; right: 42px; bottom: 42px; left: 42px; }
.card-kicker { margin-bottom: 16px; color: #dfc3ac; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.business-card h3 { margin-bottom: 20px; font-size: clamp(2rem, 3.7vw, 3.7rem); }
.business-card p:not(.card-kicker) { max-width: 510px; color: rgba(255,255,255,.72); }
.card-link { margin-top: 13px; }

/* Generation and values */
.generation-section { overflow: hidden; }
.generation-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.generation-visual { position: relative; min-height: 570px; }
.generation-card { position: relative; z-index: 2; width: 78%; height: 490px; padding: 44px; color: var(--white); background: var(--forest); box-shadow: var(--shadow); }
.generation-card::after { position: absolute; inset: 0; content: ""; opacity: .13; background: repeating-linear-gradient(45deg, transparent 0 14px, #fff 15px, transparent 16px); }
.large-year { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(4.8rem, 9vw, 8.6rem); line-height: 1; }
.generation-card p { position: absolute; z-index: 2; right: 38px; bottom: 32px; left: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.35); }
.generation-pattern { position: absolute; right: 0; bottom: 0; width: 54%; height: 62%; background: var(--sand); }
.generation-pattern::before { position: absolute; inset: 0; content: ""; opacity: .4; background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(23,32,29,.18) 19px, transparent 20px); }
.generation-copy > p:not(.eyebrow) { max-width: 600px; color: #52605a; }
.generation-copy blockquote { margin: 34px 0; padding: 9px 0 9px 25px; border-left: 2px solid var(--copper); font-family: var(--serif); font-size: 1.24rem; }
.values-section { padding-top: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-item { min-height: 210px; padding: 28px 22px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item span, .principle-row > span, .capability-card > span, .fabric-type > span, .blade-row > span {
    color: var(--copper);
    font-size: .65rem;
    letter-spacing: .14em;
}
.value-item h3 { margin: 52px 0 8px; font-size: 1.1rem; }
.value-item p { margin: 0; color: var(--sage); font-size: .82rem; }

/* Interior page heroes */
.page-hero { position: relative; padding: clamp(100px, 13vw, 180px) 0 clamp(90px, 11vw, 145px); overflow: hidden; }
.page-hero::before {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -250px;
    content: "";
    border: 1px solid var(--line);
    border-radius: 50%;
}
.page-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.6rem, 7.6vw, 7.8rem); }
.page-hero-lead { max-width: 450px; margin-bottom: 10px; color: #59665f; font-size: clamp(1.06rem, 1.5vw, 1.3rem); }
.page-hero-band { position: absolute; right: 0; bottom: 0; left: 0; display: flex; height: 12px; }
.page-hero-band span:nth-child(1) { width: 52%; background: var(--forest); }
.page-hero-band span:nth-child(2) { width: 30%; background: var(--copper); }
.page-hero-band span:nth-child(3) { flex: 1; background: var(--sand); }
.editorial-grid { display: grid; grid-template-columns: .35fr 1fr; gap: clamp(50px, 9vw, 130px); }
.editorial-label { display: flex; align-items: start; gap: 20px; padding-top: 12px; border-top: 1px solid var(--line); }
.editorial-label span { color: var(--copper); font-size: .68rem; }
.editorial-label p { margin: 0; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.editorial-content { max-width: 850px; }
.editorial-content p { max-width: 700px; color: #52605a; }
.editorial-content .lead { color: var(--ink); }
.statement-grid { display: grid; grid-template-columns: .34fr 1fr; gap: 80px; align-items: start; }
.statement { max-width: 930px; margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.04em; line-height: 1.27; }
.principle-list { border-top: 1px solid var(--line); }
.principle-row { display: grid; grid-template-columns: 60px .7fr 1fr; gap: 25px; align-items: center; padding: 31px 0; border-bottom: 1px solid var(--line); }
.principle-row h3, .principle-row p { margin: 0; }
.principle-row p { color: var(--sage); }
.two-column-content { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; }
.today-business { display: grid; gap: 5px; padding: 24px 0; border-top: 1px solid var(--line); }
.today-business span { color: var(--sage); }
.today-section .text-link { margin-top: 25px; }

/* Story */
.story-hero { color: var(--white); background: var(--forest-deep); text-align: center; }
.story-hero::before { border-color: rgba(255,255,255,.12); }
.story-hero-inner { position: relative; z-index: 2; max-width: 1000px; }
.story-hero h1 { margin-bottom: 28px; }
.story-hero-inner > p:last-of-type { max-width: 590px; margin: 0 auto; color: rgba(255,255,255,.65); font-size: 1.08rem; }
.story-thread { position: absolute; bottom: -400px; left: 50%; width: 720px; height: 720px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translateX(-50%); }
.timeline-section { padding-bottom: 40px; }
.timeline-entry { position: relative; display: grid; grid-template-columns: .35fr 30px 1fr; gap: 45px; min-height: 520px; }
.timeline-entry::after { position: absolute; top: 18px; bottom: -18px; left: calc(35% + 14px); width: 1px; content: ""; background: var(--line); }
.timeline-entry:last-child::after { bottom: 50%; }
.timeline-year { padding-top: 5px; text-align: right; }
.timeline-year span { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1; }
.timeline-year small { color: var(--sage); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.timeline-marker { position: relative; z-index: 2; width: 13px; height: 13px; margin: 13px auto 0; border: 3px solid var(--paper); border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 1px var(--copper); }
.timeline-content { max-width: 730px; padding-bottom: 100px; }
.timeline-content h2 { font-size: clamp(2.3rem, 4vw, 4.1rem); }
.timeline-content p:not(.eyebrow) { color: #52605a; }
.timeline-content .lead { color: var(--ink); }
.timeline-entry-featured .timeline-content { padding: 65px; color: var(--white); background: var(--forest); }
.timeline-entry-featured .timeline-content p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.timeline-entry-featured .timeline-content .lead { color: var(--white); }
.story-quote-section { background: var(--cream); }
.story-quote { position: relative; max-width: 900px; margin: auto; text-align: center; }
.story-quote > span { color: var(--copper); font-family: var(--serif); font-size: 7rem; line-height: .4; }
.story-quote p { margin: 28px 0 0; font-family: var(--display); font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.18; }
.story-quote em { color: var(--copper); font-family: var(--serif); font-weight: 500; }

/* Businesses */
.business-hero { background: var(--cream); }
.business-feature { padding: clamp(90px, 11vw, 150px) 0; }
.business-feature-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 10vw, 145px); align-items: center; }
.business-feature-reverse { grid-template-columns: 1fr .9fr; }
.business-feature-reverse .business-feature-visual { order: 2; }
.business-feature-visual { position: relative; min-height: 650px; overflow: hidden; }
.business-feature-visual > p { position: absolute; z-index: 3; bottom: 30px; left: 34px; color: rgba(255,255,255,.8); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.feature-number { position: absolute; z-index: 3; top: 28px; left: 30px; color: var(--white); font-size: .7rem; }
.loom-art { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(145deg, #be8969, #714333 65%, #3c241c); }
.loom-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(20deg, rgba(25,13,8,.55), transparent 60%); }
.loom-art span { position: absolute; width: 160%; height: 140px; left: -32%; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; transform: rotate(-24deg); }
.loom-art span:nth-child(1) { top: 3%; }.loom-art span:nth-child(2) { top: 17%; }.loom-art span:nth-child(3) { top: 31%; }
.loom-art span:nth-child(4) { top: 45%; }.loom-art span:nth-child(5) { top: 59%; }.loom-art span:nth-child(6) { top: 73%; }
.business-feature-copy { max-width: 610px; }
.business-feature-copy h2 { margin-bottom: 28px; }
.business-feature-copy > p:not(.eyebrow) { color: #57645e; }
.feature-list { margin: 35px 0 40px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { position: relative; padding: 15px 0 15px 30px; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 600; }
.feature-list li::before { position: absolute; left: 3px; content: "◇"; color: var(--copper); }
.business-feature-maha { color: var(--white); background: var(--forest-deep); }
.business-feature-maha .business-feature-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.business-feature-maha .feature-list { border-color: rgba(255,255,255,.15); }
.business-feature-maha .feature-list li { border-color: rgba(255,255,255,.15); }
.velvet-art { position: absolute; inset: 0; overflow: hidden; background: #142f27; }
.velvet-art span { position: absolute; top: -10%; width: 40%; height: 120%; border-radius: 50%; filter: blur(3px); transform: rotate(14deg); }
.velvet-art span:nth-child(1) { left: -15%; background: linear-gradient(90deg,#0b211a,#3c6355,#102b23); }
.velvet-art span:nth-child(2) { left: 16%; background: linear-gradient(90deg,#0b211a,#58796d,#102b23); }
.velvet-art span:nth-child(3) { left: 49%; background: linear-gradient(90deg,#0b211a,#42675a,#102b23); }
.velvet-art span:nth-child(4) { left: 80%; background: linear-gradient(90deg,#0b211a,#628175,#102b23); }
.businesses-principle { background: #e7ddce; }

/* Company pages */
.company-hero { position: relative; min-height: 740px; padding: 60px 0; overflow: hidden; background: #eadaca; }
.company-hero-inner { position: relative; z-index: 2; min-height: 620px; display: flex; flex-direction: column; justify-content: space-between; }
.back-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 12px; font-size: .76rem; font-weight: 700; }
.back-link-light { color: rgba(255,255,255,.8); }
.company-title { max-width: 850px; }
.company-title h1 { margin-bottom: 25px; }
.company-title > p:last-child { max-width: 450px; font-size: 1.1rem; }
.company-seal { position: absolute; right: 0; bottom: 0; display: grid; width: 140px; aspect-ratio: 1; place-content: center; border: 1px solid var(--ink); border-radius: 50%; text-align: center; }
.company-seal span { font-family: var(--serif); font-size: 1.8rem; }
.company-seal small { font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; }
.company-hero-art { position: absolute; width: 46%; inset: 0 0 0 auto; overflow: hidden; }
.company-hero-kuber .company-hero-art { background: linear-gradient(150deg, #84513b, #3c231b); }
.kuber-thread { position: absolute; width: 150%; height: 300px; left: -40%; border: 2px solid rgba(255,255,255,.22); border-radius: 50%; transform: rotate(-20deg); }
.thread-a { top: -3%; }.thread-b { top: 28%; }.thread-c { top: 58%; }
.fashion-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(80px, 11vw, 150px); align-items: center; }
.fashion-art { position: relative; min-height: 570px; }
.fashion-card { position: absolute; width: 70%; height: 80%; box-shadow: var(--shadow); }
.card-back { top: 0; left: 0; background: var(--sand); transform: rotate(-7deg); }
.card-front { right: 5%; bottom: 0; display: grid; place-items: center; color: var(--white); background: var(--forest); }
.card-front::before { position: absolute; inset: 0; content: ""; opacity: .13; background: repeating-linear-gradient(90deg, transparent 0 12px, white 13px, transparent 14px); }
.card-front span { position: relative; font-family: var(--serif); font-size: 3rem; text-align: center; }
.fashion-stitch { position: absolute; z-index: 3; width: 110px; height: 110px; right: 0; top: 55px; border: 2px dashed var(--copper); border-radius: 50%; }
.privacy-note { display: flex; gap: 18px; margin-top: 36px; padding: 20px; border: 1px solid rgba(185,114,75,.35); }
.privacy-note span { color: var(--copper); }
.privacy-note p { margin: 0; font-size: .85rem; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); }
.capability-card h3 { margin: 75px 0 12px; }
.capability-card p { color: var(--sage); font-size: .9rem; }
.company-contact { padding: 80px 0; color: var(--white); background: #6a4332; }
.company-contact-green { background: var(--forest); }
.company-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.company-contact h2 { max-width: 800px; margin: 0; font-size: clamp(2rem, 4.2vw, 4.2rem); }

.company-hero-maha { color: var(--white); background: var(--forest-deep); }
.maha-art { background: #17372d; }
.maha-fold { position: absolute; top: -12%; width: 45%; height: 125%; border-radius: 50%; filter: blur(4px); transform: rotate(12deg); }
.fold-a { left: -22%; background: linear-gradient(90deg,#092019,#517166,#0b251e); }
.fold-b { left: 13%; background: linear-gradient(90deg,#0c241d,#365b4e,#0a211a); }
.fold-c { left: 48%; background: linear-gradient(90deg,#0a211a,#648076,#102b23); }
.fold-d { left: 82%; background: linear-gradient(90deg,#0a211a,#3d6356,#102b23); }
.company-seal-light { border-color: rgba(255,255,255,.6); }
.production-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 100px; align-items: center; }
.production-grid > div:first-child { max-width: 700px; }
.capacity-card { position: relative; min-height: 430px; padding: 45px; color: var(--white); background: var(--copper); overflow: hidden; }
.capacity-card p { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.capacity-card strong { position: relative; z-index: 2; display: block; margin: 80px 0 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.07em; line-height: 1; }
.capacity-card small { position: relative; z-index: 2; font-size: .8rem; }
.capacity-lines span { position: absolute; width: 130%; height: 120px; left: -15%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: rotate(-18deg); }
.capacity-lines span:nth-child(1) { top: 0; }.capacity-lines span:nth-child(2) { top: 28%; }.capacity-lines span:nth-child(3) { top: 57%; }
.fabric-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fabric-type { padding: 12px 12px 28px; background: var(--paper); box-shadow: 0 12px 35px rgba(26,38,33,.06); }
.fabric-swatch { position: relative; height: 280px; margin-bottom: 25px; overflow: hidden; }
.fabric-swatch::after { position: absolute; inset: 0; content: ""; background: repeating-linear-gradient(95deg, transparent 0 8px, rgba(255,255,255,.12) 9px, transparent 11px); transform: scale(1.3) rotate(7deg); }
.swatch-9000 { background: linear-gradient(145deg, #6f2f38, #35161c); }
.swatch-11000 { background: linear-gradient(145deg, #1b584b, #0e2922); }
.swatch-ice { background: linear-gradient(145deg, #779393, #354c50); }
.fabric-type h3 { margin: 18px 12px 10px; }
.fabric-type > span, .fabric-type p { margin-inline: 12px; }
.fabric-type p { color: var(--sage); font-size: .86rem; }
.blades-section { background: #e8e0d3; }
.blades-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.blades-copy { max-width: 600px; }
.blade-list { border-top: 1px solid var(--line); }
.blade-row { display: grid; grid-template-columns: 50px 1fr 30px; gap: 18px; align-items: center; min-height: 105px; border-bottom: 1px solid var(--line); }
.blade-row h3 { margin: 0; font-size: clamp(1.15rem, 2vw, 1.6rem); }
.blade-row i { font-style: normal; transition: transform .25s; }
.blade-row:hover i { transform: translate(4px,-4px); }

/* Contact */
.contact-hero { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(60px, 9vw, 125px); }
.contact-details h2 { margin-bottom: 55px; }
.contact-detail { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-detail > span { display: block; margin-bottom: 6px; color: var(--sage); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-detail a, .contact-detail p { margin: 0; font-size: 1.05rem; font-weight: 600; }
.contact-details .button { margin-top: 30px; }
.enquiry-panel { padding: clamp(30px, 5vw, 60px); border: 1px solid var(--line); background: var(--white); box-shadow: 0 25px 75px rgba(22,36,30,.07); }
.enquiry-panel h2 { margin-bottom: 15px; font-size: clamp(2rem, 4vw, 3.5rem); }
.enquiry-panel > p:not(.eyebrow) { margin-bottom: 40px; color: var(--sage); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { margin-bottom: 22px; }
.form-field label { display: block; margin-bottom: 8px; font-size: .74rem; font-weight: 700; }
.form-field label span { color: var(--copper); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #aeb6b2;
    border-radius: 0;
    padding: 12px 2px;
    color: var(--ink);
    background: transparent;
    outline: none;
    transition: border-color .2s;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--copper); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9da7a2; }
.form-submit { display: flex; align-items: center; gap: 22px; margin-top: 14px; }
.form-submit p { max-width: 160px; margin: 0; color: var(--sage); font-size: .67rem; line-height: 1.5; }
.form-noscript { padding: 15px; background: #fff1dc; }
.contact-business-links { padding: 75px 0; background: var(--forest); color: var(--white); }
.contact-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.contact-link-grid a { display: grid; grid-template-columns: 42px 1fr 25px; align-items: center; padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-link-grid a:first-child { border-right: 1px solid rgba(255,255,255,.18); }
.contact-link-grid span { color: #d7b382; font-size: .65rem; }
.contact-link-grid i { font-style: normal; transition: transform .2s; }
.contact-link-grid a:hover i { transform: translate(4px,-4px); }

/* Footer */
.footer-cta { padding: 80px 0; color: var(--white); background: var(--copper); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-cta h2 { max-width: 830px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4.5rem); }
.site-footer { padding: 75px 0 28px; color: rgba(255,255,255,.72); background: #091b16; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr 1fr .7fr; gap: 70px; padding-bottom: 65px; }
.brand-light { color: var(--white); }
.brand-light .brand-mark { border-color: rgba(255,255,255,.7); }
.footer-brand > p { max-width: 360px; margin: 28px 0 0; font-size: .86rem; }
.footer-column h3 { margin-bottom: 22px; color: var(--white); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin-bottom: 9px; }
.footer-column a { font-size: .82rem; transition: color .2s; }
.footer-column a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 4px; font-size: .82rem; }
.footer-contact a { display: block; margin-bottom: 20px; color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.footer-bottom p { margin: 0; font-size: .65rem; }
.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 12px 30px rgba(12,60,32,.25);
    transition: transform .25s;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; fill: var(--white); }

/* 404 */
.error-page { min-height: 70vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.error-code { display: block; color: var(--copper); font-family: var(--serif); font-size: clamp(6rem, 15vw, 13rem); line-height: .8; }
.error-page h1 { margin: 25px 0 20px; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.error-page p { max-width: 520px; margin: 0 auto 30px; color: var(--sage); }

/* Motion */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal-delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    :root { --header-height: 78px; }
    .js .nav-toggle { display: block; position: relative; z-index: 1002; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .js .primary-nav {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 90px 9vw 45px;
        background: var(--paper);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .25s, visibility .25s, transform .25s;
    }
    .js .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .js .primary-nav ul { display: block; }
    .js .primary-nav ul a { display: block; padding: 10px 0; font-family: var(--display); font-size: clamp(1.8rem, 7vw, 3.5rem); }
    .js .primary-nav ul a::after { display: none; }
    .js .nav-enquire { align-self: flex-start; margin-top: 25px; }
    html:not(.js) .site-header { height: auto; }
    html:not(.js) .header-inner { min-height: var(--header-height); flex-wrap: wrap; padding-block: 14px; }
    html:not(.js) .primary-nav { width: 100%; overflow-x: auto; padding-top: 12px; }
    html:not(.js) .primary-nav ul { gap: 22px; white-space: nowrap; }
    html:not(.js) .nav-enquire { display: none; }
    .hero-grid { grid-template-columns: 1fr  .75fr; gap: 40px; }
    .fabric-frame { min-height: 440px; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .value-item { border-bottom: 1px solid var(--line); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 2; }
    .business-feature-grid, .fashion-grid { gap: 60px; }
    .business-feature-visual { min-height: 560px; }
    .contact-grid { grid-template-columns: .55fr 1fr; gap: 55px; }
}

@media (max-width: 800px) {
    .container { width: min(calc(100% - 34px), var(--container)); }
    .section { padding: 85px 0; }
    .hero-home { padding-top: 70px; background: linear-gradient(155deg, var(--paper) 62%, #e6ded0 62%); }
    .hero-grid, .page-hero-grid, .split-heading, .generation-grid, .editorial-grid, .statement-grid,
    .two-column-content, .business-feature-grid, .business-feature-reverse, .fashion-grid,
    .production-grid, .blades-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 65px; }
    .hero-copy h1 { font-size: clamp(3.2rem, 13vw, 5.7rem); }
    .fabric-frame { width: min(90%, 520px); height: 570px; margin: 0 auto; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); margin-top: 55px; }
    .hero-metrics > div:nth-child(2) { border-right: 1px solid var(--line); }
    .hero-metrics > div:nth-child(3), .hero-metrics > div:nth-child(4) { border-top: 1px solid var(--line); }
    .hero-metrics > div:nth-child(3) { border-left: 1px solid var(--line); }
    .split-heading, .two-column-content { gap: 35px; }
    .prose { padding-top: 0; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 24px; }
    .business-grid { grid-template-columns: 1fr; }
    .business-card { min-height: 620px; }
    .generation-grid { gap: 40px; }
    .generation-visual { min-height: 510px; }
    .generation-card { height: 440px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 95px 0; }
    .page-hero-grid { gap: 35px; }
    .page-hero h1 { font-size: clamp(3.3rem, 13vw, 6rem); }
    .editorial-grid, .statement-grid { gap: 40px; }
    .editorial-content h2 { font-size: clamp(2.3rem, 9vw, 4rem); }
    .principle-row { grid-template-columns: 45px 1fr; }
    .principle-row p { grid-column: 2; }
    .timeline-entry { grid-template-columns: 115px 22px 1fr; gap: 20px; }
    .timeline-entry::after { left: 125px; }
    .timeline-entry-featured .timeline-content { padding: 35px 28px; }
    .business-feature-grid, .business-feature-reverse { gap: 50px; }
    .business-feature-reverse .business-feature-visual { order: 0; }
    .business-feature-visual { min-height: 540px; }
    .company-hero { min-height: 680px; }
    .company-hero-art { width: 42%; opacity: .55; }
    .company-title { max-width: 80%; }
    .company-title h1 { font-size: clamp(3.3rem, 12vw, 6rem); }
    .company-seal { width: 110px; }
    .fashion-art { min-height: 500px; }
    .capability-grid, .fabric-types { grid-template-columns: 1fr; }
    .capability-card { min-height: 220px; }
    .capability-card h3 { margin-top: 45px; }
    .fabric-swatch { height: 330px; }
    .company-contact-inner, .footer-cta-inner { display: block; }
    .company-contact .button, .footer-cta .button { margin-top: 30px; }
    .contact-details { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 25px; }
    .contact-details > .eyebrow, .contact-details > h2, .contact-details > .button { grid-column: 1 / -1; }
    .contact-link-grid { grid-template-columns: 1fr; }
    .contact-link-grid a:first-child { border-right: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: auto; }
}

@media (max-width: 540px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand-mark { width: 34px; }
    .brand-copy strong { font-size: .88rem; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero-copy h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 23px; }
    .fabric-frame { width: calc(100% - 10px); height: 460px; min-height: 460px; }
    .fabric-image { right: 12px; }
    .year-seal { right: -2px; width: 105px; }
    .vertical-note { display: none; }
    .hero-metrics > div { padding: 22px 13px; }
    .hero-metrics span { font-size: .65rem; }
    .business-card { min-height: 550px; }
    .business-card-content { right: 25px; bottom: 30px; left: 25px; }
    .business-card h3 { font-size: 2.35rem; }
    .generation-visual { min-height: 430px; }
    .generation-card { width: 88%; height: 380px; padding: 27px; }
    .generation-card p { left: 27px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-item { min-height: 155px; border-right: 0; }
    .value-item h3 { margin-top: 32px; }
    .page-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
    .principle-row { grid-template-columns: 35px 1fr; }
    .timeline-entry { grid-template-columns: 1fr; gap: 10px; padding-left: 28px; min-height: auto; }
    .timeline-entry::after { top: 8px; bottom: 0; left: 6px; }
    .timeline-year { text-align: left; }
    .timeline-year span { font-size: 2.8rem; }
    .timeline-marker { position: absolute; top: 0; left: 0; width: 13px; }
    .timeline-content { padding: 20px 0 75px; }
    .timeline-entry-featured .timeline-content { margin-left: -10px; padding: 30px 20px; margin-bottom: 60px; }
    .business-feature-visual { min-height: 460px; }
    .company-hero { min-height: 620px; padding-top: 35px; }
    .company-hero-inner { min-height: 540px; }
    .company-hero-art { width: 100%; opacity: .2; }
    .company-title { max-width: 100%; }
    .company-title h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
    .company-seal { width: 88px; }
    .fashion-art { min-height: 400px; }
    .card-front span { font-size: 2.2rem; }
    .fashion-stitch { width: 80px; height: 80px; }
    .capacity-card { min-height: 340px; padding: 30px; }
    .capacity-card strong { margin-top: 60px; font-size: 3.6rem; }
    .fabric-swatch { height: 260px; }
    .blade-row { grid-template-columns: 35px 1fr 20px; min-height: 95px; }
    .contact-details { display: block; }
    .enquiry-panel { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-submit { align-items: flex-start; flex-direction: column; }
    .form-submit p { max-width: none; }
    .contact-link-grid a { padding-inline: 8px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-contact { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .whatsapp-float { width: 52px; right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header, .footer-cta, .whatsapp-float, .nav-toggle { display: none; }
    body { color: #000; background: #fff; }
    .section { padding: 40px 0; }
}
