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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
}

/* Moving Banner */
.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 40px;
    background: white;
    z-index: 999;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.banner-content span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(29, 29, 29, 0.799);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: top 0.3s ease;
}

.header.scrolled {
    top: 0;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(58, 58, 58, 0.921));
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
}

.hero-left,
.hero-right {
    width: 50vw;
    height: 100vh;
    overflow: hidden;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.245);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
    z-index: 10;
}

.hero-overlay-text {
    font-family: 'Inter', sans-serif;
    font-size: 130px;
    font-weight: 400;
    color: white;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.5rem;
    max-width: 98%;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    margin-left: -2.0rem;
    animation: blink 0.8s step-end infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Email Section */
.email-section {
    width: 100vw;
    min-height: 70vh;
    background: #fefcfa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 50px;
}

.email-box {
    background: #c5beb6ba;
    border-radius: 60px;
    padding: 100px 90px;
    max-width: 1400px;
    width: 100%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.095);
}

.email-content {
    width: 100%;
}

.email-title {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: white;
    margin-bottom: 90px;
    padding: 15px;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.08em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.311);
    overflow: hidden;
    position: relative;
}

.email-title-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-title.reveal .email-title-inner {
    transform: translateY(0);
}

.email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.email-description {
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    font-weight: 400;
    margin-top: 0;
    color: white;
    max-width: 400px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    flex-shrink: 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.355);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.email-description.reveal {
    opacity: 1;
    transform: translateY(0);
}

.email-input-wrapper {
    width: 480px;
    flex-shrink: 0;
}

.email-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    color: white;
    padding: 12px 0;
    outline: none;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.216);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.828);
    font-family: 'Instrument Serif', serif;
}

.email-input:focus {
    border-bottom-color: white;
}

.email-submit {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: white;
    margin-top: 15px;
    display: flex;
    align-items: center;
    letter-spacing: -0.03rem;
    gap: 10px;
    cursor: pointer;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.351);
    transition: gap 0.3s ease;
}

.email-submit:hover {
    gap: 15px;
}

.email-submit .arrow {
    font-size: 24px;
}

/* Grid Section */
.grid-section {
    width: 100vw;
    height: 100vh;
    background: #FFFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    gap: 0;
}

.grid-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video & Text Section */
.video-text-section {
    width: 100vw;
    height: 70vh;
    display: flex;
    background: #FFFCF8;
}

.video-column {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top center;
}

.text-column {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 120px;
    background: #FFFCF8;
}

.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #382f29c9;
    line-height: 1.6;
    letter-spacing: -0.04rem;
}

/* Text & Image Section */
.text-image-section {
    width: 100vw;
    height: 70vh;
    display: flex;
    background: #FFFCF8;
}

.text-column-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 120px;
    background: #FFFCF8;
}

