/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* =========================================
   HEADER
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
}

.logo {
    justify-self: start;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border: 2px solid #eaa04b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
}

.logo-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #eaa04b;
}

.logo img {
    max-height: 72px;
    width: auto;
}

.header-nav {
    display: contents;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-self: center;
    grid-column: 2;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #eaa04b;
}

.divider {
    color: #000;
    opacity: 0.35;
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 18px;
    justify-self: end;
    grid-column: 3;
}

.header-actions a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.header-actions a:hover {
    color: #eaa04b;
}

/* =========================================
   SECTION BASE
   ========================================= */
section {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
    background: #000;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform-origin: center center;
    animation: zoomin 20s ease-in forwards;
}

@keyframes zoomin {
    0% {
        transform: scale(0);
        filter: blur(100px);
        opacity: 0;
    }
    5% {
        transform: scale(1);
        filter: blur(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(250, 250, 250, 0.9);
    border-bottom: 4px solid #453d81;
    padding: 50px 40px;
    text-align: center;
    max-width: 860px;
    width: min(88%, 860px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.hero-card h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 6.5vmin, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    color: #000;
    margin-bottom: 28px;
    text-transform: none;
}

.button-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: #eaa04b;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #db5941;
    color: #fff;
}

/* =========================================
   SERVICES — 3 COLUMN HOVER
   ========================================= */
.services-section {
    padding: 0;
    align-items: stretch;
}

.services-bg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: background-image 0.4s linear;
    animation: servicesimages 20s infinite;
}

@keyframes servicesimages {
    0% { background-size: 100% 100%; }
    50% { background-size: 120% 120%; }
    100% { background-size: 100% 100%; }
}

.service-col {
    position: relative;
    overflow: hidden;
    text-align: left;
    border-right: 2px solid #fff;
    cursor: pointer;
}

.service-col:last-child {
    border-right: none;
}

.service-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    transition: height 0.2s linear, background 0.2s linear;
}

.service-col:hover .service-overlay,
.service-col.show .service-overlay {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #fff 100%);
}

.service-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 60px 48px;
    color: #000;
}

.service-mobile-img {
    display: none;
}

.service-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 2.1vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
}

.ser-para {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.55;
}

.service-col:hover .ser-para,
.service-col.show .ser-para {
    visibility: visible;
    height: auto;
    overflow: auto;
}

.service-more {
    display: none;
}

/* =========================================
   ABOUT
   ========================================= */
.about-section {
    background: #fff;
    padding: 110px 50px 50px;
}

.about-wrap {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-slider {
    position: relative;
    min-height: 340px;
}

.about-slide {
    display: none;
}

.about-slide.is-active {
    display: block;
}

.about-slide h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-slide p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.about-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.about-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #ccc;
    cursor: pointer;
}

.about-dots button.is-active {
    background: #eaa04b;
}

/* =========================================
   GALLERY SLIDER
   ========================================= */
.gallery-section {
    background: #f5f4f0;
    padding: 0;
    align-items: stretch;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 90px;
    cursor: grab;
    user-select: none;
}

.gallery-slider:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
    will-change: transform;
}

.gallery-item {
    position: relative;
    flex: 0 0 62vw;
    height: min(620px, 78%);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.85);
    filter: blur(10px);
    opacity: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item.is-selected img {
    transform: scale(1);
    filter: none;
}

