:root {
    --primary-red: #D31326;
    --text-dark: #111111;
    --text-muted: #6A6D73;
    --bg-white: #FFFFFF;
    --bg-black: #050505;
    
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.text-red { color: var(--primary-red); }
.text-serif { font-family: var(--font-serif); }

.overline {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #FFF;
    border: none;
}
.btn-primary:hover {
    background-color: #B50D1E;
}


/* DARK HERO SECTION */
.dark-header {
    background-color: var(--bg-black);
    color: #FFF;
    position: relative;
    padding-bottom: 6rem;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,1) 0%, rgba(5,5,5,1) 25%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0) 100%);
}

.navbar {
    position: relative;
    z-index: 100;
    padding-top: 1rem;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

.logo-sub {
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 3rem;
    height: 100%;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 800;
    color: #CCC;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    border-top: 2px solid transparent; /* The mock shows underline on exactly active */
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #FFF;
}

.nav-links a.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero-content {
    max-width: 480px;
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 0.95rem;
    color: #CCC;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}


/* STATS ROW */
.stats-row {
    background-color: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid #EAEAEA;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    position: relative;
}

.stats-grid::before {
    content: ''; position: absolute; top: 15%; bottom: 15%; left: 33.333%; width: 1px; background: rgba(0,0,0,0.1);
}
.stats-grid::after {
    content: ''; position: absolute; top: 15%; bottom: 15%; left: 66.666%; width: 1px; background: rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}


/* MISSION SECTION */
.mission-section {
    padding: 6rem 0;
    background-color: #FAFAFA;
}

.mission-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mission-left {
    flex: 1;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mf-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mf-text h4 {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.mf-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mission-right {
    flex: 1.2;
}

.history-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: #FFF;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.history-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.history-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.history-content {
    position: relative;
    z-index: 10;
    max-width: 400px;
}

.script-text {
    font-family: var(--font-script);
    color: var(--primary-red);
    font-size: 2.5rem;
    display: block;
    margin-bottom: -0.5rem;
}

.history-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.history-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #E2E2E2;
}


/* MEET THE TEAM */
.team-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.th-left {
    flex: 1;
}

.th-right {
    flex: 0.8;
    padding-bottom: 0.5rem;
}

.th-right p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background-color: #0A0A0A;
    border-radius: 12px;
    overflow: hidden;
    color: #FFF;
    display: flex;
    flex-direction: column;
}

.tc-image-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: #EFEFEF; /* Matches typical studio backdrop softly */
}

.tc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Since we use one image with all 3 people side-by-side, we zoom to each person */
    transform: scale(3);
    pointer-events: none;
}

/* Precise slicing for the 3 individual cards from the exact single 'team_three' image provided */
.img-left {
    object-position: -2% 10%;
}
.img-center {
    object-position: 50% 10%;
}
.img-right {
    object-position: 102% 10%;
}


.tc-content {
    padding: 2rem 1.5rem;
    background-color: #0F0F0F;
    border-top: 1px solid #1A1A1A;
    flex-grow: 1;
}

.tc-role {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tc-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.tc-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}


/* SERVICE AREA / FOOTER */
.service-area {
    background-color: #080808;
    color: #FFF;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.sa-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.sa-left {
    flex: 1;
    max-width: 450px;
}

.sa-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.sa-desc {
    font-size: 0.9rem;
    color: #AAA;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.sa-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #222;
    padding-bottom: 2.5rem;
}

.sa-stat h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.sa-stat p {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #888;
}

.sa-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #BBB;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red-dot { background-color: var(--primary-red); }
.grey-dot { background-color: #333; }

.sa-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #666;
}

.sa-right {
    flex: 1.2;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sa-map-img {
    width: 120%;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: -10%;
}

.drag-explore {
    position: absolute;
    bottom: -10%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #111;
    border: 1px solid #333;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    z-index: 20;
}

.plus-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-red);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.drag-text strong {
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.drag-text span {
    font-size: 0.7rem;
    color: #888;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    
    .hero-bg-wrapper { width: 100%; opacity: 0.3; }
    .hero-gradient { background: #000; opacity: 0.8;}
    
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid::before, .stats-grid::after { display: none; }
    
    .mission-container { flex-direction: column; }
    .mission-grid { grid-template-columns: 1fr; }
    
    .team-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    
    .sa-container { flex-direction: column; }
    .sa-right { width: 100%; height: 350px;}
    .sa-map-img { width: 100%; right: 0; }
}
