:root {
    --twd-black: #080808;
    --twd-charcoal: #111111;
    --twd-charcoal-soft: #181818;
    --twd-gold: #c9a45c;
    --twd-gold-light: #e1c27e;
    --twd-cream: #f5f1e8;
    --twd-white: #ffffff;
    --twd-text: #171717;
    --twd-muted: #74706a;
    --twd-border: #e5ded1;
    --twd-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--twd-white);
    color: var(--twd-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.twd-container {
    width: min(calc(100% - 48px), var(--twd-width));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 20;
    background: var(--twd-black);
    color: var(--twd-white);
    border-bottom: 1px solid rgba(201, 164, 92, .25);
}

.twd-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 32px;
}

.site-brand {
    justify-self: start;
    color: var(--twd-gold);
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-brand .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a,
.twd-header-link {
    color: #eeeeee;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s ease;
}

.primary-navigation a:hover,
.twd-header-link:hover {
    color: var(--twd-gold-light);
}

.twd-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.twd-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--twd-white);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.twd-cart-count {
    min-width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    border: 1px solid rgba(201, 164, 92, .55);
    border-radius: 50px;
    color: var(--twd-gold-light);
    font-size: .72rem;
}


/* HERO */

.twd-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 42%, rgba(201, 164, 92, .13), transparent 26%),
        linear-gradient(135deg, #080808 0%, #111111 55%, #080808 100%);
    color: var(--twd-white);
}

.twd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.twd-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 72px;
    padding-top: 70px;
    padding-bottom: 76px;
}

.twd-eyebrow {
    margin: 0 0 22px;
    color: var(--twd-gold-light);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .22em;
}

.twd-eyebrow-dark {
    color: #9a7538;
}

.twd-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.4vw, 5.5rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.twd-hero h1 em {
    color: var(--twd-gold-light);
    font-weight: 400;
}

.twd-hero-copy {
    max-width: 620px;
    margin: 30px 0 0;
    color: #bcbcbc;
    font-size: 1.06rem;
}

.twd-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.twd-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform .18s ease,
        background .18s ease;
}

.twd-button:hover {
    transform: translateY(-2px);
}

.twd-button-gold {
    background: var(--twd-gold);
    color: #090909;
}

.twd-button-gold:hover {
    background: var(--twd-gold-light);
}

.twd-text-link {
    color: #e9e9e9;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.twd-text-link span {
    margin-left: 7px;
    color: var(--twd-gold);
}

.twd-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 44px;
    color: #8f8f8f;
    font-size: .77rem;
}

.twd-hero-points span::before {
    content: "•";
    margin-right: 8px;
    color: var(--twd-gold);
}


/* CSS WATCH ART */

.twd-hero-art {
    min-height: 500px;
    display: grid;
    place-items: center;
}

.twd-watch-stage {
    position: relative;
    width: min(100%, 460px);
    height: 520px;
    display: grid;
    place-items: center;
}

.twd-watch-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(201, 164, 92, .13);
    filter: blur(55px);
}

.twd-watch {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.twd-watch-strap {
    width: 96px;
    flex: 1;
    background:
        linear-gradient(
            90deg,
            #171717,
            #38332a 45%,
            #171717
        );
    border-left: 1px solid #5e5036;
    border-right: 1px solid #5e5036;
}

.twd-watch-strap-top {
    border-radius: 18px 18px 5px 5px;
}

.twd-watch-strap-bottom {
    border-radius: 5px 5px 18px 18px;
}

.twd-watch-case {
    flex: 0 0 250px;
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border: 8px solid #a47d39;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #f0d292, #8d692f 35%, #e2c077 70%, #8e682e);
    box-shadow:
        0 28px 60px rgba(0,0,0,.55),
        0 0 0 3px #302513;
}

.twd-watch-face {
    position: relative;
    width: 214px;
    height: 214px;
    border: 3px solid #46391f;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, #252525, #0a0a0a 72%);
    box-shadow: inset 0 0 35px rgba(255,255,255,.04);
}

.twd-watch-mark {
    position: absolute;
    background: var(--twd-gold-light);
}

.twd-mark-12,
.twd-mark-6 {
    left: 50%;
    width: 3px;
    height: 18px;
    transform: translateX(-50%);
}

.twd-mark-12 {
    top: 13px;
}

.twd-mark-6 {
    bottom: 13px;
}

.twd-mark-3,
.twd-mark-9 {
    top: 50%;
    width: 18px;
    height: 3px;
    transform: translateY(-50%);
}

.twd-mark-3 {
    right: 13px;
}

.twd-mark-9 {
    left: 13px;
}

.twd-watch-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 3px;
    background: #e1c27e;
    transform-origin: bottom center;
    border-radius: 4px;
}

.twd-hand-hour {
    height: 52px;
    transform: translateX(-50%) rotate(42deg);
}

.twd-hand-minute {
    height: 72px;
    transform: translateX(-50%) rotate(132deg);
}

.twd-watch-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--twd-gold-light);
}


/* INTRO */

.twd-intro {
    padding: 92px 0 50px;
    background: var(--twd-cream);
}

.twd-intro-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 80px;
    align-items: end;
}

