:root {
    --brand: #a21317;
    --brand-hover: #b91b21;
    --logo-red: #a01418;
    --brand-soft: #f8ecec;
    --brand-pale: #fdf6f5;
    --ink: #272321;
    --muted: #6b625e;
    --paper: #fbf9f6;
    --surface: #ffffff;
    --cream: #f3eee8;
    --cream-deep: #e8dfd7;
    --line: #ddd4cc;
    --line-strong: #c9bdb4;
    --charcoal: #292624;
    --charcoal-deep: #211f1d;
    --focus: #005fcc;
    --shadow-sm: 0 .5rem 1.5rem rgba(46, 36, 31, .07);
    --shadow-md: 0 1rem 3rem rgba(46, 36, 31, .13);
    --radius-sm: .25rem;
    --radius: .45rem;
    --radius-lg: .65rem;
    --container: 78rem;
    --content: 50rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 1.5rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

svg {
    display: block;
}

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

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration-thickness: .075em;
    text-underline-offset: .18em;
}

address {
    font-style: normal;
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    transform: translateY(-180%);
    padding: .72rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-md);
    font-weight: 750;
}

.skip-link:focus {
    transform: none;
}

:focus-visible {
    outline: .2rem solid var(--focus);
    outline-offset: .2rem;
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.13;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.05rem;
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    letter-spacing: -.03em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3.15vw, 2.75rem);
    letter-spacing: -.02em;
}