.gallery-nav {
    position: absolute;
    top: calc(50% + 45px);
    z-index: 6;
    width: 52px;
    height: 52px;
    border: 0;
    background: rgba(245, 245, 245, 0.92);
    color: #222;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}

.gallery-nav:hover {
    background: #fff;
}

/* =========================================
   VIDEO
   ========================================= */
.video-section {
    background: #111;
    padding: 90px 40px 40px;
}

.video-link {
    width: min(900px, 90%);
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.play-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    padding-left: 4px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section {
    background: #fff;
    padding: 110px 50px 96px;
    overflow: auto;
}

.contact-wrap {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.site-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    font-size: 14px;
    color: #333;
    z-index: 1;
}

.site-footer a {
    color: #eaa04b;
    font-weight: 700;
    text-decoration: none;
}

.site-footer a:hover {
    color: #db5941;
    text-decoration: underline;
}

.contact-info h2,
.contact-form h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #eaa04b;
    margin-bottom: 18px;
}

.map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.contact-phone,
.contact-email {
    display: block;
    margin-top: 12px;
    color: #eaa04b;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.form-success {
    display: none;
    color: #2c5f2d;
    margin: 8px 0 14px;
}

.form-success.show {
    display: block;
}

.form-error {
    display: none;
    color: #db5941;
    margin: 8px 0 14px;
}

.form-error.show {
    display: block;
}

.contact-form .btn {
    position: relative;
    z-index: 3;
}

/* =========================================
   LIGHTBOX / VIDEO MODAL
   ========================================= */
.lightbox,
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox[hidden],
.video-modal[hidden] {
    display: none;
}

.lightbox img,
.video-modal iframe {
    max-width: 90vw;
    max-height: 85vh;
}

.video-modal iframe {
    width: min(900px, 90vw);
    height: min(506px, 56vw);
    border: 0;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* =========================================
   SIDE DOTS
   ========================================= */
.side-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #eaa04b;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #eaa04b;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    header {
        padding: 10px 24px;
    }

    .about-section,
    .contact-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-snap-type: none;
    }

    header {
        padding: 10px 16px;
        display: flex;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 12px 20px 20px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        z-index: 1000;
    }

    .header-nav.open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 14px 8px;
    }

    .divider {
        display: none;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        border-top: 1px solid #eee;
        margin-top: 8px;
        padding-top: 8px;
    }

    .header-actions a {
        text-align: center;
        padding: 10px;
    }

    .logo img {
        max-height: 52px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .logo-name {
        font-size: 18px;
    }

    section {
        height: auto;
        min-height: 100svh;
        overflow: visible;
        scroll-snap-align: none;
        padding: 90px 16px 40px;
    }

    .hero-section {
        min-height: 100svh;
        overflow: hidden;
        padding: 90px 16px 40px;
    }

    .hero-card {
        width: min(94%, 560px);
        padding: 28px 18px;
    }

    .hero-card h1 {
        font-size: clamp(28px, 9vw, 42px);
        margin-bottom: 20px;
    }

    .services-section {
        padding: 80px 0 0;
    }

    .services-bg {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        height: auto;
        animation: none;
        background-image: none !important;
        overflow: visible;
    }

    .service-col {
        border-right: none;
        border-bottom: 1px solid #eee;
        min-height: auto;
        padding: 28px 18px 32px;
        width: 100%;
    }

    .service-overlay {
        display: none;
    }

    .service-text {
        position: relative;
        padding: 0;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .service-mobile-img {
        display: block;
        margin-bottom: 16px;
        border-radius: 16px 16px 40px 16px;
        overflow: hidden;
    }

    .service-mobile-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .ser-para {
        visibility: visible;
        height: auto;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s linear, opacity 0.3s linear;
    }

    .service-col.show .ser-para {
        max-height: 800px;
        opacity: 1;
    }

    .service-more {
        display: block;
        margin-top: 10px;
        background: none;
        border: 0;
        font-weight: 700;
        cursor: pointer;
        padding: 8px 0;
        border-bottom: 2px solid #000;
        width: fit-content;
    }

    .less-label {
        display: none;
    }

    .service-col.show .more-label {
        display: none;
    }

    .service-col.show .less-label {
        display: inline;
    }

    .about-section {
        padding: 90px 18px 48px;
    }

    .about-wrap,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    .about-image img {
        max-height: 240px;
        width: 100%;
        object-fit: cover;
    }

    .about-slider {
        min-height: 0;
    }

    .about-slide h3 {
        font-size: 24px;
    }

    .gallery-section {
        min-height: 100svh;
        padding: 0;
        overflow: hidden;
    }

    .gallery-slider {
        padding-top: 80px;
    }

    .gallery-item {
        flex: 0 0 82vw;
        height: min(420px, 58vh);
    }

    .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
        top: 55%;
    }

    .video-section {
        padding: 90px 16px 40px;
    }

    .play-icon {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .contact-section {
        padding: 90px 16px 88px;
        overflow: visible;
    }

    .map-wrap iframe {
        height: 200px;
    }

    .contact-info h2,
    .contact-form h3 {
        font-size: 32px;
    }

    .side-dots {
        right: 8px;
        gap: 10px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 22px 14px;
    }

    .hero-card h1 br {
        display: none;
    }

    .hero-card h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .gallery-item {
        flex: 0 0 88vw;
        height: min(360px, 50vh);
    }

    .service-text h2 {
        font-size: 22px;
    }

    .side-dots {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .bg-image,
    .services-bg {
        animation: none;
    }

    .hero-card {
        opacity: 1;
        transform: none;
    }
}
