:root {
    --primary: #989398;
    --bg: #e6e9ef;
    --clay-bg: #e6e9ef;
    --clay-shadow-out: 10px 10px 20px #bcc1ca;
    --clay-shadow-in: inset 8px 8px 14px #c1c6ce;
    --text: #4a4a4a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.page-bg {
    background-color: var(--bg);
}

body.page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--page-bg-image);
}

body.page-bg::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(230, 233, 239, 0.78);
}

body.page-bg--7 { --page-bg-image: url('../image/picture7.jpg'); }
body.page-bg--8 { --page-bg-image: url('../image/picture8.jpg'); }
body.page-bg--9 { --page-bg-image: url('../image/picture9.jpg'); }
body.page-bg--10 { --page-bg-image: url('../image/picture10.jpg'); }
body.page-bg--11 { --page-bg-image: url('../image/picture11.jpg'); }
body.page-bg--12 { --page-bg-image: url('../image/picture12.jpg'); }
body.page-bg--13 { --page-bg-image: url('../image/picture13.jpg'); }
body.page-bg--14 { --page-bg-image: url('../image/picture14.jpg'); }
body.page-bg--15 { --page-bg-image: url('../image/picture15.jpg'); }
body.page-bg--16 { --page-bg-image: url('../image/picture16.jpg'); }
body.page-bg--17 { --page-bg-image: url('../image/picture17.jpg'); }

/* Claymorphism Blocks */
.clay-card {
    background: var(--clay-bg);
    border-radius: 35px;
    box-shadow: var(--clay-shadow-out);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-5px);
}

.clay-btn {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--clay-shadow-out);
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.clay-btn:active {
    box-shadow: var(--clay-shadow-in);
}

/* Header & Nav */
header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(230, 233, 239, 0.8);
    backdrop-filter: blur(10px);
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
}

/* Split Hero */
.hero {
    display: flex;
    min-height: 90vh;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.hero-img {
    flex: 1 1 auto;
    background: url('../image/picture.jpg') center/cover no-repeat;
    min-height: 320px;
}

.hero-media-note {
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(18, 20, 26, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media-note a {
    color: #b8c9ff;
}

.content-media-note {
    font-size: 0.78rem;
    line-height: 1.4;
    opacity: 0.88;
    max-width: 520px;
    margin: 8px auto 0;
    padding: 0 12px;
}

.hero-content {
    flex: 1 1 50%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(230, 233, 239, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* Forms */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: none;
    background: var(--clay-bg);
    box-shadow: var(--clay-shadow-in);
}

/* Sections */
section {
    padding: 80px 10%;
}

section + section {
    margin-top: 28px;
}

h1, h2, h3 {
    margin-bottom: 24px;
}

p + p,
ul + p,
p + ul,
.clay-card > * + * {
    margin-top: 24px;
}

.contrast-section {
    background: #98939840;
  
}

.contrast-section .clay-card {
    background: rgba(20, 22, 28, 0.72);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    backdrop-filter: blur(28px) saturate(140%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contrast-section .clay-card h1,
.contrast-section .clay-card h2,
.contrast-section .clay-card h3 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Footer */
footer {
    padding: 40px 10%;
    background: var(--bg);
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    margin: 20px 0;
    opacity: 0.8;
}

.site-footnote {
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0 auto 18px;
    max-width: 40rem;
    opacity: 0.88;
}

.compliance-footnote {
    font-size: 0.74rem;
    line-height: 1.45;
    margin: 0 auto 18px;
    max-width: 42rem;
    opacity: 0.85;
}

.compliance-footnote a {
    text-decoration: underline;
}


/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin-right: auto;
    z-index: 2000;
    display: none;
    max-height: min(85vh, 520px);
    overflow-y: auto;
    padding: 20px 22px;
    box-sizing: border-box;
}

.cookie-banner__title {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.cookie-banner__intro {
    font-size: 0.9rem;
    margin: 0 0 14px;
    line-height: 1.45;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.clay-btn--secondary {
    background: #c8c8c8;
    color: #222;
}

.cookie-banner__link {
    background: none;
    border: none;
    padding: 6px 4px;
    font: inherit;
    color: var(--accent, #5c6bc0);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-banner__manage {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-banner__table-wrap {
    overflow-x: auto;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.cookie-inventory {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    line-height: 1.35;
}

.cookie-inventory th,
.cookie-inventory td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 8px;
    text-align: left;
    vertical-align: top;
}

.cookie-inventory th {
    background: rgba(0, 0, 0, 0.04);
    font-weight: 600;
}

.cookie-inventory code {
    font-size: 0.85em;
    word-break: break-all;
}

.cookie-banner__note {
    font-size: 0.78rem;
    opacity: 0.85;
    margin: 0 0 12px;
    line-height: 1.4;
}

.cookie-banner__fieldset {
    border: none;
    margin: 0 0 14px;
    padding: 0;
}

.cookie-banner__legend {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0;
}

.cookie-banner__choice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    cursor: pointer;
}

.cookie-banner__choice input {
    margin-top: 3px;
    flex-shrink: 0;
}

.cookie-policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-visual,
    .hero-img,
    .hero-content {
        flex: 1 1 100%;
    }

    .hero-visual {
        min-height: 280px;
    }

    header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    header .site-nav {
        display: none;
        width: 100%;
        margin-top: 10px;
        padding: 12px;
        border-radius: 20px;
        background: var(--clay-bg);
        box-shadow: var(--clay-shadow-in);
    }

    header .site-nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    header .site-nav a {
        margin: 0;
        padding: 8px 0;
     }

    footer nav a {
        margin: 0 8px;
    }
}