h3 {
    margin-bottom: .65rem;
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

p {
    margin-top: 0;
    text-wrap: pretty;
}

.lead {
    color: #504a47;
    font-size: clamp(1.06rem, 1.55vw, 1.2rem);
    line-height: 1.76;
}

.eyebrow {
    margin: 0 0 .7rem;
    color: var(--brand);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section {
    padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.section--soft {
    border-block: 1px solid var(--line);
    background: var(--cream);
}

.section-heading {
    max-width: 51rem;
    margin-bottom: clamp(2.2rem, 4vw, 3rem);
}

.section-heading h2 {
    margin-bottom: .75rem;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
}

.section-heading--split > div {
    max-width: 45rem;
}

.section-heading--split > p {
    max-width: 28rem;
    margin-bottom: .2rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.6rem;
}

.button {
    min-height: 3.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .62rem;
    padding: .72rem 1.15rem;
    border: 1px solid var(--brand);
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--brand);
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.button__icon {
    width: 1rem;
    height: 1rem;
    transition: transform .16s ease;
}

.button__icon--start {
    transition: none;
}

.button:hover {
    border-color: var(--brand-hover);
    background: var(--brand-hover);
    transform: translateY(-.05rem);
}

.button:hover .button__icon:not(.button__icon--start) {
    transform: translateX(.16rem);
}

.button--secondary {
    color: var(--ink);
    border-color: var(--line-strong);
    background: #fff;
}

.button--secondary:hover {
    color: var(--brand);
    border-color: var(--brand);
    background: var(--brand-pale);
}

.button--light {
    color: var(--brand);
    border-color: #fff;
    background: #fff;
}

.button--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: transparent;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--brand);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link__icon {
    width: .95rem;
    height: .95rem;
    transition: transform .16s ease;
}

.text-link:hover {
    text-decoration: underline;
}

.text-link:hover .text-link__icon {
    transform: translateX(.16rem);
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    background: #fff;
}

.utility-bar {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    background: var(--charcoal-deep);
}

.utility-bar__inner {
    min-height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.utility-bar a {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    color: inherit;
    font-size: .76rem;
    font-weight: 650;
    text-decoration: none;
}

.utility-bar a .icon {
    width: .95rem;
    height: .95rem;
    color: rgba(255, 255, 255, .68);
}

.utility-bar a:hover {
    color: #fff;
}

.utility-bar a:hover .icon {
    color: #fff;
}

.utility-bar__links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.brand-bar {
    color: #fff;
    background: var(--logo-red);
    box-shadow: inset 0 -1px rgba(0, 0, 0, .15);
}

.brand-bar__inner {
    min-height: 7.8rem;
    display: flex;
    align-items: center;
    gap: clamp(1.6rem, 3vw, 2.8rem);
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 2.2rem);
    color: #fff;
    text-decoration: none;
}

.brand__sign {
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    line-height: 0;
}

.brand__logo {
    width: clamp(9.2rem, 13vw, 10.7rem);
    height: auto;
    object-fit: contain;
    clip-path: inset(1px);
}

.brand__copy {
    display: grid;
    gap: .14rem;
    padding-left: clamp(1.3rem, 3vw, 2.1rem);
    border-left: 1px solid rgba(255, 255, 255, .34);
}

.brand__copy small {
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    letter-spacing: .04em;
}

.brand__copy strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 700;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-left: auto;
    padding: .78rem 1rem;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: var(--radius-sm);
    color: #fff;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease;
}

.header-contact:hover {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
}

.header-contact > .icon {
    width: 1.45rem;
    height: 1.45rem;
}

.header-contact span {
    display: grid;
    gap: .02rem;
}

.header-contact small {
    color: rgba(255, 255, 255, .76);
    font-size: .69rem;
}

.header-contact strong {
    color: #fff;
    font-size: .83rem;
}

.nav-toggle {
    display: none;
    min-width: 3.5rem;
    padding: .45rem .6rem;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: var(--radius-sm);
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.nav-toggle:hover {
    border-color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .08);
}

.nav-toggle__icon {
    display: grid;
    width: 1.55rem;
    gap: .3rem;
    margin-inline: auto;
}

.nav-toggle__icon span {
    height: .13rem;
    border-radius: 1rem;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle__label {
    display: block;
    margin-top: .38rem;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
    transform: translateY(.43rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
    transform: translateY(-.43rem) rotate(-45deg);
}

.site-nav {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.nav-list {
    display: flex;
    align-items: stretch;
    gap: .1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list > li {
    position: relative;
    display: flex;
}

.nav-list a,
.nav-list summary {
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    padding-inline: 1.2rem;
    border-bottom: .18rem solid transparent;
    color: #3c3734;
    font-size: .88rem;
    font-weight: 700;
    list-style: none;
    text-decoration: none;
    cursor: pointer;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.nav-list summary::-webkit-details-marker {
    display: none;
}

.nav-list summary::after {
    width: .4rem;
    height: .4rem;
    margin: -.18rem 0 0 .58rem;
    border-right: .1rem solid currentColor;
    border-bottom: .1rem solid currentColor;
    content: "";
    transform: rotate(45deg);
}

.nav-list a:hover,
.nav-list a.is-active,
.nav-list details.has-active > summary,
.nav-list details[open] > summary {
    border-bottom-color: var(--brand);
    color: var(--brand);
    background: var(--brand-pale);
}

.nav-list details > ul {
    position: absolute;
    z-index: 40;
    top: calc(100% + 1px);
    left: 0;
    width: 21rem;
    max-width: min(92vw, 21rem);
    margin: 0;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-md);
    list-style: none;
}

.nav-list details:not([open]) > ul {
    display: none;
}

.nav-list details > ul a {
    min-height: 2.7rem;
    padding: .55rem .75rem;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.35;
}

.nav-list details > ul a:hover,
.nav-list details > ul a.is-active {
    color: var(--brand);
    background: var(--brand-soft);
}

/* Home hero */
.home-hero {
    padding-block: clamp(1.5rem, 3vw, 2.4rem) 0;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f7f2ec 0%, var(--paper) 100%);
}

.home-hero__stage {
    position: relative;
    min-height: 39rem;
    aspect-ratio: 3430 / 2041;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: #ded6cf;
    box-shadow: var(--shadow-md);
}

.home-hero__media,
.home-hero__image {
    width: 100%;
    height: 100%;
}

.home-hero__image {
    object-fit: cover;
    object-position: center center;
}

.home-hero__copy {
    position: absolute;
    z-index: 2;
    left: clamp(1.5rem, 4vw, 3rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    width: min(37rem, calc(100% - 3rem));
    padding: clamp(1.65rem, 3.4vw, 2.45rem);
    border-left: .3rem solid var(--brand);
    color: var(--ink);
    background: rgba(255, 253, 250, .965);
    box-shadow: 0 1.2rem 3.2rem rgba(28, 23, 20, .2);
    backdrop-filter: blur(.25rem);
}

.home-hero__copy h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 4.25vw, 3.75rem);
}

.home-hero__lead {
    max-width: 34rem;
    margin-bottom: 0;
    color: #4f4946;
    font-size: clamp(1rem, 1.45vw, 1.13rem);
    line-height: 1.72;
}

.home-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
    background: #fff;
}

.home-hero__facts > a {
    min-height: 5.55rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem clamp(1rem, 2.3vw, 1.55rem);
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}

.home-hero__facts > a + a {
    border-left: 0;
}

.home-hero__facts > a:hover {
    color: var(--brand);
    background: var(--brand-pale);
}

.home-hero__facts .icon {
    width: 1.45rem;
    height: 1.45rem;
    color: var(--brand);
}

.home-hero__facts span {
    display: grid;
    min-width: 0;
}

.home-hero__facts strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: .94rem;
}

.home-hero__facts small {
    color: var(--muted);
    font-size: .73rem;
}

/* Welcome */
.welcome-section {
    background: var(--paper);
}

.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(19rem, .65fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
}

.welcome-copy {
    max-width: 50rem;
}

.welcome-copy h2 {
    max-width: 24ch;
}

.welcome-copy p:not(.eyebrow) {
    max-width: 48rem;
}

.welcome-card {
    padding: clamp(1.7rem, 3.5vw, 2.25rem);
    border-top: .22rem solid var(--brand);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.welcome-card h3 {
    margin-bottom: .8rem;
    font-size: 1.48rem;
}

.welcome-card address {
    margin-bottom: 1.15rem;
    color: var(--muted);
}

.welcome-card > a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .88rem 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}

.welcome-card > a:hover strong {
    color: var(--brand);
}

.welcome-card > a .icon {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--brand);
}

