@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #943f28;
    color: #ffffff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 48'%3E%3Cpath d='M44 0 L88 24 L44 48 L0 24 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.14' stroke-width='1'/%3E%3Cpath d='M44 0 L44 48' fill='none' stroke='%23ffffff' stroke-opacity='0.14' stroke-width='1'/%3E%3Cpath d='M0 24 L88 24' fill='none' stroke='%23ffffff' stroke-opacity='0.14' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 88px 48px;
    opacity: 0.78;
    pointer-events: none;
    z-index: 0;
}
.page-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    padding: 40px 32px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    min-height: calc(100vh - 80px);
}

.logo-box {
    width: clamp(220px, 30vw, 340px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-title {
    margin: 0;
    font-size: clamp(4.4rem, 12vw, 9rem);
    letter-spacing: 0.3em;
    line-height: 0.88;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-subtitle {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    opacity: 0.84;
    font-weight: 400;
}

@media (max-width: 620px) {
    .hero {
        gap: 1.6rem;
        padding: 0 12px;
    }

    .logo-box {
        width: 240px;
        padding: 1.5rem;
    }

    .brand-title {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .brand-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 520px) {
    .hero {
        gap: 1.5rem;
    }

    .brand-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .logo-box {
        padding: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 200px;
}

.btn-primary {
    background-color: #a25b3f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #8b4a32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(162, 91, 63, 0.3);
}

.btn-secondary {
    background-color: #fff8f5;
    color: #7a2f18;
    border: 2px solid #a25b3f;
}

.btn-secondary:hover {
    background-color: #f0e8e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 520px) {
    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        min-width: 160px;
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}
