:root {
    --font-Avenir: 'Avenir', sans-serif;
    --font-impact: 'Impact', sans-serif;
    --font-Lato: 'Lato', sans-serif;
    --font-bebas: 'Bebas Neue', cursive;
    --font-archivo-black: 'Archivo Black', sans-serif;
    --font-gothic-a1: 'Gothic A1', sans-serif;

    /* Buttons */
    --bg-color-btn: #f4c86a;
    --text-color-btn: #073238;
    --hover-bg-color-btn: #ffd979;
    --hover-text-color-btn: #073238;

    /* Global */
    --border-sections-color: rgba(253, 223, 171, 1);
    --bg-color-body: #fff8ec;
    --bg-gradient-body:
        radial-gradient(circle at top left, rgba(244, 200, 106, 0.28), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(29, 126, 137, 0.12), transparent 30%),
        linear-gradient(180deg, #fff8ec 0%, #fff2df 48%, #fffaf3 100%);
    --text-color-body: #073238;
    --text-color-body-muted: rgba(7, 50, 56, 0.74);
    --accent-color-body: #c86b1f;
    --hover-accent-color-body: #e38a2f;
    --border-color-body: rgba(7, 50, 56, 0.12);
    --section-padding-desktop: 5.5rem 0;
    --section-padding-mobile: 4rem 0;
    --surface-color-body: rgba(255, 248, 236, 0.82);
    --surface-color-strong: #073238;
    --shadow-color-body: 0 20px 48px rgba(7, 50, 56, 0.08);
    --radius-soft: 1rem;
    --radius-medium: 1.5rem;
    --site-max-width: 1200px;
    --site-padding-inline: clamp(1rem, 2.6vw, 2rem);
    --copy-measure: 65ch;

    /* Nav */
    --bg-color-nav: #073238;
    --text-color-nav: #ffffff;
    --link-color-nav: rgba(255, 255, 255, 0.86);
    --link-hover-color-nav: #f4c86a;
    --border-color-nav: rgba(255, 255, 255, 0.08);
    --bg-color-nav-mobile-menu: #073238;
    --border-color-nav-toggle: rgba(244, 200, 106, 0.6);
    --bg-color-nav-call: transparent;
    --text-color-nav-call: #ffffff;

    /* Hero */
    --bg-color-hero: transparent;
    --text-color-hero: var(--text-color-body);
    --text-color-hero-muted: var(--text-color-body-muted);
    --bg-color-hero-panel: transparent;
    --bg-color-hero-detail: transparent;
    --text-color-hero-detail: var(--text-color-body);
    --text-color-hero-label: #c86b1f;
    --border-color-hero-detail: rgba(7, 50, 56, 0.1);
    --hero-image-radius: 2rem;
    --hero-detail-radius: 0;
    --hero-image-shadow: 0 28px 65px rgba(7, 50, 56, 0.14);

    /* Featured */
    --bg-color-featured: transparent;
    --text-color-featured: var(--text-color-body);
    --text-color-featured-muted: var(--text-color-body-muted);
    --accent-color-featured: #c86b1f;
    --bg-color-feature-tag: transparent;
    --bg-color-feature-item: transparent;
    --border-color-featured-item: rgba(7, 50, 56, 0.12);

    /* About */
    --bg-color-about: transparent;
    --text-color-about: var(--text-color-body);
    --text-color-about-muted: var(--text-color-body-muted);
    --bg-color-about-copy: transparent;
    --border-color-about-copy: rgba(10, 42, 48, 0.12);

    /* Menu CTA */
    --bg-color-menu-cta: linear-gradient(135deg, #073238 0%, #105b63 58%, #c86b1f 100%);
    --text-color-menu-cta: #000000;
    --border-color-menu-cta: rgba(10, 42, 48, 0.1);

    /* Location */
    --bg-color-location: transparent;
    --text-color-location: var(--text-color-body);
    --text-color-location-muted: #000000;
    --bg-color-location-copy: transparent;
    --border-color-location-copy: rgba(10, 42, 48, 0.12);

    /* Footer */
    --bg-color-footer: transparent;
    --text-color-footer: rgba(10, 42, 48, 0.72);
    --link-hover-color-footer: #c86b1f;
    --border-color-footer: rgba(10, 42, 48, 0.12);


    /* Under Construction */
    --text-visit-us-title: #105b63;
}

/* Global */

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

html {
    scroll-behavior: smooth;

}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-Lato);
    color: var(--text-color-body);
    background: var(--bg-gradient-body);
}