.welcome-card > a span {
    display: grid;
    min-width: 0;
}

.welcome-card > a small {
    color: var(--muted);
    font-size: .7rem;
}

.welcome-card > a strong {
    overflow-wrap: anywhere;
    font-size: .89rem;
}

/* Featured areas */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.35rem, 2.5vw, 2rem);
}

.feature-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.feature-card__media {
    display: grid;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    place-items: center;
    padding: .45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.feature-card__image {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius) - .12rem);
    object-fit: contain;
    object-position: center;
    transition: transform .3s ease;
}

.feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem .15rem 0;
}

.feature-card h3 {
    margin-bottom: .55rem;
    font-size: 1.38rem;
}

.feature-card h3 a {
    text-decoration: none;
}

.feature-card h3 a:hover {
    color: var(--brand);
}

.feature-card p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.62;
}

.feature-card .text-link {
    margin-top: auto;
    font-size: .84rem;
}

@media (hover: hover) {
    .feature-card:hover .feature-card__image {
        transform: scale(1.012);
    }
}

/* Offer overview */
.catalog-section {
    background: var(--paper);
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(17rem, .6fr) minmax(0, 1.4fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
}

.catalog-heading {
    position: sticky;
    top: 1.5rem;
    margin-bottom: 0;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
    border-top: 1px solid var(--line-strong);
}

.offer-list__item {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem .15rem 1.2rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}

.offer-list__item > span {
    display: grid;
    gap: .28rem;
    min-width: 0;
}

.offer-list__item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
}

.offer-list__item small {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.offer-list__item > .icon {
    width: .95rem;
    height: .95rem;
    margin-top: .28rem;
    color: var(--brand);
    transition: transform .16s ease;
}

.offer-list__item:hover strong {
    color: var(--brand);
}

.offer-list__item:hover > .icon {
    transform: translateX(.18rem);
}

/* Visit */
.visit-section {
    border-block: 1px solid var(--line);
    background: var(--cream);
}

.visit-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, .75fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-block: clamp(3.6rem, 7vw, 5.3rem);
}

.visit-section__copy {
    padding-left: clamp(1.3rem, 3vw, 2rem);
    border-left: .25rem solid var(--brand);
}

.visit-section h2 {
    max-width: 20ch;
    margin-bottom: .65rem;
}

.visit-section__copy > p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
}

.visit-hours {
    margin: 0;
    padding: 1.15rem 1.35rem;
    border: 1px solid var(--line);
    background: #fff;
}

.visit-hours > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-block: .85rem;
}

.visit-hours > div + div {
    border-top: 1px solid var(--line);
}

.visit-hours dt {
    font-weight: 750;
}

.visit-hours dd {
    margin: 0;
    color: var(--muted);
}

/* Page intro */
.page-intro {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(120deg, #faf7f3 0%, #f0e9e2 100%);
}

.page-intro::before {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: .25rem;
    background: var(--brand);
    content: "";
}

.page-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(25rem, .85fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 6.8rem);
    padding-block: clamp(3.8rem, 7vw, 5.7rem);
}

.page-intro__grid--no-image,
.page-intro--simple .page-intro__grid {
    grid-template-columns: minmax(0, 52rem);
    padding-block: clamp(3.5rem, 7vw, 5.1rem);
}

