h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilda Display', Georgia, "Times New Roman", serif;
    line-height: 1.4;
  	font-weight: 400;
  	padding: 0;
}

p, span {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    color: #2C2C2C;
    line-height: 1.7;
  	font-weight: 400;
}

.heading h2,
.heading h2 span {
    font-family: 'Gilda Display', Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
    font-weight: 400;
}

.heading span {
    font-size: 12px;
    color: #1C1A1A;
}

body, .main-wrapper {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  background: #FAF9F6;
  background-color: #FAF9F6;
  /* will-change: transform; */
}

/* =========================
   Layout Utilities
   ========================= */
.mask {
    width: 100%;
    height: 115%;
    position: absolute;
    background: #FAF9F6;
    left: 0;
    top: 0;
    opacity: 0.8;
}

.mask-pink {
    width: 100%;
    height: 115%;
    position: absolute;
    background: #EBD9D2;
    left: 0;
    top: 0;
    opacity: 0.8;
}

.split-parent { overflow: hidden; }
.split-child { display: inline-block; }

.horizontal-scroll,
.bottom-horizontal-scroll {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.vertical-section {
  background-color: #FAF9F6;
}

.scroll-wrapper,
.bottom-scroll-wrapper {
    height: 100%;
    display: flex;
    width: max-content;
    will-change: transform;
}

.gold-text { color: #BFA375 !important; }

/* =========================
   Panels & Sections
   ========================= */
.panel {
    position: relative;
    height: 100vh;
    background: #FAF9F6;
    border: 0;
    flex-shrink: 0;
    overflow: hidden;
}

/* =========================
   Hero Banner
   ========================= */
.hero-section {
    width: 100vw;
    flex-shrink: 0;
    position: relative;
    background: #BFA375;
    box-sizing: border-box;
}

.hero-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    max-width: 94.5vw;
    padding-bottom: 4vh;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-header {
    width: 100%;
    max-width: 35rem;
    grid-column: 1 / span 6;
    margin-top: 130px;
}

.hero-header h1 {
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    font-weight: 400;
    color: #2C2C2C;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-lower-section {
    grid-column: 1 / span 7;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    align-self: flex-end;
}

.hero-bottom-image {
    grid-column: 1 / span 3;
    height: 32vh;
}

.hero-bottom-image img { border-radius: 15px; }

.hero-bottom-image img,
.hero-image img,
.wwa-image-container img,
.bwc-img-container img,
.section2-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-description {
    grid-column: 5 / span 3;
    max-width: 32rem;
    grid-row: 1;
}

.hero-description p {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 39.68vw;
    overflow: hidden;
    transition: right 1.2s ease-in-out;
}

.image-container,
.wwa-image-container {
    position: relative;
    margin-left: -10%;
    width: 120%;
    height: 100%;
}


/* =========================
   Responsive Styles
   ========================= */

/* Large desktops (max-width: 1600px) */
@media (min-width: 1600px) {
    .hero-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1600px) {
    .hero-header h1 {
        font-size: 54px;
    }

    .hero-description p {
        font-size: 20px;
    }
}

/* Notebooks, Small desktops and Big tablets (max-width: 1200px) */
@media (max-width: 1279px) {
    .horizontal-scroll { 
        height: auto; 
    }

    .scroll-wrapper { 
        display: block;
        height: auto;  
    }

    .panel { height: auto; }

    .hero-grid {
        grid-template-columns: repeat(8, 1fr);
        padding-bottom: 0;
    }

    .hero-header {
        grid-column: 1 / span 6;
        margin-top: 8rem;
        margin-bottom: 2rem;
    }

    .hero-header h1 {
        font-size: 4rem;
    }

    .hero-lower-section {
        grid-column: 1 / span 7;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 16px;
        align-self: flex-end;
        padding-bottom: 5rem;
    }

    .hero-bottom-image {
        grid-column: 1 / span 3;
        height: 20vh;
    }

    .hero-description {
        grid-column: 5 / span 3;
        max-width: 100%;
        grid-row: 1;
    }

    .hero-description p { font-size: 18px; }

    .hero-image {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        grid-column: 1 / -1;
        height: 60vh;
    }
}

@media (max-width: 1024px) {
    
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
    .image-container {
        margin-left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 0;
        gap: 16px;
        max-width: 90vw;
    }

    .hero-header {
        grid-column:  1 / -1;
        margin-top: 80px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .hero-header h1 {
        font-size: 54px;
    }

    .hero-lower-section {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 0;
    }

    .hero-bottom-image {
        display: none;
    }

    .hero-image {
        width: 100vw;
        height: 60vh;
        margin-top: 1rem;
    }
}