:root {
    --color-ink: #211812;
    --color-ink-soft: #5d5048;
    --color-surface: #f7f0e3;
    --color-surface-muted: #efe2cd;
    --color-surface-strong: #e1cfb3;
    --color-brand: #6d1f1c;
    --color-brand-deep: #3b1213;
    --color-brand-alt: #123332;
    --color-accent: #c7a55b;
    --color-border: rgba(41, 24, 18, 0.12);
    --color-border-strong: rgba(41, 24, 18, 0.24);
    --color-white: #fffdf8;
    --shadow-soft: 0 18px 48px rgba(33, 24, 18, 0.08);
    --shadow-strong: 0 24px 64px rgba(33, 24, 18, 0.16);
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --site-width: min(1160px, calc(100vw - 2rem));
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: linear-gradient(180deg, #f9f2e7 0%, #f6edde 100%);
}

body.has-mobile-nav-open {
    overflow: hidden;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.site-main {
    padding-top: 5.5rem;
}

.site-container {
    width: var(--site-width);
    margin: 0 auto;
}

.skip-link,
.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;
}

.skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 1rem;
    padding: 0.75rem 1rem;
    background: var(--color-brand);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    z-index: 10000;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.875rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-header__menu a:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid rgba(199, 165, 91, 0.45);
    outline-offset: 2px;
}

.button--primary {
    background: linear-gradient(135deg, #8d2a27 0%, var(--color-brand) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.button--secondary {
    background: var(--color-white);
    color: var(--color-brand-deep);
    border-color: rgba(109, 31, 28, 0.18);
}

.button--ghost {
    background: transparent;
    color: var(--color-brand-deep);
    border-color: rgba(109, 31, 28, 0.2);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--color-brand);
}

.section {
    padding: 5rem 0;
}

.section--tinted {
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(239, 226, 205, 0.72), rgba(247, 240, 227, 0.68));
}

.section--tight {
    padding: 2.5rem 0;
}

.section-heading {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.section-eyebrow,
.page-hero__eyebrow,
.cta-strip__eyebrow,
.site-footer__eyebrow,
.info-card__eyebrow {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-brand);
    font-weight: 800;
}

.home-hero__eyebrow {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-brand);
    font-weight: 800;
}

.section-title,
.page-hero__title,
.home-hero__title,
.cta-strip__title,
.article-page__title {
    margin: 0;
    font-family: var(--font-display);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2.2rem, 3.6vw, 3.5rem);
}

.section-copy,
.page-hero__intro,
.home-hero__intro,
.cta-strip__copy {
    color: var(--color-ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(250, 245, 237, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(41, 24, 18, 0.06);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(250, 245, 237, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: 0 10px 40px rgba(33, 24, 18, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-height: 5.5rem;
}

.site-header__brand-link {
    display: inline-flex;
    align-items: center;
}

.site-header__logo,
.site-header .custom-logo {
    width: auto;
    height: 2.6rem;
}

.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 3.35rem;
    padding: 0.65rem 0.8rem 0.65rem 1rem;
    border: 1px solid rgba(41, 24, 18, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 240, 227, 0.96));
    color: var(--color-brand-deep);
    box-shadow: 0 16px 40px rgba(33, 24, 18, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(33, 24, 18, 0.16);
}

.site-header__toggle-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-header__toggle-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0.45rem;
    border-radius: 999px;
    background: rgba(109, 31, 28, 0.08);
}

.site-header__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background: var(--color-brand-deep);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .site-header__toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .site-header__toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-header__scrim {
    display: none;
}

.site-header__navigation-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header__navigation-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 240, 227, 0.94));
    border: 1px solid rgba(41, 24, 18, 0.1);
    box-shadow: 0 18px 42px rgba(33, 24, 18, 0.09);
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header__menu a {
    display: inline-flex;
    align-items: center;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-ink-soft);
}

