:root {
    --bg: #0e0e0f;
    --bg-soft: #15151700;
    --bg-elev: #1a1a1c;
    --line: #2a2a2d;
    --ink: #f5f1ea;
    --ink-dim: #b6afa3;
    --ink-mute: #8a8478;
    --tan: #c9a87a;
    --tan-strong: #d6b787;
    --tan-soft: rgba(201, 168, 122, 0.14);
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.05;
    margin: 0;
    color: var(--ink);
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--tan);
}

/* ============== NAV ============== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(to bottom, rgba(14, 14, 15, 0.85) 0%, rgba(14, 14, 15, 0) 100%);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: rgba(14, 14, 15, 0.92);
    padding: 14px 48px;
    border-bottom: 1px solid var(--line);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--ink);
}

.nav-logo a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo a:hover {
    color: var(--tan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.nav-links a {
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--tan);
}

.nav-links a.active {
    color: var(--ink);
}

@media (max-width: 820px) {
    .nav {
        padding: 18px 22px;
    }

    .nav.scrolled {
        padding: 12px 22px;
    }

    .nav-links {
        display: none;
    }
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201, 168, 122, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 168, 122, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0b 0%, #121214 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=1600&q=80');
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%);
    opacity: 0.85;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 15, 0.4) 0%, transparent 50%, rgba(14, 14, 15, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(48px, 7.5vw, 108px);
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    font-family: 'Oswald', serif;
    font-weight: 300;
    color: var(--tan);
}

.hero p.lede {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--ink-dim);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--tan);
    color: #1a1410;
}

.btn-primary:hover {
    background: var(--tan-strong);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 168, 122, 0.28);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(245, 241, 234, 0.25);
}

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

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.hero-meta {
    position: absolute;
    bottom: 40px;
    left: 48px;
    right: 48px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    color: var(--ink-mute);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-meta .scroll-cue {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--tan));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 820px) {
    .hero {
        padding: 100px 22px 60px;
    }

    .hero-image {
        width: 100%;
        opacity: 0.25;
    }

    .hero-meta {
        left: 22px;
        right: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-meta .scroll-cue {
        display: none;
    }
}

/* ============== INTRO BAND ============== */
.intro {
    padding: 100px 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0a0a0b;
    position: relative;
}

.intro-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.intro h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
}

.intro p {
    color: var(--ink-dim);
    font-size: 17px;
    line-height: 1.75;
    text-wrap: pretty;
}

.intro-stats {
    display: flex;
    gap: 56px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    font-weight: 500;
    color: var(--tan);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    margin-top: 8px;
}

@media (max-width: 820px) {
    .intro {
        padding: 60px 22px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-stats {
        gap: 32px;
    }

    .stat-num {
        font-size: 36px;
    }
}

/* ============== BRANDS GRID ============== */
.brands {
    padding: 120px 48px;
    background: var(--bg);
    position: relative;
}

.brands-head {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.brands-head h2 {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 500;
    margin-top: 18px;
    max-width: 700px;
}

.brands-head p {
    color: var(--ink-dim);
    max-width: 380px;
    font-size: 15px;
    line-height: 1.7;
}

.brand-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.brand-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1a1a1c;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.brand-card:hover {
    border-color: var(--tan);
}

.brand-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover .brand-card-image {
    transform: scale(1.06);
}

.brand-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 15, 0.2) 0%, rgba(14, 14, 15, 0.4) 40%, rgba(10, 10, 11, 0.95) 100%);
    transition: background 0.5s ease;
}

.brand-card:hover .brand-card-overlay {
    background: linear-gradient(180deg, rgba(14, 14, 15, 0.3) 0%, rgba(14, 14, 15, 0.6) 30%, rgba(10, 10, 11, 0.98) 100%);
}

.brand-card-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--tan);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-card-tag::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--tan);
}

.brand-card-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: 'Oswald', sans-serif;
    color: var(--ink-mute);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.brand-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px;
    color: var(--ink);
    z-index: 2;
}

.brand-card-body h3 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    margin-bottom: 8px;
}

