/*
 * Lace West Nyack Coming Soon
 * Version: 1.0.0
 */

:root {
    --black: #050505;
    --black-soft: #0a0808;
    --panel: rgba(18, 13, 13, 0.84);
    --panel-strong: rgba(24, 15, 16, 0.94);
    --burgundy: #4f0718;
    --burgundy-bright: #7b1028;
    --gold: #c79545;
    --gold-light: #efd39c;
    --gold-pale: #f6e7c9;
    --text: #f2eadf;
    --muted: #bdb1a3;
    --border: rgba(199, 149, 69, 0.35);
    --border-soft: rgba(199, 149, 69, 0.18);
    --shadow-gold: 0 0 28px rgba(199, 149, 69, 0.15);
    --shadow-burgundy: 0 20px 70px rgba(91, 8, 31, 0.24);
    --serif: Georgia, "Times New Roman", Times, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1180px;
    --header-height: 92px;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -20%, rgba(109, 11, 38, 0.24), transparent 42rem),
        linear-gradient(180deg, #050505 0%, #090606 45%, #050505 100%);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: #111;
    background: var(--gold-light);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.announcement {
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0, rgba(154, 24, 53, 0.45), transparent 22rem),
        linear-gradient(90deg, #160508, #3a0814 50%, #160508);
}

.announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    gap: 16px;
    color: var(--gold-pale);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.announcement strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.16rem;
    letter-spacing: 0.11em;
}

.announcement__divider {
    width: 1px;
    height: 20px;
    background: rgba(239, 211, 156, 0.4);
}

.announcement__spark {
    color: var(--gold);
    font-size: 0.7rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--border-soft);
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(18px);
}

.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: var(--header-height);
    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: flex-end;
    gap: 14px;
}

.brand img {
    width: 163px;
    height: 47px;
    object-fit: contain;
}

.brand span {
    padding-bottom: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 4vw, 54px);
}

.desktop-nav a {
    position: relative;
    color: #d9ccbd;
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--gold-light);
    background: rgba(10, 8, 8, 0.76);
    box-shadow: inset 0 0 0 1px rgba(239, 211, 156, 0.04), var(--shadow-gold);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
}

.button:hover,
.button:focus-visible {
    border-color: rgba(239, 211, 156, 0.75);
    color: #fff3d8;
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(199, 149, 69, 0.22);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.social-links a:focus-visible,
.contact-list a:focus-visible,
.mobile-actions a:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.button--header {
    min-height: 48px;
    padding-inline: 20px;
    white-space: nowrap;
}

.button--primary {
    border-color: rgba(213, 164, 82, 0.58);
    color: #ffe8b6;
    background:
        linear-gradient(135deg, rgba(118, 8, 35, 0.98), rgba(68, 4, 22, 0.92)),
        #65091f;
    box-shadow:
        inset 0 0 0 1px rgba(255, 230, 178, 0.07),
        0 0 24px rgba(121, 14, 43, 0.42),
        0 0 16px rgba(199, 149, 69, 0.12);
}

.button--outline {
    background: rgba(7, 7, 7, 0.74);
}

.button--full {
    width: 100%;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(780px, calc(100vh - 46px));
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -2;
    content: "";
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.98) 0%, rgba(7, 5, 5, 0.93) 42%, rgba(30, 6, 13, 0.74) 100%);
}

.hero::after {
    right: -18%;
    bottom: -45%;
    width: 70vw;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 149, 69, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(199, 149, 69, 0.025),
        0 0 0 140px rgba(116, 9, 35, 0.035),
        0 0 120px rgba(116, 9, 35, 0.22);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
    align-items: center;
    min-height: 685px;
    gap: clamp(40px, 8vw, 110px);
    padding-block: 78px 90px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--gold-pale);
    font-size: clamp(3.25rem, 6vw, 6.25rem);
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
    text-shadow: 0 10px 42px rgba(0, 0, 0, 0.45);
}

h2 {
    margin-bottom: 18px;
    color: var(--gold-pale);
    font-size: clamp(2.25rem, 4.2vw, 4.25rem);
    letter-spacing: -0.026em;
    line-height: 1.06;
    text-wrap: balance;
}

h3 {
    margin: 0;
    color: var(--gold-light);
    font-size: 1.45rem;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(330px, 100%);
    gap: 12px;
    margin: 26px auto;
}

.ornament--left {
    margin-inline: 0;
}

