:root {
    --bg: #faf8f6;
    --bg-alt: #ffffff;
    --text: #1a1a1a;
    --text-muted: #5c5c5c;
    --accent: #6b2d3c;
    --accent-hover: #542432;
    --border: rgba(26, 26, 26, 0.08);
    --shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
    --space-section: clamp(4rem, 10vw, 7rem);
    --maxw: 72rem;
    --maxw-narrow: 40rem;
    --header-h: 4.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

main {
    padding-top: var(--header-h);
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--accent-hover);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(250, 248, 246, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.site-logo__img {
    display: block;
    width: auto;
    height: clamp(2.25rem, 5.5vw, 3.5rem);
    max-height: calc(var(--header-h) - 0.75rem);
    max-width: min(280px, 72vw);
    object-fit: contain;
    object-position: left center;
}

.site-logo:hover .site-logo__img {
    opacity: 0.88;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    width: 1.5rem;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(0.5rem, 1.5vw, 1.1rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
}

@media (min-width: 64rem) {
    .site-nav__list a {
        font-size: 0.875rem;
    }
}

.site-nav__list a:hover {
    color: var(--accent);
}

@media (max-width: 52rem) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        padding: 1rem clamp(1.25rem, 4vw, 2rem);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0.75rem;
    }

    body.nav-open .nav-toggle__bar:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    body.nav-open .nav-toggle__bar:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }
}

.banner {
    position: relative;
    min-height: calc(85vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-section) clamp(1.25rem, 4vw, 2rem);
    overflow: hidden;
    background: #1a1416;
}

.banner__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
}

.banner__media .banner__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(26, 20, 22, 0.75) 0%, rgba(26, 20, 22, 0.25) 45%, rgba(26, 20, 22, 0.35) 100%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(107, 45, 60, 0.35), transparent 55%);
}

.banner__inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    text-align: center;
}

.banner__title {
    margin: 0 0 2rem;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #faf8f6;
    text-shadow: 0 1px 2rem rgba(0, 0, 0, 0.35);
}

.banner__subtitle {
    margin: 0 0 2rem;
    color: rgba(250, 248, 246, 0.88);
    font-size: 1.125rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 1rem rgba(0, 0, 0, 0.25);
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.section {
    padding: var(--space-section) clamp(1.25rem, 4vw, 2rem);
}

.section--alt {
    background: var(--bg-alt);
}

.section__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}

.section__inner--narrow {
    max-width: var(--maxw-narrow);
}

.section__inner--reading {
    max-width: 48rem;
    margin: 0 auto;
}

.section__header--wide {
    max-width: 52rem;
}

.section__header {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: 0.02em;
}

.section__lead {
    margin: 0;
    color: var(--text-muted);
}

.info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.info__grid--dense {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info__card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.info__card:hover {
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
    transform: translateY(-2px);
}

.info__card-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.info__card-text {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.about__lead {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--text);
}

.about__subtitle {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    color: var(--text);
}

.about__text {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.about__text:last-child {
    margin-bottom: 0;
}

.collections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.collections__group {
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.collections__group-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.collections__list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.collections__list li {
    margin-bottom: 0.35rem;
}

.reach__intro {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.reach__list {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.reach__list li {
    margin-bottom: 0.65rem;
}

.reach__outro {
    margin: 0;
    color: var(--text-muted);
}

.partners__list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.partners__list li {
    margin-bottom: 0.5rem;
}

.partner-steps__intro {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.partner-steps__list {
    margin: 0;
    padding-left: 1.35rem;
    color: var(--text-muted);
}

.partner-steps__list li {
    margin-bottom: 0.65rem;
}

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.2;
}

.contact__emails {
    margin: 0 0 1.25rem;
}

.contact__email {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact__email:last-child {
    margin-bottom: 0;
}

.contact__email a {
    text-decoration: none;
}

.contact__email a:hover {
    text-decoration: underline;
}

.contacts__intro--tight {
    margin-bottom: 0;
}

.site-footer__tagline {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
}

.contacts__intro {
    margin: 0 0 1.75rem;
    color: var(--text-muted);
}

.contacts__list {
    margin: 0;
}

.contacts__row {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 0.5rem 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contacts__row:first-of-type {
    border-top: 1px solid var(--border);
}

.contacts__row dt {
    margin: 0;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contacts__row dd {
    margin: 0;
}

.contacts__row a {
    font-weight: 600;
}

@media (max-width: 32rem) {
    .contacts__row {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding: 2rem clamp(1.25rem, 4vw, 2rem);
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

.site-footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem 3rem;
}

.site-footer__brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 22rem;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.site-footer__legal {
    flex: 1 1 22rem;
    min-width: 0;
    max-width: none;
    margin-left: auto;
    text-align: right;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.site-footer__legal p {
    margin: 0 0 0.4rem;
}

.site-footer__legal p:last-child {
    margin-bottom: 0;
}

.site-footer__legal-label {
    font-weight: 600;
    color: var(--text);
}

.site-footer__phrase-nowrap {
    white-space: nowrap;
}

@media (max-width: 40rem) {
    .site-footer__legal {
        margin-left: 0;
        text-align: left;
        max-width: none;
    }
}