main {
    flex: 1 0 auto;
    margin: 0 3rem;
}

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

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--hover-accent-color-body);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid rgba(240, 200, 135, 0.95);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border: 1px solid transparent;
    border-radius: 0.9rem;
    padding: 0.95rem 1.45rem;
    text-decoration: none;
    font-family: var(--font-gothic-a1);
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.eyebrow {
    margin: 0 0 1rem;
    font-family: var(--font-gothic-a1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color-body);
}

.section-shell {
    padding: var(--section-padding-desktop);
}

section + section .section-shell,
.menu-cta .cta-shell {
    border-top: 1px solid var(--border-color-body);
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2.25rem;
}

.section-heading h2,
.hero-copy h1,
.hero-panel-copy h2,
.menu-cta h2,
.location h2 {
    margin: 0;
    font-family: var(--font-impact);
    line-height: 1.02;
    text-transform: uppercase;
}

.section-heading h2,
.menu-cta h2,
.location h2 {
    font-size: clamp(2.1rem, 4vw, 3.45rem);
}

.feature-tag,
.location-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: var(--font-archivo-black);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Nav */

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--bg-color-nav);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color-nav);
}

.site-nav {
    padding: 0.95rem 0;
    background: transparent;
}

.nav-shell {
    gap: 1rem;
}

.brand-mark {
    color: var(--text-color-nav);
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 4.45rem;
    height: 4.45rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.brand-mark:hover,
.brand-mark:focus-visible {
    color: var(--link-hover-color-nav);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-family: var(--font-impact);
    font-size: clamp(1.4rem, 3vw + 0.65rem, 1.9rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.96;
}

.brand-copy small {
    font-family: var(--font-gothic-a1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.76);
}

.nav-toggle {
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--border-color-nav-toggle);
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.16rem rgba(253, 223, 171, 0.24);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23fddfab' stroke-width='2.4' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-links {
    align-items: center;
    gap: 0.9rem;
}

.nav-link {
    position: relative;
    padding: 0.55rem 0 !important;
    font-family: var(--font-gothic-a1);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--link-color-nav);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover-color-nav);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}

.nav-call {
    color: var(--text-color-nav-call);
    background: var(--bg-color-nav-call);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav-call:hover {
    color: var(--link-hover-color-nav);
    border-color: rgba(240, 200, 135, 0.58);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta,
.hero-primary {
    color: var(--text-color-btn);
    background: var(--bg-color-btn);
    box-shadow: 0 14px 30px rgba(167, 93, 22, 0.14);
}

.nav-cta:hover,
.hero-primary:hover {
    color: var(--hover-text-color-btn);
    background: var(--hover-bg-color-btn);
    box-shadow: 0 18px 34px rgba(167, 93, 22, 0.18);
}

.hero-secondary {
    color: var(--text-color-body);
    background: transparent;
    border-color: rgba(10, 42, 48, 0.16);
}

.hero-secondary:hover {
    color: var(--accent-color-body);
    border-color: rgba(167, 93, 22, 0.38);
    background: rgba(255, 255, 255, 0.28);
}

/* Hero */

.mobile-hero-panel{
        display: none;
    }

.hero {
    background: var(--bg-color-hero);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0 3.1rem;
}

.hero-copy {
    padding-right: 0.5rem;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    font-family: var(--font-bebas);
    max-width: none;
    white-space: nowrap;
}

.hero-text {
    max-width: 34rem;
    margin: 1.1rem 0 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--text-color-hero-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.35rem;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-gothic-a1);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color-hero);
}

.hero-highlights span::before {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--accent-color-body);
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: auto -1.5rem -1.5rem 3rem;
    height: 70%;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(240, 200, 135, 0.2), rgba(10, 42, 48, 0.08));
    z-index: 0;
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 1rem;
    z-index: 1;
}