.ornament span {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.hero__lead {
    max-width: 660px;
    margin: 0 0 34px;
    color: #d4c8bb;
    font-family: var(--serif);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__art {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.orb {
    position: relative;
    width: min(470px, 100%);
    aspect-ratio: 1;
    border: 1px solid rgba(199, 149, 69, 0.3);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(171, 115, 43, 0.06), transparent 34%),
        radial-gradient(circle at 60% 80%, rgba(106, 7, 31, 0.3), transparent 43%);
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(96, 7, 29, 0.24);
    animation: orbFloat 9s ease-in-out infinite;
}

.orb::before,
.orb::after {
    position: absolute;
    inset: 9%;
    content: "";
    border: 1px solid rgba(199, 149, 69, 0.14);
    border-radius: 50%;
}

.orb::after {
    inset: 21%;
    border-color: rgba(126, 22, 44, 0.38);
}

.orb__ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
}

.orb__ring--one {
    inset: -6%;
    border-color: rgba(199, 149, 69, 0.14);
    transform: rotate(13deg);
}

.orb__ring--two {
    inset: 13% -3% 8% 7%;
    border-color: rgba(218, 171, 96, 0.26);
    transform: rotate(-14deg);
}

.orb__ring--three {
    inset: 28% 14% 25% 18%;
    border-color: rgba(119, 15, 43, 0.42);
}

.orb__letter {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(205, 161, 92, 0.44);
    font-family: "Palace Script MT", "Snell Roundhand", cursive;
    font-size: clamp(10rem, 24vw, 19rem);
    font-style: italic;
    line-height: 1;
    text-shadow: 0 0 35px rgba(199, 149, 69, 0.12);
    transform: translate(-4%, -1%);
}

.orb__spark {
    position: absolute;
    top: 13%;
    left: 22%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffe2a3;
    box-shadow:
        0 0 7px #fff3d1,
        0 0 19px #d8a654,
        0 0 44px rgba(207, 34, 74, 0.75);
    animation: sparkle 2.8s ease-in-out infinite;
}

.hero__glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.24;
}

.hero__glow--one {
    right: 8%;
    bottom: -150px;
    background: #790b2e;
}

.hero__glow--two {
    top: 15%;
    right: 32%;
    width: 230px;
    height: 230px;
    background: #9c6a2a;
    opacity: 0.08;
}

.stats {
    position: relative;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(34, 7, 13, 0.78), rgba(9, 7, 7, 0.96));
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-block: 28px;
}

.stat-card {
    position: relative;
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 28px 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(32, 15, 17, 0.88), rgba(8, 8, 8, 0.88));
    box-shadow: var(--shadow-burgundy);
}

.stat-card::before {
    position: absolute;
    inset: auto 20% 17px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-card::after {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    content: "";
    background: rgba(122, 14, 40, 0.14);
    filter: blur(25px);
}

.stat-card svg {
    width: 43px;
    height: 43px;
    margin-bottom: 16px;
    color: var(--gold);
}

.stat-card strong {
    color: var(--gold-pale);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 400;
    line-height: 1;
}

.stat-card span {
    max-width: 150px;
    margin-top: 10px;
    color: #d8caba;
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.35;
}

.section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(82px, 10vw, 140px);
    border-bottom: 1px solid var(--border-soft);
}

