@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;600&display=swap");

:root {
    --ink: #10100f;
    --ink-soft: #242421;
    --off-white: #f4f1ea;
    --paper: #fbfaf7;
    --stone: #d8d3ca;
    --concrete: #aaa69f;
    --white: #ffffff;
    --error: #8f342e;
    --content: 1240px;
    --header-height: 76px;
    --radius: 4px;
    --shadow: 0 18px 44px rgba(16, 16, 15, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    --bs-link-color: var(--ink);
    --bs-link-color-rgb: 16, 16, 15;
    --bs-link-hover-color: var(--ink-soft);
    --bs-link-hover-color-rgb: 36, 36, 33;
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

body a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}

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

.shell {
    width: min(calc(100% - 48px), var(--content));
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--concrete);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.display,
.section-title,
.page-title,
.business-name,
.location-title {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.section-title {
    max-width: 760px;
    font-size: 3.5rem;
}

.section-copy {
    max-width: 650px;
    margin: 28px 0 0;
    color: #4b4a46;
    font-size: 1.08rem;
    line-height: 1.75;
}

.button,
.icon-button,
.text-link {
    min-height: 44px;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
}

.button:hover {
    background: var(--ink-soft);
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button--light:hover {
    background: var(--off-white);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    background: transparent;
    color: var(--white);
}

.button--outline-light:hover {
    background: var(--white);
    color: var(--ink);
}

.button--outline {
    background: transparent;
    color: var(--ink);
}

.button--outline:hover {
    background: var(--ink);
    color: var(--white);
}

.icon-button {
    position: relative;
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stone);
    background: transparent;
    color: var(--ink);
}

.icon-button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.icon-button svg,
.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.icon-button[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 10;
    width: max-content;
    max-width: 180px;
    padding: 6px 8px;
    border-radius: 2px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease;
}

.icon-button[data-tooltip]:hover::after,
.icon-button[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid rgba(16, 16, 15, 0.12);
    background: rgba(251, 250, 247, 0.96);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    width: min(calc(100% - 40px), var(--content));
    height: 100%;
    margin-inline: auto;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 150px;
    height: 54px;
    align-items: center;
    overflow: hidden;
}

.brand img {
    width: auto;
    height: 46px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.desktop-nav a {
    position: relative;
    padding: 9px 0;
    color: #343431;
    font-size: 0.79rem;
    font-weight: 650;
    text-decoration: none;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.zaya-header-actions,
.header-actions {
    display: flex;
    min-width: 208px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.auth-text-button {
    display: none;
    min-height: 44px;
    align-items: center;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.auth-text-button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-mobile-action {
    display: none;
}

.hero {
    position: relative;
    min-height: 620px;
    height: calc(100svh - var(--header-height) - 54px);
    max-height: 820px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    display: grid;
    grid-template-columns: 58% 42%;
}

.hero-picture {
    min-width: 0;
    overflow: hidden;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-picture:first-child img {
    object-position: center 54%;
}

.hero-picture:last-child img {
    object-position: center 54%;
}

.hero-shade {
    background: rgba(0, 0, 0, 0.43);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(calc(100% - 48px), var(--content));
    height: 100%;
    margin-inline: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 74px;
}

.hero-kicker {
    margin: 0 0 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero .display {
    max-width: 830px;
    font-size: 6.7rem;
    text-wrap: balance;
}

.hero-copy {
    max-width: 540px;
    margin: 24px 0 0;
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.intro-band {
    padding: 88px 0 102px;
    background: var(--off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 80px;
    align-items: end;
}

.intro-statement {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 3.5rem;
    line-height: 1.08;
}

.intro-copy {
    margin: 0;
    color: #4b4a46;
    font-size: 1.06rem;
    line-height: 1.8;
}

.academy-section {
    padding: 116px 0 122px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.section-head-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.modalities {
    display: grid;
    margin: 78px 0 0;
    border-top: 1px solid var(--stone);
    grid-template-columns: repeat(3, 1fr);
}

.modality {
    min-height: 166px;
    padding: 28px 24px 32px 0;
    border-bottom: 1px solid var(--stone);
}

.modality:not(:nth-child(3n + 1)) {
    padding-left: 28px;
    border-left: 1px solid var(--stone);
}

.modality-number {
    color: var(--concrete);
    font-size: 0.72rem;
    font-weight: 700;
}

.modality h3 {
    margin: 34px 0 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.05;
}

.business-section {
    background: var(--ink);
    color: var(--white);
}

.business-row {
    display: grid;
    min-height: 560px;
    grid-template-columns: 1fr 1fr;
}

.business-row + .business-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-media {
    min-height: 480px;
    overflow: hidden;
}

.business-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-media--coffee {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
}

.business-media--coffee img {
    width: min(54%, 300px);
    height: auto;
    object-fit: contain;
}

.business-content {
    display: flex;
    padding: 72px max(40px, calc((100vw - var(--content)) / 2)) 72px 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.business-row:nth-child(2) .business-content {
    padding-right: 72px;
    padding-left: max(40px, calc((100vw - var(--content)) / 2));
}

.business-row:nth-child(2) .business-media {
    order: 2;
}

.business-name {
    font-size: 5rem;
}

.business-copy {
    max-width: 460px;
    margin: 26px 0 34px;
    color: #cbc8c1;
    font-size: 1.04rem;
    line-height: 1.75;
}

.story-section {
    padding: 132px 0;
    background: var(--off-white);
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 100px;
}

.story-index {
    display: flex;
    min-height: 340px;
    padding-top: 12px;
    border-top: 1px solid var(--ink);
    flex-direction: column;
    justify-content: space-between;
}

.story-index strong {
    max-width: 330px;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.08;
}

.story-body p {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1.24;
}

.story-body p + p {
    margin-top: 38px;
}

.location-section {
    display: grid;
    min-height: 680px;
    background: var(--paper);
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
}

.location-photo {
    min-height: 600px;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.location-content {
    display: flex;
    padding: 80px max(40px, calc((100vw - var(--content)) / 2)) 80px 72px;
    flex-direction: column;
    justify-content: center;
}

.location-title {
    font-size: 4.3rem;
}

.location-address {
    max-width: 370px;
    margin: 30px 0 0;
    font-size: 1.12rem;
    line-height: 1.65;
}

.hours {
    width: 100%;
    max-width: 460px;
    margin: 42px 0 36px;
    border-collapse: collapse;
}

.hours th,
.hours td {
    padding: 14px 0;
    border-top: 1px solid var(--stone);
    font-size: 0.9rem;
    text-align: left;
}

.hours th {
    font-weight: 600;
}

.hours td {
    text-align: right;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.social-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.page-hero {
    padding: 88px 0 64px;
    border-bottom: 1px solid var(--stone);
    background: var(--off-white);
}

.page-hero .eyebrow {
    color: #686660;
}

.page-title {
    max-width: 920px;
    font-size: 5.5rem;
}

.zaya-page-intro,
.page-intro {
    max-width: 650px;
    margin: 24px 0 0;
    color: #4b4a46;
    font-size: 1.05rem;
    line-height: 1.72;
}

.widget-section {
    width: 100%;
    min-height: 560px;
    padding: 48px 0 90px;
    margin: 0;
    background: var(--paper);
}

.widget-wrapper {
    width: 100%;
    min-height: 430px;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.pagekraft-catalogue,
.pagekraft-booking,
.pagekraft-my-account,
.pagekraft-event-list {
    width: 100%;
    min-height: 300px;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.widget-status {
    display: flex;
    width: min(calc(100% - 48px), var(--content));
    min-height: 220px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.widget-status[hidden] {
    display: none;
}

.widget-status-inner {
    max-width: 520px;
}

.widget-spinner {
    width: 30px;
    height: 30px;
    margin: 0 auto 18px;
    border: 2px solid var(--stone);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

.widget-status p {
    margin: 0;
    color: #5e5c57;
    font-size: 0.9rem;
}

.widget-status .button {
    margin-top: 22px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-footer {
    padding: 80px 0 34px;
    background: var(--ink);
    color: var(--white);
}

.footer-top {
    display: grid;
    padding-bottom: 72px;
    grid-template-columns: 1.2fr 0.7fr 0.9fr 0.9fr;
    gap: 56px;
}

.footer-mark {
    max-width: 390px;
}

.footer-mark img {
    width: 245px;
    filter: invert(1);
}

.footer-mark p {
    margin: 28px 0 0;
    color: #c9c6bf;
    line-height: 1.7;
}

.footer-column h2 {
    margin: 0 0 22px;
    color: #a8a59f;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    color: var(--white);
    font-size: 0.88rem;
    line-height: 1.5;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #a8a59f;
    font-size: 0.74rem;
}

.storage-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    width: min(440px, calc(100% - 36px));
    padding: 20px;
    border: 1px solid #3c3c39;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
    color: var(--white);
    overflow: hidden;
}

.storage-notice[hidden] {
    display: none;
}

.storage-notice h2 {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.storage-notice p {
    margin: 10px 0 0;
    color: #d4d1ca;
    font-size: 0.82rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: normal !important;
}

.storage-notice details {
    margin-top: 12px;
}

.storage-notice summary {
    min-height: 40px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 40px;
}

.storage-notice-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.storage-notice .button {
    min-height: 40px;
    padding: 9px 18px;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 140px 1fr auto;
        gap: 18px;
    }

    .desktop-nav {
        gap: 17px;
    }

    .zaya-header-actions,
    .header-actions {
        min-width: 160px;
    }

    .pagekraft-auth-register,
    .pagekraft-auth-logout {
        display: none !important;
    }

    .hero .display {
        font-size: 5.4rem;
    }

    .business-name {
        font-size: 4rem;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 68px;
    }

    .shell,
    .hero-content {
        width: min(calc(100% - 32px), var(--content));
    }

    .header-inner {
        width: calc(100% - 24px);
        grid-template-columns: 1fr auto;
    }

    .brand {
        width: 128px;
        height: 48px;
    }

    .brand img {
        width: auto;
        height: 42px;
    }

    .desktop-nav,
    .auth-text-button {
        display: none !important;
    }

    body .site-header .zaya-header-actions,
    body .site-header .header-actions {
        display: flex !important;
        min-width: auto;
    }

    .menu-mobile-action {
        display: inline-flex !important;
    }

    body .site-header .zaya-header-actions .car-shopping,
    body .site-header .zaya-header-actions .menu-mobile-action,
    body .site-header .header-actions .car-shopping,
    body .site-header .header-actions .menu-mobile-action {
        display: inline-flex !important;
    }

    body .page-hero .zaya-page-intro,
    body .page-hero .page-intro,
    .hero-copy,
    .section-copy,
    .intro-copy,
    .business-copy,
    .location-address {
        overflow-wrap: anywhere;
        white-space: normal !important;
    }

    .hero {
        min-height: 600px;
        height: calc(100svh - var(--header-height) - 34px);
        max-height: 760px;
    }

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

    .hero-picture:first-child img {
        object-position: center 48%;
    }

    .hero-picture:last-child {
        display: none;
    }

    .hero-shade {
        background: rgba(0, 0, 0, 0.48);
    }

    .hero-content {
        padding-bottom: 42px;
    }

    .hero .display {
        max-width: 600px;
        font-size: 4.8rem;
    }

    .intro-grid,
    .story-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title,
    .intro-statement {
        font-size: 3rem;
    }

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

    .modality:not(:nth-child(3n + 1)) {
        padding-left: 0;
        border-left: 0;
    }

    .modality:nth-child(even) {
        padding-left: 24px;
        border-left: 1px solid var(--stone);
    }

    .business-row {
        grid-template-columns: 1fr;
    }

    .business-content,
    .business-row:nth-child(2) .business-content {
        min-height: 430px;
        padding: 58px 32px;
    }

    .business-row:nth-child(2) .business-media {
        order: 0;
    }

    .story-index {
        min-height: 220px;
    }

    .location-section {
        grid-template-columns: 1fr;
    }

    .location-photo {
        max-height: 700px;
    }

    .location-content {
        padding: 70px 32px;
    }

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

    .footer-mark {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 570px;
        max-height: 690px;
    }

    .hero .display {
        font-size: 3.4rem;
        line-height: 0.96;
    }

    .hero-copy {
        max-width: 340px;
        margin-top: 18px;
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
        margin-top: 26px;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .intro-band,
    .academy-section,
    .story-section {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .intro-statement,
    .section-title {
        font-size: 2.45rem;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head-actions {
        width: 100%;
        flex-direction: column;
    }

    .section-head-actions .button {
        width: 100%;
    }

    .modalities {
        margin-top: 52px;
        grid-template-columns: 1fr;
    }

    .modality,
    .modality:nth-child(even) {
        min-height: 130px;
        padding: 22px 0 26px;
        border-left: 0;
    }

    .modality h3 {
        margin-top: 22px;
        font-size: 1.7rem;
    }

    .business-media {
        min-height: 390px;
    }

    .business-content,
    .business-row:nth-child(2) .business-content {
        min-height: 390px;
        padding: 50px 20px;
    }

    .business-name {
        font-size: 3.35rem;
    }

    .story-index strong {
        font-size: 2.2rem;
    }

    .story-body p {
        font-size: 2rem;
    }

    .location-photo {
        min-height: 530px;
    }

    .location-content {
        padding: 62px 20px;
    }

    .location-title {
        font-size: 3.3rem;
    }

    .page-hero {
        padding: 64px 0 48px;
    }

    .page-title {
        font-size: 3.55rem;
    }

    .widget-section {
        padding-top: 28px;
    }

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

    .footer-mark {
        grid-column: auto;
    }

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

    body > .storage-notice {
        right: 10px !important;
        bottom: 46px;
        left: 10px !important;
        width: calc(100vw - 20px) !important;
        min-width: 0 !important;
        max-width: calc(100vw - 20px) !important;
        padding: 18px;
    }

    body > .storage-notice p {
        max-width: 100% !important;
        margin-top: 6px;
        font-size: 0.76rem;
        white-space: normal !important;
        word-break: break-word;
    }

    .storage-notice h2 {
        font-size: 1.25rem;
    }

    .storage-notice details {
        display: inline-block;
        margin-top: 6px;
    }

    .storage-notice-actions {
        display: inline-flex;
        width: auto;
        margin-top: 6px;
        float: right;
    }

    .storage-notice .button {
        width: auto !important;
        min-height: 38px;
        padding: 8px 16px;
    }
}

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

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

/* Editorial preview homepage */
.editorial-home {
    background: #f5f2eb;
}

.editorial-shell {
    width: min(calc(100% - 64px), 1400px);
    margin-inline: auto;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 190px minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 46px;
    align-items: start;
}

.editorial-grid--rail {
    grid-template-columns: 190px minmax(0, 1fr);
}

.editorial-label {
    display: flex;
    margin: 0 0 28px;
    align-items: center;
    gap: 14px;
    font-size: 0.64rem;
    font-weight: 750;
    line-height: 1.2;
    text-transform: uppercase;
}

.editorial-label::after {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.journal-section {
    padding: 68px 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.14);
}

.section-aside h2 {
    max-width: 180px;
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.12;
}

.arrow-link {
    display: inline-flex;
    min-height: 44px;
    margin-top: 46px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(16, 16, 15, 0.42);
    font-size: 0.66rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.arrow-link span {
    font-size: 1rem;
    transition: transform 160ms ease;
}

.arrow-link:hover span {
    transform: translateX(4px);
}

.editorial-hero {
    position: relative;
    min-height: 650px;
    height: calc(100svh - var(--header-height));
    max-height: 820px;
    overflow: hidden;
    background: #e7e1d7;
}

.editorial-hero-photo {
    position: absolute;
    inset: 0 0 0 32%;
    overflow: hidden;
}

.editorial-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.editorial-hero-wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #eeeae2 0%, rgba(238, 234, 226, 0.97) 25%, rgba(238, 234, 226, 0.58) 48%, rgba(238, 234, 226, 0.04) 74%);
}

.editorial-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(calc(100% - 64px), 1400px);
    height: 100%;
    margin-inline: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 0 52px;
}

.editorial-hero-content .eyebrow {
    margin-bottom: 26px;
    color: #4a4944;
}

.editorial-hero-content h1 {
    max-width: 600px;
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: clamp(4.1rem, 6.1vw, 6.6rem);
    font-weight: 400;
    line-height: 0.98;
}

.editorial-hero-content > p:not(.eyebrow) {
    max-width: 390px;
    margin: 30px 0 0;
    color: #45443f;
    font-size: 0.98rem;
    line-height: 1.65;
}

.editorial-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.editorial-actions .button {
    min-width: 164px;
    border-radius: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue span:last-child {
    font-size: 1rem;
}

.manifesto-title {
    max-width: 720px;
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.manifesto-note {
    padding-top: 6px;
    color: #66635d;
    font-size: 0.76rem;
    line-height: 1.7;
}

.manifesto-note p {
    margin: 0 0 24px;
}

.manifesto-note strong {
    color: var(--ink);
    font-size: 0.69rem;
}

.experience-rail {
    display: grid;
    min-width: 0;
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 5px;
}

.experience-card,
.community-card {
    position: relative;
    min-width: 0;
    height: 410px;
    overflow: hidden;
    background: #d8d3ca;
    color: #fff;
    text-decoration: none;
}

.experience-card::after,
.community-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
}

.experience-card img,
.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.experience-card:hover img,
.community-card:hover img {
    transform: scale(1.025);
}

.experience-card span,
.community-card span {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 1;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.35rem;
}

.experience-card--wide img {
    object-position: center 58%;
}

.experience-card--coffee,
.community-card--mark {
    background: #fff;
    color: var(--ink);
}

.experience-card--coffee {
    color: var(--white);
}

.experience-card--coffee::after,
.community-card--mark::after {
    display: none;
}

.experience-card--coffee img,
.community-card--mark img {
    padding: 0;
    object-fit: cover;
}

.modality-rail {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(16, 16, 15, 0.18);
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.modality-rail article {
    position: relative;
    display: flex;
    min-height: 275px;
    padding: 22px 18px;
    background-image: linear-gradient(rgba(16, 16, 15, 0.4), rgba(16, 16, 15, 0.76)), url("../images/zaya-modalidade-reformer.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
    flex-direction: column;
    justify-content: space-between;
}

.modality-rail article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.modality-rail article:nth-child(2) { background-position: 34% center; }
.modality-rail article:nth-child(3) { background-position: 44% center; }
.modality-rail article:nth-child(4) { background-position: 56% center; }
.modality-rail article:nth-child(5) { background-position: 68% center; }
.modality-rail article:nth-child(6) { background-position: 82% center; }

.modality-rail .modality-card--yoga {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-yoga.webp");
    background-position: center 46%;
}

.modality-rail .modality-card--hot-yoga {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-hot-yoga.webp");
    background-position: center 46%;
}

.modality-rail .modality-card--hot-pilates {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-hot-pilates.webp");
    background-position: center 46%;
}

.modality-rail .modality-card--mat-pilates {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-mat-pilates.webp");
    background-position: center 46%;
}

.modality-rail .modality-card--pilates-reformer {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-pilates-reformer.webp");
    background-position: center 46%;
}

.modality-rail .modality-card--sculpt {
    background-image: linear-gradient(rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.72)), url("../images/zaya-modalidade-sculpt.webp");
    background-position: center 46%;
}

.modality-rail span {
    font-size: 0.62rem;
    font-weight: 700;
}

.modality-rail .modality-badge {
    position: absolute;
    top: 17px;
    right: 14px;
    padding: 5px 8px 4px;
    border-radius: 999px;
    background: rgba(244, 241, 234, 0.94);
    color: var(--ink);
    font-size: 0.5rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modality-rail h3 {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.05;
}

.journey-section .editorial-grid {
    grid-template-columns: 190px repeat(2, minmax(0, 1fr));
}

.journey-panel {
    display: grid;
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(16, 16, 15, 0.16);
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 30px;
}

.journey-number {
    margin: 0;
    color: #77746d;
    font-size: 0.68rem;
}

.journey-panel > div {
    align-self: end;
}

.journey-panel > div span {
    color: #77746d;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.journey-panel h3 {
    max-width: 370px;
    margin: 10px 0 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.15;
}

.circle-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1 / 3;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.circle-link:hover {
    background: var(--ink);
    color: #fff;
}

.membership-section {
    padding: 74px 0;
    background: var(--ink);
    color: #fff;
}

.membership-section .editorial-grid {
    grid-template-columns: 190px minmax(0, 1fr);
}

.membership-section .arrow-link {
    border-color: rgba(255, 255, 255, 0.5);
}

.membership-message {
    display: grid;
    padding: 54px 58px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    grid-template-columns: 0.55fr 1fr auto;
    gap: 48px;
    align-items: center;
}

.membership-message p {
    margin: 0;
    color: #c9c6bf;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.membership-message h3 {
    max-width: 620px;
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.18;
}

.community-rail {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 5px;
}

.community-card {
    height: 300px;
}

.community-card:first-child img {
    object-position: center 62%;
}

.editorial-location {
    min-height: 590px;
    grid-template-columns: 1.2fr 0.8fr;
    border-bottom: 1px solid rgba(16, 16, 15, 0.14);
}

.editorial-location .location-photo {
    min-height: 590px;
}

.editorial-location .location-photo img {
    object-position: center 42%;
}

.editorial-location .location-content {
    padding: 64px max(32px, calc((100vw - 1400px) / 2)) 64px 58px;
}

.editorial-location .location-title {
    font-size: 3.6rem;
}

.editorial-location .hours {
    margin-top: 34px;
    margin-bottom: 22px;
}

.editorial-location .hours caption {
    padding-top: 12px;
    text-align: left;
}

.editorial-location .social-links {
    margin-top: 20px;
}

/* Angulare injects this promotional attribution after its widgets load. */
a.marquee[href^="https://angulare.app/"] {
    display: none !important;
}

.checkout-unavailable {
    width: min(520px, calc(100% - 32px));
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
}

.checkout-unavailable::backdrop {
    background: rgba(16, 16, 15, 0.66);
}

.checkout-unavailable form {
    position: relative;
    padding: 48px;
}

.checkout-unavailable h2 {
    margin: 0;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.35rem;
    font-weight: 400;
    line-height: 1.05;
}

.checkout-unavailable form > p:not(.eyebrow) {
    margin: 22px 0 30px;
    color: #55534e;
    line-height: 1.65;
}

.checkout-unavailable-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
}

.site-footer {
    padding-top: 64px;
    background: #f5f2eb;
    color: var(--ink);
}

.footer-mark img {
    filter: none;
}

.footer-mark .footer-wordmark {
    margin: 0;
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: 0.85;
    text-transform: capitalize;
}

.footer-mark {
    display: flex;
    width: fit-content;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-mark .footer-wordmark + p {
    width: 100%;
    margin-top: 34px;
    text-align: center;
}

.footer-mark p,
.footer-column h2,
.footer-bottom {
    color: #69665f;
}

.footer-links a,
.footer-links span {
    color: var(--ink);
}

.footer-bottom {
    border-top-color: rgba(16, 16, 15, 0.16);
}

.policy-page {
    background: var(--paper);
}

.policy-hero {
    padding: 92px 0 72px;
    border-bottom: 1px solid var(--stone);
    background: var(--off-white);
}

.policy-hero .page-title {
    max-width: 900px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.policy-layout {
    display: grid;
    padding-top: 80px;
    padding-bottom: 112px;
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: space-between;
    gap: 80px;
}

.policy-index {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    align-self: start;
}

.policy-index .eyebrow {
    margin-bottom: 20px;
}

.policy-index nav {
    display: flex;
    border-top: 1px solid var(--stone);
    flex-direction: column;
}

.policy-index a {
    padding: 13px 0;
    border-bottom: 1px solid var(--stone);
    color: #66635d;
    font-size: 0.82rem;
    line-height: 1.35;
    text-decoration: none;
}

.policy-index a:hover,
.policy-index a[aria-current="page"] {
    color: var(--ink);
}

.policy-index a[aria-current="page"] {
    font-weight: 700;
}

.policy-content {
    min-width: 0;
    color: #363532;
    font-size: 1rem;
    line-height: 1.78;
}

.policy-content > :first-child {
    margin-top: 0;
}

.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5 {
    color: var(--ink);
    letter-spacing: 0;
}

.policy-content h2 {
    margin: 0 0 34px;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.65rem;
    font-weight: 400;
    line-height: 1.08;
}

.policy-content h3 {
    margin: 58px 0 18px;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
}

.policy-content h4 {
    margin: 38px 0 14px;
    font-size: 1.12rem;
    line-height: 1.35;
}

.policy-content h5 {
    margin: 0 0 14px;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: 2.65rem;
    font-weight: 400;
    line-height: 1.08;
}

.policy-content p {
    margin: 0 0 20px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 24px;
    margin: 0 0 26px;
}

.policy-content li {
    padding-left: 5px;
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--ink);
}

.policy-content .sumario {
    padding: 22px 0;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
    list-style: none;
}

.policy-content .sumario li {
    display: flex;
    padding: 0;
    margin: 8px 0;
    align-items: baseline;
    font-size: 0.82rem;
    gap: 10px;
}

.policy-content .sumario .titulo {
    flex: 0 1 auto;
}

.policy-content .sumario .linha {
    height: 1px;
    border-bottom: 1px dotted var(--concrete);
    flex: 1 1 36px;
}

.policy-content .sumario .numero {
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 48px;
    }
}

@media (max-width: 680px) {
    .policy-hero {
        padding: 64px 0 52px;
    }

    .policy-hero .page-title {
        font-size: 3.5rem;
    }

    .policy-layout {
        padding-top: 48px;
        padding-bottom: 80px;
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .policy-index {
        position: static;
    }

    .policy-content h2,
    .policy-content h5 {
        font-size: 2.15rem;
    }

    .policy-content h3 {
        margin-top: 48px;
        font-size: 1.75rem;
    }

    .policy-content .sumario li {
        font-size: 0.73rem;
    }
}

@media (max-width: 1080px) {
    .editorial-shell,
    .editorial-hero-content {
        width: min(calc(100% - 48px), 1400px);
    }

    .editorial-grid,
    .editorial-grid--rail,
    .journey-section .editorial-grid,
    .membership-section .editorial-grid {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 34px;
    }

    .manifesto-note {
        grid-column: 2;
    }

    .journey-panel {
        grid-column: 2;
    }

    .membership-message {
        grid-template-columns: 1fr auto;
    }

    .membership-message p {
        grid-column: 1 / -1;
    }

    .modality-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .modality-rail article:nth-child(4) {
        border-left: 0;
    }

    .modality-rail article:nth-child(n + 4) {
        border-top: 1px solid rgba(255, 255, 255, 0.48);
    }
}

@media (max-width: 760px) {
    .editorial-shell,
    .editorial-hero-content {
        width: calc(100% - 32px);
    }

    .journal-section,
    .membership-section {
        padding: 52px 0;
    }

    .editorial-grid,
    .editorial-grid--rail,
    .journey-section .editorial-grid,
    .membership-section .editorial-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .manifesto-note,
    .journey-panel {
        grid-column: 1;
    }

    .section-aside h2 {
        max-width: 300px;
        font-size: 2rem;
    }

    .section-aside .arrow-link {
        margin-top: 24px;
    }

    .editorial-hero {
        min-height: 620px;
        height: calc(100svh - var(--header-height));
        max-height: 760px;
    }

    .editorial-hero-photo {
        inset: 0;
    }

    .editorial-hero-photo img {
        object-position: center top;
    }

    .editorial-hero-wash {
        background: linear-gradient(90deg, rgba(238, 234, 226, 0.95) 0%, rgba(238, 234, 226, 0.78) 58%, rgba(238, 234, 226, 0.12) 100%);
    }

    .editorial-hero-content {
        justify-content: flex-end;
        padding-bottom: 48px;
    }

    .editorial-hero-content h1 {
        font-size: 3.9rem;
    }

    .scroll-cue {
        display: none;
    }

    .manifesto-title {
        font-size: 2rem;
    }

    .experience-rail,
    .community-rail {
        display: flex;
        width: calc(100vw - 16px);
        margin-right: -16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .experience-rail::-webkit-scrollbar,
    .community-rail::-webkit-scrollbar {
        display: none;
    }

    .experience-card,
    .community-card {
        width: min(76vw, 310px);
        height: 390px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .community-card {
        height: 290px;
    }

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

    .modality-rail article {
        min-height: 220px;
    }

    .modality-rail article:nth-child(odd) {
        border-left: 0;
    }

    .modality-rail article:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.48);
    }

    .modality-rail article:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.48);
    }

    .membership-message {
        padding: 36px 28px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .membership-message p {
        grid-column: 1;
    }

    .membership-message h3 {
        font-size: 1.8rem;
    }

    .membership-message .button {
        width: 100%;
    }

    .editorial-location {
        grid-template-columns: 1fr;
    }

    .editorial-location .location-photo {
        min-height: 500px;
        max-height: 600px;
    }

    .editorial-location .location-content {
        padding: 52px 16px;
    }
}

@media (max-width: 460px) {
    .checkout-unavailable form {
        padding: 42px 24px 28px;
    }

    .checkout-unavailable h2 {
        font-size: 2rem;
    }

    .checkout-unavailable .button {
        width: 100%;
    }

    .editorial-hero-content h1 {
        font-size: 3.2rem;
    }

    .editorial-hero-content > p:not(.eyebrow) {
        max-width: 300px;
        margin-top: 20px;
        font-size: 0.88rem;
    }

    .editorial-actions {
        width: 100%;
        flex-direction: column;
    }

    .editorial-actions .button {
        width: 100%;
    }

    .manifesto-title {
        font-size: 1.78rem;
    }

    .journey-panel {
        min-height: 210px;
        padding: 22px;
    }

    .journey-panel h3 {
        font-size: 1.5rem;
    }
}
