/* ============================================
   SCL Interiors — Telha Clarke Inspired
   Minimalist Architectural Elegance (Quiet Luxury)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --bg-base: #f7f7f7;
    --accent: #1a1a1a;
    --text-main: #1a1a1a;
    --text-muted: rgba(26, 26, 26, 0.4);
    --border: rgba(26, 26, 26, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

.container-full {
    width: 100%;
    padding: 0 40px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

/* ---------- NAV BAR (ORGANIC SPREAD) ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    z-index: 1000;
    transition: var(--transition);
}

.header-left,
.header-right {
    display: flex;
    align-items: baseline;
    gap: 40px;
}

.header-right {
    text-align: right;
}

.logo {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
    margin-right: 20px;
}

.nav-group {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-group a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    opacity: 0.5;
}

.nav-group a:hover {
    opacity: 1;
    color: var(--text-main);
}

.header-meta {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.3;
    letter-spacing: 1px;
}

.staff-login-nav {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.65rem;
    margin-left: 10px;
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    padding-top: 100px;
}

.hero-img-box {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-block {
    position: absolute;
    top: 150px;
    /* High placement in the upper left */
    left: 40px;
    width: 380px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.hero-titles-footer {
    padding: 60px 40px 100px 40px;
    background: var(--bg-base);
}

.hero-titles-footer h1 {
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-titles-footer h1 span.muted {
    opacity: 0.15;
}

.hero-titles-footer h1 .sup {
    font-size: 0.2em;
    vertical-align: super;
    font-weight: 800;
    margin-left: 10px;
    opacity: 0.4;
}

.btn-minimal {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    transition: var(--transition);
}

.btn-minimal:hover {
    opacity: 0.5;
    padding-right: 15px;
}

/* ---------- IMAGES (TELHA STYLE) ---------- */
.floating-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e5e5e5;
    overflow: hidden;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.floating-img:hover img {
    transform: scale(1.05);
}

/* ---------- SERVICES ---------- */
.service-item {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    align-items: center;
    transition: var(--transition);
}

.service-item:hover {
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.02);
}

.service-item .num {
    font-size: 1rem;
    font-weight: 900;
    opacity: 0.2;
}

.service-item h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.service-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* ---------- PARTNERS (BOARD STYLE) ---------- */
.partners-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#previews-slide {
    background-color: var(--bg-base);
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
    /* Adds a nice shadow as it slides over */
}

.partners-section .meta {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.4;
    margin-bottom: 50px;
}

.marquee {
    display: flex;
    width: 200%;
    animation: marquee 45s linear infinite;
    padding: 20px 0;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.partner-logo {
    height: 120px;
    max-width: 400px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.95;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    padding: 35px 70px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.05);
    margin: 0 40px;
}

.partner-logo:hover {
    filter: grayscale(0) contrast(1);
    opacity: 1;
    transform: translateY(-12px) scale(1.08);
    border-color: var(--text-main);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    background: #000;
    color: #fff;
    padding: 15vh 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 120px;
    margin-top: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    transition: 0.3s;
}

.form-group:focus-within {
    border-color: #fff;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.4;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.2rem;
    padding: 5px 0;
    outline: none;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.btn-submit {
    align-self: flex-start;
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e5e5e5;
    padding-right: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-item h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.4;
    margin-bottom: 15px;
}

.info-item p,
.info-item a {
    font-size: 1.3rem;
    /* Larger font for info */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: 0.3s;
}

.social-links {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px) !important;
}

/* ---------- STUDIO & OPS ---------- */
.studio-section,
.ops-section {
    padding: 15vh 0;
    border-top: 1px solid var(--border);
}

.studio-grid,
.ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.studio-grid .large-p {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
}

.studio-grid .small-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.news-section {
    padding: 15vh 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.news-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.news-item .date {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.3;
    margin-bottom: 15px;
}

.news-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.policy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.policy-link {
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.policy-link:hover {
    color: var(--text-main);
}

.policy-link::before {
    content: '↓';
    margin-right: 10px;
    opacity: 0.3;
}

/* ---------- PROJECTS GRID ---------- */
.project-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.archive-item {
    text-decoration: none;
    color: var(--text-main);
    display: block;
}

.archive-item .img-box {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #e5e5e5;
    margin-bottom: 30px;
}

.archive-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.archive-item:hover img {
    transform: scale(1.08);
}

.archive-item h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

.archive-item .meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.4;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ---------- FOOTER ---------- */
.footer-bottom {
    padding: 40px 40px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.3;
}

@media (max-width: 1024px) {

    .studio-grid,
    .ops-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .news-grid,
    .project-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .news-grid,
    .project-archive-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        height: 45px;
        margin: 0 10px;
        padding: 15px 25px;
    }
}