.section::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(199, 149, 69, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.4;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.section--vip::after {
    position: absolute;
    right: -160px;
    bottom: -260px;
    z-index: -1;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(199, 149, 69, 0.12);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 70px rgba(120, 10, 38, 0.025),
        0 0 110px rgba(120, 10, 38, 0.16);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: center;
    gap: clamp(50px, 9vw, 130px);
}

.section__content > p:not(.eyebrow) {
    max-width: 690px;
    color: #d2c7bb;
    font-family: var(--serif);
    font-size: 1.16rem;
    line-height: 1.75;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    color: #eee3d5;
    font-family: var(--serif);
    font-size: 1.12rem;
}

.feature-list li::before {
    position: absolute;
    top: 0.65em;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.feature-list--compact {
    margin-top: 22px;
    gap: 14px;
}

.feature-list--compact li {
    font-size: 1rem;
}

.price-card {
    position: relative;
    isolation: isolate;
    padding: 48px 36px 36px;
    overflow: hidden;
    border: 1px solid rgba(213, 164, 82, 0.5);
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(199, 149, 69, 0.14), transparent 38%),
        linear-gradient(160deg, rgba(29, 19, 17, 0.96), rgba(9, 8, 8, 0.98));
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(88, 7, 27, 0.18);
}

.price-card::before,
.price-card::after {
    position: absolute;
    width: 64px;
    height: 64px;
    border-style: solid;
    border-color: rgba(239, 211, 156, 0.48);
    content: "";
    pointer-events: none;
}

.price-card::before {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
    border-radius: 13px 0 0;
}

.price-card::after {
    right: 10px;
    bottom: 10px;
    border-width: 0 1px 1px 0;
    border-radius: 0 0 13px;
}

.price-card__icon {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 2rem;
}

.price-card p {
    margin-bottom: 6px;
    color: #d2c5b5;
    font-family: var(--serif);
    font-size: 1.08rem;
}

.price-card strong {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1;
}

.price-card strong small {
    vertical-align: 0.2em;
    font-size: 0.55em;
}

.price-card__line {
    width: 68%;
    height: 1px;
    margin: 26px auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading .ornament {
    margin-bottom: 0;
}

.section--food {
    background:
        radial-gradient(circle at 0 55%, rgba(118, 11, 40, 0.17), transparent 27rem),
        radial-gradient(circle at 100% 55%, rgba(118, 11, 40, 0.17), transparent 27rem);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.info-card {
    position: relative;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(199, 149, 69, 0.28);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(24, 16, 16, 0.84), rgba(7, 7, 7, 0.9));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.info-card--highlight {
    border-color: rgba(199, 149, 69, 0.42);
    background:
        radial-gradient(circle at 100% 0, rgba(126, 14, 42, 0.13), transparent 42%),
        linear-gradient(145deg, rgba(24, 16, 16, 0.88), rgba(7, 7, 7, 0.94));
}

.info-card__heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-circle {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border: 1px solid rgba(199, 149, 69, 0.5);
    border-radius: 50%;
    color: var(--gold);
    place-items: center;
    background: rgba(8, 7, 7, 0.7);
    box-shadow: 0 0 24px rgba(199, 149, 69, 0.08);
}

.icon-circle svg {
    width: 25px;
    height: 25px;
}

.disclaimer {
    margin: 30px 0 0;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 0.94rem;
    font-style: italic;
    letter-spacing: 0.025em;
    text-align: center;
}

.section--visit {
    background:
        radial-gradient(circle at 50% 0, rgba(108, 10, 34, 0.11), transparent 33rem);
}

.visit-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid rgba(199, 149, 69, 0.34);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(27, 17, 17, 0.9), rgba(8, 8, 8, 0.96));
    box-shadow:
        0 28px 100px rgba(0, 0, 0, 0.32),
        0 0 60px rgba(100, 7, 31, 0.14);
}

.contact-list {
    display: grid;
    align-content: center;
    gap: 24px;
    padding-right: clamp(28px, 5vw, 68px);
    border-right: 1px solid var(--border-soft);
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #ece1d5;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.45;
    transition: color 180ms ease;
}

.contact-list a:hover {
    color: var(--gold-light);
}

.contact-list__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--gold);
    place-items: center;
}

.contact-list__icon svg {
    width: 26px;
    height: 26px;
}

.hours {
    padding-left: clamp(28px, 5vw, 68px);
}

.hours__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hours dl {
    margin: 0;
}

.hours dl > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 25px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(199, 149, 69, 0.1);
    font-family: var(--serif);
}

.hours dl > div:last-child {
    border-bottom: 0;
}

.hours dt,
.hours dd {
    margin: 0;
}

.hours dt {
    color: #d7cabd;
}

.hours dd {
    color: var(--gold-light);
    white-space: nowrap;
}

.visit-card__actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.site-footer {
    padding: 55px 0 95px;
    text-align: center;
    background: #050505;
}