.site-header__menu a:hover,
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
    color: var(--color-brand);
    background: rgba(109, 31, 28, 0.08);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.site-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(109, 31, 28, 0.08);
    color: var(--color-brand-deep);
    font-weight: 800;
}

.site-header__contact-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    color: var(--color-brand);
}

.site-header__contact-value {
    white-space: nowrap;
}

.site-header__mobile-head,
.site-header__mobile-close {
    display: none;
}

.site-header__mobile-close-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5.25rem 0 3.25rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(18, 51, 50, 0.12), transparent 28%);
}

.page-hero__inner {
    position: relative;
    max-width: 48rem;
}

.page-hero__title {
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.page-hero__intro {
    margin-top: 1rem;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 2.2rem 0 4.8rem;
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.22), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(109, 31, 28, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(249, 242, 231, 0.98), rgba(244, 235, 219, 0.95));
    color: var(--color-ink);
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(199, 165, 91, 0.22), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.32), transparent 20%);
}

.home-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.home-hero__title {
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.98;
}

.home-hero__intro {
    color: var(--color-ink-soft);
    max-width: 38rem;
    font-family: var(--font-body);
}

.home-hero__actions,
.visit-panel__actions,
.stacked-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.home-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.75rem;
    max-width: 42rem;
}

.home-hero__fact {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.1rem 1.1rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(41, 24, 18, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 240, 227, 0.88));
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.home-hero__fact::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(238, 214, 159, 0.9), rgba(255, 255, 255, 0));
}

.home-hero__fact-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-brand);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-hero__fact strong {
    color: var(--color-brand-deep);
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.4;
}

.home-hero__media {
    position: relative;
}

.home-hero__media-frame {
    overflow: hidden;
    padding: 0.8rem;
    border-radius: calc(var(--radius-lg) + 0.25rem);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(247, 240, 227, 0.88));
    border: 1px solid rgba(41, 24, 18, 0.08);
    box-shadow: var(--shadow-strong);
}

.home-hero__media-frame img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 0.2rem);
}

.home-hero__media-frame--heritage img {
    object-position: top center;
}

.home-hero__card {
    position: absolute;
    right: -1.25rem;
    bottom: 1.25rem;
    width: min(20rem, calc(100% - 2rem));
    padding: 1.5rem;
    border-radius: 1.65rem;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 227, 0.95));
    color: var(--color-brand-deep);
    border: 1px solid rgba(255, 253, 248, 0.44);
    box-shadow: var(--shadow-strong);
}

.home-hero__card-label {
    margin: 0 0 0.4rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8d2a27;
    font-weight: 800;
}

.home-hero__card-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--color-brand-deep);
}

.home-hero__card-copy {
    margin: 0 0 0.8rem;
    font-family: var(--font-body);
    color: var(--color-ink-soft);
    line-height: 1.6;
}

.home-hero__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
}

.home-hero__card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(109, 31, 28, 0.08);
    color: var(--color-brand-deep);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    margin-top: 0.15rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #8d2a27 0%, var(--color-brand) 100%);
    border: 1px solid rgba(109, 31, 28, 0.24);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(109, 31, 28, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-hero__card a:hover,
.home-hero__card a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(109, 31, 28, 0.28);
}

.story-grid,
.editorial-grid,
.visit-panel,
.cta-strip__inner,
.article-page__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.story-grid__media img,
.editorial-grid__media img,
.gallery-grid img,
.article-page__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.story-grid__brand-panel {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(255, 253, 248, 0.9);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.story-grid__brand-panel img {
    width: 11rem;
    height: auto;
}

.story-grid__brand-copy {
    margin: 0;
    color: var(--color-ink-soft);
    line-height: 1.8;
}

.feature-grid,
.trust-grid,
.post-grid,
.category-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card,
.post-card,
.trust-card,
.category-preview-card,
.policy-card,
.menu-page__specials-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.9);
    box-shadow: var(--shadow-soft);
}