.page-intro__copy {
    max-width: 51rem;
}

.page-intro__lead {
    max-width: 41rem;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.65vw, 1.19rem);
    line-height: 1.72;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.9rem;
    color: var(--muted);
    font-size: .78rem;
}

.breadcrumbs a {
    color: var(--brand);
}

.page-intro__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.05rem 1.5rem;
    margin-top: 1.6rem;
}

.plain-contact {
    display: flex;
    align-items: center;
    gap: .62rem;
    color: var(--ink);
    text-decoration: none;
}

.plain-contact .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand);
}

.plain-contact span {
    display: grid;
}

.plain-contact small {
    color: var(--muted);
    font-size: .7rem;
}

.plain-contact strong {
    font-size: .9rem;
}

.plain-contact:hover strong {
    color: var(--brand);
}

.page-intro__media {
    display: grid;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    place-items: center;
    margin: 0;
    padding: .55rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.page-intro__image {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-lg) - .18rem);
    background: #f0ebe6;
    object-fit: contain;
    object-position: center;
}

/* Detail pages */
.detail-section {
    background: var(--paper);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 19rem;
    align-items: start;
    gap: clamp(3rem, 7vw, 5.7rem);
}

.detail-layout--aside-only {
    display: block;
}

.detail-layout--aside-only .detail-aside {
    position: static;
    max-width: 49rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .85fr);
    align-items: stretch;
}

.content-sections {
    min-width: 0;
}

.content-panel {
    padding: 0 0 clamp(2.1rem, 4vw, 2.9rem);
    border: 0;
    background: transparent;
}

.content-panel + .content-panel {
    padding-top: clamp(2.1rem, 4vw, 2.9rem);
    border-top: 1px solid var(--line);
}

.content-panel:last-child {
    padding-bottom: 0;
}

.content-panel__number {
    display: none;
}

.content-panel h2 {
    max-width: 30ch;
    margin-bottom: 1rem;
    font-size: clamp(1.55rem, 2.55vw, 2.08rem);
}

.content-panel h3 {
    margin: 1.65rem 0 .62rem;
    color: var(--brand);
    font-size: 1.18rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose > ul:not(.check-list) {
    margin: .5rem 0 1.2rem;
    padding-left: 1.3rem;
}

.prose > ul:not(.check-list) li + li {
    margin-top: .42rem;
}

.check-list {
    display: grid;
    gap: .65rem;
    margin: 1.05rem 0 1.2rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .62rem;
}

.check-list__icon {
    width: 1.03rem;
    height: 1.03rem;
    flex: 0 0 auto;
    margin-top: .3rem;
    color: var(--brand);
    stroke-width: 2.3;
}

.external-link {
    padding: 1rem 1.05rem;
    border-left: .2rem solid var(--brand);
    background: var(--cream);
}

.external-link a {
    color: var(--brand);
    overflow-wrap: anywhere;
}

.detail-aside {
    position: sticky;
    top: 1.25rem;
    display: grid;
    gap: 1rem;
}

.advice-card,
.opening-card {
    padding: 1.55rem;
    border: 1px solid var(--line);
}

.advice-card {
    border-top: .22rem solid var(--brand);
    background: #fff;
}

.advice-card__icon,
.contact-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: var(--brand);
    background: var(--brand-soft);
}

.advice-card__icon .icon,
.contact-card__icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.advice-card h2 {
    margin-bottom: .72rem;
    font-size: 1.46rem;
}

.advice-card > p:not(.eyebrow) {
    color: var(--muted);
    font-size: .9rem;
}

.advice-card .button {
    width: 100%;
    margin-top: .4rem;
}

.advice-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: .95rem;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
}

.advice-card__link .icon {
    width: .92rem;
    height: .92rem;
}

.advice-card__link:hover {
    text-decoration: underline;
}

.opening-card {
    background: var(--cream);
}

.opening-card dl {
    margin: 0;
}

.opening-card dl > div {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: .7rem;
    padding-block: .75rem;
    border-top: 1px solid var(--line);
}

.opening-card dt {
    font-weight: 750;
}

.opening-card dd {
    margin: 0;
    color: var(--muted);
}

/* Legal */
.section--legal {
    padding-top: clamp(3.5rem, 7vw, 5.3rem);
    background: var(--paper);
}

.legal-content {
    max-width: 59rem;
    margin-inline: auto;
}

