body {
    background: linear-gradient(135deg, #fff7f2 0%, #fbeee8 100%);
    color: #4b2e25;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.frost-main {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 1rem 3rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 42px rgba(75, 46, 37, 0.14);
    margin-bottom: 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #b96c4e;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.hero h1,
.content-section h2 {
    color: #6c3b2b;
    margin: 0 0 0.8rem;
    font-family: 'Russo One', 'Segoe UI', Arial, sans-serif;
}

.hero p,
.content-section p,
.content-section li {
    color: #5c4337;
    font-size: 1rem;
    line-height: 1.7;
}

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

.button {
    display: inline-block;
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.button-primary {
    background: #b96c4e;
    color: #fff;
}

.button-secondary {
    background: #fff3ea;
    color: #6c3b2b;
    border: 1px solid #e7c7b1;
}

.hero-card img,
.info-card img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(75, 46, 37, 0.12);
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 14px 36px rgba(75, 46, 37, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.info-card {
    background: #fffaf6;
    border: 1px solid #f0d8c4;
    border-radius: 18px;
    padding: 1rem;
}

.info-card h3 {
    color: #6c3b2b;
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.gallery-card {
    background: #fffaf6;
    border: 1px solid #f0d8c4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(75, 46, 37, 0.08);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-card-content {
    padding: 1rem;
}

.gallery-card-content h3 {
    color: #6c3b2b;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.frost-footer {
    text-align: center;
    padding: 2rem 1rem 3rem;
    color: #6c3b2b;
}

.frost-footer a {
    color: #b96c4e;
}

header {
    position: relative;
}

.menu-container {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 999;
    display: inline-block;
}

.menu-button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(75, 46, 37, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.menu-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 22px;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: #6c3b2b;
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 180px;
    background: rgba(255, 250, 246, 0.98);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(75, 46, 37, 0.16);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.menu-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.menu-list li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #6c3b2b;
    font-weight: 700;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.menu-list li a:hover {
    background: #fff3ea;
    color: #b96c4e;
}

@media screen and (max-width: 780px) {
    .hero,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .frost-main {
        padding-top: 6rem;
    }

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