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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff7ea;
    color: #33140c;
    line-height: 1.6;
}

/* Layout helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top bar */

.top-bar {
    background: #3b1307;
    color: #ffe9c7;
    padding: 0.4rem 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-area img {
    height: 52px;
    width: auto;
    border-radius: 999px;
    background: #ffb34b;
    box-shadow: 0 0 0 2px #ffb34b55;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
}

.logo-text .tagline-small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.top-contact .phone {
    color: #ffe9c7;
    text-decoration: none;
    font-weight: 600;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7b2a, #ffb742);
    color: #3b1307;
    box-shadow: 0 10px 20px rgba(255, 123, 42, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 123, 42, 0.4);
}

.btn-light {
    background: rgba(255, 252, 245, 0.95);
    color: #7a2b15;
    border: 1px solid #ffd59b;
}

.btn-light:hover {
    background: #fff1da;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffb45b;
    color: #ffcf8f;
}

.btn-outline:hover {
    background: #ffb45b;
    color: #3b1307;
}

/* Nav */

.main-nav {
    background: #5b1b08;
    color: #ffe9c7;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.nav-brand {
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: #ffe9c7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7b2a, #ffd25a);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #ffb45b;
    color: #ffe9c7;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 1.1rem;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    color: #3b1307;
}

.hero-bg {
    background-image:
        radial-gradient(circle at top left, #ffe8b7 0, transparent 55%),
        radial-gradient(circle at bottom right, #ffaf43 0, #ff7b2a 45%, #5b1b08 100%);
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-overlay {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0.9;
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0 3.5rem;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    text-shadow: 0 3px 15px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 0.96rem;
    max-width: 34rem;
    margin-bottom: 1.4rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image-card {
    background: rgba(255, 249, 238, 0.85);
    border-radius: 32px;
    padding: 0.6rem;
    box-shadow:
        0 18px 45px rgba(123, 39, 12, 0.45),
        0 0 0 2px rgba(255, 185, 102, 0.5);
}

.hero-image-card img {
    display: block;
    width: 100%;
    border-radius: 26px;
}

/* Sections */

.section {
    padding: 3rem 0;
}

.section-soft {
    background: #fff0dd;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #4b180b;
}

.section-intro {
    max-width: 38rem;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.98rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.section p {
    margin-bottom: 0.75rem;
    font-size: 0.96rem;
}

/* Cards & lists */

.highlight-card {
    background: linear-gradient(135deg, #ff9c42, #ffda7a);
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    color: #3b1307;
    box-shadow: 0 18px 40px rgba(189, 97, 20, 0.4);
}

.highlight-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.check-list {
    list-style: none;
    margin-top: 0.6rem;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.35rem;
    font-size: 0.94rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4b180b;
    font-weight: 700;
}

/* Features grid */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    background: #fff9f0;
    border-radius: 20px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 10px 24px rgba(131, 53, 16, 0.18);
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

/* Story */

.story-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(151, 65, 19, 0.45);
    background: #ffedd3;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info grid */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-box {
    background: #fffdf7;
    border-radius: 20px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 12px 28px rgba(92, 37, 10, 0.18);
}

.info-box h3 {
    margin-bottom: 0.4rem;
    font-size: 1.02rem;
}

.info-box a {
    color: #c24c12;
    text-decoration: none;
    font-weight: 600;
}

/* Contact */

.section-map {
    background: radial-gradient(circle at top, #ffe4b4 0, #ffd08a 35%, #ffb55a 60%, #ff9b42 80%);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.contact-card {
    background: rgba(59, 19, 7, 0.97);
    color: #ffe9c7;
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(59, 19, 7, 0.7);
}

.contact-card a {
    color: #ffd892;
    text-decoration: none;
}

.contact-card .small {
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

/* Footer */

.footer {
    background: #3b1307;
    color: #ffe9c7;
    padding: 1.2rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
}

.footer-tagline {
    opacity: 0.85;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-inner,
    .grid-2,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-top: 2.2rem;
    }

    .hero-image-card {
        order: -1;
        max-width: 380px;
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-contact {
        align-self: stretch;
        justify-content: space-between;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #5b1b08;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
    }

    .nav-links.open {
        max-height: 260px;
    }

    .nav-links li {
        padding: 0.45rem 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

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

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

@media (max-width: 520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
