*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2b170c;
    background-color: #fdf7f2;
    line-height: 1.6;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn i {
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(135deg, #e28a3b, #d76a2b);
    color: #fff;
    box-shadow: 0 12px 24px rgba(173, 72, 0, 0.35);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(173, 72, 0, 0.45);
}

.btn.outline,
.btn.secondary {
    background: transparent;
    border-color: #e28a3b;
    color: #b1531b;
}

.btn.outline:hover,
.btn.secondary:hover {
    background: #e28a3b;
    color: #fff;
}

.btn.full {
    width: 100%;
}

/* Hero */

.hero {
    position: relative;
    min-height: 90vh;
    color: #fff;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.9) 100%);
}

.main-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
}

.logo-box img {
    height: 52px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffe9d6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 999px;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 5rem 5vw 4rem;
    max-width: 640px;
}

.hero-tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffe0bf;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero h1 span {
    color: #ffd48d;
}

.hero-sub {
    font-size: 1rem;
    max-width: 32rem;
    color: #ffecd2;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Sections */

.section {
    padding: 4rem 5vw;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: clamp(2rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
    color: #b1531b;
}

.section-header p {
    margin: 0;
    color: #6c4c32;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: #b1531b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Experiences */

.experiences {
    background: radial-gradient(circle at top left, #ffe6c8 0, #fdf7f2 45%, #f0e0d1 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.7rem;
}

.exp-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 1.4rem 1.4rem 1.6rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,210,156,0.55), transparent 53%);
    opacity: 0.8;
    pointer-events: none;
}

.exp-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    margin: 0.9rem 0 0.4rem;
    color: #b1531b;
}

.exp-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.92rem;
    color: #6c4c32;
}

.polaroid {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.4rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    transform: rotate(-2deg);
    overflow: hidden;
}

.exp-card:nth-child(2) .polaroid { transform: rotate(2deg); }
.exp-card:nth-child(3) .polaroid { transform: rotate(-3deg); }
.exp-card:nth-child(4) .polaroid { transform: rotate(1deg); }
.exp-card:nth-child(5) .polaroid { transform: rotate(-1deg); }
.exp-card:nth-child(6) .polaroid { transform: rotate(3deg); }

.polaroid img {
    display: block;
    width: 100%;
    border-radius: 0.8rem;
}

/* Split sections */

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.split-text h2 {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #b1531b;
}

.split-text p {
    margin-top: 0;
    color: #5f422b;
}

.feature-list {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #4d3322;
}

.feature-list i {
    color: #d76a2b;
}

.split-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.8rem;
}

.split-images img {
    width: 100%;
    display: block;
}

.rounded {
    border-radius: 1.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.secondary {
    align-self: flex-end;
    border-radius: 1.2rem;
}

/* Info section */

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 1.6rem 1.7rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-family: 'Kanit', system-ui, sans-serif;
    color: #b1531b;
}

.info-card ul {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
    color: #5f422b;
    font-size: 0.95rem;
}

.info-note {
    margin: 0;
    font-size: 0.9rem;
    color: #8a5f3b;
}

/* Contact form */

.contact-form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.6rem;
    padding: 2rem 1.7rem 2.2rem;
    box-shadow: 0 18px 46px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-family: 'Kanit', system-ui, sans-serif;
    color: #b1531b;
}

.contact-form-wrapper p {
    margin-top: 0;
    margin-bottom: 1.4rem;
    color: #6c4c32;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.83rem;
    font-weight: 600;
    color: #5a3b26;
}

.form-field input,
.form-field textarea {
    border-radius: 0.9rem;
    border: 1px solid #e4c8a8;
    padding: 0.65rem 0.8rem;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    background: #fffdf9;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #d76a2b;
    box-shadow: 0 0 0 1px rgba(215,106,43,0.18);
    background: #ffffff;
}

/* Video section */

.video-section {
    background: radial-gradient(circle at top right, #ffe6c8 0, #fdf7f2 40%, #f0e0d1 100%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 18px 46px rgba(0,0,0,0.2);
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 1rem;
    cursor: zoom-in;
    position: relative;
}

.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0.6rem;
    bottom: 0.45rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.03);
}

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    justify-content: center;
    align-items: center;
    z-index: 40;
    padding: 1rem;
}

.lightbox-img {
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Location */

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 1.8rem;
    align-items: center;
}

.location-info h3 {
    margin-top: 0;
    font-family: 'Kanit', system-ui, sans-serif;
    color: #b1531b;
}

.location-info p {
    color: #5f422b;
}

.location-info i {
    color: #d76a2b;
    margin-right: 0.45rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.location-map iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 1.5rem;
    box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}

/* Social */

.social-section {
    background: #f7ece2;
}

.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.8rem;
}

.social-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.6rem 1.7rem 1.9rem;
    box-shadow: 0 18px 46px rgba(0,0,0,0.06);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.4rem;
}

.social-header i {
    font-size: 1.5rem;
    color: #d76a2b;
}

.social-header h3 {
    margin: 0;
    font-family: 'Kanit', system-ui, sans-serif;
    color: #b1531b;
}

.social-card p {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #5f422b;
}

.fb-embed {
    margin-bottom: 0.8rem;
}

.ig-placeholder {
    min-height: 180px;
    border-radius: 1.2rem;
    border: 1px dashed #e0c1a2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #9a6a42;
    font-size: 0.95rem;
    text-align: center;
}

/* WhatsApp floating button */

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 18px 35px rgba(0,0,0,0.4);
    text-decoration: none;
    z-index: 50;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.5);
    background: #1ebe5b;
}

/* Footer */

.main-footer {
    background: #3b2416;
    color: #fce1c6;
    padding: 1.8rem 5vw 1.2rem;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text p {
    margin: 0;
}

.footer-text a {
    color: #ffd8a3;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-made {
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
    color: #f4cba0;
}

.footer-made a {
    color: #ffd8a3;
    text-decoration: none;
}

.footer-made a:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 960px) {
    .split-section,
    .split-section.reverse,
    .info-grid,
    .location-grid,
    .social-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .split-images {
        max-width: 520px;
        margin: 0 auto;
    }

    .location-map iframe {
        min-height: 220px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding-inline: 1.2rem;
    }

    .hero-content {
        padding: 4.5rem 1.2rem 3.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(26, 14, 7, 0.97);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 1.1rem 1.1rem;
        gap: 0.35rem;
        min-width: 210px;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        border-radius: 0 0 1rem 1rem;
        transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.2s ease;
    }

    .nav-links.show {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
    }

    .section {
        padding-inline: 1.2rem;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 540px) {
    .hero {
        min-height: 85vh;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }
}