.twd-intro h2 {
    max-width: 650px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.twd-section-copy {
    max-width: 520px;
    margin: 0 0 5px;
    color: var(--twd-muted);
}


/* CATEGORY GRID */

.twd-collections {
    padding: 15px 0 100px;
    background: var(--twd-cream);
}

.twd-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.twd-category-card {
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(0,0,0,.08);
    background:
        linear-gradient(155deg, #181818, #080808);
    color: var(--twd-white);
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.twd-category-card:nth-child(even) {
    background:
        linear-gradient(155deg, #24211d, #0b0b0b);
}

.twd-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,164,92,.65);
    box-shadow: 0 20px 40px rgba(0,0,0,.13);
}

.twd-category-number {
    position: absolute;
    top: 18px;
    right: 21px;
    color: rgba(255,255,255,.17);
    font-family: Georgia, serif;
    font-size: 2.4rem;
}

.twd-category-symbol {
    min-height: 180px;
    display: grid;
    place-items: center;
}

.twd-mini-watch {
    position: relative;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 4px solid #b18b48;
    border-radius: 50%;
    background: #101010;
    box-shadow: 0 12px 28px rgba(0,0,0,.4);
}

.twd-mini-watch::before,
.twd-mini-watch::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 35px;
    height: 58px;
    transform: translateX(-50%);
    background: #29251e;
    border-left: 1px solid #7e663a;
    border-right: 1px solid #7e663a;
    z-index: -1;
}

.twd-mini-watch::before {
    bottom: 92%;
    border-radius: 8px 8px 0 0;
}

.twd-mini-watch::after {
    top: 92%;
    border-radius: 0 0 8px 8px;
}

.twd-mini-watch span {
    width: 3px;
    height: 30px;
    background: var(--twd-gold-light);
    transform: rotate(35deg);
    transform-origin: bottom;
}

.twd-category-content {
    margin-top: auto;
}

.twd-category-label {
    color: var(--twd-gold-light);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.twd-category-content h3 {
    margin: 9px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
}

.twd-category-content p {
    min-height: 72px;
    margin: 0;
    color: #a9a9a9;
    font-size: .86rem;
}

.twd-category-link {
    display: inline-block;
    margin-top: 20px;
    color: #e4c681;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .04em;
}


/* VALUE */

.twd-value {
    padding: 90px 0;
    background: var(--twd-white);
}

.twd-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--twd-border);
    border-bottom: 1px solid var(--twd-border);
}

.twd-value article {
    padding: 45px 46px;
}

.twd-value article + article {
    border-left: 1px solid var(--twd-border);
}

.twd-value-icon {
    color: #a77e3d;
    font-size: 1.45rem;
}

.twd-value h3 {
    margin: 14px 0 8px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.twd-value p {
    margin: 0;
    color: var(--twd-muted);
    font-size: .88rem;
}


/* CTA */

.twd-shop-cta {
    padding: 70px 0;
    background: #101010;
    color: var(--twd-white);
}

.twd-shop-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.twd-shop-cta .twd-eyebrow {
    margin-bottom: 10px;
}

.twd-shop-cta h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 400;
}


/* FOOTER */

.site-footer {
    margin: 0;
    padding: 70px 0 24px;
    background: #070707;
    color: #999999;
}

.twd-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr;
    gap: 70px;
    padding-bottom: 55px;
}

.twd-footer-brand strong {
    display: block;
    color: var(--twd-gold-light);
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.twd-footer-brand p {
    max-width: 360px;
    margin: 16px 0 0;
    font-size: .88rem;
}

.twd-footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.twd-footer-column h2 {
    margin: 0 0 10px;
    color: var(--twd-white);
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.twd-footer-column a {
    color: #999999;
    font-size: .84rem;
    text-decoration: none;
}

.twd-footer-column a:hover {
    color: var(--twd-gold-light);
}

.twd-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    border-top: 1px solid #202020;
    font-size: .74rem;
}

.twd-footer-bottom p {
    margin: 0;
}


/* WOOCOMMERCE BASE */

.woocommerce .site-main,
.woocommerce-page .site-main {
    width: min(calc(100% - 48px), var(--twd-width));
    margin: 55px auto;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #9a7437;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: 0;
    background: var(--twd-black);
    color: var(--twd-white);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: #2a241b;
    color: var(--twd-white);
}


/* TABLET */

@media (max-width: 1050px) {

    .twd-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .primary-navigation ul {
        gap: 17px;
    }

    .twd-hero-grid {
        gap: 25px;
    }

    .twd-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .twd-category-card {
        min-height: 390px;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .twd-container {
        width: min(calc(100% - 30px), var(--twd-width));
    }

    .twd-header-inner {
        min-height: 72px;
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .site-brand .custom-logo {
        max-width: 170px;
        max-height: 48px;
    }

    .primary-navigation {
        display: none;
    }

    .twd-header-link {
        display: none;
    }

    .twd-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .twd-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .twd-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .twd-hero-points {
        gap: 9px 15px;
        margin-top: 32px;
    }

    .twd-hero-art {
        min-height: 390px;
    }

    .twd-watch-stage {
        height: 390px;
        transform: scale(.76);
    }

    .twd-intro {
        padding-top: 70px;
    }

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

    .twd-category-grid {
        grid-template-columns: 1fr;
    }

    .twd-category-card {
        min-height: 380px;
    }

    .twd-value {
        padding: 65px 0;
    }

    .twd-value-grid {
        grid-template-columns: 1fr;
    }

    .twd-value article {
        padding: 32px 8px;
    }

    .twd-value article + article {
        border-left: 0;
        border-top: 1px solid var(--twd-border);
    }

    .twd-shop-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .twd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .twd-footer-brand {
        grid-column: 1 / -1;
    }

    .twd-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .woocommerce .site-main,
    .woocommerce-page .site-main {
        width: min(calc(100% - 30px), var(--twd-width));
        margin: 35px auto;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .site-brand .custom-logo {
        max-width: 145px;
    }

    .twd-cart-link {
        font-size: .8rem;
    }

    .twd-hero h1 {
        font-size: 2.8rem;
    }

    .twd-category-card {
        padding: 22px;
    }

    .twd-footer-grid {
        grid-template-columns: 1fr;
    }

    .twd-footer-brand {
        grid-column: auto;
    }
}
