html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: #f3eee6;
    background:
        linear-gradient(135deg, rgba(10, 14, 22, 0.92), rgba(24, 29, 39, 0.82)),
        url('../Images/bg.jpg') center center / cover fixed no-repeat;
}

a {
    color: #f0b35f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background: rgba(16, 21, 31, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand__logo {
    display: block;
    width: 148px;
    height: auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer__logo {
    display: block;
    width: 110px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 14px;
    overflow: hidden;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #f8f4ee;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.18s ease, background 0.18s ease;
}

.site-nav a:hover {
    text-decoration: none;
    background: rgba(240, 179, 95, 0.2);
    transform: translateY(-1px);
}

.site-main {
    display: grid;
    gap: 24px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.hero__copy,
.hero__card,
.content-card,
.panel {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(39, 44, 56, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero__copy {
    padding: 42px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #f7d7a8;
    background: rgba(240, 179, 95, 0.16);
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.lead {
    max-width: 58ch;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(245, 239, 230, 0.9);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    text-decoration: none;
}

.button--primary {
    color: #10131a;
    background: linear-gradient(135deg, #ffd28b, #f0b35f);
}

.button--secondary {
    color: #f8f4ee;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.hero__card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero__logo {
    padding: 18px;
    border-radius: 20px;
    background: rgba(244, 241, 236, 0.95);
    text-align: center;
}

.hero__logo img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.facts,
.check-list {
    margin: 0;
    padding-left: 18px;
    line-height: 1.8;
}

.address-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
    line-height: 1.7;
}

.address-table th,
.address-table td {
    padding: 8px 0;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.address-table th {
    width: 42%;
    text-align: left;
    color: #f0d2a0;
    font-weight: 700;
}

.address-table td {
    color: rgba(243, 238, 230, 0.96);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.panel {
    padding: 24px;
}

.panel h2,
.content-card h2 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.content-card {
    padding: 36px 40px;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 239, 230, 0.82);
}

.cookie-banner {
    position: sticky;
    bottom: 16px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(18, 22, 31, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__text {
    color: rgba(245, 239, 230, 0.9);
    line-height: 1.6;
}

.content-card p,
.content-card li,
.panel p,
.site-footer,
.address-table td {
    color: rgba(243, 238, 230, 0.92);
}

.content-card {
    border-color: rgba(255, 255, 255, 0.09);
}

@media (max-width: 900px) {
    .hero,
    .panel-grid,
    .two-col,
    .site-footer,
    .site-header,
    .cookie-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-shell {
        width: min(100% - 16px, 1180px);
        margin: 8px auto;
        padding: 16px;
        border-radius: 22px;
    }

    .hero__copy,
    .content-card {
        padding: 24px;
    }
}
