@font-face {
    font-family: "BPG Nino Mtavruli";
    src: url("BPGNinoMtavruli.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BPG Nino Mtavruli";
    src: url("BPGNinoMtavruli-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #231f20;
    --muted: #5f5f5f;
    --paper: #f5f5f5;
    --surface: #e8e8e8;
    --line: #dedede;
    --accent: #8f1d24;
    --accent-dark: #661016;
    --teal: #0f6f68;
    --teal-soft: #e7f3f1;
    --shadow: 0 18px 45px rgba(34, 24, 18, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "BPG Nino Mtavruli", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

p {
    margin: 0 0 1rem;
}

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

h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

h3 {
    font-size: 1.2rem;
}

.skip-link {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    transform: translateY(-150%);
    background: var(--ink);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: 90%;
    max-width: 1120px;
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 12px 0;
}

.brand img {
    width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    color: var(--muted);
    text-decoration: none;
    font-size: 1rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--ink);
}

.hero {
    padding: clamp(2rem, 5vw, 4rem) 0 3rem;
    background:
        linear-gradient(120deg, rgba(245, 245, 245, 0.94), rgba(232, 232, 232, 0.78)),
        var(--surface);
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--accent);
    font-weight: 700;
}

.lead {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-figure {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.hero-figure img {
    width: 100%;
    object-fit: contain;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-dark);
}

.button-secondary {
    background: #fff;
    color: var(--accent);
    border-color: var(--line);
}

.section {
    padding: 3rem 0;
}

.section-alt {
    background: #fff;
}

.answer-summary {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(34, 24, 18, 0.05);
}

.answer-summary p {
    color: var(--ink);
    font-size: 1.05rem;
}

.fact-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
}

.fact-list div {
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.fact-list dt {
    font-weight: 700;
}

.fact-list dd {
    margin: 0.25rem 0 0;
    color: var(--muted);
}

.content-grid {
    display: grid;
    gap: 1.2rem;
}

.panel,
.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(34, 24, 18, 0.05);
}

.panel {
    padding: 1.25rem;
}

.card {
    padding: 1rem;
}

.panel p,
.card p,
.section-intro p,
li {
    color: var(--muted);
}

.section-intro {
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.toc {
    margin-top: 1.25rem;
    padding: 1rem;
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    background: var(--teal-soft);
}

.toc ul,
.check-list {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.comparison {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--ink);
    color: #fff;
}

.callout {
    border-left: 4px solid var(--accent);
    background: #fff;
}

.image-row {
    display: grid;
    gap: 1rem;
}

.image-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(34, 24, 18, 0.05);
}

.image-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
}

.image-card figcaption {
    padding: 0.85rem 1rem 1rem;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.text-link {
    color: var(--accent);
    font-weight: 700;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 34px 0;
}

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

.footer-inner a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 780px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    }

    .fact-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .nav-list {
        gap: 0.85rem;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}
