@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Cormorant+Infant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

:root {
    --ink: #0d0907;
    --dark: #100b09;
    --dark-brown: #24150d;
    --cream: #f4eee4;
    --sand: #ecddc7;
    --gold: #eac477;
    --copper: #b56b2c;
    --line-dark: rgba(234, 196, 119, 0.2);
    --line-light: rgba(42, 27, 17, 0.16);
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --infant: "Cormorant Infant", "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.new-page-body {
    margin: 0;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.45;
}
.new-page-body *,
.new-page-body *::before,
.new-page-body *::after {
    box-sizing: border-box;
}
.new-page-body a {
    color: inherit;
    text-decoration: none;
}
.new-page-body p,
.new-page-body h1,
.new-page-body h2,
.new-page-body h3 {
    margin: 0;
}
.section-shell {
    width: min(100% - 9vw, 1730px);
    margin: 0 auto;
}
.eyebrow {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.new-page-announcement {
    min-height: 47px;
    padding: 0 4.3vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(234, 196, 119, 0.45);
    background: #0d0a08;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.new-page-announcement span {
    font-size: 11px;
    font-weight: 300;
    color: #e6c584;
}
.new-page-announcement span:nth-child(2) {
    text-align: center;
}
.new-page-announcement span:last-child {
    text-align: right;
}

.closing-hero {
    min-height: 90vh;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: url("../assets/new-pages/we-are-closing/closing-hero-background.jpg")
        center 47% / cover no-repeat;
}
.closing-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(9, 6, 4, 0.76),
        rgba(15, 9, 6, 0.68) 47%,
        rgba(7, 5, 3, 0.68)
    );
}
.closing-header {
    min-height: 105px;
    padding: 0 4.3vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid #eadbc726;
}
.closing-logo img {
    display: block;
    width: 205px;
    max-width: 100%;
    height: auto;
}
.closing-nav {
    display: flex;
    align-items: center;
    gap: clamp(35px, 5vw, 110px);
}
.closing-nav a,
.closing-header-button {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #eadbc7;
}
.closing-header-button {
    justify-self: end;
    border: 1px solid rgba(244, 238, 228, 0.45);
    padding: 22px 32px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.closing-header-button:hover,
.button-outline:hover {
    background: var(--cream);
    color: var(--ink);
}
.closing-header-button span,
.button span {
    font-size: 1.15em;
    margin-left: 9px;
}
.closing-hero-content {
    width: min(100% - 22vw, 1500px);
    min-height: 745px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 6vw;
    align-items: center;
}
.closing-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 35px;
}
.closing-hero-copy img {
    margin-top: 18px;
    margin-bottom: 18px;
}