.hero-media {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-image {
    width: 100%;
    height: clamp(22rem, 34vw, 31rem);
    object-fit: cover;
    background: #ead6b8;
    border-radius: var(--hero-image-radius);
    box-shadow: var(--hero-image-shadow);
}

.hero-panel-copy {
    max-width: 100%;
    padding-left: 0;
    border-left: 0;
}

.hero-panel-copy h2 {
    font-size: clamp(1.8rem, 3.3vw, 2.7rem);
    margin-top: 0.35rem;
}

.hero-panel-copy p {
    margin: 0.5rem 0 0;
    line-height: 1.65;
    color: var(--text-color-body-muted);
    font-family: var(--font-gothic-a1);
}

.feature-tag {
    padding: 0;
    border-radius: 0;
    color: var(--accent-color-featured);
    background: transparent;
}

.hero-media.slide-in {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-media.exit-left {
    opacity: 0;
    transform: translateX(-45px);
}

.hero-media.exit-right {
    opacity: 0;
    transform: translateX(45px);
}

.hero-media.exit-up {
    opacity: 0;
    transform: translateY(-45px);
}

.hero-media.exit-down {
    opacity: 0;
    transform: translateY(45px);
}

.hero-media.enter-from-right {
    opacity: 0;
    transform: translateX(45px);
}

.hero-media.enter-from-left {
    opacity: 0;
    transform: translateX(-45px);
}

.hero-media.enter-from-up {
    opacity: 0;
    transform: translateY(-45px);
}

.hero-media.enter-from-down {
    opacity: 0;
    transform: translateY(45px);
}

/* Featured */

.featured {
    background: var(--bg-color-featured);
}

.featured-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color-featured-item);
}

.featured-item {
    min-height: 12rem;
    padding: 1.4rem 1.1rem 0 0;
    border-right: 1px solid rgba(10, 42, 48, 0.1);
}

.featured-item img {
        margin-bottom: 0.75rem;
        border-radius: var(--radius-soft);
        margin-bottom: 1rem;
    }

.featured-item:last-child {
    border-right: 0;
}

.featured-item h3,
.why-visit-grid h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.96;
    letter-spacing: 0.04em;
}

.featured-item p,
.why-visit-grid p {
    margin: 0;
    line-height: 1.75;
    color: var(--text-color-featured-muted);
}
/* About */

.about-us {
    background: var(--bg-color-about);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.about-copy {
    display: grid;
    gap: 1.15rem;
    padding: 0 0 0 2rem;
    border-left: 1px solid var(--border-color-about-copy);
}

.about-copy p {
    margin: 0;
    line-height: 1.85;
    color: var(--text-color-about-muted);
    font-size: 1.04rem;
}

/* Menu CTA */

.menu-cta {
    padding-bottom: 1rem;
}

.cta-shell {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2.25rem;
    border-radius: 1.4rem;
    background: var(--bg-color-menu-cta);
    color: var(--text-color-menu-cta);
}

.under-construction-hero .hero-grid {
    align-items: center;
}

.under-construction-panel {
    gap: 1.5rem;
}

.under-construction-logo-card {
    display: grid;
    place-items: center;
    min-height: clamp(18rem, 34vw, 28rem);
    padding: 2rem;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(10, 42, 48, 0.12);
    background:
        radial-gradient(circle at top, rgba(244, 200, 106, 0.28), transparent 42%),
        rgba(255, 248, 236, 0.72);
    box-shadow: var(--shadow-color-body);
}

.under-construction-logo {
    width: min(100%, 17rem);
    height: auto;
}

.cta-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(244, 200, 106, 0.28), transparent 34%);
    pointer-events: none;
}

.cta-shell > * {
    position: relative;
    z-index: 1;
}

.cta-shell .eyebrow,
.cta-shell h2 {
    color: var(--text-color-menu-cta);
}

/* Why Visit */

.why-visit {
    background: transparent;
}

.why-visit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color-body);
}

.why-visit-grid article {
    padding-right: 1rem;
}

/* Location */

.location {
    background: var(--bg-color-location);
}

