:root {
    --wine: #641f32;
    --wine-dark: #3a101d;
    --wine-soft: #8a3a4d;
    --gold: #d4af37;
    --gold-light: #f1d77b;
    --cream: #f8f3e8;
    --ink: #191416;
    --muted: #756c6d;
    --white: #fffdf8;
    --line: rgba(100, 31, 50, .14);
    --shadow: 0 22px 60px rgba(58, 16, 29, .14);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

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

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


.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: .3s ease;
}

.navbar.scrolled {
    background: rgba(58, 16, 29, .96);
    box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 600;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta, .gold-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background: var(--gold);
    color: var(--wine-dark);
    padding: 12px 21px;
    border-radius: 999px;
    font-weight: 800;
    transition: .25s ease;
}

.nav-cta:hover, .gold-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
    box-shadow: 0 10px 25px rgba(212,175,55,.22);
}

.menu-btn {
    display: none;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 8px;
    padding: 7px 11px;
}

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(37,8,17,.94), rgba(100,31,50,.74)),
        radial-gradient(circle at 70% 20%, rgba(212,175,55,.28), transparent 30%),
        linear-gradient(135deg, #241018, #641f32 50%, #29111b);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(transparent, var(--cream));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    color: white;
    padding: 130px 0 100px;
}

.kicker {
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 9vw, 104px);
    line-height: .95;
    margin-bottom: 25px;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    max-width: 650px;
    margin: auto;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

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

.outline-btn {
    border: 1px solid rgba(255,255,255,.45);
    color: white;
    padding: 12px 21px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    font-weight: 700;
}

.outline-btn:hover { border-color: var(--gold); color: var(--gold-light); }

.section {
    padding: 105px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-head .kicker { color: var(--wine); }

.section-head h2 {
    font-family: "Playfair Display", serif;
    color: var(--wine-dark);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.section-head p { color: var(--muted); }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.about-copy h3 {
    font-family: "Playfair Display", serif;
    font-size: 37px;
    color: var(--wine-dark);
    margin-bottom: 17px;
}

.about-copy p { color: var(--muted); margin-bottom: 16px; }

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 30px;
}

.stat {
    border-top: 2px solid var(--gold);
    padding-top: 13px;
}

.stat strong {
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--wine);
    font-size: 30px;
}

.stat span { color: var(--muted); font-size: 13px; }

.about-card {
    min-height: 390px;
    border-radius: 28px;
    padding: 38px;
    color: white;
    background: linear-gradient(145deg, var(--wine), var(--wine-dark));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "CS";
    position: absolute;
    right: -20px;
    bottom: -65px;
    font-family: "Playfair Display", serif;
    font-size: 190px;
    color: rgba(212,175,55,.13);
}

.about-card h4 {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.about-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin: 22px 0 15px;
}

.services {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.service {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    transition: .25s ease;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212,175,55,.55);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,.16);
    color: var(--wine);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 23px;
}

.service h3 {
    color: var(--wine-dark);
    font-family: "Playfair Display", serif;
    margin-bottom: 8px;
}

.service p { color: var(--muted); font-size: 14px; }

.portfolio-wrap {
    background: var(--wine-dark);
    color: white;
}

.portfolio-wrap .section-head h2 { color: white; }
.portfolio-wrap .section-head p { color: rgba(255,255,255,.68); }
.portfolio-wrap .section-head .kicker { color: var(--gold-light); }

.filters {
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.filter-btn {
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.75);
    border-radius: 999px;
    padding: 9px 17px;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--wine-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 18px;
    background: #4a1a29;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 22px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
}

.gallery-overlay small { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; }
.gallery-overlay h3 { font-family: "Playfair Display", serif; font-size: 23px; }

.placeholder {
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(212,175,55,.3), transparent 20%),
        linear-gradient(135deg, #7e3147, #2d0c17);
    color: white;
}

.placeholder strong {
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.booking {
    background: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 65px;
    align-items: start;
}

.contact-copy h3 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    color: var(--wine-dark);
    line-height: 1.1;
    margin-bottom: 15px;
}

.contact-copy p { color: var(--muted); margin-bottom: 25px; }

.contact-detail {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail span {
    display: block;
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-form {
    padding: 35px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field { margin-bottom: 16px; }
.field.full { grid-column: 1/-1; }

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--wine-dark);
    font-size: 13px;
    font-weight: 800;
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #ddd2d0;
    background: #fffdfa;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

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

.submit-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.form-message { font-size: 14px; color: var(--wine); }

.footer {
    padding: 35px 0;
    color: rgba(255,255,255,.68);
    background: #240b13;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    width: 200px;
    height: auto;
    display: block;
}

.footer p { font-size: 13px; }

@media (max-width: 900px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .about-grid, .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 75px 0; }

    .menu-btn { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        padding: 20px;
        border-radius: 18px;
        background: var(--wine-dark);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .nav-links.open { display: flex; }

    .nav-cta { display: none; }

    .hero h1 { font-size: 57px; }

    .service-grid, .gallery, .form-grid { grid-template-columns: 1fr; }

    .gallery-item, .gallery-item img, .placeholder { min-height: 300px; }

    .stats { grid-template-columns: 1fr; }

    .booking-form { padding: 22px; }

    .footer-inner { flex-direction: column; text-align: center; }
}

/* =========================================
   CODESHOOTS INTRO VIDEO
========================================= */

#intro-loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: #0b0b0b;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* Small centered video */

#intro-loader video {
    width: min(70vw, 900px);
    height: auto;

    max-height: 70vh;

    object-fit: contain;

    display: block;

    border-radius: 8px;
}


/* When video finishes */

#intro-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Remove loader completely */

#intro-loader.remove {
    display: none;
}


/* Mobile */

@media (max-width: 768px) {

    #intro-loader video {
        width: 90vw;
        max-height: 60vh;
    }

}