.closing-hero-copy h1 {
    color: #e6c584;
    font: 600 clamp(92px, 11vw, 220px)/0.76 var(--serif);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.closing-hero-copy .eyebrow {
    color: #e6c584;
    font-size: 30px;
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.hero-subtitle {
    margin-top: 25px;
    color: #e6c584;
    font: 500 clamp(17px, 2vw, 34px)/1 var(--serif);
    font-size: 18px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.ornament {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 300px;
    margin: 28px 0 24px 17%;
    color: var(--gold);
}
.ornament i {
    height: 1px;
    flex: 1;
    background: var(--line-dark);
}
.ornament b {
    font-size: 9px;
    font-weight: 400;
}
.hero-description {
    max-width: 630px;
    margin-left: 17%;
    color: #eadbc7;
    font-size: 16px;
    text-align: center;
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button-gold {
    background: #a86b32 !important;
    color: #eadbc7 !important;
    border-color: transparent !important;
}
.button-outline {
    border: 1px solid rgba(244, 238, 228, 0.278);
}

.closure-card {
    position: relative;
    min-height: 430px;
    padding: 95px 45px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 108, 44, 0.408);
    background: rgba(12, 7, 4, 0.65);
    text-align: center;
}
.closure-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(244, 238, 228, 0.153);
    pointer-events: none;
}
.closure-card .eyebrow {
    position: relative;
    color: #eadbc7;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.04em;
}
.closure-date {
    position: relative;
    margin-top: 33px;
    color: #e6c584;
    font: 600 clamp(50px, 5vw, 92px)/0.86 var(--serif);
}
.closure-rule {
    position: relative;
    width: 78%;
    height: 1px;
    margin: 39px 0 23px;
    background: var(--line-dark);
}
.closure-note {
    position: relative;
    color: #eadbc7;
    font-size: 9px;
    font-weight: 100;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.corner {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-color: #eadbc78c;
    border-style: solid;
}
.corner-tl {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}
.corner-tr {
    display: none;
    top: 16px;
    right: 16px;
    border-width: 1px 1px 0 0;
}
.corner-bl {
    display: none;
    bottom: 16px;
    left: 16px;
    border-width: 0 0 1px 1px;
}
.corner-br {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}
.closing-marquee {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 78px;
    padding: 0 3.7vw;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    align-items: center;
    border-top: 1px solid rgba(234, 196, 119, 0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.closing-marquee span:nth-child(2),
.closing-marquee a {
    text-align: center;
}

.section-dark {
    background: var(--dark);
}
.chapter-intro {
    background-color: #0b0907;
    padding: 105px 0 115px;
}
.chapter-intro-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    padding: 110px 0 115px;
}
.chapter-intro h2 {
    color: var(--cream);
    font: 500 clamp(68px, 7.5vw, 145px)/0.82 var(--serif);
    letter-spacing: -0.045em;
}
.chapter-intro h2 em {
    color: var(--gold);
    font-family: var(--infant);
    font-style: italic;
}
.chapter-intro-top > p {
    max-width: 430px;
    padding-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 100;
}
.chapter-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}
.chapter-points article {
    min-height: 290px;
    padding: 42px 32px 30px 0;
    border-right: 1px solid var(--line-dark);
}
.chapter-points article:not(:first-child) {
    padding-left: 32px;
}
.chapter-points article:last-child {
    border-right: 0;
}
.chapter-points span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.chapter-points h3 {
    margin-top: 77px;
    color: var(--gold);
    font: 600 27px/1 var(--serif);
}
.chapter-points p {
    max-width: 260px;
    margin-top: 14px;
    color: rgba(244, 238, 228, 0.62);
    font-size: 13px;
    line-height: 1.4;
}

.thank-you-band {
    background: var(--cream);
    color: var(--copper);
}
.thank-you-inner {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.thank-you-inner > div {
    display: flex;
    align-items: center;
    gap: 28px;
}
.thank-you-script {
    font: italic 600 clamp(35px, 3.7vw, 66px)/1 var(--infant);
}
.thank-you-divider {
    width: 1px;
    height: 60px;
    background: rgba(42, 27, 17, 0.18);
}
.thank-you-inner .eyebrow {
    color: var(--ink);
    letter-spacing: 0.18em;
    font-family: var(--serif);
    font-weight: 100;
    font-size: 13px;
}
.thank-you-inner > div > div > p:last-child {
    margin-top: 4px;
    color: var(--ink);
    font-size: 14px;
}
.thank-you-next {
    font: 500 clamp(22px, 2.6vw, 46px)/1 var(--serif);
    text-transform: uppercase;
}

.before-refurbishment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    background: var(--dark-brown);
}

.before-refurbishment .before-copy .eyebrow {
    font-weight: 100;
    font-size: 9px;
}

.before-image {
    min-height: 680px;
    background: url("../assets/new-pages/we-are-closing/welcome-back-soon-cofee-image.jpg")
        center center / cover no-repeat;
}
.before-copy {
    padding: 85px clamp(35px, 7vw, 145px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.before-copy h2 {
    margin-top: 42px;
    color: var(--cream);
    font: 500 clamp(56px, 6.3vw, 120px)/0.78 var(--serif);
    letter-spacing: -0.045em;
}
.before-copy h2 em {
    color: var(--gold);
    font-family: var(--infant);
    font-style: italic;
}
.before-description {
    max-width: 550px;
    margin-top: 30px !important;
    color: var(--gold);
    font-size: 12px;
    font-weight: 100;
}
.before-date {
    width: 100%;
    margin-top: 37px;
    padding: 30px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}
.before-date p:last-child {
    margin-top: 8px;
    color: var(--cream);
    font: 500 clamp(27px, 2.6vw, 52px)/1 var(--serif);
}
.button-cream {
    margin-top: 30px;
    background: #eadbc7;
    color: #0c0907 !important;
}

.visit-section {
    padding: 95px 0 110px;
    background: var(--sand);
    color: var(--ink);
}
.visit-section .eyebrow {
    color: #a86b32;
}
.visit-heading {
    max-width: 1150px;
    margin: 70px 0 110px auto !important;
    text-align: right;
    font: 500 clamp(65px, 7vw, 140px)/0.78 var(--serif);
    letter-spacing: -0.05em;
}
.visit-heading span,
.visit-heading em {
    display: block;
}
.visit-heading em {
    color: var(--copper);
    font-family: var(--infant);
    font-style: italic;
}
.visit-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.3fr 0.95fr;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}
.visit-column {
    min-height: 440px;
    padding: 40px 42px 50px 0;
}
.visit-column + .visit-column {
    padding-left: 42px;
    border-left: 1px solid var(--line-light);
}
.visit-column .eyebrow {
    color: var(--copper);
}
.address {
    margin-top: 40px !important;
    font: 500 clamp(27px, 2.4vw, 44px)/0.95 var(--serif);
}
.visit-address a {
    display: inline-block;
    margin-top: 28px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--copper);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 14px;
    color: #0c0907;
    font-weight: 100;
}
.hours-row:first-of-type {
    margin-top: 32px;
}
.hours-row span:last-child {
    text-align: right;
}
.visit-note {
    margin-top: 26px !important;
    color: rgba(13, 9, 7, 0.58);
    font-size: 13px;
}
.contact-large {
    display: block;
    margin-top: 28px;
    font: 500 clamp(26px, 2.5vw, 44px)/0.8 var(--serif);
}
.visit-contact > p:not(.eyebrow):not(.visit-note) {
    max-width: 330px;
    margin-top: 35px;
    font-size: 13px;
    line-height: 1.4;
}
.visit-contact .button {
    display: flex;
    width: fit-content;
    margin-top: 20px;
}
.button-black {
    background: var(--ink);
    color: var(--cream);
}
.button-dark {
    background: var(--ink);
    color: #eadbc7 !important;
}

.faq-section {
    padding: 72px 0 95px;
    background: var(--cream);
    color: var(--ink);
}
.faq-section .eyebrow {
    color: var(--copper);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 33px;
}
.faq-grid details {
    border-top: 1px solid var(--line-light);
    padding: 33px 0;
}
.faq-grid summary {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    list-style: none;
    font: 500 20px/1.2 var(--serif);
}
.faq-grid summary::-webkit-details-marker {
    display: none;
}
.faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 0;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 16px;
}
.faq-grid details[open] summary::after {
    content: "–";
}
.faq-grid details .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.25s ease;
}
.faq-grid details[open] .faq-answer {
    max-height: 200px;
    opacity: 1;
}
.faq-grid details.is-closing .faq-answer {
    max-height: 0;
    opacity: 0;
}
.faq-grid details .faq-answer p {
    min-height: 0;
    margin-top: 20px;
    overflow: hidden;
    color: rgba(13, 9, 7, 0.7);
    font-size: 14px;
}

.new-page-footer {
    padding: 95px 4.3vw 34px;
    background: var(--ink);
    color: var(--cream);
}
.new-page-footer-inner {
    display: flex;
    align-items: center;
    gap: 9vw;
}
.new-page-footer-brand img {
    display: block;
    width: 255px;
}
.new-page-footer-brand p {
    margin-top: 40px;
    color: rgba(244, 238, 228, 0.73);
    font-size: 13px;
}
.new-page-footer-heading {
    font: 500 clamp(65px, 7vw, 140px)/0.8 var(--serif);
    letter-spacing: -0.05em;
}
.new-page-footer-heading em {
    color: #e7c585;
    font-family: var(--infant);
    font-style: italic;
}
.new-page-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 45px;
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    color: var(--copper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.new-page-footer-links .footer-thanks {
    margin-right: auto;
    color: rgba(244, 238, 228, 0.73);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.new-page-footer-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    color: rgba(244, 238, 228, 0.52);
    font-size: 11px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .section-shell {
        width: min(100% - 40px, 680px);
    }
    .new-page-announcement {
        min-height: 47px;
        padding: 10px 20px;
        font-size: 8px;
        letter-spacing: 0.1em;
    }
    .closing-hero {
        min-height: 960px;
        background-position: 53% center;
    }
    .closing-header {
        min-height: 78px;
        padding: 0 20px;
        grid-template-columns: 1fr auto;
    }
    .closing-logo img {
        width: 255px;
    }
    .closing-nav {
        display: none;
    }
    .closing-header-button {
        padding: 12px 14px;
        font-size: 8px;
        letter-spacing: 0.1em;
        text-align: center;
    }
    .closing-hero-content {
        width: min(100% - 40px, 680px);
        min-height: 735px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 35px;
    }
    .closing-hero-copy {
        width: 100%;
        padding-top: 40px;
    }
    .closing-hero-copy h1 {
        font-size: clamp(78px, 22vw, 150px);
    }
    .closing-hero-copy .eyebrow {
        font-size: 30px;
    }
    .hero-subtitle {
        margin-top: 16px;
        font-size: 18px;
        letter-spacing: 0.17em;
        text-align: center;
    }
    .ornament {
        width: 210px;
        margin-top: 20px;
    }
    .hero-description {
        max-width: 500px;
        font-size: 13px;
    }
    .hero-actions {
        margin-top: 24px;
    }
    .button {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 9px;
        letter-spacing: 0.1em;
    }
    .closure-card {
        width: 100%;
        min-height: 280px;
        padding: 50px 30px 35px;
    }
    .closure-card .eyebrow {
        font-size: 17px;
    }
    .closure-date {
        margin-top: 22px;
        font-size: clamp(42px, 12vw, 70px);
    }
    .closure-rule {
        margin: 23px 0 16px;
    }
    .closing-marquee {
        min-height: 55px;
        padding: 0 20px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 4px;
        font-size: 8px;
        text-align: center;
    }
    .closing-marquee span:nth-child(2) {
        display: none;
    }
    .closing-marquee a {
        display: none;
    }
    .chapter-intro {
        padding: 70px 0;
    }
    .chapter-intro-top {
        display: block;
        padding: 65px 0 70px;
    }
    .chapter-intro h2 {
        font-size: clamp(54px, 14vw, 92px);
    }
    .chapter-intro-top > p {
        margin-top: 35px;
        font-size: 13px;
    }
    .chapter-points {
        grid-template-columns: 1fr 1fr;
    }
    .chapter-points article,
    .chapter-points article:not(:first-child) {
        min-height: 220px;
        padding: 25px 18px 25px 0;
        border-right: 1px solid var(--line-dark);
    }
    .chapter-points article:nth-child(2n) {
        padding-left: 18px;
        border-right: 0;
    }
    .chapter-points article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-dark);
    }
    .chapter-points h3 {
        margin-top: 45px;
        font-size: 23px;
    }
    .chapter-points p {
        font-size: 12px;
    }
    .thank-you-inner {
        min-height: 150px;
        display: block;
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .thank-you-inner > div {
        gap: 14px;
    }
    .thank-you-script {
        font-size: 42px;
    }
    .thank-you-divider {
        height: 48px;
    }
    .thank-you-inner .eyebrow {
        font-size: 8px;
    }
    .thank-you-inner > div > div > p:last-child {
        font-size: 11px;
    }
    .thank-you-next {
        margin-top: 30px !important;
        font-size: 24px;
    }
    .before-refurbishment {
        display: flex;
        flex-direction: column;
    }
    .before-image {
        min-height: 420px;
    }
    .before-copy {
        padding: 62px 20px 70px;
    }
    .before-copy h2 {
        margin-top: 30px;
        font-size: clamp(49px, 13vw, 78px);
    }
    .before-description {
        margin-top: 30px !important;
        font-size: 12px;
    }
    .before-date {
        margin-top: 28px;
        padding: 22px 0;
    }
    .before-date p:last-child {
        font-size: 31px;
    }
    .visit-section {
        padding: 70px 0;
    }
    .visit-heading {
        margin: 50px 0 60px !important;
        text-align: left;
        font-size: clamp(54px, 13vw, 90px);
    }
    .visit-grid {
        display: block;
    }
    .visit-column,
    .visit-column + .visit-column {
        min-height: auto;
        padding: 35px 0;
        border-left: 0;
    }
    .visit-column + .visit-column {
        border-top: 1px solid var(--line-light);
    }
    .address {
        margin-top: 32px;
        font-size: 35px;
    }
    .hours-row {
        font-size: 13px;
    }
    .contact-large {
        margin-top: 22px;
        font-size: 30px;
    }
    .faq-section {
        padding: 60px 0 70px;
    }
    .faq-grid {
        display: block;
    }
    .faq-grid details {
        padding: 25px 0;
    }
    .faq-grid summary {
        font-size: 21px;
    }
    .new-page-footer {
        padding: 45px 20px 25px;
    }
    .new-page-footer-inner {
        display: block;
    }
    .new-page-footer-brand img {
        width: 210px;
    }
    .new-page-footer-brand p {
        margin-top: 28px;
        font-size: 12px;
    }
    .new-page-footer-heading {
        margin-top: 50px;
        font-size: clamp(56px, 14vw, 88px);
    }
    .new-page-footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px 24px;
        margin-top: 55px;
        font-size: 9px;
    }
    .new-page-footer-links .footer-thanks {
        width: 100%;
        margin-right: 0;
    }
    .new-page-footer-meta {
        display: block;
        font-size: 9px;
        line-height: 2;
    }
    .new-page-footer-meta span {
        display: block;
    }
}