.feature-card__image img,
.post-card__image img,
.trust-card img {
    width: 100%;
    height: 17rem;
    object-fit: cover;
}

.feature-card__body,
.post-card__body,
.trust-card,
.category-preview-card,
.policy-card,
.menu-page__specials-card {
    padding: 1.45rem;
}

.feature-card__meta,
.post-card__meta,
.article-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--color-ink-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.feature-card h3,
.trust-card h3,
.category-preview-card h3,
.post-card h2,
.post-card h3,
.policy-card h2,
.article-page__sidebar h2 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.feature-card p,
.trust-card p,
.category-preview-card li,
.post-card p,
.policy-card p,
.policy-card li,
.article-page__excerpt,
.article-page__sidebar p {
    color: var(--color-ink-soft);
    line-height: 1.75;
}

.category-preview-card ul,
.visit-panel__details ul,
.site-footer__hours,
.site-footer__links,
.policy-card ul {
    padding-left: 1.1rem;
    margin: 0;
}

.category-preview-card li,
.visit-panel__details li,
.site-footer__hours li,
.site-footer__links li {
    margin-bottom: 0.65rem;
}

.category-preview-card li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.specials-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: start;
}

.specials-showcase--home-only {
    align-items: stretch;
}

.specials-showcase__intro {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 240, 227, 0.94));
    border: 1px solid rgba(41, 24, 18, 0.08);
    box-shadow: var(--shadow-soft);
}

.specials-showcase__intro .section-title {
    max-width: 18rem;
}

.specials-showcase__intro .section-copy {
    margin: 0;
}

.specials-showcase__view-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.specials-showcase__panels,
.specials-showcase__mode-panel {
    min-width: 0;
}

.specials-showcase__panels {
    display: grid;
}

.specials-showcase__pdf {
    padding: 0.75rem;
    border-radius: 1.5rem;
    background: rgba(255, 253, 248, 0.84);
    border: 1px solid rgba(41, 24, 18, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 40px rgba(33, 24, 18, 0.08);
}

.specials-showcase__pdf-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.specials-showcase__pdf-frame {
    overflow: hidden;
    min-height: 35rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(41, 24, 18, 0.1);
    background: rgba(255, 253, 248, 0.94);
}

.specials-showcase__pdf-frame iframe {
    display: block;
    width: 100%;
    height: 35rem;
    border: 0;
    background: rgba(255, 253, 248, 0.94);
}

.specials-showcase__pdf-frame img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    display: block;
}

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

.specials-showcase__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
    padding: 1.35rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(41, 24, 18, 0.08);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 227, 0.96));
    box-shadow: 0 18px 44px rgba(33, 24, 18, 0.08);
}

.specials-showcase__card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 1.45rem 0 0 1.45rem;
    background: linear-gradient(180deg, var(--color-accent), var(--color-brand));
}

.specials-showcase__card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.9rem;
}

.specials-showcase__card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2vw, 2.2rem);
    line-height: 1.02;
    color: var(--color-brand-deep);
}

.specials-showcase__card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(109, 31, 28, 0.1);
    color: var(--color-brand-deep);
    font-size: 0.98rem;
    font-weight: 800;
    white-space: nowrap;
}

.specials-showcase__card p {
    margin: 0;
    color: #4d3d35;
    line-height: 1.8;
    font-size: 1rem;
}

.specials-showcase__intro .section-copy,
.specials-showcase__card p,
.specials-showcase__card h3,
.specials-showcase__card strong {
    color: var(--color-ink);
}

.specials-showcase__intro .section-copy {
    color: var(--color-ink-soft);
}

.specials-showcase__card .menu-item-card__tags {
    margin: 0;
}

.specials-showcase__card .menu-item-card__tags span {
    background: rgba(199, 165, 91, 0.18);
    color: var(--color-brand-deep);
    border: 1px solid rgba(109, 31, 28, 0.08);
}

