:root {
    --bg: #fcfaf7;
    --white: #ffffff;
    --text: #1c1a17;
    --muted: #6f675f;
    --line: #e8e0d7;
    --soft: #f6f1eb;
    --gold: #b9925e;
    --gold-dark: #9e7d51;
    --shadow: 0 20px 60px rgba(44, 33, 20, 0.08);
    --radius: 22px;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 20px;
    text-align: center;
    background: rgba(252, 250, 247, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(185, 146, 94, 0.08);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    display: block;
    width: auto;
    height: 64px;
    object-fit: contain;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/hero.jpg') center center / cover no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease;
}

.hero.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(17, 17, 17, 0.25), rgba(17, 17, 17, 0.55)),
        linear-gradient(to top, rgba(17, 17, 17, 0.25), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 140px 20px 120px;
    color: white;
    max-width: 1120px;
    margin: 0 auto;
}

.hero-text-box {
    max-width: 480px;
    text-align: left;
    padding: 28px;
    border-radius: 24px;
    background: rgba(15, 15, 15, 0.18);
    backdrop-filter: blur(10px);
}

.eyebrow,
.section-label {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.hero .eyebrow {
    color: #e8cfab;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 1.2s forwards 0.3s;
}

.subtitle {
    max-width: 650px;
    margin-top: 20px;
    font-size: 1.15rem;
    opacity: 0;
    animation: fadeUp 1.2s forwards 0.7s;
}

.hero .btn {
    margin-top: 34px;
    opacity: 0;
    animation: fadeUp 1.2s forwards 1s;
}

.hero-features {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 40px);
}

.feature {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    color: white;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.feature:nth-child(1) { animation-delay: 1.2s; }
.feature:nth-child(2) { animation-delay: 1.45s; }
.feature:nth-child(3) { animation-delay: 1.7s; }

.section {
    padding: 120px 20px;
}

.section.soft {
    background: var(--soft);
}

.section.cta {
    background: linear-gradient(180deg, #f8f3ed 0%, #f4ede5 100%);
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
}

.cards,
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 55px;
}

.card,
.step {
    background: var(--white);
    padding: 34px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover,
.step:hover {
    transform: translateY(-6px);
}

.card h3,
.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card p,
.step p {
    color: var(--muted);
}

.step span {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.gallery-section {
    overflow: hidden;
}

.full-width-slider {
    width: 100vw;
    margin-top: 55px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.full-width-slider.reverse .track {
    animation-direction: reverse;
}

.gallery-image {
    width: 360px;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.gallery-image:hover {
    transform: scale(1.035);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: var(--text);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: white;
    color: var(--text);
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #16130f;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.modal,
.img-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    width: min(92%, 520px);
    background: white;
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.modal-box h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text);
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
}

.img-modal {
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.img-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
}

body.no-scroll {
    overflow: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        width: 260px;
        height: 340px;
    }

    .hero-features {
        bottom: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-bg {
        background: url('img/hero-mobile.jpg') center center / cover no-repeat;
        transform: scale(1.02);
    }

    .hero.active .hero-bg {
        transform: scale(1);
    }

    .hero-content {
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        padding: 120px 24px 140px;
        max-width: 100%;
    }

    .hero-text-box {
        max-width: 78%;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .title {
        font-size: clamp(2.4rem, 9vw, 4rem);
        line-height: 1.05;
    }

    .subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero .btn {
        margin-top: 24px;
    }

    .hero-features {
        bottom: 20px;
        width: calc(100% - 24px);
        gap: 10px;
    }

    .feature {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        padding: 11px 14px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 14px 16px;
    }

    .logo-image {
        height: 52px;
    }

    .subtitle,
    .section-text {
        font-size: 1rem;
    }

    .section {
        padding: 90px 20px;
    }

    .modal-box {
        padding: 28px 20px;
    }
}