.legal-content h2 {
    margin: 3.3rem 0 1rem;
    padding-top: .2rem;
    font-size: clamp(1.5rem, 3vw, 2.08rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 1.9rem 0 .62rem;
    color: var(--brand);
    font-size: 1.16rem;
}

/* Contact */
.contact-section {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.contact-card {
    padding: clamp(1.75rem, 4vw, 2.6rem);
    border: 1px solid var(--line);
    background: #fff;
}

.contact-card--primary {
    border-top: .22rem solid var(--brand);
    background: #fff;
}

.contact-card--primary .eyebrow {
    color: var(--brand);
}

.contact-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.08rem);
}

.contact-actions {
    display: grid;
    gap: .6rem;
    margin-top: 1.7rem;
}

.contact-actions a {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .85rem .95rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--paper);
    text-decoration: none;
}

.contact-actions a:hover {
    border-color: #d7b3b1;
    background: var(--brand-pale);
}

.contact-actions a > .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand);
}

.contact-actions span {
    display: grid;
    min-width: 0;
}

.contact-actions small {
    color: var(--muted);
    font-size: .7rem;
}

.contact-actions strong {
    overflow-wrap: anywhere;
}

.hours-list {
    margin: 1.35rem 0 0;
}

.hours-list > div {
    display: grid;
    grid-template-columns: minmax(9rem, 1fr) 1fr;
    gap: 1.1rem;
    padding-block: .9rem;
    border-top: 1px solid var(--line);
}

.hours-list dt {
    font-weight: 750;
}

.hours-list dd {
    margin: 0;
    color: var(--muted);
}

.contact-card--wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--cream);
}

.contact-card--wide__copy {
    max-width: 47rem;
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
}

.contact-card--wide__copy .contact-card__icon {
    flex: 0 0 auto;
    background: #fff;
}

.contact-card--wide h2 {
    margin-bottom: .6rem;
}

.contact-card--wide p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

/* Brands and footer */
.brand-strip {
    border-block: 1px solid var(--line);
    background: #fff;
}

.brand-strip__inner {
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1.15rem;
}

.brand-strip p {
    max-width: 13rem;
    margin: 0;
    color: var(--muted);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.brand-strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .45rem 0;
    margin: 0;
    padding: 0;
    color: #504a47;
    list-style: none;
}

.brand-strip li {
    font-family: Georgia, "Times New Roman", serif;
    font-size: .87rem;
    font-weight: 700;
}

.brand-strip li + li::before {
    margin-inline: .72rem;
    color: #b8aaa1;
    content: "•";
}

.site-footer {
    border-top: .28rem solid var(--brand);
    color: #d9d3cf;
    background: var(--charcoal);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr .75fr;
    gap: clamp(2rem, 5vw, 4.2rem);
    padding-block: clamp(3.4rem, 7vw, 4.8rem);
}

.footer-brand__sign {
    display: inline-block;
    overflow: hidden;
    margin-bottom: 1.25rem;
    line-height: 0;
    background: var(--logo-red);
}

.footer-brand__logo {
    width: 9.2rem;
    height: auto;
    object-fit: contain;
    clip-path: inset(1px);
}

.footer-brand p {
    max-width: 21rem;
    color: #bfb7b3;
}

.site-footer h2 {
    margin-bottom: .95rem;
    color: #fff;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer p {
    margin-bottom: .95rem;
}

.site-footer a {
    color: #fff;
}

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

.footer-links li + li {
    margin-top: .5rem;
}

.footer-links a {
    color: #d9d3cf;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #aaa29e;
    background: var(--charcoal-deep);
    font-size: .78rem;
}