.specials-showcase__card--featured {
    grid-column: 1 / -1;
}

.site-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.site-popup__scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(26, 14, 12, 0.58);
    backdrop-filter: blur(10px);
}

.site-popup__panel {
    position: relative;
    z-index: 1;
    width: min(56rem, calc(100vw - 2rem));
    margin: min(8vh, 4rem) auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 227, 0.96));
    border: 1px solid rgba(41, 24, 18, 0.1);
    box-shadow: 0 34px 90px rgba(14, 10, 9, 0.32);
}

.site-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(41, 24, 18, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--color-brand-deep);
    font-size: 1.8rem;
    line-height: 1;
    z-index: 2;
}

.site-popup__media {
    min-height: 100%;
}

.site-popup__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.site-popup__content {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2.5rem;
}

.site-popup__eyebrow {
    margin: 0;
    color: var(--color-brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-popup__content h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-brand-deep);
}

.site-popup__copy {
    margin: 0;
    color: var(--color-ink-soft);
    line-height: 1.8;
}

body.has-site-popup-open {
    overflow: hidden;
}

.visit-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(59, 18, 19, 0.98), rgba(18, 51, 50, 0.9));
    color: var(--color-white);
    box-shadow: var(--shadow-strong);
}

.visit-panel .section-copy,
.visit-panel__details li,
.visit-panel__details p {
    color: rgba(255, 253, 248, 0.82);
}

.visit-panel__details {
    display: grid;
    gap: 1rem;
}

.post-card__image {
    display: block;
}

.pagination-shell {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-shell .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 2.75rem;
    margin: 0 0.25rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
}

.pagination-shell .current {
    background: var(--color-brand);
    color: var(--color-white);
}

.empty-state {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-border-strong);
    background: rgba(255, 253, 248, 0.85);
    text-align: center;
}

.article-page__hero {
    padding: 3rem 0 2rem;
}

.article-page__hero-inner {
    max-width: 48rem;
}

.article-page__title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.article-page__image {
    margin-bottom: 2rem;
}

.article-page__layout {
    align-items: start;
}

.article-page__content {
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.article-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.article-page__tags a {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--color-surface-muted);
    color: var(--color-brand);
    font-weight: 700;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.article-navigation > div {
    flex: 1;
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.84);
}

.article-navigation__label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-ink-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.policy-layout {
    max-width: 56rem;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose a {
    color: var(--color-brand);
    text-decoration: underline;
}

.prose ul,
.prose ol {
    padding-left: 1.25rem;
}

.prose img {
    border-radius: var(--radius-md);
}

.policy-card h2 {
    margin-top: 0;
}

.prose h2,
.prose h3 {
    scroll-margin-top: 8rem;
}

.prose p,
.prose li {
    font-size: 1rem;
}

.timeline__list {
    display: grid;
    gap: 1rem;
}

.timeline__item {
    display: grid;
    grid-template-columns: minmax(8rem, 12rem) 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid var(--color-border);
}

.timeline__year {
    color: var(--color-brand);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

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

.info-card {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.cta-strip {
    padding: 1rem 0 5rem;
}

.cta-strip__inner {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 0.25rem);
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.24), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 30%),
        linear-gradient(135deg, rgba(59, 18, 19, 0.99), rgba(18, 51, 50, 0.94));
    color: var(--color-white);
    box-shadow: var(--shadow-strong);
}

.cta-strip__inner::after {
    content: "";
    position: absolute;
    inset: auto -5rem -5rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(8px);
}

.cta-strip__content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
}

.cta-strip__eyebrow {
    color: rgba(238, 214, 159, 0.98);
}

.cta-strip__title {
    font-size: clamp(2.35rem, 4vw, 3.4rem);
    color: rgba(255, 253, 248, 0.98);
}

.cta-strip__copy {
    color: rgba(255, 253, 248, 0.9);
    max-width: 38rem;
}

