/* ============================================================
   Lupi-Vet Kft. – egyoldalas weboldal
   Letisztult, modern stílus · kék/zöld akcentus
   ============================================================ */

:root {
    --primary: #0f8a8d;
    --primary-dark: #0b6b6e;
    --primary-soft: #e6f3f3;
    --green: #2f9e6e;
    --navy: #12303a;
    --navy-soft: #1b3f4b;
    --ink: #22333b;
    --muted: #5c6b73;
    --bg: #ffffff;
    --bg-soft: #f4f8f9;
    --border: #e3ebed;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 12px 32px rgba(18, 48, 58, 0.10);
    --shadow-sm: 0 4px 14px rgba(18, 48, 58, 0.08);
    --font-sans: "Manrope", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 1.02rem;
}

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

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 24px;
}

section {
    scroll-margin-top: 84px;
}

/* ---------- Gombok ---------- */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-light:hover {
    background: var(--primary-soft);
    color: var(--navy);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
}

/* ---------- Fejléc / navigáció ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.brand-name small {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.85rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a:not(.btn) {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active {
    color: var(--primary-dark);
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(11, 43, 51, 0.92) 0%, rgba(11, 107, 110, 0.78) 55%, rgba(15, 138, 141, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 96px 120px;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    color: #bde9e9;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Szekciók ---------- */
.section {
    padding-block: 96px;
}

.section-soft {
    background: var(--bg-soft);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 56px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.section-head .lead {
    font-size: 1.08rem;
    color: var(--muted);
}

.eyebrow {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.eyebrow-small {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.subsection-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 44px 0 20px;
}

.subsection-title:first-child {
    margin-top: 0;
}

.prose p {
    margin-bottom: 18px;
    max-width: 780px;
}

.prose .mb-4 {
    margin-bottom: 4px;
}

/* ---------- Szekció banner ---------- */
.section-banner {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.section-banner img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    object-position: center;
}

/* ---------- Pillárok ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pillar h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.pillar p {
    color: var(--muted);
    font-size: 0.97rem;
    margin: 0;
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.pillar-icon svg {
    width: 26px;
    height: 26px;
}

/* ---------- Galéria ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}

.gallery-item {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item::after {
    content: "＋";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    background: rgba(15, 138, 141, 0);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
    background: rgba(15, 138, 141, 0.45);
}

/* ---------- Ellenőrző lista ---------- */
.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 26px;
    max-width: 860px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-soft);
    border: 2px solid var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b6b6e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
}

.checklist-tight {
    grid-template-columns: 1fr;
    gap: 8px;
}

/* ---------- Callout ---------- */
.callout {
    background: linear-gradient(120deg, var(--primary-soft), #f2fbfa);
    border: 1px solid #cfe8e7;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 30px 34px;
    margin-top: 44px;
}

.callout h3,
.callout h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.callout p {
    color: var(--ink);
    margin-bottom: 12px;
    max-width: 820px;
}

.callout-note {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0;
}

.callout-alt {
    background: var(--navy);
    border: none;
    border-left: 4px solid var(--green);
}

.callout-alt h3 {
    color: #fff;
}

.callout-alt p {
    color: rgba(255, 255, 255, 0.9);
}

.callout-alt a {
    color: #9fd8b8;
}

/* ---------- Kétoszlopos kártyák ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 44px;
}

.two-col .card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.two-col .card p {
    color: var(--ink);
    margin-bottom: 14px;
}

/* ---------- Számozott lista (7 alapelv) ---------- */
.numbered-list {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    max-width: 900px;
    margin-bottom: 40px;
}

.numbered-list li {
    counter-increment: step;
    position: relative;
    padding: 14px 16px 14px 56px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.96rem;
}

.numbered-list li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
}

/* ---------- Accordion ---------- */
.accordion {
    max-width: 860px;
    margin-inline: auto;
}

.accordion details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion > details > summary,
.accordion-body details > summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 52px 20px 24px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    position: relative;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.accordion details summary::-webkit-details-marker,
.accordion-body details summary::-webkit-details-marker {
    display: none;
}

.accordion > details > summary::after,
.accordion-body details > summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 2.5px solid var(--primary);
    border-bottom: 2.5px solid var(--primary);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease;
}

.accordion details[open] > summary {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.accordion details[open] > summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.accordion-body {
    padding: 4px 24px 24px;
    border-top: 1px solid var(--border);
}

.accordion-body p {
    margin-bottom: 14px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.accordion-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.accordion-body h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    margin: 22px 0 10px;
    font-size: 1.15rem;
}

.accordion-body details.nested {
    border: 1px dashed var(--border);
    margin-top: 10px;
    border-radius: var(--radius-sm);
}

.accordion-body details.nested summary {
    font-weight: 600;
    font-size: 0.98rem;
}

/* ---------- Dokumentum listák ---------- */
.doc-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.doc-list-column {
    grid-template-columns: 1fr;
    max-width: 560px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.doc-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.doc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.doc-icon svg {
    width: 22px;
    height: 22px;
}

.doc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.doc-text strong {
    color: var(--navy);
    font-size: 0.98rem;
}

.doc-text small {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ---------- Partnerek ---------- */
.partners {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 28px;
}

.partners li {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.partners li:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* ---------- Kapcsolat ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: var(--ink);
}

a.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
    color: var(--ink);
}

.contact-card-static {
    cursor: default;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card strong {
    color: var(--navy);
    font-size: 1.02rem;
}

.contact-card span {
    line-height: 1.5;
    font-size: 0.95rem;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 360px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
}

.legal-links {
    margin-top: 48px;
    text-align: center;
}

.legal-links .subsection-title {
    margin-top: 0;
}

.legal-links a {
    display: inline-block;
    margin: 6px 10px;
    padding: 10px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.legal-links a:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

/* ---------- Lábléc ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding-block: 44px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.footer-brand img {
    border-radius: 8px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.92rem;
}

.footer-nav a:hover {
    color: #bde9e9;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Vissza a tetejére ---------- */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 26, 31, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    padding: 32px;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: min(1000px, 92vw);
    max-height: 86vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 76vh;
    margin-inline: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.lightbox-content figcaption {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 14px;
    font-size: 0.95rem;
}

.lightbox button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.06);
}

.lightbox svg {
    width: 20px;
    height: 20px;
}

.lightbox-close {
    top: 22px;
    right: 22px;
}

.lightbox-prev {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.06);
}

.lightbox-next {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.06);
}

/* ---------- Reveal animáció ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-media {
        animation: none;
    }
}

/* ---------- Reszponzivitás ---------- */
@media (max-width: 960px) {
    .pillars {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

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

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 20px;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav .btn {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: 82vh;
    }

    .hero-content {
        padding-block: 72px 96px;
    }

    .section {
        padding-block: 64px;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .checklist,
    .numbered-list {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .doc-list {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
