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

html,
body {
    height: 100%;
}

body {
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0e0e0f;
    color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

/* Layout wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header / Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 7vw;

    background: linear-gradient(to bottom, rgba(14, 14, 15, 0.95), rgba(14, 14, 15, 0.6));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-main {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #f5f5f5;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.65);
}

/* Nav */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav li span {
    position: relative;
    cursor: default;
    color: rgba(245, 245, 245, 0.7);
}

.main-nav li span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0%;
    height: 1px;
    background-color: #c79a5a;
    transition: width 0.3s ease;
}

.main-nav li span:hover::after {
    width: 100%;
}

/* Hero */

.hero {
    position: relative;
    flex: 1;
    padding: 7.5rem 7vw 4rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at top left, #2b2117 0, #0e0e0f 45%, #050506 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at top right, rgba(199, 154, 90, 0.25), transparent 55%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.07), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 780px;
    text-align: left;
    z-index: 1;
}

.hero {
    background: #0e0e0f url("../img/back.png") center/cover no-repeat fixed;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 0.9rem;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 3vw + 1.5rem, 3rem);
    line-height: 1.1;
    margin-bottom: 1.1rem;
    color: #fdfdfd;
}

.hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 32rem;
    color: rgba(245, 245, 245, 0.8);
}

/* Buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: #c79a5a;
    border-color: #c79a5a;
    color: #111;
}

.btn-primary:hover {
    background-color: #f3c88c;
    border-color: #f3c88c;
    transform: translateY(-1px);
}

.btn-ghost {
    background-color: transparent;
    border-color: rgba(245, 245, 245, 0.35);
    color: rgba(245, 245, 245, 0.9);
}

.btn-ghost:hover {
    border-color: #c79a5a;
    color: #fff;
    transform: translateY(-1px);
}

/* Small note */

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.7);
}

.hero-note .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #c79a5a;
    box-shadow: 0 0 0 0 rgba(199, 154, 90, 0.5);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(199, 154, 90, 0.6);
    }
    70% {
        transform: scale(1.6);
        box-shadow: 0 0 0 10px rgba(199, 154, 90, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(199, 154, 90, 0);
    }
}

/* Info section */

.info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
    padding: 3.5rem 7vw 2.8rem;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-block h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fdfdfd;
}

.info-block p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.78);
}

.info-block a {
    color: #c79a5a;
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

/* Footer */

.site-footer {
    text-align: center;
    padding: 1.8rem 7vw 2rem;
    font-size: 0.8rem;
    background-color: #0b0b0c;
    color: rgba(245, 245, 245, 0.6);
}

.site-footer .footer-secondary {
    margin-top: 0.4rem;
    font-size: 0.78rem;
}

/* Responsive */

@media (max-width: 960px) {
    .main-nav ul {
        display: none; /* simple mobile behavior – header stays clean */
    }

    .site-header {
        padding-inline: 5vw;
    }

    .hero {
        padding: 6rem 7vw 3rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .site-footer {
        padding-inline: 6vw;
    }
}