.cta-strip__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-end;
    align-self: center;
    padding: 0.8rem;
    border-radius: 1.5rem;
    background: rgba(255, 253, 248, 0.08);
    border: 1px solid rgba(255, 253, 248, 0.12);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.cta-strip__actions .button {
    min-width: 11.75rem;
}

.cta-strip__actions .button--primary {
    box-shadow: 0 18px 36px rgba(109, 31, 28, 0.32);
}

.cta-strip__actions .button--secondary {
    background: rgba(255, 253, 248, 0.98);
    color: var(--color-brand-deep);
    border-color: rgba(255, 253, 248, 0.88);
}

.site-footer {
    position: relative;
    padding: 4rem 0 2rem;
    background:
        linear-gradient(180deg, rgba(59, 18, 19, 0.98), rgba(31, 12, 13, 1));
    color: rgba(255, 253, 248, 0.9);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    gap: 1rem;
    align-items: start;
}

.site-footer__intro,
.site-footer__column {
    position: relative;
    overflow: hidden;
    padding: 1.4rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.06));
    border: 1px solid rgba(255, 253, 248, 0.16);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.site-footer__intro {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 1.55rem;
    background:
        radial-gradient(circle at top left, rgba(199, 165, 91, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(199, 165, 91, 0.18), rgba(255, 253, 248, 0.08));
}

.site-footer__intro::before,
.site-footer__column::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(238, 214, 159, 0.88), rgba(109, 31, 28, 0.72));
    opacity: 0.9;
}

.site-footer__intro h2,
.site-footer__column h3 {
    margin-bottom: 0;
    margin-top: 0;
    font-family: var(--font-display);
    color: rgba(255, 253, 248, 0.98);
}

.site-footer__eyebrow {
    margin: 0;
    color: rgba(238, 214, 159, 0.98);
}

.site-footer__copy,
.site-footer__column p,
.site-footer__column li {
    color: rgba(255, 253, 248, 0.86);
    line-height: 1.7;
}

.site-footer__copy {
    margin: 0 0 0.1rem;
    max-width: 24rem;
}

.site-footer__card-kicker {
    margin: -0.1rem 0 1rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(238, 214, 159, 0.94);
}

.site-footer__hours,
.site-footer__links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.site-footer__hours {
    gap: 0.7rem;
    margin: 0.15rem 0 0;
}

.site-footer__hours li,
.site-footer__links li {
    position: relative;
    padding-left: 1rem;
    margin: 0;
}

.site-footer__hours li::before,
.site-footer__links li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(238, 214, 159, 0.9);
}

.site-footer a {
    color: rgba(255, 253, 248, 0.96);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: rgba(238, 214, 159, 1);
}

.site-footer__grid {
    display: contents;
}

.site-footer__column {
    height: auto;
}

.site-footer__badge-shell {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.35rem 0;
}

.site-footer__badge {
    width: 100%;
    max-width: 16.5rem;
    height: auto;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.22));
}

.site-footer__actions,
.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.site-footer__links a,
.site-footer__column p a {
    font-weight: 600;
}

.site-footer__column--explore {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.05));
}

.site-footer__column--visit {
    grid-column: 3;
    grid-row: 1;
    background:
        radial-gradient(circle at top right, rgba(199, 165, 91, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.06));
}

.site-footer__contact-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
}

.site-footer__contact-list li {
    display: grid;
    min-width: 0;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.08));
    border: 1px solid rgba(255, 253, 248, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.site-footer__contact-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(238, 214, 159, 0.92);
}

