:root {
    --bg: #070711;
    --panel: rgba(15, 16, 34, 0.82);
    --panel-strong: #101125;
    --text: #ffffff;
    --muted: #b8b8d4;
    --cyan: #00eaff;
    --pink: #ff2dd4;
    --lime: #b8ff2d;
    --orange: #ff8a2d;
    --gold: #d7b33f;
    --gold-soft: #f1d46d;
    --ink: #111827;
    --line: rgba(255, 255, 255, 0.13);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --display-font: "Arial Rounded MT Bold", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 108px; }

body {
    margin: 0;
    font-family: var(--display-font);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 45, 212, 0.24), transparent 28rem),
        radial-gradient(circle at 90% 18%, rgba(0, 234, 255, 0.2), transparent 26rem),
        linear-gradient(180deg, #070711 0%, #0d0620 46%, #05050d 100%);
    color: var(--text);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 64px);
    background: rgba(5, 5, 16, 0.68);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
}

.brand img {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 24px rgba(0, 234, 255, 0.38);
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.6vw, 28px);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-header nav a { color: rgba(255, 255, 255, 0.78); }
.site-header nav a:hover { color: var(--cyan); }

.nav-cta {
    padding: 10px 14px;
    color: #07101f !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(215, 179, 63, 0.24);
}

/* â”€â”€â”€ HERO SLIDESHOW â”€â”€â”€ */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 120px clamp(20px, 6vw, 84px) 72px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,16,0.92), rgba(5,5,16,0.52) 42%, rgba(5,5,16,0.14)),
        linear-gradient(180deg, rgba(5,5,16,0.18), rgba(5,5,16,0.76));
}

.hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, var(--bg));
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 84px;
    right: clamp(20px, 6vw, 84px);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--cyan);
    transform: scale(1.4);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(820px, 100%);
}

.hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(3rem, 8vw, 7.6rem);
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(0, 234, 255, 0.42);
}

.hero p {
    width: min(650px, 100%);
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
    color: #07101f;
    background: linear-gradient(135deg, #b88f20, #f3d874 52%, #fff0ad);
    box-shadow: 0 0 34px rgba(215, 179, 63, 0.32);
}

.button.primary:hover,
.nav-cta:hover,
.floating-whatsapp:hover {
    box-shadow: 0 0 28px rgba(215, 179, 63, 0.55), 0 0 70px rgba(215, 179, 63, 0.18);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

/* â”€â”€â”€ SECTION BASE â”€â”€â”€ */
.section {
    padding: clamp(66px, 8vw, 116px) clamp(20px, 6vw, 84px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading p {
    margin: 0;
    color: var(--lime);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 4.4rem);
    line-height: 0.96;
}

/* â”€â”€â”€ SERVICES SECTION â€“ B&W background â”€â”€â”€ */
.intro-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(215,179,63,0.12), transparent 28rem),
        linear-gradient(180deg, #07101f 0%, #0c1425 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.intro-section .section-heading p { color: var(--gold-soft); }
.intro-section .section-heading h2 { color: #fff; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(255,255,255,0.035);
}

.service-card {
    position: relative;
    min-height: 260px;
    padding: 28px 28px 48px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 240ms ease, transform 240ms ease;
    background: rgba(255,255,255,0.04);
    color: #fff;
}

.service-card:nth-child(3),
.service-card:nth-child(6) { border-right: 0; }

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) { border-bottom: 0; }

.service-card:hover {
    background: #101827;
    transform: translateY(-3px);
    box-shadow: 0 0 34px rgba(215, 179, 63, 0.18);
}

.service-card span {
    display: block;
    color: var(--gold-soft);
    font-weight: 900;
    margin-bottom: 34px;
    font-size: 0.85rem;
}

.service-card h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.05;
    color: #fff;
}

.service-card:hover h3 { color: #fff; }

.service-card p {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.66);
    line-height: 1.6;
    font-size: 0.9rem;
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 1.1rem;
    color: #b88f20;
    transition: color 0.2s, transform 0.2s;
}

.service-card:hover .card-arrow {
    color: var(--gold-soft);
    transform: translateX(4px);
}

.essentials-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.media-feature {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 8px;
    border: 1px solid rgba(215,179,63,0.16);
    background: #101827;
}

.media-feature img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.media-feature video,
.image-card video {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    background: #07101f;
}

.media-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(7,16,31,0.92));
}