.location-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.location-copy {
    display: grid;
    gap: 1.75rem;
    padding: 0 0 0 2rem;
    border-left: 1px solid var(--border-color-location-copy);
}

.location-meta {
    display: grid;
    gap: 1.2rem;
}

.location-label {
    margin-bottom: 0.45rem;
    color: var(--accent-color-body);
}


.location-copy p,
.location-copy a {
    margin: 0;
    line-height: 1.7;
    font-size: 1.02rem;
    color: var(--text-color-location-muted);
}

.location-copy a:hover {
    color: var(--accent-color-body);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.location-map {
    overflow: hidden;
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-color-location-copy);
    box-shadow: var(--shadow-color-body);
    background: var(--surface-color-body);
}

.location-map iframe {
    display: block;
    width: 100%;
    min-height: 20rem;
}

/* Footer */

.site-footer {
    padding: 1.6rem 0 2.6rem;
    margin-top: auto;
    background: var(--bg-color-footer);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.9fr));
    gap: 1.5rem;
    align-items: start;
    padding-top: 1.3rem;
    border-top: 1px solid var(--border-color-footer);
}

.footer-shell p,
.footer-shell a {
    margin: 0;
    font-family: var(--font-gothic-a1);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-color-footer);
    text-decoration: none;
}

.footer-brand {
    display: grid;
    gap: 0.35rem;
}

.footer-brand span,
.footer-label {
    font-family: var(--font-gothic-a1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color-body);
}

.footer-group {
    display: grid;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-links svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    fill: currentColor;
}

.footer-shell a:hover {
    color: var(--link-hover-color-footer);
}
/* Under Construction style*/
.under-construction-header{
    opacity: var(--header-opacity, 1);
  transform: translateY(var(--header-translate, 0));
  transition: opacity 0.12s linear, transform 0.12s linear;
  will-change: opacity, transform;
}

.site-nav.header-hidden {
  pointer-events: none;
}
.container-top{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    stroke-width: 0%;
}

.container-top img{
    width: 100%;
    max-width: 20rem;
    height: auto;
}
.container-top h1{
    font-family: var(--font-bebas);
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    color: #ffffff;
}

.under-construction-main{
    margin-top: 2rem;
}