.site-footer__contact-list strong,
.site-footer__contact-list strong a {
    display: block;
    min-width: 0;
    color: rgba(255, 253, 248, 0.98);
    font-size: 1.08rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-footer__contact-list span {
    color: rgba(255, 253, 248, 0.82);
    overflow-wrap: anywhere;
}

.site-footer__column--notes {
    grid-column: 1 / span 2;
    grid-row: 2;
    background:
        radial-gradient(circle at bottom left, rgba(238, 214, 159, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.06));
}

.site-footer__note-list {
    display: grid;
    gap: 0.85rem;
}

.site-footer__note-item {
    display: grid;
    gap: 0.65rem;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.15), rgba(255, 253, 248, 0.07));
    border: 1px solid rgba(255, 253, 248, 0.12);
}

.site-footer__note-item p {
    margin: 0;
}

.site-footer__note-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 1.9rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(238, 214, 159, 0.14);
    border: 1px solid rgba(238, 214, 159, 0.18);
    color: rgba(255, 253, 248, 0.98);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__column--hygiene {
    display: grid;
    align-content: start;
    justify-items: center;
    grid-column: 3;
    grid-row: 2;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.06));
}

.site-footer__column--hygiene h3 {
    width: 100%;
}

.site-footer__column--hygiene .site-footer__badge-shell {
    margin-top: 0.35rem;
    padding-top: 0.5rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__column p a:hover,
.site-footer__column p a:focus-visible {
    text-decoration: underline;
    text-decoration-color: rgba(238, 214, 159, 0.72);
    text-underline-offset: 0.18rem;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.08);
    border: 1px solid rgba(255, 253, 248, 0.14);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 253, 248, 0.14);
    border-color: rgba(238, 214, 159, 0.36);
}