/* The supplied Figma frame is authored around a 1440px desktop viewport. Keep
   the editorial proportions restrained at that common laptop width while
   allowing the layout to breathe on larger displays. */
@media (min-width: 901px) and (max-width: 1600px) {
    .new-page-announcement {
        min-height: 47px;
        padding-inline: 3.7vw;
        font-size: 9px;
    }
    .closing-header {
        min-height: 88px;
        padding-inline: 3.7vw;
    }
    .closing-logo img {
        width: 255px;
    }
    .closing-nav {
        gap: clamp(32px, 4.8vw, 72px);
    }
    .closing-nav a,
    .closing-header-button {
        font-size: 10px;
    }
    .closing-header-button {
        padding: 17px 25px;
    }
    .closing-hero-content {
        width: min(100% - 18vw, 1270px);
        min-height: calc(100vh - 135px);
        gap: 5vw;
        transform: translateY(-24px);
    }
    .closing-hero-copy h1 {
        font-size: clamp(92px, 9.4vw, 150px);
    }
    .closing-hero-copy .eyebrow {
        font-size: 38px;
    }
    .hero-subtitle {
        margin-top: 18px;
        font-size: 18px;
    }
    .ornament {
        width: 245px;
        margin-top: 22px;
        margin-bottom: 18px;
    }
    .hero-description {
        max-width: 520px;
        font-size: 13px;
    }
    .hero-actions {
        margin-top: 40px;
    }
    .button {
        min-height: 48px;
        padding: 13px 21px;
        font-size: 10px;
    }
    .closure-card {
        min-height: 265px;
        padding: 70px 35px 45px;
    }
    .closure-card .eyebrow {
        font-size: 17px;
    }
    .closure-date {
        margin-top: 26px;
        font-size: clamp(48px, 4.15vw, 70px);
    }
    .closure-rule {
        margin: 29px 0 18px;
    }
    .closing-marquee {
        min-height: 62px;
        padding-inline: 3.2vw;
        font-size: 10px;
    }
    .chapter-intro {
        padding-block: 80px 88px;
    }
    .chapter-intro-top {
        padding-block: 80px 85px;
    }
    .chapter-intro h2 {
        font-size: clamp(64px, 6.5vw, 104px);
    }
    .chapter-points article {
        min-height: 235px;
        padding-top: 32px;
    }
    .chapter-points h3 {
        margin-top: 56px;
        font-size: 23px;
    }
    .thank-you-inner {
        min-height: 125px;
    }
    .before-refurbishment {
        min-height: 570px;
    }
    .before-image {
        min-height: 570px;
    }
    .before-copy {
        padding-block: 65px;
    }
    .before-copy h2 {
        margin-top: 32px;
        font-size: clamp(55px, 5.4vw, 88px);
    }
    .visit-section {
        padding-block: 75px 85px;
    }
    .visit-heading {
        margin-top: 55px;
        margin-bottom: 80px;
        font-size: clamp(64px, 6.3vw, 100px);
    }
    .visit-column {
        min-height: 370px;
        padding-top: 32px;
    }
    .address,
    .contact-large {
        font-size: clamp(27px, 2.1vw, 38px);
    }
    .faq-section {
        padding-block: 58px 72px;
    }
    .new-page-footer {
        padding-top: 75px;
    }
    .new-page-footer-brand img {
        width: 220px;
    }
    .new-page-footer-heading {
        font-size: clamp(64px, 6.3vw, 100px);
    }
}

@media (max-width: 420px) {
    .new-page-announcement {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2px;
    }
    .new-page-announcement span:nth-child(2),
    .new-page-announcement span:last-child {
        text-align: center;
    }
    .closing-header-button {
        max-width: 110px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .button {
        width: fit-content;
    }
    .closure-card {
        min-height: 255px;
    }
    .chapter-points {
        grid-template-columns: 1fr;
    }
    .chapter-points article,
    .chapter-points article:not(:first-child),
    .chapter-points article:nth-child(2n) {
        min-height: auto;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }
    .chapter-points article:last-child {
        border-bottom: 0;
    }
}
