:root {
    --tm-black: #050505;
    --tm-ink: #050505;
    --tm-white: #ffffff;
    --tm-off-white: #f7f5f0;
    --tm-warm-white: #fbfaf7;
    --tm-soft-gray: #e9e6df;
    --tm-border: #ded9d0;
    --tm-leather: #c8a46a;
    --tm-leather-dark: #9f7b42;
    --tm-taupe: #4a4038;
    --tm-muted: #77716a;
    --tm-success: #2f6f4e;
    --tm-error: #b42318;
    --tm-font-heading: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --tm-font-body: "Inter", "Montserrat", Arial, sans-serif;
    --tm-radius-sm: 0.75rem;
    --tm-radius-md: 1.25rem;
    --tm-radius-lg: 2rem;
    --tm-shadow-soft: 0 18px 50px rgba(13, 11, 8, 0.06);
    --tm-shadow-card: 0 10px 30px rgba(13, 11, 8, 0.04);
    --tm-transition: 220ms ease;
    --tm-container-max: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--tm-font-body);
    color: var(--tm-black);
    background: linear-gradient(180deg, var(--tm-warm-white) 0%, var(--tm-white) 24%, var(--tm-off-white) 100%);
    text-rendering: optimizeLegibility;
}

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

.tm-brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.tm-brand-logo--inline {
    display: inline-block;
    width: 5.35rem;
    vertical-align: -0.22em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--tm-transition), opacity var(--tm-transition), border-color var(--tm-transition), background-color var(--tm-transition), transform var(--tm-transition);
}

a:hover {
    color: var(--tm-black);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
}

p,
h1,
h2,
h3,
h4,
ul {
    margin: 0;
}

ul[role="list"] {
    list-style: none;
    padding: 0;
}

.tm-site-shell {
    min-height: 100vh;
}

.tm-container {
    width: min(100% - 2rem, var(--tm-container-max));
    margin-inline: auto;
    padding-inline: 0;
}

.tm-section {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.tm-section-intro,
.tm-section-heading-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tm-section-heading-row--split {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.tm-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--tm-leather-dark);
}

.tm-section-eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}

.tm-section-heading {
    font-family: var(--tm-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.tm-section-copy {
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--tm-muted);
}

.tm-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tm-taupe);
}

button.tm-inline-link {
    border: 0;
    padding: 0;
    background: transparent;
}

.tm-inline-link::after {
    content: "\2192";
    transition: transform var(--tm-transition);
}

.tm-inline-link:hover::after,
.tm-inline-link:focus-visible::after {
    transform: translateX(0.25rem);
}

.tm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tm-btn:hover,
.tm-btn:focus-visible {
    transform: translateY(-1px);
}

.tm-btn--primary {
    background: var(--tm-black);
    color: var(--tm-white);
}

.tm-btn--primary:hover,
.tm-btn--primary:focus-visible {
    color: var(--tm-white);
    background: #151515;
}

.tm-btn--ghost {
    background: rgba(255, 255, 255, 0.84);
    color: var(--tm-black);
    border-color: var(--tm-border);
}

.tm-btn--ghost:hover,
.tm-btn--ghost:focus-visible {
    border-color: var(--tm-leather);
    background: var(--tm-white);
}

.tm-btn--sand {
    background: var(--tm-leather);
    color: var(--tm-black);
}

.tm-btn--sand:hover,
.tm-btn--sand:focus-visible {
    background: var(--tm-leather-dark);
    color: var(--tm-white);
}

.tm-btn--block {
    width: 100%;
}

.tm-page-shell__intro {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(222, 217, 208, 0.88);
    border-radius: var(--tm-radius-md);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--tm-shadow-card);
}

.tm-skip-link,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tm-skip-link:focus {
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    clip: auto;
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--tm-black);
    color: var(--tm-white);
    z-index: 1040;
}

:focus-visible {
    outline: 2px solid var(--tm-leather-dark);
    outline-offset: 3px;
}

@media (min-width: 992px) {
    .tm-section-heading-row,
    .tm-section-intro {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .tm-section-heading-row--split {
        align-items: flex-end;
    }
}

@media (max-width: 767.98px) {
    .tm-container {
        width: min(100% - 1.25rem, var(--tm-container-max));
    }

    .tm-section {
        padding: 4rem 0;
    }

    .tm-page-shell__intro {
        gap: 1.1rem;
    }

    .tm-section-copy {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .tm-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .tm-section {
        padding: 3.15rem 0;
    }

    .tm-section-eyebrow {
        gap: 0.45rem;
        font-size: 0.67rem;
        letter-spacing: 0.18em;
    }

    .tm-section-eyebrow::before {
        width: 1.7rem;
    }

    .tm-section-heading {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
        line-height: 1;
    }

    .tm-section-copy {
        font-size: 0.91rem;
        line-height: 1.58;
    }

    .tm-page-shell__intro {
        gap: 0.95rem;
        padding: 1.2rem 1rem;
        border-radius: 1rem;
    }
}
