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

:root {
    --bg: #faf8f5;
    --bg-warm: #f3efe9;
    --bg-card: #ffffff;
    --bg-accent: #ede7df;
    --cream: #fdfcfa;
    --brown-deep: #3d3229;
    --brown: #5c4a3a;
    --brown-light: #8b7560;
    --gold: #a08050;
    --gold-soft: #c4a87a;
    --text: #3d3229;
    --text-muted: #7a6b5d;
    --border: rgba(160, 128, 80, 0.15);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.8rem 4rem;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.2rem 4rem;
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--brown-deep);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}
.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-deep);
    transition: color 0.3s;
    text-shadow: 0 0 8px rgba(250, 248, 245, 0.6);
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    width: 22px; height: 1.5px;
    background: var(--brown-deep);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 100vh;
    background: var(--bg-warm);
}
.hero-left {
    display: flex;
    align-items: center;
    padding: 6rem 5rem;
}
.hero-text { max-width: 480px; }
.hero-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
}
.hero-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    height: 100%;
    object-position: center;
    transition: transform 12s ease;
}
.hero-right:hover img {
    transform: scale(1.02);
}

/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.btn:hover {
    background: var(--gold);
    color: var(--cream);
}

/* ===== FEATURED STRIP ===== */
.featured-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 3.5rem 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.strip-item { text-align: center; }
.strip-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
}
.strip-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: block;
}
.strip-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SECTION COMMON ===== */
.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

/* ===== ABOUT ===== */
.about {
    padding: 9rem 4rem;
    background: var(--bg);
}
.about-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-image-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}
.about-img--main {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}
.about-img--accent {
    aspect-ratio: 1;
    overflow: hidden;
    align-self: end;
    border-radius: 4px;
}
.about-img img {
    transition: transform 0.8s var(--ease);
}
.about-img:hover img {
    transform: scale(1.04);
}
.about-text-col h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 2rem;
}
.about-lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.about-text-col p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.about-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.about-signature span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown-deep);
    display: block;
}
.about-signature em {
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

/* ===== EXPERIENCES ===== */
.experiences {
    padding: 9rem 4rem;
    background: var(--bg-warm);
}
.experiences-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}
.experiences-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}
.experiences-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}
.experiences-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.exp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.exp-image {
    aspect-ratio: 1;
    overflow: hidden;
}
.exp-image img {
    transition: transform 0.6s var(--ease);
}
.exp-card:hover .exp-image img {
    transform: scale(1.06);
}
.exp-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.exp-tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.exp-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}
.exp-content p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.exp-detail {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    margin-top: auto;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 9rem 4rem;
    background: var(--bg);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brown-deep);
}
.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
    transition: transform 0.7s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 9rem 4rem;
    background: var(--bg-warm);
}
.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.how-header {
    text-align: center;
    margin-bottom: 5rem;
}
.how-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brown-deep);
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}
.how-step {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}
.step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.how-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}
.how-step p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 8rem 4rem;
    background: var(--bg);
    text-align: center;
}
.testimonial-inner {
    max-width: 750px;
    margin: 0 auto;
}
.testimonial blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--brown-deep);
    margin-bottom: 2rem;
}
.testimonial cite {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.testimonial cite em {
    color: var(--brown-light);
    font-style: normal;
}

/* ===== CONTACT ===== */
.contact {
    padding: 9rem 4rem;
    background: var(--bg-warm);
}
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-deep);
    margin-bottom: 2.5rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-block h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.contact-block p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}
.contact-form-wrap {
    display: flex;
    align-items: center;
}
.contact-form-wrap form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    border-bottom-color: var(--gold);
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: var(--text-muted);
}
.contact-form-wrap select {
    appearance: none;
    color: var(--text-muted);
}
.contact-form-wrap select option {
    background: var(--bg);
    color: var(--text);
}
.contact-form-wrap textarea {
    resize: vertical;
    min-height: 80px;
}
.contact-form-wrap .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 4rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--brown-deep);
}
.footer-links {
    display: flex;
    gap: 2.5rem;
}
.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 4rem; }
    .experiences-grid { grid-template-columns: 1fr; }
    .exp-card { grid-template-columns: 0.8fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 1.2rem 1.5rem; }
    .nav.scrolled { padding: 1rem 1.5rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(250,248,245,0.98);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left { padding: 8rem 2rem 3rem; }
    .hero-right { height: 50vh; }

    .featured-strip {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    .strip-divider { width: 40px; height: 1px; }

    .about, .experiences, .gallery, .contact, .how-it-works {
        padding: 5rem 1.5rem;
    }
    .about-image-col { grid-template-columns: 1fr 1fr; }

    .exp-card { grid-template-columns: 1fr; }
    .exp-image { aspect-ratio: 16/9; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item--tall { grid-row: span 2; }
    .gallery-item--wide { grid-column: span 2; }

    .how-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 1; }
}
