:root {
    --primary: #bfa58a;
    --primary-dark: #a8844f;
    --secondary: #f5efe7;
    --accent: #c6a77b;
    --bone: #faf8f5;
    --dark: #2a2a2a;
    --gray: #8e857b;
    --line: #e8e4df;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(42, 42, 42, 0.12);

    --ease: all 0.35s ease;
    --header-height: 88px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background:
        radial-gradient(circle at 18% 8%, rgba(198, 167, 123, 0.16), transparent 30%),
        radial-gradient(circle at 84% 14%, rgba(191, 165, 138, 0.14), transparent 28%),
        linear-gradient(170deg, #f9f5ef 0%, #f7f1e8 46%, #f3ece1 100%);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    background-image: radial-gradient(rgba(42, 42, 42, 0.7) 0.45px, transparent 0.45px);
    background-size: 3px 3px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.orb-1 {
    width: 260px;
    height: 260px;
    top: 10%;
    left: -100px;
    background: rgba(198, 167, 123, 0.28);
}

.orb-2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    right: -90px;
    background: rgba(191, 165, 138, 0.2);
}

.language-selector {
    position: fixed;
    top: 114px;
    right: 22px;
    z-index: 1200;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    padding: 6px;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.lang-btn {
    border: 0;
    background: transparent;
    color: var(--gray);
    min-width: 34px;
    min-height: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--ease);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid transparent;
    transition: var(--ease);
}

#header.scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--dark);
    margin: 4px auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.6rem;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ease);
    border-radius: 2px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-ghost {
    border: 1px solid rgba(250, 248, 245, 0.65);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero {
    position: relative;
    margin: 20px auto 0;
    width: min(1240px, calc(100% - 2rem));
    min-height: calc(100vh - var(--header-height) - 24px);
    border-radius: 6px;
    overflow: hidden;
    background: url('img/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(21, 18, 14, 0.78) 0%, rgba(21, 18, 14, 0.42) 45%, rgba(21, 18, 14, 0.24) 100%),
        radial-gradient(circle at 80% 20%, rgba(191, 165, 138, 0.25), transparent 45%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
    animation: drift 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 8%;
    background: rgba(198, 167, 123, 0.22);
}

.hero-glow-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: 32%;
    background: rgba(255, 255, 255, 0.15);
    animation-delay: 0.6s;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.6rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-copy {
    color: #fff;
    max-width: 710px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.kicker {
    margin-top: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.3rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: #fff;
}

.hero-text {
    margin-top: 1.1rem;
    max-width: 58ch;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-panel {
    background: rgba(250, 248, 245, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-md);
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(191, 165, 138, 0.15);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-dark);
    animation: pulse 2s infinite;
}

.hero-panel h2 {
    margin: 1rem 0;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
}

.hero-panel ul {
    display: grid;
    gap: 0.75rem;
}

.hero-panel li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    color: #51483e;
}

.hero-panel i {
    margin-top: 3px;
    color: var(--primary-dark);
}

.hero-panel p {
    margin-top: 0.9rem;
    color: var(--gray);
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.concept-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.concept-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.concept-card p {
    color: var(--gray);
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.1rem 1.2rem;
}

.step {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.timeline h3 {
    grid-column: 2;
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    line-height: 1.15;
}

.timeline p {
    grid-column: 2;
    color: var(--gray);
    max-width: none;
}

.section-gallery {
    position: relative;
    background: linear-gradient(180deg, #f4eee5 0%, #faf8f5 100%);
    overflow: hidden;
}

.section-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(198, 167, 123, 0.18), transparent 42%);
    pointer-events: none;
}

.gallery-note {
    max-width: 760px;
    margin: 0.7rem auto 0;
    color: var(--gray);
    font-size: 0.96rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 454px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.02) brightness(0.9);
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08)),
        linear-gradient(130deg, rgba(198, 167, 123, 0.14), transparent 45%);
}

.gallery-item figcaption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 10px;
    background: rgba(13, 12, 10, 0.28);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(0.88) contrast(1.06) brightness(0.95);
}

.waitlist-shell {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 1.4rem;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 1.2rem;
}

.waitlist-shell h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin-top: 6px;
}

.waitlist-shell p {
    color: var(--gray);
    margin-top: 0.8rem;
}

.contact-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    padding: 9px 14px;
    font-size: 13px;
    background: #fff;
}

.waitlist-form {
    display: grid;
    gap: 7px;
    border: 1px solid var(--line);
    padding: 1rem;
    background: var(--secondary);
}

.waitlist-form label {
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

.waitlist-form input,
.waitlist-form textarea {
    border: 1px solid #d8d1c7;
    background: #fff;
    color: var(--dark);
    padding: 0.72rem 0.78rem;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.form-message {
    min-height: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-message.success {
    color: #35624d;
}

.form-message.error {
    color: #a03838;
}

.footer {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.7;
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 2rem 0 2.4rem;
    }

    .hero-panel {
        max-width: 520px;
    }

    .concept-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }

    .waitlist-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(1200px, calc(100% - 1.3rem));
    }

    .language-selector {
        top: 96px;
        right: 10px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }

    .brand span {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        border-bottom: 1px solid var(--line);
        display: grid;
        gap: 0.9rem;
        padding: 1rem;
        transform: translateY(-130%);
        transition: var(--ease);
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: 0;
        margin-top: 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3.4rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .section {
        padding: 3.6rem 0;
    }

    .concept-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        min-height: 240px;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .timeline h3,
    .timeline p {
        grid-column: auto;
    }

    .step {
        width: 44px;
        height: 44px;
    }

    .footer p {
        flex-direction: column;
        gap: 2px;
    }
}
