/* Entourage Mobile Entertainment */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/outfit-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/outfit-700.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/figtree-400.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/figtree-500.woff2') format('woff2');
    font-display: swap;
}

:root {
    --platinum: #F4F4F6;
    --white: #FFFFFF;
    --ink: #17161A;
    --chrome: #5E5C66;
    --magenta: #C2187E;
    --magenta-ink: #A6156C;
    --lav: #E9E7EE;
    --beam: linear-gradient(115deg, #5B2AA6 0%, #C2187E 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Figtree', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    background-color: var(--platinum);
    color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
}

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

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--magenta-ink);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 10px;
    background: var(--white);
    z-index: 1000;
}
.skip-link:focus {
    top: 0;
}

/* Header */
.site-header {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* Nav Desktop */
.nav-desktop {
    display: none;
}
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .nav-desktop a {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
    }
    .nav-desktop a.active {
        color: var(--magenta-ink);
    }
}

.btn-magenta {
    background-color: var(--magenta);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}
.btn-magenta:hover {
    background-color: var(--magenta-ink);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Nav Mobile */
.nav-mobile {
    display: block;
}
.nav-mobile details summary {
    list-style: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 16px;
    border: 1px solid var(--chrome);
    border-radius: 22px;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-mobile details summary::-webkit-details-marker {
    display: none;
}
.nav-mobile-menu {
    position: absolute;
    top: 80px;
    right: 24px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}
.nav-mobile-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none;
    }
}

/* Sections & Clips */
.section-seam {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7vw), 0 100%);
    padding-bottom: 11vw;
    margin-bottom: -7vw;
    position: relative;
    z-index: 1;
}

.section-seam-top {
    clip-path: polygon(0 7vw, 100% 0, 100% 100%, 0 100%);
    padding-top: 11vw;
    margin-top: -7vw;
}

.section-seam-both {
    clip-path: polygon(0 7vw, 100% 0, 100% calc(100% - 7vw), 0 100%);
    padding-top: 11vw;
    padding-bottom: 11vw;
    margin-top: -7vw;
    margin-bottom: -7vw;
    position: relative;
    z-index: 2;
}

/* Hero */
.hero {
    position: relative;
    color: var(--white);
    background-color: var(--ink);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/hero-reception.jpg');
    background-size: cover;
    background-position: center;
}
.hero-scrim-beam {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--beam);
    opacity: 0.35;
}
.hero-scrim-ink {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(115deg, rgba(91,42,166,0.22), rgba(194,24,126,0.14)), linear-gradient(to bottom, rgba(23,22,26,0.18) 0%, rgba(23,22,26,0.42) 55%, rgba(23,22,26,0.82) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 24px 80px;
    max-width: 800px;
}
@media (min-width: 768px) {
    .hero-content {
        padding: 120px 48px 140px;
    }
}
.hero-kicker {
    color: var(--lav);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero-sub {
    color: var(--white);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 32px;
}
.hero-vow {
    background: var(--white);
    color: var(--magenta-ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--lav);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
.hero-proof a {
    text-decoration: underline;
    text-decoration-color: rgba(233,231,238,0.5);
}

/* 1985 Story Band */
.story-band {
    background: var(--ink);
    color: var(--white);
    padding: 80px 24px;
}
@media (min-width: 768px) {
    .story-band {
        padding: 120px 48px;
    }
}
.story-kicker {
    color: var(--magenta);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
}
.story-content {
    display: grid;
    gap: 32px;
    max-width: 1000px;
}
@media (min-width: 768px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}
.story-logo-echo {
    margin-bottom: 24px;
}
.story-logo-echo img {
    height: 32px;
    opacity: 0.8;
}

/* Services Trio */
.services-trio {
    background: var(--platinum);
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}
@media (min-width: 1024px) {
    .services-trio {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 120px 48px;
    }
}
.service-col {
    border-left: 2px solid var(--magenta);
    padding-left: 24px;
}
.service-col h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.service-col p {
    margin-bottom: 16px;
}
.service-menu {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--magenta-ink);
}
.service-menu-list {
    list-style: none;
    margin-top: 16px;
}
.service-menu-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--magenta-ink);
}
.service-menu-list li:last-child {
    border-bottom: none;
}