.image-column {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Final Email Section */
.final-email-section {
    width: 100vw;
    min-height: 70vh;
    background: #FFFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 80px;
}

.final-email-content {
    max-width: 1400px;
    width: 100%;
}

.final-title {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 500;
    width: 70%;
    color: #928680;
    margin-bottom: 80px;
    line-height: 1.0;
    letter-spacing: -0.4rem;
    text-shadow: 0 2px 18px rgba(63, 55, 48, 0.28);
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.final-title-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.final-title.reveal .final-title-inner {
    transform: translateY(0);
}

.final-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.final-description {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #9B9490;
    max-width: 400px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(63, 55, 48, 0.4);
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.final-description.reveal {
    opacity: 1;
    transform: translateY(0);
}

.final-input-wrapper {
    width: 480px;
    flex-shrink: 0;
}

.final-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #9B9490;
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    color: #9B9490;
    padding: 12px 0;
    outline: none;
}

.final-input::placeholder {
    color: rgba(155, 148, 144, 0.6);
    font-family: 'Instrument Serif', serif;
}

.final-input:focus {
    border-bottom-color: #9B9490;
}

.final-submit {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #9B9490;
    margin-top: 20px;
    cursor: pointer;
}

/* Footer */
.footer {
    width: 100vw;
    background: #0b0b0b;
    color: white;
    padding: 50px 20px 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: left;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-column {
    flex: 0.85;
}

.footer-newsletter {
    flex: 1.3;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.02rem;
    color: white;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 3px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-input-wrapper {
    position: relative;
    max-width: 570px;
}

.footer-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.849);
    font-family: 'Instrument Serif', serif;
    font-size: 25px;
    color: white;
    padding: 12px 40px 12px 0;
    outline: none;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Instrument Serif', serif;
}

.footer-input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer-ok {
    position: absolute;
    right: 0;
    bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.footer-confirmation {
    display: none;
    margin-top: 20px;
}

.footer-confirmation-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-terms {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-terms:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Region Selection */
.region-selection {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.region-boxes {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.region-box {
    background: #D3CCC4;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    width: 500px;
    height: 433px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.region-box:hover {
    background: #e1dbd3b5;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.region-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.region-im-in {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.region-text {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: white;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.final-region-selection {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 20px 0;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
    min-height: 433px;
}

.confirmation-text {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #9B9490;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 35px rgba(63, 55, 48, 0.4);
    max-width: 800px;
}

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Large Tablets and Small Desktops (1024px - 1280px) */
@media (max-width: 1280px) {
    .hero-overlay-text {
        font-size: 100px;
        letter-spacing: -0.3rem;
        width: 99%;
    }
    .email-section {
        padding: 55px 40px;
    }
    .email-box {
        padding: 85px 70px;
    }
     .email-title {
        font-size: 73px;
        margin-bottom: 70px;
    }
      .email-description {
        font-size: 25px;
        max-width: 350px;
    }
    .email-input {
        font-size: 28px;
        padding: 10px 0;
    }
    .email-submit {
    margin-top: 7px;
    font-size: 18px;}

    .final-email-section {
    width: 100vw;
    min-height: 70vh;
    background: #FFFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 55px;
}
    .final-email-content {
        max-width: 1500px;
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .hero-overlay-text {
        font-size: 90px;
        letter-spacing: -0.3rem;
        width: 99%;
    }
    
    .email-section {
        padding: 45px 30px;
        min-height: 60vh;
    }
    
    .email-box {
        padding: 75px 60px;
    }
    
    .email-title {
        font-size: 65px;
        margin-bottom: 60px;
    }
    
    .email-description {
        font-size: 23px;
        max-width: 350px;
    }
    
    .email-input-wrapper {
        width: 400px;
    }
    
    .email-input {
        font-size: 26px;
        padding: 8px 0;
    }
     .email-submit {
    margin-top: 4px;
    font-size: 17px;
}
    
    .final-title {
        font-size: 70px;
        letter-spacing: -0.3rem;
        width: 80%;
    }
    
    .final-input-wrapper {
        width: 400px;
    }
    
    .text-column,
    .text-column-left {
        padding: 60px 60px;
    }
    
    .story-text {
        font-size: 19px;
    }
    .final-email-section {
    width: 100vw;
    min-height: 60vh;
    background: #FFFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 55px;
}
    .final-email-content {
        max-width: 1500px;
        width: 100%;
        
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .banner {
        height: 35px;
    }
    .banner-content {
    gap: 50px;
    }
    .banner-content span {
        font-size: 12px;
    }
    
    .header {
        top: 35px;
        height: 60px;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero-overlay-text {
        font-size: 80px;
        letter-spacing: -0.3rem;
        padding-bottom: 0px;
    }
    
    .email-section {
        height: auto;
        min-height: 60vh;
        padding: 50px 30px;
    }
    
    .email-box {
        padding: 60px 50px;
        border-radius: 40px;
    }
    
    .email-title {
        font-size: 50px;
        margin-bottom: 40px;
    }
    
    .email-row {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .email-description {
        font-size: 25px;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .email-input-wrapper {
        width: 100%;
    }
    
    .email-input {
        margin-top: 0;
        font-size: 24px;
    }
    
    .region-boxes {
        flex-direction: column;
        gap: 30px;
    }
    
    .region-box {
        width: 400px;
        height: 350px;
        flex-shrink: 0;
    }
    
    .region-im-in {
        font-size: 36px;
    }
    
    .region-text {
        font-size: 60px;
    }
    
    .grid-section {
        height: auto;
        min-height: 80vh;
    }
    
    
    .video-text-section {
        flex-direction: column-reverse;
        height: auto;
    }
    
    .video-column,
    .text-column {
        width: 100%;
        height: 50vh;
    }
    
    .text-column {
        padding: 50px 60px;
    }
    
    .story-text {
        font-size: 19px;
    }
    
    .text-image-section {
        flex-direction: column;
        height: auto;
    }
    
    .text-column-left,
    .image-column {
        width: 100%;
        height: 50vh;
    }
    
    .text-column-left {
        padding: 50px 60px;
    }
    
    .final-email-section {
        padding: 70px 40px;
        min-height: 50vh;
    }
    
    .final-title {
        font-size: 66px;
        letter-spacing: -0.25rem;
        width: 85%;
        margin-bottom: 50px;
    }
    
    .final-row {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .final-description {
        font-size: 22px;
        max-width: 100%;
    }
    
    .final-input-wrapper {
        width: 100%;
    }
    
    .final-input {
        font-size: 28px;
    }
    
    .footer {
        padding: 40px 30px 20px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        justify-items: start;
    }
    
    .footer-column {
        flex: initial;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        flex: initial;
        width: 100%;
        max-width: 600px;
        justify-self: start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 850px) {
.hero-overlay-text {
        font-size: 70px;
        letter-spacing: -0.2rem;
    }
     .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
     .grid-item:nth-child(7),
    .grid-item:nth-child(8) {
        display: none;
    }
      .final-title {
        font-size: 57px;
        letter-spacing: -0.25rem;
        width: 85%;
        margin-bottom: 50px;
    }
}

/* Mobile Landscape & Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .banner {
        height: 30px;
    }
    .banner-content {
    gap: 40px;
    }
    
    .banner-content span {
        font-size: 11px;
        gap: 40px;
    }
    
    .header {
        top: 30px;
        height: 50px;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-left,
    .hero-right {
        width: 100vw;
        height: 50vh;
    }
    
    .hero-image {
        object-position: 50% 40%;
    }
    
    .hero-overlay {
        padding-bottom: 20px;
    }
    
    .hero-overlay-text {
        font-size: 55px;
        letter-spacing: -0.2rem;
        padding-bottom: 30px;
    }
    
    .email-section {
        padding: 40px 20px;
        min-height: 52vh;
    }
    
    .email-box {
        padding: 50px 30px;
        border-radius: 30px;
    }
    
    .email-title {
        font-size: 40px;
        margin-bottom: 30px;
        letter-spacing: -0.06em;
    }
    
    .email-description {
        font-size: 18px;
    }
    
    .email-input {
        font-size: 19px;
    }
    
    .email-submit {
        font-size: 15px;
    }
    
    .region-box {
        width: 350px;
        max-width: 350px;
        height: 300px;
        min-height: 300px;
        flex-shrink: 0;
    }
    
    .region-im-in {
        font-size: 30px;
    }
    
    .region-text {
        font-size: 50px;
    }
    
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .video-column,
    .text-column {
        height: 40vh;
        min-height: 300px;
    }
    
    .text-column {
        padding: 40px 30px;
    }
    
    .story-text {
        font-size: 17px;
    }
    
    .text-column-left,
    .image-column {
        height: 40vh;
        min-height: 300px;
    }
    
    .text-column-left {
        padding: 40px 30px;
    }
    
    .final-email-section {
        padding: 50px 30px;
        min-height: 20vh;
    }
    
    .final-title {
        font-size: 53px;
        letter-spacing: -0.2rem;
        margin-bottom: 40px;
    }
    
    .final-description {
        font-size: 18px;
    }
    
    .final-input {
        font-size: 22px;
    }
    
    .final-submit {
        font-size: 16px;
    }
    
    .footer {
        padding: 30px 20px 20px;
    }
    
    .footer-title {
        font-size: 17px;
    }
    
    .footer-input {
        font-size: 20px;
    }
    
    .confirmation-text {
        font-size: 21px;
    }
}

@media (max-width: 600px) {
    .hero-overlay-text {
        font-size: 45px;
        letter-spacing: -0.15rem;
    }
     .final-title {
        font-size: 45px;
        letter-spacing: -0.25rem;
        width: 100%;
        margin-bottom: 30px;
    }
}
/* Mobile Portrait (480px - 600px) */
@media (max-width: 500px) {
     .banner-content {
    gap: 35px;
    }
    .hero-overlay-text {
        font-size: 40px;
        letter-spacing: -0.15rem;
    }
    
    .email-section {
        padding: 30px 15px;
    }
    
    .email-box {
        padding: 40px 25px;
    }
    
    .email-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .email-description {
        font-size: 16px;
    }
    
    .email-input {
        font-size: 18px;
    }
    
    .region-box {
        width: 300px;
        max-width: 300px;
        height: 250px;
        min-height: 250px;
        flex-shrink: 0;
    }
    
    .region-im-in {
        font-size: 24px;
    }
    
    .region-text {
        font-size: 40px;
    }
    .story-text {
        font-size: 16px;
    }
    
    .final-title {
        font-size: 40px;
        letter-spacing: -0.15rem;
    }
    
    .final-description {
        font-size: 16px;
    }
    
    .final-input {
        font-size: 20px;
    }
    
    .footer-input {
        font-size: 18px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .banner {
        height: 25px;
    }
    
    .banner-content span {
        font-size: 10px;
        gap: 30px;
    }
    
    .header {
        top: 25px;
        height: 45px;
    }
    
    .logo {
        height: 25px;
    }
    
    .hero-left,
    .hero-right {
        height: 50vh;
    }
    
    .hero-overlay-text {
        font-size: 32px;
        letter-spacing: -0.1rem;
        padding: 0 15px;
        padding-bottom: 30px;
    }
    
    .cursor {
        margin-left: -0.8rem;
    }
    
    .email-section {
        padding: 25px 15px;
        min-height: 40vh;
    }
    
    .email-box {
        padding: 35px 20px;
        border-radius: 25px;
    }
    
    .email-title {
        font-size: 30px;
        margin-bottom: 20px;
        letter-spacing: -0.05em;
    }
    
    .email-row {
        gap: 25px;
    }
    
    .email-description {
        font-size: 15px;
        line-height: 1.2;
    }
    
    .email-input {
        font-size: 15px;
        padding: 5px 0;
    }
    
    .email-submit {
        font-size: 13px;
        margin-top: 0px;
    }
    
    .region-boxes {
        gap: 20px;
    }
    
    .region-box {
        width: 280px;
        max-width: 280px;
        height: 220px;
        min-height: 220px;
        border-radius: 30px;
        flex-shrink: 0;
    }
    
    .region-im-in {
        font-size: 20px;
    }
    
    .region-text {
        font-size: 35px;
    }
    
    .grid-section {
        min-height: 60vh;
    }
    
    .video-column,
    .text-column,
    .text-column-left,
    .image-column {
        height: 35vh;
        min-height: 250px;
    }
    
    .text-column,
    .text-column-left {
        padding: 30px 20px;
    }
    
    .story-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .final-email-section {
        padding: 50px 20px;
    }
    
    .final-title {
        font-size: 35px;
        letter-spacing: -0.12rem;
        margin-bottom: 30px;
    }
    
    .final-row {
        gap: 25px;
    }
    
    .final-description {
        font-size: 15px;
    }
    
    .final-input {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .final-submit {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .footer {
        padding: 25px 15px 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-input {
        font-size: 16px;
        padding: 10px 35px 10px 0;
    }
    
    .footer-ok {
        font-size: 13px;
        bottom: 10px;
        margin-left: -10px;
    }
    
    .footer-copyright,
    .footer-terms {
        font-size: 12px;
    }
    
    .footer-bottom {
        gap: 10px;
        padding-top: 15px;
    }
    
    .confirmation-text {
        font-size: 18px;
        padding: 20px 10px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
     .banner-content {
    gap: 35px;
    }
    .hero-overlay-text {
        font-size: 28px;
        letter-spacing: -0.08rem;
    }
    
    .email-section {
        padding: 20px 12px;
        min-height: 35vh;
    }
    
    .email-box {
        padding: 30px 18px;
    }
    
    .email-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .email-description {
        font-size: 13px;
    }
    
    .email-input {
        font-size: 15px;
    }
    
    .region-box {
        width: 250px;
        max-width: 250px;
        height: 200px;
        min-height: 200px;
        flex-shrink: 0;
    }
    
    .region-im-in {
        font-size: 18px;
    }
    
    .region-text {
        font-size: 30px;
    }
    
    .final-title {
        font-size: 30px;
        letter-spacing: -0.1rem;
    }
    
    .final-description {
        font-size: 14px;
    }
    
    .final-input {
        font-size: 16px;
    }
    
    .story-text {
        font-size: 13px;
    }
    
    .confirmation-text {
        font-size: 17px;
    }
}