.container-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.visit-us-title{
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-impact);
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    color: var(--text-visit-us-title);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.under-construction-text{
    font-family: var(--font-gothic-a1);
    text-align: center;
    letter-spacing: 0.08em;
    font-size: clamp(1.2rem, 4.6vw, 1.8rem);
    color: var(--text-color-body);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.location-label{
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-family: var(--font-gothic-a1);
    font-size: clamp(1.6rem, 4.6vw, 2.3rem);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.location-text {
    text-align: start;
    margin-top: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-impact);
    font-size: clamp(1.2rem, 4.6vw, 1.8rem);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}



/* Responsive */

@media (max-width: 991.98px) {
    .site-nav {
        padding: 0.8rem 0;
    }

    .brand-logo {
        width: 5rem;
        height: 5rem;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-family: var(--font-impact);
        font-size: clamp(1.25rem, 3vw, 2rem);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border-color-nav);
        border-radius: var(--radius-medium);
        background: var(--bg-color-nav-mobile-menu);
    }

    .nav-links {
        align-items: stretch;
        gap: 0.2rem;
    }

    .nav-link {
        padding: 0.8rem 0 !important;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        margin: 0.85rem 0 0;
    }

    .nav-call,
    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero-grid,
    .featured-band,
    .about-grid,
    .why-visit-grid,
    .location-shell {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 1.75rem;
        padding: 2.15rem 0 2.7rem;
    }

    .hero-visual::before {
        inset: auto -0.5rem -1rem 1.5rem;
    }

    .hero-image {
        height: 26rem;
    }

    .featured-item {
        min-height: auto;
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(10, 42, 48, 0.1);
    }

    

    .featured-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .cta-shell,
    .footer-shell {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {

    .mobile-hero-panel{
        display: block;
    }
    .desktop-hero-panel{
        display: none;
    }
    .section-shell {
        padding: var(--section-padding-mobile);
    }

    .brand-logo {
        width: 4.5rem !important;
        height: 4.5rem !important;
    }

    

    .brand-copy strong {
        font-size: 1.2rem;
        letter-spacing: 0.06em;
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8.4vw, 2.8rem);
        max-width: none;
        white-space: nowrap;
    }

    .hero-text,
    .about-copy p,
    .location-copy p {
        font-size: 1rem;
    }

    .cta-shell {
        padding: 1.5rem;
    }

    .hero-actions,
    .location-actions {
        align-items: stretch;
    }

    .hero-actions .btn,
    .location-actions .btn {
        width: 100%;
        text-align: center;
    }

    .cta-shell .btn {
        width: 100%;
        margin-top: 0.75rem;
    }

    .hero-image {
        height: 18rem;
    }

    .hero-panel-copy,
    .about-copy,
    .location-copy {
        padding-left: 0;
        border-left: 0;
    }

    .why-visit-grid article {
        padding-right: 0;
    }

    .location-map iframe {
        min-height: 18rem;
    }
}

/* Layout audit fixes */

html,
body {
    overflow-x: clip;
}

body {
    line-height: 1.6;
}

main,
section,
.container,
.hero-grid,
.featured-band,
.about-grid,
.why-visit-grid,
.location-shell,
.footer-shell {
    min-width: 0;
}

.container {
    width: min(100%, calc(var(--site-max-width) + (var(--site-padding-inline) * 2)));
    max-width: none;
    margin-inline: auto;
    padding-inline: var(--site-padding-inline);
}

.nav-shell,
.hero-grid,
.featured-band,
.about-grid,
.why-visit-grid,
.location-shell,
.footer-shell {
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.section-shell {
    padding: clamp(3.75rem, 7vw, 5.5rem) 0;
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-heading .eyebrow,
.menu-block-heading .eyebrow {
    margin-bottom: 0;
}

.section-heading h2,
.hero-panel-copy h2,
.menu-cta h2,
.location h2 {
    text-wrap: balance;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: clamp(2rem, 6vw, 3.25rem) 0;
}

.hero-copy {
    padding-right: 0;
}

.hero-copy h1 {
    max-width: 12ch;
    white-space: normal;
    text-wrap: balance;
}

.hero-text,
.about-copy p,
.location-copy p {
    max-width: var(--copy-measure);
}

.hero-actions,
.location-actions {
    align-items: stretch;
}

.hero-actions .btn,
.location-actions .btn,
.cta-shell .btn {
    width: 100%;
    min-height: 3.25rem;
}

.hero-visual::before {
    inset: auto -0.5rem -1rem 1rem;
}

.hero-panel {
    gap: 1.25rem;
}

.hero-image {
    height: clamp(18rem, 62vw, 28rem);
}

.featured-band,
.why-visit-grid,
.about-grid,
.location-shell,
.footer-shell {
    grid-template-columns: 1fr;
}

.featured-item {
    display: grid;
    align-content: start;
    min-height: 0;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 42, 48, 0.1);
}

.featured-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.featured-image,
.featured-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-soft);
    background: #ead6b8;
}

.about-copy,
.location-copy {
    gap: 1rem;
    padding-left: 0;
    border-left: 0;
}

.cta-shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.why-visit-grid article {
    padding-right: 0;
}

.location-map iframe {
    min-height: clamp(18rem, 52vw, 24rem);
}

.footer-links {
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }

    .hero-actions,
    .location-actions {
        align-items: center;
    }

    .hero-actions .btn,
    .location-actions .btn,
    .cta-shell .btn {
        width: auto;
    }

    .featured-band,
    .why-visit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-shell {
        grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
    }
}

@media (min-width: 1024px) {
    .featured-band,
    .why-visit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-grid,
    .location-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .about-copy,
    .location-copy {
        padding-left: clamp(1.5rem, 2.5vw, 2rem);
        border-left: 1px solid var(--border-color-about-copy);
    }

    .location-copy {
        border-left-color: var(--border-color-location-copy);
    }

    .hero-visual::before {
        inset: auto -1.5rem -1.5rem 3rem;
    }
}