.media-feature div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}

.media-feature span,
.section-kicker {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 900;
}

.media-feature h3 {
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    line-height: 1.05;
}

/* â”€â”€â”€ CLIENTS â”€â”€â”€ */
.clients-section {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 7vw, 86px) clamp(20px, 6vw, 84px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 12%, rgba(0,234,255,0.1), transparent 24rem),
        linear-gradient(90deg, rgba(7,7,17,0.98), rgba(12,18,32,0.98));
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    width: calc(100% + clamp(40px, 12vw, 168px));
    margin-left: calc(clamp(20px, 6vw, 84px) * -1);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.035);
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    z-index: 2;
    width: min(18vw, 180px);
    pointer-events: none;
}

.logo-marquee::before { left: 0; background: linear-gradient(90deg, #070711, transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(270deg, #0c1220, transparent); }

.logo-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: logoSlide 36s linear infinite;
}

.logo-marquee:hover .logo-track { animation-play-state: paused; }

.logo-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px; height: 92px;
    padding: 20px 28px;
    border: 1px solid rgba(215,179,63,0.14);
    border-radius: 8px;
    background: rgba(5,5,16,0.36);
    box-shadow: 0 0 28px rgba(215,179,63,0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.logo-tile img {
    width: 100%; max-width: 170px; height: 48px;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

.logo-tile:hover {
    border-color: rgba(215,179,63,0.46);
    box-shadow: 0 0 34px rgba(215,179,63,0.18);
    transform: translateY(-2px);
}

@keyframes logoSlide {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* â”€â”€â”€ EXPERIENCE â”€â”€â”€ */
.experience-section {
    background: #07101f;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 270px;
    gap: 18px;
}

.image-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    border-radius: 8px;
    isolation: isolate;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
}

.image-card.large { grid-column: span 2; grid-row: span 2; }

.image-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms ease, filter 500ms ease;
}

.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 26%, rgba(5,5,16,0.92));
}

.image-card div {
    position: absolute;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 2;
}

