body {
  font-family: 'Montserrat', sans-serif;
  color: #27150F;
  margin: 0;
}

.content {
    width: 100%;
    background: #ccc;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
}

.hero-logo {
    width: 40%;
    max-width: 200px;
    min-width: 120px;
    height: auto;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6.3rem); 
    line-height: 0.85;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 32px 0;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-overlay {
    position: absolute;
    left: 0;
    right:0;
    top:0;
    bottom: 0;
    display: block;
    z-index: 999;
}

.btn-primary {
    display: inline-block;
    border-radius: 4px;
    background: #251610;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.dots-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.dots-top .dot {
       margin-right:12px;
}
.dots-bottom .dot {
       margin-left:12px;
}



.dots-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.dots-style {
    list-style: none;
    padding: 0;
}

.dot {
    height: 3px;
    width: 3px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 0 16px;
    box-sizing: border-box;
}

.marquee-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.center-spacer { flex: 2.5;
position: relative; }

.image-set {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px; 
}

.image-set img {
    width: 100%;
    height: auto;
    aspect-ratio: 280 / 388;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.up { animation: scrollUp 120s linear infinite; }
.down { animation: scrollDown 120s linear infinite; }

@keyframes scrollUp {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-1 * var(--scroll-dist, 50%))); }
}

@keyframes scrollDown {
    from { transform: translateY(calc(-1 * var(--scroll-dist, 50%))); }
    to { transform: translateY(0); }
}

.hero-section {
    position: relative;
    z-index: 10;
    padding: 64px 20px;
    pointer-events: none;
}
.hero-text { pointer-events: auto;
    pointer-events: auto;
    padding: 16px;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .dnone {
        display: none !important;
    }
    .hero-text {
    width: 50%;
    padding: 32px 16px;
}

    .hero-section {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
h1 {
    font-size: clamp(2.5rem, 8vw, 6.3rem);
    margin: 16px 0;
}
.hero-section {
    padding: 0;
}

.hero-subtitle { margin-bottom: 24px; font-size: 14px;} 

.image-set {
    gap: 8px;
    padding-bottom: 8px;
}
.btn-primary {
    font-size: 16px;
    padding: 12px 24px;
    margin:0;
}
.marquee-container {
    padding: 0 4px;
}
}

.hero-wrapper:hover .btn-primary {
    transform: scale(1.05);
    cursor: pointer;
}