:root {
    --bg-900: #111010;
    --bg-800: #1c1715;
    --bg-100: #fff7ee;
    --text-100: #ffffff;
    --text-900: #1f1b19;
    --accent: #DAA520;
    --accent-deep: #B8860B;
    --accent-soft: #FFED4E;
    --line: #ebd8c8;
    --card-shadow: 0 16px 44px rgba(34, 24, 19, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(circle at 10% 0%, #3e1d10 0%, transparent 28%),
        radial-gradient(circle at 92% 15%, #65311f 0%, transparent 24%),
        linear-gradient(180deg, #120f0e 0%, #191210 22%, var(--bg-100) 22.1%, var(--bg-100) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section-shell {
    padding: 5.25rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(17, 16, 16, 0.98) 0%, rgba(28, 23, 21, 0.95) 100%);
    border-bottom: 2px solid rgba(218, 165, 32, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(218, 165, 32, 0.2);
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.8rem;
    min-height: 70px;
    padding: 0.6rem 1.8rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text-100);
    letter-spacing: 0.03em;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.made-in-europe {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-100);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.6rem 0.3rem;
    display: flex;
    align-items: center;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--accent);
}

.nav-menu a:hover::before,
.nav-menu a:focus-visible::before {
    width: 100%;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.hero {
    color: var(--text-100);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -28deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 22px
    );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.4rem;
    align-items: center;
}

.eyebrow {
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy p {
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
}

.cta-btn,
.submit-btn {
    border: 0;
    border-radius: 0.65rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    color: #1f1b19;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.cta-btn:hover,
.cta-btn:focus-visible {
    background: linear-gradient(135deg, #e0c070 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.3);
}

.text-link {
    color: var(--text-100);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    gap: 0.85rem;
}

.hero-stats article {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, rgba(218, 165, 32, 0.04) 100%);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 1.2rem;
    padding: 1.5rem 1.5rem;
    animation: floatIn 0.55s ease both;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stats article:hover {
    border-color: rgba(218, 165, 32, 0.7);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.12) 0%, rgba(218, 165, 32, 0.06) 100%);
    transform: translateY(-4px);
}

.hero-stats h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about,
.contact {
    background: var(--bg-100);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.about::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.about h2,
.products h2,
.contact h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 2.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #DAA520;
    -webkit-text-stroke: 1.2px #8B5C00;
    paint-order: stroke fill;
    position: relative;
    display: inline-block;
}

.about h2::after,
.products h2::after,
.contact h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #E6C200);
    border-radius: 2px;
}

.contact {
    background: var(--bg-100);
}

.contact .container {
    text-align: center;
}

.feature-row {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.feature-row article {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.12) 0%, rgba(218, 165, 32, 0.06) 100%);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-row article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.5), transparent);
}

.feature-row article:hover {
    border-color: rgba(218, 165, 32, 0.8);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.18) 0%, rgba(218, 165, 32, 0.1) 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(218, 165, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-row article h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3b1c10;
    position: relative;
    z-index: 2;
}

.feature-row article h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #e0c070);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.feature-row article p {
    color: #5b5b5b;
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    animation: floatIcon 0.6s ease-out both;
    position: relative;
    z-index: 2;
}

@keyframes floatIcon {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.products {
    background: linear-gradient(180deg, #fffbf7 0%, #fff4eb 100%);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.section-head p {
    color: #6b6b6b;
    font-size: 1.05rem;
    max-width: 400px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.filter-btn {
    border: 2px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0.6rem 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--accent);
    background: rgba(218, 165, 32, 0.1);
}

.filter-btn.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    color: #1f1b19;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 1.2rem;
    padding: 1.1rem;
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.1);
    display: grid;
    gap: 0.75rem;
    transform: translateY(12px);
    opacity: 0;
    animation: riseIn 0.45s ease forwards;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 48px rgba(218, 165, 32, 0.2);
    transform: translateY(-6px);
    border-color: rgba(218, 165, 32, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #fffdf9 100%);
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0.8rem;
    border: 1px solid #f0e0d3;
}

.product-card h3 {
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1f1b19;
}

.product-card p {
    font-size: 0.95rem;
    color: #5b5b5b;
    line-height: 1.5;
    font-weight: 500;
}

.price {
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

#contact-form {
    margin-top: 1.3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    display: grid;
    gap: 0.85rem;
}

#contact-form input,
#contact-form textarea {
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(218, 165, 32, 0.05);
    color: #1f1b19;
    transition: all 0.3s ease;
}

#contact-form input:hover,
#contact-form textarea:hover {
    border-color: rgba(218, 165, 32, 0.5);
    background: rgba(218, 165, 32, 0.08);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(218, 165, 32, 0.1);
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.25);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #a8a8a8;
}