.footer__inner {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.footer__mark {
    display: flex;
    align-items: center;
    width: min(340px, 80vw);
    gap: 18px;
    color: var(--gold);
}

.footer__mark span {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.footer__mark span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer__mark em {
    font-family: "Palace Script MT", "Snell Roundhand", cursive;
    font-size: 3.1rem;
    line-height: 1;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    color: #d8cabd;
    font-family: var(--serif);
}

.social-links a {
    position: relative;
}

.social-links a:not(:last-child)::after {
    position: absolute;
    right: -14px;
    content: "·";
    color: var(--gold);
}

.social-links a:hover {
    color: var(--gold-light);
}

.site-footer p {
    margin: 0;
    color: var(--gold);
    font-family: var(--serif);
    font-style: italic;
}

.site-footer small {
    color: #82786f;
}

.mobile-actions {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0.01deg);
    }
    50% {
        transform: translateY(-11px) rotate(1.5deg);
    }
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.75);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 1040px) {
    :root {
        --header-height: 80px;
    }

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

    .desktop-nav {
        display: none;
    }

    .button--header {
        justify-self: end;
    }

    .hero__grid {
        grid-template-columns: 1fr 0.75fr;
        gap: 35px;
    }

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

@media (max-width: 820px) {
    body {
        padding-bottom: 70px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .announcement__inner {
        min-height: 42px;
        gap: 10px;
        font-size: 0.78rem;
    }

    .announcement__spark {
        display: none;
    }

    .header__inner {
        gap: 15px;
    }

    .brand span {
        display: none;
    }

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

    .button--header {
        min-height: 44px;
        padding-inline: 14px;
        font-size: 0.88rem;
    }

    .button--header span {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 65px 75px;
    }

    .hero__content {
        text-align: center;
    }

    h1 {
        font-size: clamp(3.1rem, 14vw, 5.2rem);
    }

    .hero__lead {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__art {
        min-height: 360px;
        order: -1;
    }

    .orb {
        width: min(360px, 82vw);
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .section__content {
        text-align: center;
    }

    .section__content > p:not(.eyebrow) {
        margin-inline: auto;
    }

    .section__content .feature-list {
        display: inline-grid;
        text-align: left;
    }

    .ornament--left {
        margin-inline: auto;
    }

    .price-card {
        width: min(100%, 430px);
        margin-inline: auto;
    }

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

    .visit-card {
        grid-template-columns: 1fr;
    }

    .contact-list {
        padding: 0 0 34px;
        border-right: 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .hours {
        padding: 34px 0 0;
    }

    .visit-card__actions {
        grid-template-columns: 1fr;
    }

    .mobile-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 150;
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(199, 149, 69, 0.4);
        background: rgba(7, 6, 6, 0.94);
        backdrop-filter: blur(16px);
        box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.32);
    }

    .mobile-actions a {
        display: flex;
        min-height: 66px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: var(--gold-light);
        font-family: var(--serif);
    }

    .mobile-actions a + a {
        border-left: 1px solid var(--border-soft);
    }

    .mobile-actions svg {
        width: 20px;
        height: 20px;
    }

    .site-footer {
        padding-bottom: 50px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .announcement__inner {
        flex-wrap: wrap;
        gap: 2px 8px;
        padding-block: 8px;
        line-height: 1.25;
    }

    .announcement__divider {
        display: none;
    }

    .announcement strong,
    .announcement span:not(.announcement__spark):last-of-type {
        width: 100%;
    }

    .site-header {
        position: relative;
    }

    .header__inner {
        min-height: 74px;
    }

    .brand img {
        width: 126px;
    }

    .hero__grid {
        padding-block: 42px 62px;
    }

    .hero__art {
        min-height: 270px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
        min-height: 56px;
    }

    .button--header {
        width: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 50%;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        min-height: 175px;
        padding: 22px 10px;
    }

    .stat-card svg {
        width: 34px;
        height: 34px;
    }

    .stat-card strong {
        font-size: 2rem;
    }

    .stat-card span {
        font-size: 0.94rem;
    }

    .section {
        padding-block: 72px;
    }

    .price-card {
        padding-inline: 24px;
    }

    .price-card strong {
        font-size: 4.6rem;
    }

    .info-card {
        padding: 28px 22px;
    }

    .info-card__heading {
        align-items: flex-start;
    }

    .visit-card {
        padding: 26px 20px;
    }

    .contact-list a {
        align-items: flex-start;
        gap: 12px;
        font-size: 1rem;
        overflow-wrap: anywhere;
    }

    .contact-list__icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hours dl > div {
        grid-template-columns: 1fr;
        gap: 2px;
        padding-block: 12px;
    }

    .hours dd {
        white-space: normal;
    }

    .social-links {
        display: grid;
        gap: 8px;
    }

    .social-links a:not(:last-child)::after {
        display: none;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .announcement,
    .site-header,
    .mobile-actions,
    .hero__art,
    .hero__actions,
    .visit-card__actions {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section,
    .stats,
    .site-footer {
        color: #000;
        border-color: #ccc;
        background: #fff;
    }
}
