:root {
    --coral: #f37559;
    --coral-dark: #dc4f3d;
    --teal: #078c94;
    --blue: #2197cf;
    --yellow: #ffca08;
    --brown: #4a302f;
    --text: #2e2f38;
    --muted: #6c7280;
    --line: #e6e7ea;
    --surface: #ffffff;
    --paper: #fff9ee;
    --shadow: 0 18px 50px rgba(74, 48, 47, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 18%, rgba(33, 151, 207, 0.08) 0 60px, transparent 62px),
        radial-gradient(circle at 84% 28%, rgba(255, 202, 8, 0.12) 0 70px, transparent 72px),
        linear-gradient(180deg, #fffefd 0%, #fff8ed 100%);
    font-family: ui-rounded, "Arial Rounded MT Bold", Nunito, Inter, system-ui, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 92px;
    padding: 0 32px;
    background: var(--coral);
    box-shadow: 0 8px 22px rgba(74, 48, 47, 0.18);
}

.brand {
    grid-column: 2;
    display: block;
    width: 172px;
}

.brand img {
    display: block;
    width: 100%;
}

.site-nav {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.site-nav a,
.button-primary,
.button-secondary,
.product-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--coral-dark);
    box-shadow: 0 8px 14px rgba(74, 48, 47, 0.16);
    font-weight: 900;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.button-primary:hover,
.product-grid a:hover {
    background: var(--brown);
}

.menu-toggle {
    display: none;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brown);
    font-size: 1.3rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    width: min(1180px, 100%);
    min-height: calc(100vh - 92px);
    margin: 0 auto;
    padding: 42px 24px;
}

.hero-art {
    position: relative;
    align-self: end;
}

.hero-art img {
    display: block;
    width: min(430px, 100%);
    margin: 0 auto;
}

.hero-copy {
    display: grid;
    gap: 18px;
}

.eyebrow {
    color: var(--teal);
    font-size: 0.84rem;
    font-weight: 1000;
    text-transform: uppercase;
}

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

h1 {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--brown);
    font-size: clamp(2.6rem, 8vw, 5.6rem);
    line-height: 0.95;
}

h2 {
    color: var(--brown);
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1;
}

p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions,
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-secondary {
    color: var(--brown);
    background: var(--yellow);
}

.section-band,
.split-section,
.page-main {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 64px 24px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.feature-grid,
.album-grid,
.product-grid,
.team-grid,
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-grid article,
.album-grid article,
.product-grid article,
.team-grid article,
.contact-card,
.callout,
.map-placeholder {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.feature-grid article,
.album-grid article,
.product-grid article,
.team-grid article {
    padding: 22px;
}

.feature-grid span {
    font-size: 2.4rem;
}

.split-section,
.contact-grid,
.team-hero {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 28px;
    align-items: center;
}

.callout,
.contact-card {
    display: grid;
    gap: 12px;
    padding: 28px;
}

.callout strong,
.contact-card strong {
    color: var(--brown);
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.text-link {
    color: var(--coral-dark);
    font-weight: 900;
}

.page-hero {
    max-width: 820px;
    margin-bottom: 32px;
}

.video-category {
    margin-top: 34px;
}

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

.media-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.album-grid article {
    display: grid;
    gap: 12px;
    min-height: 190px;
    align-content: end;
    background: linear-gradient(135deg, rgba(33, 151, 207, 0.14), rgba(255, 202, 8, 0.18)), #ffffff;
}

.album-grid article > img,
.product-image img,
.team-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.photo-strip figure {
    margin: 0;
}

.photo-strip img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.photo-strip figcaption {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
}

.album-grid span,
.product-grid p {
    color: var(--muted);
}

.album-grid strong,
.product-grid h2,
.team-grid strong {
    color: var(--brown);
    font-size: 1.4rem;
}

.team-hero img {
    width: min(360px, 100%);
    justify-self: center;
}

.product-image {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--brown);
    background: var(--paper);
    font-weight: 900;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    border-radius: 0;
}

.contact-card a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 260px;
    margin-top: 32px;
    color: var(--muted);
    background: var(--paper);
}

.map-placeholder span {
    color: var(--brown);
    font-size: 2rem;
    font-weight: 900;
}

.map-embed {
    margin-top: 32px;
}

.map-embed iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.empty-state {
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    padding: 28px 32px;
    color: #ffffff;
    background: var(--teal);
}

.footer-brand {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-brand img {
    width: 142px;
    max-width: 100%;
}

.footer-contact {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-contact strong {
    font-size: 1.15rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.social-icon {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    color: var(--teal);
    background: #ffffff;
    font-size: 0.78rem;
    font-weight: 1000;
}

.site-footer span,
.site-footer a {
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .brand {
        grid-column: 1;
        width: 138px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 3;
        width: 48px;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 12px 0 18px;
    }

    .site-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero,
    .split-section,
    .contact-grid,
    .team-hero,
    .feature-grid,
    .album-grid,
    .product-grid,
    .team-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        order: -1;
    }

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

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 0 16px;
    }

    .site-nav.is-open {
        grid-template-columns: 1fr;
    }

    .site-nav a,
    .button-primary,
    .button-secondary,
    .product-grid a {
        width: 100%;
    }

    .hero,
    .section-band,
    .split-section,
    .page-main {
        padding-inline: 16px;
    }
}