@media (max-width: 980px) {
    .site-main {
        padding-top: 5rem;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .site-header__navigation-shell {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        width: 100vw;
        height: 100dvh;
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        background: rgba(20, 12, 11, 0.28);
        border: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.38s;
    }

    body.admin-bar .site-header__navigation-shell {
        top: 32px;
        height: calc(100dvh - 32px);
    }

    .site-header.is-open .site-header__navigation-shell {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s;
    }

    .site-header__menu,
    .feature-grid,
    .trust-grid,
    .post-grid,
    .category-preview-grid,
    .specials-showcase__cards,
    .gallery-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.65rem;
    }

    .site-header__menu li {
        width: 100%;
    }

    .site-header__navigation-panel {
        position: relative;
        height: 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1.35rem;
        padding: 5.6rem 1rem 1.15rem;
        border-radius: 0;
        background:
            radial-gradient(circle at top right, rgba(199, 165, 91, 0.2), transparent 30%),
            radial-gradient(circle at bottom left, rgba(109, 31, 28, 0.08), transparent 26%),
            linear-gradient(180deg, rgba(255, 252, 246, 0.995), rgba(244, 235, 219, 0.985));
        border: 0;
        box-shadow: none;
        overflow-y: auto;
    }

    .site-header__navigation-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 18%),
            linear-gradient(90deg, rgba(199, 165, 91, 0.08), transparent 20%);
        pointer-events: none;
    }

    .site-header__scrim {
        display: none;
    }

    .site-header__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.25rem 0 1rem;
        border-bottom: 1px solid rgba(41, 24, 18, 0.08);
    }

    .site-header__mobile-eyebrow {
        margin: 0;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--color-brand);
    }

    .site-header__mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        min-height: 3.15rem;
        padding: 0.65rem 0.8rem 0.65rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(41, 24, 18, 0.14);
        background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 240, 227, 0.96));
        color: var(--color-brand-deep);
        font-weight: 800;
        box-shadow: 0 16px 40px rgba(33, 24, 18, 0.12);
    }

    .site-header__nav {
        position: relative;
        z-index: 1;
        padding: 1rem;
        border-radius: 1.7rem;
        background:
            linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 240, 227, 0.82));
        border: 1px solid rgba(41, 24, 18, 0.08);
        box-shadow: 0 20px 42px rgba(33, 24, 18, 0.08);
    }

    .site-header__nav,
    .site-header__actions {
        opacity: 0;
        transform: translateX(1.5rem);
        transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    }

    .site-header.is-open .site-header__nav,
    .site-header.is-open .site-header__actions {
        opacity: 1;
        transform: translateX(0);
    }

    .site-header.is-open .site-header__actions {
        transition-delay: 0.05s;
    }

    .site-header__actions {
        position: relative;
        z-index: 1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding: 1.05rem;
        border-radius: 1.75rem;
        background:
            radial-gradient(circle at top left, rgba(199, 165, 91, 0.1), transparent 34%),
            linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 236, 220, 0.9));
        border: 1px solid rgba(41, 24, 18, 0.08);
        box-shadow: 0 22px 48px rgba(33, 24, 18, 0.1);
    }

    .site-header__contact {
        justify-content: space-between;
        min-height: 3.5rem;
        padding: 0.95rem 1rem;
        background: linear-gradient(180deg, rgba(109, 31, 28, 0.08), rgba(109, 31, 28, 0.04));
        border: 1px solid rgba(41, 24, 18, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .site-header__menu a {
        width: 100%;
        justify-content: flex-start;
        min-height: 3.7rem;
        padding: 1rem 1.05rem;
        border-radius: 1.2rem;
        background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 240, 227, 0.88));
        border: 1px solid rgba(41, 24, 18, 0.08);
        color: var(--color-brand-deep);
        box-shadow: 0 14px 28px rgba(33, 24, 18, 0.06);
    }

    .site-header__menu a:hover,
    .site-header__menu .current-menu-item > a,
    .site-header__menu .current_page_item > a {
        background: linear-gradient(135deg, #8d2a27 0%, var(--color-brand) 100%);
        color: var(--color-white);
        border-color: rgba(109, 31, 28, 0.36);
        box-shadow: 0 18px 32px rgba(109, 31, 28, 0.2);
    }

    .home-hero__inner,
    .story-grid,
    .editorial-grid,
    .visit-panel,
    .cta-strip__inner,
    .article-page__layout,
    .specials-showcase,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .home-hero__card {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }

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

    .home-hero__media-frame img {
        min-height: auto;
    }

    .specials-showcase__pdf-frame,
    .specials-showcase__pdf-frame iframe,
    .specials-showcase__pdf-frame img {
        min-height: 26rem;
        height: 26rem;
    }

    .site-popup__panel {
        grid-template-columns: 1fr;
    }

    .site-popup__media img {
        min-height: 16rem;
    }

    .article-page__sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header__toggle {
        min-height: 3.15rem;
        padding-inline: 0.8rem;
    }

    .site-header__toggle-label {
        font-size: 0.72rem;
    }

    .site-header__navigation-shell {
        width: 100vw;
        padding: 0;
    }

    body.admin-bar .site-header__navigation-shell {
        top: 46px;
        height: calc(100dvh - 46px);
    }

    .site-header__navigation-panel {
        padding: 5.15rem 0.9rem 1rem;
    }

    .site-header__mobile-head {
        padding-bottom: 0.9rem;
    }

    .site-header__nav,
    .site-header__actions {
        border-radius: 1.45rem;
    }
    .section {
        padding: 4rem 0;
    }

    .home-hero {
        padding-bottom: 4rem;
    }

    .home-hero__facts,
    .feature-grid,
    .trust-grid,
    .post-grid,
    .category-preview-grid,
    .specials-showcase__cards,
    .gallery-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .timeline__item,
    .article-navigation,
    .site-footer__bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero {
        padding-top: 4.4rem;
    }

    .page-hero__actions,
    .home-hero__actions,
    .visit-panel__actions,
    .cta-strip__actions,
    .stacked-actions,
    .site-footer__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cta-strip__actions {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-popup__panel {
        width: min(100vw - 1rem, 34rem);
        margin-top: 1rem;
        border-radius: 1.5rem;
    }

    .site-popup__content {
        padding: 1.5rem;
    }
}