.submit-btn {
    width: fit-content;
    padding: 1rem 1.8rem;
    color: #1f1b19;
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
    background: linear-gradient(135deg, #e0c070 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.3);
}

.form-feedback {
    min-height: 1.3rem;
    color: #2f6e2f;
    font-size: 0.94rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.about > .container > p,
.about > .container > h2 + p {
    color: #5b5b5b;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 500;
}

.verify {
    background: linear-gradient(135deg, rgba(17, 16, 16, 0.95) 0%, rgba(28, 23, 21, 0.95) 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.3);
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

.verify h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 0.75rem;
    text-align: left;
}

.verify > .container > p {
    color: #888888;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    text-align: left;
}

.verify-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 900px;
}

.verify-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.5rem 0;
}

.verify-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 1.5rem;
    text-align: left;
    -webkit-text-stroke: 1.2px #8B5C00;
    paint-order: stroke fill;
    position: relative;
    display: inline-block;
}

.verify-info h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #E6C200);
    border-radius: 2px;
}

.verify-info p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.verify-form-wrapper {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, rgba(218, 165, 32, 0.04) 100%);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 1.5rem;
    padding: 2.8rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.verify-form-wrapper .form-group {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.verify-form-wrapper .form-group label {
    font-weight: 700;
    color: var(--text-100);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verify-form-wrapper .form-group input {
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 0.75rem;
    padding: 1rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(218, 165, 32, 0.05);
    color: var(--text-100);
    transition: all 0.3s ease;
}

.verify-form-wrapper .form-group input:hover {
    border-color: rgba(218, 165, 32, 0.6);
    background: rgba(218, 165, 32, 0.08);
}

.verify-form-wrapper .form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(218, 165, 32, 0.12);
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.25);
}

.verify-form-wrapper .form-group input::placeholder {
    color: #888888;
}

.verify-form-wrapper .verify-btn {
    border: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, #e0c070 100%);
    color: #1f1b19;
    padding: 1rem 1.5rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.verify-form-wrapper .verify-btn:hover,
.verify-form-wrapper .verify-btn:focus-visible {
    background: linear-gradient(135deg, #e0c070 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.3);
}

.verify-form-wrapper .verify-btn:active {
    transform: translateY(-1px);
}

.verify-form-wrapper .verification-result {
    min-height: 1.5rem;
    border-radius: 0.75rem;
    padding: 1rem;
    font-weight: 600;
    display: none;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-form-wrapper .verification-result.success {
    display: block;
    background: rgba(47, 110, 47, 0.2);
    color: #4ade80;
    border: 1px solid rgba(47, 110, 47, 0.4);
}

.verify-form-wrapper .verification-result.error {
    display: block;
    background: rgba(155, 47, 26, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(155, 47, 26, 0.4);
}

.verify-graphic {
    display: none;
}

.verify-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 1rem;
    text-align: left;
}

.format-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.format-list li {
    background: rgba(255, 103, 32, 0.1);
    border-left: 3px solid var(--accent);
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--text-100);
    font-size: 0.95rem;
    line-height: 1.6;
}

.format-list strong {
    color: var(--accent);
}

@media (max-width: 768px) {
    .made-in-europe {
        display: none;
    }

    .verify-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .verify-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .verify-info p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .verify-form-wrapper {
        padding: 2rem;
        border-radius: 1.2rem;
    }

    .verify h2 {
        font-size: 1.6rem;
    }

    .verify > .container > p {
        font-size: 1rem;
    }

    .verify-form-wrapper .form-group input {
        padding: 0.9rem 1rem;
        font-size: 16px;
    }

    .verify-form-wrapper .verify-btn {
        padding: 0.9rem 1.2rem;
    }
}

footer {
    background: var(--bg-900);
    color: #ffffff;
    text-align: center;
    padding: 1.8rem 0;
}

@keyframes riseIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatIn {
    from {
        transform: translateY(14px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .feature-row,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-row {
        gap: 1.2rem;
    }

    .feature-row article {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 760px) {
    .hero-grid,
    .feature-row,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .feature-row article {
        padding: 2rem 1.2rem;
    }

    .feature-icon {
        font-size: 3.2rem;
        margin-bottom: 1rem;
    }

    .feature-row article h3 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .about::before {
        height: 50px;
    }

    .about::after {
        width: 200px;
        height: 200px;
    }

    .navbar {
        grid-template-columns: auto 1fr auto;
        padding: 0.6rem 1rem;
        gap: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(17, 16, 16, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.24s ease;
    }

    .nav-menu.open {
        transform: scaleY(1);
    }

    .section-shell {
        padding: 4.2rem 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .section-head {
        flex-direction: column;
        align-items: start;
    }
}

/* ============= FOOTER STYLES ============= */
.footer {
    background: linear-gradient(135deg, #111010 0%, #1c1715 50%, #2a1f1a 100%);
    color: var(--text-100);
    padding: 3.5rem 0 1.5rem;
    border-top: 2px solid rgba(218, 165, 32, 0.3);
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--text-900);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(218, 165, 32, 0.3);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-list strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 6px;
    color: var(--text-100);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.2);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    border: none;
    border-radius: 6px;
    color: var(--text-900);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.footer-bottom {
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1rem;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}
