:root {
    --black: #0b0b0b;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --mid-grey: #d8d8d8;
    --text-grey: #6c6c6c;
    --accent-gold: #c8a96a;
    --shadow: 0 20px 50px rgba(11, 11, 11, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;

    /* Unified Spacing System */
    --section-space: 90px;
    --inner-space: 28px;
    --small-space: 10px;
    --gap-base: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--black);
    background: var(--white);
    font-family: "Manrope", sans-serif;
}

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

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

button {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.content-section {
    padding: var(--section-space) 0;
}

/* Trust Bar Styling */
.trust-bar {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--black);
    position: sticky;
    top: 100px;
    z-index: 50;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled+main .trust-bar {
    top: 76px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.trust-item span strong {
    font-weight: 700;
}

.trust-stars {
    color: #00b67a;
    display: flex;
    gap: 3px;
    font-size: 0.95rem;
    line-height: 1;
}

.trustpilot-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    color: #1b1b1b;
}

.tp-star {
    color: #00b67a;
    font-size: 1rem;
}




.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(11, 11, 11, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 100px;
    gap: 3rem;
    transition: min-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .navbar {
    min-height: 76px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-width: 0;
    padding-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo img {
    display: block;
    height: 64px;
    /* Preserved original size */
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 11.5px;
    font-weight: 400;
    color: #555;
    letter-spacing: 1px;
    padding-left: 8px;
    white-space: nowrap;
    text-transform: uppercase;

    /* subtle divider */
    border-left: 1px solid rgba(0, 0, 0, 0.15);

    /* smooth transition */
    transition: all 0.3s ease;
}

/* subtle hover */
.nav-logo:hover .logo-text {
    color: #000;
    opacity: 1;
    transform: translateX(2px);
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-left: 0.5rem;
}

.site-nav a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.6;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover,
.site-nav a.is-active {
    opacity: 1;
    color: var(--accent-gold);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    width: 100%;
}

.nav-mobile-cta {
    display: none;
}

.header-cta {
    justify-self: end;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(11, 11, 11, 0.08);
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle span:nth-child(1) {
    top: 18px;
}

.menu-toggle span:nth-child(2) {
    top: 24px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.navbar:has(.site-nav.is-open) .menu-toggle span:nth-child(1) {
    top: 24px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar:has(.site-nav.is-open) .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar:has(.site-nav.is-open) .menu-toggle span:nth-child(3) {
    top: 24px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.button-primary:hover {
    background: #000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(200, 169, 106, 0.25);
}

.section-kicker {
    margin-bottom: var(--small-space);
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--inner-space);
    margin-bottom: calc(var(--inner-space) * 1.5);
}

.section-heading-dark h2,
.section-heading-dark .section-kicker {
    color: var(--white);
}

h1,
h2,
h3 {
    font-family: "League Spartan", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

h3 {
    font-size: clamp(1.2rem, 2.3vw, 1.6rem);
    line-height: 1.1;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: stretch;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    text-align: center;
}

.hero-copy {
    max-width: 840px;
    color: var(--white);
}

.hero-copy .section-kicker {
    color: rgba(200, 169, 106, 0.95);
    animation: hero-fade-up 1s ease forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 1.5rem 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title-top {
    font-family: "League Spartan", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    line-height: 1;
}

.hero-title-bottom {
    font-family: "Playball", cursive;
    color: var(--accent-gold);
    text-transform: none;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 1;
    margin-top: -0.8rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-copy p:not(.section-kicker) {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-copy .button {
    margin-top: 2.5rem;
    animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Cinematic Showcase Section --- */
.media-showcase-section {
    background: var(--light-grey);
    padding-top: 0;
    overflow: hidden;
}

.container-full {
    width: 100%;
}

/* 1. HERO VIDEO */
.cinematic-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: var(--section-space);
}

.video-wrapper {
    position: absolute;
    inset: 0;
}

.cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

/* Sound Toggle Button Styles */
.sound-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.sound-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.sound-toggle-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .sound-toggle-btn {
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.cinematic-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.cinematic-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

/* 2. IMAGE STORY BLOCK */
.image-story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-base);
    margin-bottom: var(--section-space);
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* 3. HIGHLIGHT IMAGE */
.highlight-image-block {
    margin-bottom: var(--section-space);
    text-align: center;
}

.highlight-image {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-image:hover img {
    transform: scale(1.05);
}

.highlight-caption {
    margin-top: 1.5rem;
    font-family: "Playball", cursive;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--accent-gold);
}

/* 4. SECONDARY VIDEO */
.secondary-video-block {
    max-width: 800px;
    margin: 0 auto var(--section-space) auto;
}

.secondary-video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--black);
    cursor: pointer;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.secondary-video-frame:hover {
    transform: scale(1.02);
}

.secondary-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease;
}

.play-button-cinematic {
    width: 90px;
    height: 90px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button-cinematic svg {
    width: 38px;
    height: 38px;
    margin-left: 5px;
}

.secondary-video-frame:hover .play-button-cinematic {
    transform: scale(1.1);
}

/* 5. CTA */
.cinematic-cta {
    text-align: center;
    margin-bottom: var(--section-space);
}

/* Reveal on Scroll Enhancements */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays for Story Block */
.image-story-block .reveal-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cinematic-hero {
        height: 60vh;
    }

    .image-story-block {
        grid-template-columns: 1fr;
    }

    .highlight-caption {
        font-size: 1.8rem;
    }

    .play-button-cinematic {
        width: 70px;
        height: 70px;
    }

    .play-button-cinematic svg {
        width: 28px;
        height: 28px;
    }
}


.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.portfolio-section {
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.filter-chip {
    border: 1px solid rgba(11, 11, 11, 0.1);
    background: var(--white);
    color: var(--text-grey);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--light-grey);
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
}

.image-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out, scale 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .image-slider {
    scale: 1.05;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.portfolio-image,
.portfolio-image img {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.35rem;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    color: var(--white);
    opacity: 1;
    /* Keep visible by default as requested */
    z-index: 5;
    pointer-events: none;
    transition: background 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.portfolio-overlay span {
    color: rgba(200, 169, 106, 0.95);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-overlay strong {
    font-size: 1rem;
    line-height: 1.35;
}

.stats-section {
    background: var(--light-grey);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--inner-space);
}

.stat-card {
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
}

/* Stagger & Refined Reveal */
.stat-card.reveal-on-scroll {
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-card:nth-child(3) {
    transition-delay: 0.2s;
}


.stat-card strong {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-grey);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: start;
    gap: 2rem;
}

.about-media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--light-grey);
    box-shadow: var(--shadow);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effects */
@media (hover: hover) {
    .about-column:hover .about-media img {
        transform: scale(1.03);
    }

    .about-column:hover .about-media {
        box-shadow: 0 20px 40px rgba(11, 11, 11, 0.06), 
                    0 0 20px rgba(200, 169, 106, 0.25);
    }
}

.about-founder-label {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    transition: color 0.3s ease;
}

/* Stagger animations */
.about-section .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-section .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section .stagger-1 {
    transition-delay: 0.1s;
}

.about-section .stagger-2 {
    transition-delay: 0.4s;
}

.about-section .stagger-3 {
    transition-delay: 0.7s;
}

.about-copy {
    max-width: 600px;
}

.about-copy h3 {
    margin-top: 0.75rem;
    color: var(--accent-gold);
}

.about-copy p:not(.section-kicker) {
    color: var(--text-grey);
    line-height: 1.85;
    font-size: 1rem;
}

.about-copy h3+p {
    margin-top: 1.5rem;
}

.about-copy p+p:not(.section-kicker) {
    margin-top: 1.25rem;
}





.google-reviews-section {
    background: #0b0b0b;
    color: var(--white);
    padding: var(--section-space) 0;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gr-summary {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.gr-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.google-g-logo {
    width: 36px;
    height: 36px;
}

.gr-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.gr-rating {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
}

.gr-stars-main {
    color: #fbbc05;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.gr-count {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.gr-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.85rem 1.75rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.gr-view-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.gr-view-btn:hover .btn-icon {
    filter: none;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--inner-space);
}

.google-review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.gr-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.gr-user {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.gr-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.gr-info {
    display: flex;
    flex-direction: column;
}

.gr-info strong {
    font-size: 1.05rem;
}

.gr-time {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
}

.gr-google-icon img {
    width: 20px;
    height: 20px;
}

.gr-card-rating {
    color: #fbbc05;
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}

.gr-review-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}




.pricing-section,
.enquiry-section {
    background: var(--white);
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-toggle {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.35rem;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: 999px;
    background: var(--light-grey);
    box-shadow: var(--shadow);
}

.pricing-toggle-glider {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: calc(50% - 0.35rem);
    height: calc(100% - 0.7rem);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-gold), #dfc48f);
    box-shadow: 0 12px 24px rgba(200, 169, 106, 0.24);
    transition: transform 0.4s ease;
}

.pricing-toggle[data-active="1"] .pricing-toggle-glider {
    transform: translateX(100%);
}

.pricing-toggle-button {
    position: relative;
    z-index: 1;
    min-width: 190px;
    border: 0;
    background: transparent;
    color: var(--text-grey);
    padding: 0.9rem 1.35rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pricing-toggle-button.is-active {
    color: var(--black);
}

.pricing-panels {
    position: relative;
    transition: height 0.45s ease;
}

.pricing-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.pricing-panel.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pricing-group-heading {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-group-heading h3 {
    color: var(--text-grey);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap-base);
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.75rem;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 106, 0.5);
    box-shadow: 0 28px 56px rgba(11, 11, 11, 0.12), 0 0 0 1px rgba(200, 169, 106, 0.18);
}

.pricing-card.is-featured {
    transform: scale(1.02);
    border-color: rgba(200, 169, 106, 0.45);
    box-shadow: 0 24px 54px rgba(11, 11, 11, 0.14), 0 0 0 1px rgba(200, 169, 106, 0.16);
}

.pricing-card.is-featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing-badge {
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(200, 169, 106, 0.14);
    color: #8f6d2f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-tier {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.pricing-tier span {
    display: block;
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-tier strong {
    display: block;
    margin-top: 0.75rem;
    font-family: "League Spartan", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.pricing-features {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--text-grey);
    line-height: 1.75;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
    transform: translateY(-50%);
}

.pricing-reveal {
    opacity: 0;
    transform: translateY(18px);
}

.pricing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.pricing-note {
    margin-top: 2.25rem;
    color: var(--text-grey);
    text-align: center;
    font-size: 0.95rem;
    font-style: italic;
}

.contact-heading {
    margin-bottom: 2.75rem;
}

.enquiry-section .container {
    position: relative;
}

.enquiry-section .container::before {
    content: "";
    position: absolute;
    right: 0;
    top: 1.25rem;
    width: min(42vw, 420px);
    height: 220px;
    background: url("https://res.cloudinary.com/dxmsz4akw/image/upload/q_auto/f_auto/v1776875000/BG_transprentlogo_amd7aw.png") center / contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: start;
    gap: 2.5rem;
    padding-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.details-column {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(11, 11, 11, 0.12);
}

.message-column h3,
.details-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.message-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    margin-top: 0;
}

.line-field {
    display: grid;
    gap: 0.6rem;
    text-align: left;
}

.line-field-full {
    grid-column: 1 / -1;
}

.line-field span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-grey);
}

.line-field input,
.line-field textarea {
    width: 100%;
    padding: 0 0 0.85rem;
    border: 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.18);
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.line-field textarea {
    min-height: 120px;
    resize: vertical;
}

.line-field input::placeholder,
.line-field textarea::placeholder {
    color: #9a9a9a;
}

.line-field input:focus,
.line-field textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: inset 0 -1px 0 var(--accent-gold);
}

.message-form .button {
    margin-top: 1.5rem;
    justify-self: start;
}

.form-status {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 182, 122, 0.08);
    color: #00b67a;
    border: 1px solid rgba(0, 182, 122, 0.2);
}

.form-status.error {
    display: block;
    opacity: 1;
    transform: translateY(0);
    background: rgba(234, 67, 53, 0.08);
    color: #ea4335;
    border: 1px solid rgba(234, 67, 53, 0.2);
}

.details-column {
    display: grid;
    gap: 1.75rem;
}

.details-block {
    display: grid;
    gap: 0.25rem;
}

.details-block a,
.details-block p,
.contact-address p {
    color: var(--text-grey);
    line-height: 1.5;
}

.contact-address {
    display: grid;
    gap: 0.15rem;
    margin-top: 0.15rem;
}

.contact-address strong {
    color: var(--black);
    font-size: 0.95rem;
}

.map-section {
    padding: var(--section-space) 0;
    background: var(--white);
}

.map-location-tabs {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.map-tab-btn {
    background: #f8f8f8;
    border: 1px solid rgba(11, 11, 11, 0.08);
    padding: 0.6rem 1.75rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-grey);
}

.map-tab-btn:hover {
    border-color: var(--mid-grey);
    color: var(--black);
}

.map-tab-btn.is-active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-display-area {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--light-grey);
    height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin: 3rem auto 0;
    max-width: 1000px;
}

.map-container {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.map-container.is-visible {
    opacity: 1;
    visibility: visible;
}

.map-frame {
    width: 100%;
    height: 100%;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-action {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: auto;
}

.map-link-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    border-radius: 100px;
    white-space: nowrap;
}

.map-link-btn svg {
    width: 18px;
    height: 18px;
    color: #EA4335;
}

.map-link-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translate(-50%, -2px);
}




.site-footer {
    padding: 0;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.2fr 0.8fr;
    gap: var(--gap-base);
    padding: var(--inner-space) 0;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Container alignment */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

/* Remove box */
.footer-logo {
    background: none;
    padding: 0;
}

/* Logo */
.footer-logo img {
    height: 100px;
    margin-bottom: 10px;
    max-width: 300px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

/* Title */
.footer-left h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "League Spartan", sans-serif;
    text-transform: uppercase;
    color: var(--white);
}

/* Tagline */
.footer-left p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* Year */
.footer-left span {
    font-size: 12px;
    opacity: 0.6;
    color: var(--white);
}

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

.footer-address {
    display: grid;
    gap: 0.2rem;
}

.footer-address strong {
    color: var(--white);
    font-size: 0.98rem;
}

/* Headings */
.footer h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #d4af37;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Social Section */
.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
}

.footer-social a:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    color: #d4af37;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

/* Bottom Section */
.footer-bottom {
    font-size: 12px;
    opacity: 0.6;
    text-align: center;
    padding-bottom: 20px;
}

/* Optional Link Hover */
.footer a:hover {
    color: #d4af37;
}

@keyframes showcase-scroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* ==========================================================================
   Responsiveness Pass (Breakpoints: 480px, 768px, 1024px)
   ========================================================================== */

/* --- Small Laptops (769px - 1024px) --- */
@media (max-width: 1024px) {
    :root {
        --section-space: 70px;
    }

    .container {
        width: calc(100% - 3rem);
    }

    .trust-bar {
        font-size: 0.76rem;
        top: 84px;
        padding: 0.4rem 0;
    }

    .site-header.is-scrolled+main .trust-bar {
        top: 76px;
    }

    .trust-content {
        gap: 0.5rem 1rem;
        padding: 0.1rem 0;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        min-height: 84px;
        gap: 1.5rem;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2.5rem;
        z-index: 100;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.08);
        display: flex;
        margin: 0;
    }

    .site-nav.is-open {
        right: 0;
    }

    .site-nav a {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        color: var(--black);
        position: relative;
    }

    .site-nav a.is-active::after {
        content: '';
        position: absolute;
        bottom: 0.6rem;
        left: 0;
        width: 25px;
        height: 1.5px;
        background: var(--accent-gold);
    }

    .nav-mobile-cta {
        margin-top: 2rem;
        display: block !important;
        background: var(--black);
        color: var(--white) !important;
        text-align: center;
        padding: 0.9rem 1.5rem !important;
        border-radius: 4px;
        font-size: 0.8rem !important;
        letter-spacing: 0.15em;
        border: none !important;
    }

    .nav-mobile-cta::after {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex;
        cursor: pointer;
        z-index: 110;
        position: relative;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(1px);
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .header-cta {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .media-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-gallery {
        height: 600px;
    }

    .showcase-video-panel {
        order: -1;
    }

    .gr-summary {
        gap: 1.5rem;
    }

    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr 1.3fr 1fr;
    }
}

/* --- Tablets (481px - 768px) --- */
@media (max-width: 768px) {
    :root {
        --section-space: 50px;
        --inner-space: 18px;
        --radius-lg: 16px;
    }

    .section-heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .portfolio-filters {
        justify-content: center;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .about-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .about-media {
        width: 100%;
    }

    .about-copy {
        max-width: 100%;
    }

    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: var(--gap-base);
    }

    .details-column {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 3rem;
    }

    .message-form {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 6rem 0;
    }

    .hero-title-top {
        letter-spacing: 0.15em;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-reviews-header {
        align-items: center;
        text-align: center;
    }

    .gr-summary {
        flex-direction: column;
        align-items: center;
        gap: var(--inner-space);
    }

    .map-display-area {
        height: 300px;
    }

    .map-action {
        bottom: 1.5rem;
    }


}

/* --- Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    :root {
        --section-space: 40px;
        --inner-space: 14px;
    }

    .container {
        width: calc(100% - 2rem);
    }

    .trust-content {
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        align-items: center;
    }

    .hero-title-top {
        font-size: 1.6rem;
    }

    .hero-title-bottom {
        font-size: 3rem;
    }

    .portfolio-grid,
    .stats-grid,
    .pricing-grid,
    .google-reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo img {
        height: 48px;
    }

    .navbar {
        min-height: 72px;
    }

    .stat-card {
        padding: var(--inner-space);
    }

    .pricing-card {
        padding: var(--inner-space);
    }

    .gr-view-btn {
        width: 100%;
    }

    .trust-bar {
        display: none;
    }

    .site-footer {
        padding: 30px 16px !important;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px !important;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1rem !important;
        margin-top: 2rem !important;
    }

    .social-links {
        justify-content: center;
        margin-top: 10px !important;
    }

    .footer-column {
        align-items: center;
        text-align: center;
        gap: 8px !important;
    }

    .footer-column h4 {
        margin-top: 16px !important;
        margin-bottom: 6px !important;
        font-size: 0.9rem !important;
    }

    .footer-brand {
        margin-bottom: 12px !important;
    }

    .footer-brand-name {
        font-size: 1.1rem !important;
        margin-bottom: 4px !important;
    }

    .footer-tagline {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .footer-contact-link,
    .footer-address p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .footer-address {
        justify-items: center;
        gap: 4px !important;
    }

    .footer-logo-badge img {
        height: 30px !important;
        width: auto !important;
    }
}

.showcase-gallery {
    height: 400px;
}

.play-button {
    width: 64px;
    height: 64px;
}

.play-button svg {
    width: 24px;
    height: 24px;
}

.pricing-toggle-button {
    min-width: 140px;
    font-size: 0.75rem;
}

.map-display-area {
    height: 250px;
}

.map-tab-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Removed incorrect global overrides */

/* --- Scroll to Top --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

.scroll-top-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.3);
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}