.brand-card-sub {
    font-size: 13px;
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    margin-bottom: 18px;
}

.brand-card-desc {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease 0.05s,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.5s ease;
    margin-bottom: 0;
}

.brand-card:hover .brand-card-desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 22px;
}

.brand-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    padding: 14px 22px;
    background: rgba(245, 241, 234, 0.06);
    border: 1px solid rgba(245, 241, 234, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-card-cta {
    background: var(--tan);
    color: #1a1410;
    border-color: var(--tan);
}

.brand-card-cta .arrow {
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-card-cta .arrow {
    transform: translateX(4px);
}

/* corner accents */
.corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--tan);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.corner.tl {
    top: 14px;
    left: 14px;
    border-right: 0;
    border-bottom: 0;
}

.corner.tr {
    top: 14px;
    right: 14px;
    border-left: 0;
    border-bottom: 0;
}

.corner.bl {
    bottom: 14px;
    left: 14px;
    border-right: 0;
    border-top: 0;
}

.corner.br {
    bottom: 14px;
    right: 14px;
    border-left: 0;
    border-top: 0;
}

.brand-card:hover .corner {
    opacity: 1;
}

@media (max-width: 820px) {
    .brands {
        padding: 70px 22px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brand-card {
        aspect-ratio: 3 / 4;
    }

    .brand-card-body {
        padding: 24px;
    }

    .brand-card-desc {
        max-height: 200px;
        opacity: 1;
        transform: none;
        margin-bottom: 22px;
    }
}

/* ============== CTA BAND ============== */
.cta-band {
    padding: 120px 48px;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 122, 0.08) 0%, transparent 60%),
        #0a0a0b;
    border-top: 1px solid var(--line);
    text-align: center;
}

.cta-band-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-band h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    margin: 22px 0 24px;
}

.cta-band p {
    color: var(--ink-dim);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.cta-info-item {
    text-align: left;
}

.cta-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    margin-bottom: 6px;
}

.cta-info-val {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--ink);
}

@media (max-width: 820px) {
    .cta-band {
        padding: 70px 22px;
    }

    .cta-info {
        gap: 24px;
    }
}

/* ============== FOOTER ============== */
.footer {
    padding: 70px 48px 32px;
    background: #07070a;
    border-top: 1px solid var(--line);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tan);
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--tan);
}

.footer-col p {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--ink-mute);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--tan);
}

@media (max-width: 820px) {
    .footer {
        padding: 50px 22px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============== REVEAL ============== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.in>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(2) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(3) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(4) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}

/* ============== TWEAKS PANEL ============== */
.twk-panel {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483646;
    width: 280px;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    background: rgba(250, 249, 247, .78);
    color: #29261b;
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border: .5px solid rgba(255, 255, 255, .6);
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 12px 40px rgba(0, 0, 0, .18);
    font: 11.5px/1.4 ui-sans-serif, system-ui, -apple-system, sans-serif;
    overflow: hidden
}

.twk-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px 10px 14px;
    cursor: move;
    user-select: none
}

.twk-hd b {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em
}

.twk-x {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(41, 38, 27, .55);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    cursor: default;
    font-size: 13px;
    line-height: 1
}

.twk-x:hover {
    background: rgba(0, 0, 0, .06);
    color: #29261b
}

.twk-body {
    padding: 2px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .15) transparent
}

.twk-body::-webkit-scrollbar {
    width: 8px
}

.twk-body::-webkit-scrollbar-track {
    background: transparent;
    margin: 2px
}

.twk-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box
}

.twk-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, .25);
    border: 2px solid transparent;
    background-clip: content-box
}

.twk-row {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.twk-row-h {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.twk-lbl {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: rgba(41, 38, 27, .72)
}

.twk-lbl>span:first-child {
    font-weight: 500
}

.twk-val {
    color: rgba(41, 38, 27, .5);
    font-variant-numeric: tabular-nums
}

.twk-sect {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(41, 38, 27, .45);
    padding: 10px 0 0
}

.twk-sect:first-child {
    padding-top: 0
}

.twk-field {
    appearance: none;
    width: 100%;
    height: 26px;
    padding: 0 8px;
    border: .5px solid rgba(0, 0, 0, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .6);
    color: inherit;
    font: inherit;
    outline: none
}

.twk-field:focus {
    border-color: rgba(0, 0, 0, .25);
    background: rgba(255, 255, 255, .85)
}

select.twk-field {
    padding-right: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='rgba(0,0,0,.5)' d='M0 0h10L5 6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center
}

.twk-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    margin: 6px 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .12);
    outline: none
}