.image-card h3 { margin: 0; font-size: 1.45rem; line-height: 1.05; }
.image-card p  { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

.image-card:hover img { transform: scale(1.08); filter: saturate(1.22); }

/* â”€â”€â”€ GALLERY â€“ B&W section header â”€â”€â”€ */
.gallery-section {
    background:
        radial-gradient(circle at 82% 12%, rgba(215,179,63,0.08), transparent 24rem),
        #07101f;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.gallery-section .section-heading p { color: var(--gold-soft); }
.gallery-section .section-heading h2 { color: #fff; }

/* Video row */
.gallery-videos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 16/9;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Show placeholder label only if video fails / no src found */
.video-placeholder-label {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    background: #111;
    padding: 20px;
}

.video-placeholder video:not([src]) ~ .video-placeholder-label,
.video-placeholder video[src="images/video1.mp4"] ~ .video-placeholder-label,
.video-placeholder video[src="images/video2.mp4"] ~ .video-placeholder-label,
.video-placeholder video[src="images/video3.mp4"] ~ .video-placeholder-label {
    display: flex;
}

/* Photo grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 16px;
}

.gallery-item {
    appearance: none;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    border: 1px solid rgba(7,16,31,0.12);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-video-item {
    width: 100%;
    height: 100%;
    min-height: 210px;
    border: 1px solid rgba(7,16,31,0.12);
    border-radius: 8px;
    background: #07101f;
    object-fit: cover;
}

.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.08); }

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) { grid-row: span 2; }

.gallery-item:nth-child(7),
.gallery-item:nth-child(10) { grid-column: span 2; }

.gallery-item:nth-child(8) { grid-row: span 2; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: center;
    padding: 22px;
    background: rgba(7, 16, 31, 0.88);
    backdrop-filter: blur(10px);
}

.lightbox.open { display: grid; }

.lightbox img {
    max-width: min(1100px, 96vw);
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: 0 0 80px rgba(215,179,63,0.18);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    gap: 36px;
    align-items: start;
    margin: 0 clamp(20px, 6vw, 84px) 86px;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: #172239;
    box-shadow: var(--shadow), 0 0 70px rgba(215,179,63,0.08);
}

.contact-section p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

.contact-section:hover {
    border-color: rgba(215,179,63,0.45);
    box-shadow: var(--shadow), 0 0 70px rgba(215,179,63,0.18);
}

.gold-rule {
    width: 78px;
    height: 4px;
    margin: 24px 0 42px;
    border-radius: 99px;
    background: var(--gold);
}

.contact-info h2 { margin-top: 18px; }

.contact-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: center;
    margin: 24px 0;
}

.contact-row > span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(215,179,63,0.32);
    background: rgba(255,255,255,0.055);
    box-shadow: inset 0 0 24px rgba(215,179,63,0.06);
}

.contact-row strong {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-row p {
    margin-top: 6px;
    color: rgba(255,255,255,0.74);
}

.booking-form { display: grid; gap: 14px; }

.booking-form label {
    display: grid;
    gap: 8px;
    color: rgba(255,255,255,0.76);
    font-size: 0.86rem;
    font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: var(--text);
    background: rgba(5,5,16,0.52);
    font: inherit;
}

.booking-form textarea {
    min-height: 130px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 2px solid rgba(215,179,63,0.55);
    outline-offset: 2px;
}

/* â”€â”€â”€ FLOATING WA â”€â”€â”€ */
.floating-whatsapp {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 999px;
    color: #07101f;
    background: linear-gradient(135deg, #b88f20, #f3d874 52%, #fff0ad);
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 0 34px rgba(215,179,63,0.38);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 34px;
    padding: clamp(66px, 8vw, 116px) clamp(20px, 6vw, 84px);
    background: #07101f;
}

.about-copy h2 {
    margin: 18px 0 22px;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.95;
}

.about-copy p:not(.section-kicker) {
    max-width: 760px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}

.about-panel {
    display: grid;
    gap: 16px;
}

.about-panel div {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(215,179,63,0.22);
    background: rgba(255,255,255,0.045);
}

.about-panel span {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.about-panel p {
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* â”€â”€â”€ DISCO + PARTICLES â”€â”€â”€ */
.disco-ball {
    position: fixed;
    top: 72px;
    right: clamp(18px, 6vw, 74px);
    z-index: 18;
    width: 64px; height: 64px;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 48%, rgba(0,0,0,0.24) 50%, transparent 52%),
        linear-gradient(0deg,  transparent 48%, rgba(0,0,0,0.18) 50%, transparent 52%),
        radial-gradient(circle at 30% 28%, #ffffff, #d8fbff 22%, #7f8dff 52%, #ff57dd);
    box-shadow: 0 0 32px rgba(255,255,255,0.42);
    animation: discoSwing 5s ease-in-out infinite;
}

.disco-ball::before {
    content: "";
    position: absolute;
    left: 50%; bottom: 100%;
    width: 1px; height: 80px;
    background: rgba(255,255,255,0.38);
}

.party-lights span {
    position: fixed;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp linear forwards;
}

@keyframes floatUp {
    from { transform: translateY(100vh) scale(0.7); opacity: 0.95; }
    to   { transform: translateY(-12vh) scale(1.35); opacity: 0; }
}

@keyframes discoSwing {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50%       { transform: rotate(7deg) translateY(8px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE DETAIL OVERLAY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.service-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* dim backdrop */
.service-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
}

.service-overlay-inner {
    position: relative;
    z-index: 2;
    width: min(780px, 100%);
    height: 100%;
    background: #0d0d12;
    border-left: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
    transform: translateX(60px);
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
}

.service-overlay.open .service-overlay-inner {
    transform: translateX(0);
}

.overlay-close {
    position: sticky;
    top: 0;
    align-self: flex-end;
    margin: 18px 18px 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
    flex-shrink: 0;
}

.overlay-close:hover { background: rgba(255,255,255,0.16); }

.overlay-content {
    padding: 0 36px 60px;
    flex: 1;
}

/* Overlay hero banner */
.overlay-hero {
    height: 220px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
}

.overlay-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.overlay-hero-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
}

.overlay-title {
    margin: 0 0 6px;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1;
    color: #fff;
}

.overlay-subtitle {
    margin: 0 0 28px;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Overlay photo grid */
.overlay-photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.overlay-photo {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.overlay-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.overlay-photo:hover img { transform: scale(1.07); }

/* placeholder for missing images */
.overlay-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #555;
    font-size: 0.78rem;
    text-align: center;
    padding: 12px;
    background: #141414;
}

.overlay-photo-placeholder .icon { font-size: 1.8rem; }

/* Details list */
.overlay-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.detail-chip {
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

.detail-chip strong { display: block; color: #fff; margin-bottom: 2px; }

/* CTA at bottom of overlay */
.overlay-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    width: min(100%, 460px);
    text-align: center;
    background: linear-gradient(135deg, #b88f20, #f3d874 55%, #fff0ad);
    color: #07101f;
    font-weight: 800;
    font-size: 0.94rem;
    font-family: inherit;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.overlay-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(215,179,63,0.32), 0 0 48px rgba(215,179,63,0.18); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 980px) {
    .site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
    .site-header nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .hero { padding-top: 164px; }
    .section-heading, .contact-section { grid-template-columns: 1fr; }
    .about-section { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .service-card:nth-child(3), .service-card:nth-child(6) { border-right: 0; }
    .service-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
    .service-card:nth-child(even) { border-right: 0; }
    .service-card:nth-child(5), .service-card:nth-child(6) { border-bottom: 0; }
    .service-card:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .experience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .essentials-media { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .gallery-videos { grid-template-columns: 1fr; }
    .overlay-photos { grid-template-columns: repeat(2, 1fr); }
    .overlay-details { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .site-header { position: absolute; }
    .site-header nav {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        gap: 10px 14px;
    }
    .site-header nav a {
        font-size: 0.82rem;
    }
    .hero { min-height: 92vh; padding-top: 130px; }
    .hero h1 { font-size: clamp(2.5rem, 16vw, 4.3rem); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .service-grid, .experience-grid, .gallery { grid-template-columns: 1fr; }
    .service-card { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
    .service-card:last-child { border-bottom: 0 !important; }
    .image-card.large,
    .gallery-item:nth-child(1), .gallery-item:nth-child(4),
    .gallery-item:nth-child(2), .gallery-item:nth-child(5),
    .gallery-item:nth-child(7), .gallery-item:nth-child(8),
    .gallery-item:nth-child(10) { grid-column: auto; grid-row: auto; }
    .gallery { grid-auto-rows: 260px; }
    .contact-section { margin: 0 16px 96px; padding: 24px; }
    .contact-row {
        grid-template-columns: 52px 1fr;
        gap: 14px;
    }
    .contact-row > span {
        width: 48px;
        height: 48px;
    }
    .about-section {
        padding-inline: 20px;
    }
    .logo-tile { width: 190px; height: 74px; padding-inline: 18px; }
    .logo-tile img { max-width: 148px; height: 40px; }
    .service-overlay-inner { width: 100%; }
    .overlay-content { padding: 0 20px 60px; }
    .overlay-photos { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