/* Trust Block */
.trust-block {
    background: var(--white);
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .trust-block {
        padding: 120px 48px;
    }
}
.trust-block h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.trust-list {
    list-style: none;
}
.trust-list li {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.trust-list li:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}
.trust-list svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--magenta);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Testimonials */
.testimonials {
    background: var(--platinum);
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .testimonials {
        padding: 120px 48px;
    }
}
.testimonial {
    margin-bottom: 48px;
}
.testimonial:nth-child(even) {
    text-align: right;
}
.testimonial p {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 16px;
}
.testimonial-author {
    color: var(--magenta-ink);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

/* Check Your Date Form */
.check-date {
    background: var(--platinum);
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}
@media (min-width: 768px) {
    .check-date {
        grid-template-columns: 1fr 1fr;
        padding: 120px 48px;
        align-items: center;
    }
}
.check-date-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.check-date-text p {
    margin-bottom: 24px;
}
.check-date-address {
    font-size: 0.875rem;
    color: var(--chrome);
}
.date-form {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.date-form h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ink);
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    background: var(--white);
}
.date-form button {
    width: 100%;
    margin-top: 16px;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--lav);
    padding: 40px 24px;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.site-footer a {
    text-decoration: underline;
    text-decoration-color: rgba(233,231,238,0.5);
}
@media (min-width: 768px) {
    .site-footer {
        padding: 40px 48px;
    }
}

/* DJ & Lighting Page Specific */
.page-hero {
    background: var(--ink);
    color: var(--white);
    padding: 140px 24px 100px;
    text-align: center;
}
.page-hero h1 {
    margin-bottom: 16px;
}
.page-hero .kicker {
    color: var(--magenta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.editorial-block {
    background: var(--platinum);
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}
.editorial-block p {
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .editorial-block {
        padding: 120px 48px;
    }
}

.lighting-section {
    background: var(--white);
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}
@media (min-width: 768px) {
    .lighting-section {
        grid-template-columns: 1fr 1fr;
        padding: 120px 48px;
        align-items: center;
    }
}
.monogram-visual {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    padding: 3px;
    background: var(--beam);
}
.monogram-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('../img/uplight-wall.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.monogram-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.lighting-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.lighting-text p {
    margin-bottom: 32px;
}
.lighting-menu {
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.lighting-menu li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--magenta-ink);
}

.photo-booth-section {
    background: var(--platinum);
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}
@media (min-width: 768px) {
    .photo-booth-section {
        grid-template-columns: 1fr 1fr;
        padding: 120px 48px;
        align-items: center;
    }
}
.photo-booth-img {
    width: 100%;
    border-radius: 12px;
}
.photo-booth-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.cta-band {
    background: var(--ink);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-band {
        padding: 120px 48px;
    }
}
.cta-band h2 {
    margin-bottom: 32px;
}
.cta-band .hero-ctas {
    justify-content: center;
    margin-bottom: 0;
}

/* Mobile Call Bar */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    z-index: 100;
}
@media (min-width: 768px) {
    .mobile-call-bar {
        display: none;
    }
}
/* To avoid overlap with mobile call bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* Preview Ribbon */
.preview-ribbon {
    background: var(--ink);
    color: var(--platinum);
    padding: 12px 24px;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    position: relative;
    z-index: 200;
}
@media (max-width: 767px) {
    .preview-ribbon {
        position: fixed;
        bottom: 80px; /* Above call bar */
        left: 0;
        right: 0;
    }
    body {
        padding-bottom: 140px; /* Adjust for both bars */
    }
}
.preview-ribbon a {
    color: var(--magenta);
    font-weight: 600;
    text-decoration: underline;
}
.preview-close {
    background: transparent;
    border: none;
    color: var(--platinum);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* Event Types Strip */
.event-types {
    background: var(--white);
    padding: 60px 24px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--magenta-ink);
}
@media (min-width: 768px) {
    .event-types {
        padding: 80px 48px;
    }
}
.event-type-item {
    display: inline-block;
    margin: 8px 0;
}
.event-type-slash {
    display: inline-block;
    margin: 0 16px;
    color: var(--magenta);
    transform: skewX(-4deg);
    font-weight: 700;
}