.twk-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: .5px solid rgba(0, 0, 0, .12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    cursor: default
}

.twk-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: .5px solid rgba(0, 0, 0, .12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    cursor: default
}

.twk-seg {
    position: relative;
    display: flex;
    padding: 2px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .06);
    user-select: none
}

.twk-seg-thumb {
    position: absolute;
    top: 2px;
    bottom: 2px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
    transition: left .15s cubic-bezier(.3, .7, .4, 1), width .15s
}

.twk-seg.dragging .twk-seg-thumb {
    transition: none
}

.twk-seg button {
    appearance: none;
    position: relative;
    z-index: 1;
    flex: 1;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 500;
    height: 22px;
    border-radius: 6px;
    cursor: default;
    padding: 0
}

.twk-toggle {
    position: relative;
    width: 32px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .15);
    transition: background .15s;
    cursor: default;
    padding: 0
}

.twk-toggle[data-on="1"] {
    background: #34c759
}

.twk-toggle i {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    transition: transform .15s
}

.twk-toggle[data-on="1"] i {
    transform: translateX(14px)
}

.twk-num {
    display: flex;
    align-items: center;
    height: 26px;
    padding: 0 0 0 8px;
    border: .5px solid rgba(0, 0, 0, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .6)
}

.twk-num-lbl {
    font-weight: 500;
    color: rgba(41, 38, 27, .6);
    cursor: ew-resize;
    user-select: none;
    padding-right: 8px
}

.twk-num input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    font-variant-numeric: tabular-nums;
    text-align: right;
    padding: 0 8px 0 0;
    outline: none;
    color: inherit;
    -moz-appearance: textfield
}

.twk-num input::-webkit-inner-spin-button,
.twk-num input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.twk-num-unit {
    padding-right: 8px;
    color: rgba(41, 38, 27, .45)
}

.twk-btn {
    appearance: none;
    height: 26px;
    padding: 0 12px;
    border: 0;
    border-radius: 7px;
    background: rgba(0, 0, 0, .78);
    color: #fff;
    font: inherit;
    font-weight: 500;
    cursor: default
}

.twk-btn:hover {
    background: rgba(0, 0, 0, .88)
}

.twk-btn.secondary {
    background: rgba(0, 0, 0, .06);
    color: inherit
}

.twk-btn.secondary:hover {
    background: rgba(0, 0, 0, .1)
}

.twk-swatch {
    appearance: none;
    -webkit-appearance: none;
    width: 56px;
    height: 22px;
    border: .5px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    padding: 0;
    cursor: default;
    background: transparent;
    flex-shrink: 0
}

.twk-swatch::-webkit-color-swatch-wrapper {
    padding: 0
}

.twk-swatch::-webkit-color-swatch {
    border: 0;
    border-radius: 5.5px
}

.twk-swatch::-moz-color-swatch {
    border: 0;
    border-radius: 5.5px
}

/* ============== SUBPAGES ============== */
.page-content {
    padding: 120px 48px 80px;
    min-height: 100vh;
    background: var(--bg);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--ink);
}

.page-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 20px 0;
    color: var(--ink);
}

.page-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 30px 0 15px 0;
    color: var(--ink);
}

.page-content p {
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.page-content li {
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.page-content a {
    color: var(--tan);
    text-decoration: none;
    transition: color 0.2s;
}

.page-content a:hover {
    color: var(--tan-strong);
}

.page-content section {
    margin-bottom: 40px;
}

@media (max-width: 820px) {
    .page-content {
        padding: 100px 22px 60px;
    }

    .page-content h1 {
        font-size: 48px;
    }
}