:root {
    --wine: #6f1638;
    --wine-dark: #4d0e27;
    --wine-soft: #8f3556;
    --ink: #261c20;
    --muted: #71666a;
    --ivory: #faf7f2;
    --paper: #fffdf9;
    --rose: #ead8dc;
    --rose-pale: #f6ecee;
    --sand: #e7d9c5;
    --gold: #bb9258;
    --gold-text: #8a632c;
    --line: rgba(38, 28, 32, 0.13);
    --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
    --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    --shell: min(1180px, calc(100vw - 48px));
    --shadow: 0 24px 70px rgba(66, 28, 42, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 6% 12%, rgba(187, 146, 88, 0.09), transparent 24rem),
        var(--ivory);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: #fff;
    background: var(--wine);
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--wine-dark);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--wine-dark);
    border-radius: 9px;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(250, 247, 242, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--wine);
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.brand-mark circle {
    fill: var(--ivory);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.site-nav a {
    color: #514348;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--wine);
}

.site-nav .nav-cta {
    padding: 10px 20px;
    color: #fff;
    background: var(--wine);
    border-radius: 999px;
}

.site-nav .nav-cta:hover {
    color: #fff;
    background: var(--wine-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 112px;
}

.hero::before {
    position: absolute;
    width: 460px;
    height: 460px;
    top: -230px;
    right: -150px;
    background: var(--rose-pale);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: clamp(52px, 8vw, 112px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(49px, 5.5vw, 78px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

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

.hero-lead {
    max-width: 660px;
    margin: 30px 0 0;
    color: #5f5256;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--wine);
    box-shadow: 0 13px 26px rgba(111, 22, 56, 0.19);
}

.button-primary:hover {
    background: var(--wine-dark);
}

.button-ghost {
    color: var(--wine);
    background: transparent;
    border-color: rgba(111, 22, 56, 0.28);
}

.button-ghost:hover {
    background: var(--rose-pale);
    border-color: var(--wine);
}

.hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 25px;
    margin: 37px 0 0;
    padding: 0;
    color: #605257;
    font-size: 13px;
    font-weight: 650;
    list-style: none;
}

.hero-promises li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-promises span {
    color: var(--gold);
    font-size: 17px;
}

.hero-visual {
    position: relative;
    min-height: 555px;
}

.hero-image {
    position: absolute;
    inset: 0 25px 38px 0;
    overflow: hidden;
    background: #271b1e;
    border-radius: 220px 220px 28px 28px;
    box-shadow: var(--shadow);
}

.hero-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(31, 13, 20, 0.42));
    content: "";
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
}

.hero-emblem {
    position: absolute;
    width: 132px;
    height: 132px;
    right: -28px;
    bottom: 22px;
    padding: 10px;
    color: var(--wine);
    background: var(--ivory);
    border: 1px solid var(--rose);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(50, 22, 31, 0.14);
}

.hero-emblem svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero-emblem text {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.hero-visual blockquote {
    position: absolute;
    max-width: 285px;
    right: 58px;
    bottom: 70px;
    z-index: 2;
    margin: 0;
    padding: 19px 23px 18px 45px;
    color: #fff;
    background: rgba(44, 22, 29, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-visual blockquote span {
    position: absolute;
    top: 12px;
    left: 17px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
}

.hero-visual blockquote p {
    margin: 0;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.35;
}

.introduction {
    padding: 105px 0;
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.introduction-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(55px, 9vw, 130px);
}

.introduction h2,
.approach h2,
.catalogue-preview h2,
.newsletter h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(39px, 4.2vw, 57px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.introduction-copy {
    padding-top: 16px;
}

.introduction-copy p {
    margin: 0;
    color: #57494e;
    font-size: 19px;
}

.introduction-copy p + p {
    margin-top: 22px;
}

.approach {
    position: relative;
    overflow: hidden;
    padding: 112px 0 94px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.08), transparent 24rem),
        radial-gradient(circle at 93% 80%, rgba(187, 146, 88, 0.12), transparent 28rem),
        var(--wine-dark);
}

.approach::after {
    position: absolute;
    width: 440px;
    height: 440px;
    right: -270px;
    bottom: -270px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
    content: "";
}

.eyebrow-light {
    color: #e3bd87;
}

.approach-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
}

.approach-heading p:last-child {
    max-width: 460px;
    margin: 0 0 7px;
    color: #e5d7db;
    font-size: 18px;
}

.principles {
    position: relative;
    z-index: 1;
    display: grid;
    margin: 74px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.principles li {
    position: relative;
    min-height: 315px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.principles li + li {
    border-left: 0;
}

.principles li:first-child {
    border-radius: 22px 0 0 22px;
}

.principles li:last-child {
    border-radius: 0 22px 22px 0;
}

.principle-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.principle-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: #e3bd87;
    border: 1px solid rgba(227, 189, 135, 0.46);
    border-radius: 50%;
    font-size: 23px;
}

.principles h3 {
    margin: 42px 0 10px;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;
}

.principles p {
    margin: 0;
    color: #dacbd0;
    font-size: 15px;
}

.care-note {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 35px auto 0;
    color: #cebcc2;
    font-size: 13px;
    text-align: center;
}

.catalogue-preview {
    padding: 120px 0;
}

.catalogue-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(55px, 9vw, 122px);
}

.catalogue-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin: 25px 0 31px;
    color: #62555a;
    font-size: 18px;
}

.themes-card {
    padding: 10px 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(66, 28, 42, 0.08);
}

.theme-row {
    display: grid;
    min-height: 142px;
    align-items: center;
    grid-template-columns: 44px 1fr 36px;
    gap: 18px;
}

.theme-row + .theme-row {
    border-top: 1px solid var(--line);
}

.theme-index {
    color: var(--gold-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.theme-row h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
}

.theme-row p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.theme-arrow {
    color: var(--wine);
    font-size: 22px;
}

.newsletter {
    padding: 0 0 120px;
}

.newsletter-card {
    display: grid;
    align-items: center;
    padding: 44px 50px;
    background: var(--rose-pale);
    border: 1px solid var(--rose);
    border-radius: 28px;
    grid-template-columns: 72px 1fr auto;
    gap: 28px;
}

.newsletter-symbol {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--wine);
    background: var(--paper);
    border: 1px solid var(--rose);
    border-radius: 50%;
}

.newsletter-symbol svg {
    width: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.newsletter .eyebrow {
    margin-bottom: 8px;
}

.newsletter h2 {
    font-size: clamp(31px, 3vw, 43px);
}

.newsletter h2 + p {
    max-width: 650px;
    margin: 9px 0 0;
    color: #62535a;
    font-size: 15px;
}

.button-outline {
    color: var(--wine);
    background: var(--paper);
    border-color: rgba(111, 22, 56, 0.28);
}

.button-outline:hover {
    color: #fff;
    background: var(--wine);
    border-color: var(--wine);
}

.site-footer {
    padding: 72px 0 24px;
    color: #eadde1;
    background: #29151d;
}

.footer-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 58px;
}

.brand-light {
    color: #fff;
}

.brand-light .brand-mark circle {
    fill: #29151d;
}

.brand-light .brand-copy small {
    color: #c9b5bc;
}

.footer-brand p {
    max-width: 440px;
    margin: 19px 0 0;
    color: #c9b5bc;
    font-family: var(--serif);
    font-size: 19px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 13px 28px;
}

.footer-links a {
    color: #eadde1;
    font-size: 14px;
    font-weight: 650;
    text-underline-offset: 5px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 21px;
    color: #a89199;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero {
        padding-top: 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.82fr;
        gap: 48px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-emblem {
        width: 110px;
        height: 110px;
        right: -15px;
    }

    .approach-heading,
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .approach-heading {
        gap: 24px;
    }

    .catalogue-grid {
        gap: 55px;
    }

    .catalogue-copy {
        max-width: 720px;
    }

    .newsletter-card {
        grid-template-columns: 64px 1fr;
    }

    .newsletter-card .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100% - 34px, 620px);
    }

    body {
        font-size: 16px;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-copy strong {
        font-size: 20px;
    }

    .brand-copy small {
        font-size: 7px;
        letter-spacing: 0.14em;
        white-space: nowrap;
    }

    .site-nav {
        gap: 9px;
    }

    .site-nav a:not(.nav-cta) {
        display: none;
    }

    .site-nav .nav-cta {
        padding: 9px 15px;
        font-size: 13px;
    }

    .hero {
        padding: 58px 0 86px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 63px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-visual {
        min-height: min(116vw, 570px);
    }

    .hero-image {
        right: 12px;
    }

    .hero-emblem {
        right: -7px;
    }

    .introduction,
    .approach,
    .catalogue-preview {
        padding-block: 82px;
    }

    .introduction-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .introduction-copy {
        padding-top: 0;
    }

    .introduction-copy p {
        font-size: 17px;
    }

    .principles {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .principles li {
        min-height: auto;
    }

    .principles li + li {
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .principles li:first-child {
        border-radius: 22px 22px 0 0;
    }

    .principles li:last-child {
        border-radius: 0 0 22px 22px;
    }

    .theme-row {
        min-height: 132px;
        grid-template-columns: 35px 1fr;
        gap: 13px;
    }

    .theme-arrow {
        display: none;
    }

    .newsletter {
        padding-bottom: 82px;
    }

    .newsletter-card {
        padding: 35px 28px;
        grid-template-columns: 1fr;
    }

    .newsletter-card .button {
        grid-column: 1;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        padding-bottom: 42px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 440px) {
    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-promises {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual blockquote {
        right: 30px;
        bottom: 62px;
    }

    .themes-card {
        padding-inline: 22px;
    }

    .theme-row h3 {
        font-size: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button {
        transition: none;
    }
}

@media (forced-colors: active) {
    .button,
    .principles li,
    .themes-card,
    .newsletter-card {
        border: 1px solid CanvasText;
    }
}