.footer-bottom .container {
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Error */
.error-page {
    min-height: 34rem;
    display: grid;
    place-items: center;
    border-top: .24rem solid var(--brand);
    background: var(--cream);
}

.error-page__inner {
    max-width: 48rem;
    padding-block: 5rem;
    text-align: center;
}

.error-page h1 {
    font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.error-page .button {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 70rem) {
    .brand__copy {
        display: none;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 58rem) {
    .utility-bar__location {
        display: none !important;
    }

    .utility-bar__inner {
        justify-content: flex-end;
    }

    .header-contact {
        display: none;
    }

    .brand-bar__inner {
        min-height: 6.7rem;
    }

    .brand__logo {
        width: 8.55rem;
    }

    .has-js .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .has-js .site-nav {
        display: none;
    }

    .has-js .site-nav.is-open {
        display: block;
    }

    .site-nav {
        box-shadow: 0 .8rem 1.8rem rgba(54, 42, 36, .08);
    }

    .nav-list {
        flex-direction: column;
        padding-block: .45rem;
    }

    .nav-list > li {
        display: block;
    }

    .nav-list a,
    .nav-list summary {
        min-height: 3.05rem;
        padding-inline: 1rem;
        border: 0;
        border-radius: var(--radius-sm);
    }

    .nav-list details > ul {
        position: static;
        width: auto;
        max-width: none;
        margin: 0 .5rem .45rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--cream);
        box-shadow: none;
    }

    .home-hero__stage {
        min-height: 0;
        display: flex;
        aspect-ratio: auto;
        flex-direction: column;
        overflow: visible;
        background: #fff;
    }

    .home-hero__media {
        aspect-ratio: 3 / 2;
        overflow: hidden;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .home-hero__copy {
        position: static;
        width: auto;
        padding: clamp(1.6rem, 5vw, 2.25rem);
        border-left: 0;
        border-top: .28rem solid var(--brand);
        box-shadow: none;
        backdrop-filter: none;
    }

    .home-hero__copy h1 {
        max-width: 15ch;
    }

    .home-hero__facts {
        grid-template-columns: 1fr;
    }

    .home-hero__facts > a + a {
        border-left: 1px solid var(--line);
        border-top: 0;
    }

    .welcome-grid,
    .catalog-layout,
    .visit-section__grid,
    .page-intro__grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .welcome-card {
        max-width: 39rem;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: .9rem;
    }

    .section-heading--split > p {
        max-width: 40rem;
    }

    .catalog-heading {
        position: static;
    }

    .visit-section__grid {
        gap: 2rem;
    }

    .visit-hours {
        max-width: 39rem;
    }

    .page-intro__grid {
        gap: 3rem;
        padding-block: 3.8rem 4.6rem;
    }

    .page-intro__copy {
        max-width: 49rem;
    }

    .page-intro__media {
        width: min(100%, 43rem);
    }

    .detail-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card--wide {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-strip__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: .8rem;
    }

    .brand-strip p {
        max-width: none;
    }

    .brand-strip ul {
        justify-content: flex-start;
    }
}

@media (max-width: 44rem) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .utility-bar__inner {
        min-height: 2.75rem;
        justify-content: center;
    }

    .utility-bar__links {
        width: 100%;
        justify-content: space-between;
        gap: .65rem;
    }

    .utility-bar__links a {
        font-size: .71rem;
    }

    .brand-bar__inner {
        min-height: 6.1rem;
    }

    .brand__logo {
        width: 7.25rem;
    }

    .home-hero {
        padding-top: 1rem;
    }

    .home-hero__facts > a {
        min-height: 4.9rem;
    }

    .feature-grid,
    .offer-list,
    .detail-aside,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 37rem;
        margin-inline: auto;
    }

    .offer-list {
        gap: 0;
    }

    .contact-card--wide {
        grid-column: auto;
    }

    .contact-card--wide__copy {
        flex-direction: column;
    }

    .hours-list > div {
        grid-template-columns: 1fr;
        gap: .2rem;
    }

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

@media (max-width: 34rem) {
    h1 {
        font-size: clamp(2.05rem, 10.5vw, 2.9rem);
    }

    .utility-bar__links a:last-child span {
        max-width: 10.3rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .home-hero__copy {
        padding: 1.5rem 1.25rem 1.7rem;
    }

    .visit-hours > div,
    .opening-card dl > div {
        grid-template-columns: 1fr;
        gap: .22rem;
    }

    .page-intro__actions,
    .plain-contact {
        width: 100%;
    }

    .plain-contact {
        justify-content: center;
        padding: .65rem;
    }

    .brand-strip li {
        font-size: .8rem;
    }

    .brand-strip li + li::before {
        margin-inline: .48rem;
    }

    .footer-bottom .container {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding-block: .9rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .utility-bar,
    .site-nav,
    .nav-toggle,
    .button-row,
    .brand-strip,
    .site-footer,
    .detail-aside,
    .home-hero__facts {
        display: none !important;
    }

    .brand-bar {
        color: #000;
        background: #fff;
    }

    .brand__copy small,
    .brand__copy strong {
        color: #000;
    }

    .home-hero__stage,
    .page-intro__media {
        box-shadow: none;
    }

    .home-hero__copy {
        position: static;
        width: auto;
        box-shadow: none;
    }

    .detail-layout {
        display: block;
    }
}
