:root {
    --forest: #1a3a2f;
    --forest-light: #2d5a47;
    --gold: #c9a227;
    --gold-light: #e4c65a;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --mist: #e8e4dc;
    --stone: #8a8578;
    --text: #1a1a1a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--cream);
    color: var(--forest);
    line-height: 1.6;
}

.font-display,
.logo--display,
.section-title,
.home-hero__title {
    font-family: "Fraunces", Georgia, serif;
}

a {
    color: var(--forest);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    color: var(--cream);
    background: linear-gradient(to bottom, rgba(26, 58, 47, 0.85), transparent);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-mobile-open {
    background: rgba(26, 58, 47, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

body:not(.page-home) .site-header {
    position: sticky;
    background: var(--forest);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.header-inner--wide {
    max-width: 80rem;
}

.logo {
    color: var(--cream);
    font-weight: 600;
    font-size: 1.35rem;
    text-decoration: none;
}

.logo--display {
    font-size: 1.25rem;
}

.nav-desktop {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }
}

.nav-desktop__btn {
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.9);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
}

.nav-desktop__item.is-active .nav-desktop__btn,
.nav-desktop__btn:hover {
    background: rgba(245, 240, 232, 0.12);
    color: var(--cream);
}

.site-header .nav-desktop .nav-desktop__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    background-color: var(--gold);
    color: var(--forest) !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.site-header .nav-desktop .nav-desktop__cta:hover {
    background-color: var(--gold-light);
    color: var(--forest) !important;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-search {
    display: none;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.8);
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 640px) {
    .header-search {
        display: block;
    }
}

.lang-switch--pill {
    display: flex;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 999px;
    padding: 2px;
    font-size: 0.7rem;
    font-weight: 700;
}

.lang-switch--pill a {
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.lang-switch--pill a.active {
    background: var(--gold);
    color: var(--forest);
}

.nav-mobile-toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--cream);
    padding: 0.35rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .nav-mobile-toggle {
        display: none;
    }
}

.mega-panel {
    display: none;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    background: rgba(26, 58, 47, 0.98);
}

.mega-panel:not([hidden]) {
    display: block;
}

@media (max-width: 1023px) {
    .mega-panel {
        display: none !important;
    }
}

.mega-panel__inner {
    padding: 2rem 1.5rem;
}

.mega-panel__title {
    margin: 0 0 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.mega-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-panel a {
    color: rgba(245, 240, 232, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
}

.mega-panel a:hover {
    color: var(--gold-light);
}

.nav-mobile {
    position: fixed;
    inset: 60px 0 0;
    background: var(--forest);
    overflow-y: auto;
    z-index: 190;
}

.nav-mobile:not([hidden]) {
    display: block;
}

.nav-mobile__inner {
    padding: 1.5rem;
}

.nav-mobile__title {
    margin: 0 0 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-mobile ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.nav-mobile a {
    color: rgba(245, 240, 232, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 2.2;
}

.nav-mobile__extra {
    display: block;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
}

.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 60vh;
}

.site-main--home {
    max-width: none;
    padding: 0;
    min-height: auto;
}

.site-footer {
    background: var(--forest);
    color: var(--cream);
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
}

.hero {
    background: linear-gradient(135deg, var(--forest) 0%, #2d5a47 100%);
    color: var(--cream);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
}

.hero .tagline {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--forest);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
    margin-left: 0.5rem;
}

.btn-pill {
    border-radius: 999px;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.4);
    text-decoration: none;
}

.btn-outline-cream:hover {
    background: rgba(245, 240, 232, 0.1);
}

.home-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 58, 47, 0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1rem 1.25rem;
}

.page-hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    color: var(--forest);
    margin-top: 0;
}

.subtitle {
    color: #555;
    font-size: 1.15rem;
}

.prose p {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--forest);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 480px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    font: inherit;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.admin-bar {
    background: #333;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.admin-bar a {
    color: var(--gold);
    margin-right: 1rem;
}

table.data {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

table.data th,
table.data td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
}

table.data th {
    background: var(--forest);
    color: var(--cream);
}

.admin-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 720px;
}

.admin-form textarea {
    min-height: 120px;
    width: 100%;
}

.note-list article {
    background: #fff;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.destinations-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.destinations-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.destinations-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, var(--forest) 0%, rgba(26, 58, 47, 0.75) 55%, transparent 100%);
    color: var(--cream);
}

.destinations-hero__overlay h1 {
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
    color: var(--cream);
}

.destinations-hero__overlay .subtitle {
    margin: 0;
    max-width: 42rem;
    color: rgba(245, 240, 230, 0.92);
    font-size: 1.1rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 58, 47, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 58, 47, 0.18);
}

.destination-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.destination-card__body h2 {
    margin: 0 0 0.5rem;
    color: var(--forest);
    font-size: 1.35rem;
}

.destination-card__body p {
    margin: 0;
    color: #444;
    line-height: 1.65;
}

/* —— Home page (from React localhost:5173) —— */

.home-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.home-hero__slides {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
}

.home-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--forest) 0%, rgba(26, 58, 47, 0.55) 45%, rgba(26, 58, 47, 0.25) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1.5rem 6rem;
}

.home-hero__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.home-hero__title {
    margin: 0;
    max-width: 48rem;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
}

.home-hero__subtitle {
    margin: 1.5rem 0 0;
    max-width: 36rem;
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.85);
}

.home-hero__actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-hero__dots {
    margin-top: 3rem;
    display: flex;
    gap: 0.5rem;
}

.home-hero__dot {
    height: 4px;
    width: 1rem;
    border: none;
    border-radius: 999px;
    background: rgba(245, 240, 232, 0.35);
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.home-hero__dot.is-active {
    width: 2.5rem;
    background: var(--gold);
}

.quick-access {
    position: relative;
    z-index: 10;
    margin-top: -4rem;
    padding: 0 1rem 2rem;
}

.quick-access__inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: var(--cream);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 40px rgba(26, 58, 47, 0.15);
}

@media (min-width: 640px) {
    .quick-access__inner {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.25rem 1.5rem;
    }
}

.quick-access__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: var(--forest);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.quick-access__item:hover {
    background: var(--mist);
}

.quick-access__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
}

.quick-access__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.home-section {
    padding: 4rem 0;
}

.home-section--mist {
    background: rgba(232, 228, 220, 0.5);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--forest);
}

.section-eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-desc {
    margin: 1rem 0 2rem;
    max-width: 40rem;
    color: var(--stone);
}

.section-link {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-light);
    text-decoration: none;
}

.section-link:hover {
    color: var(--gold);
}

.featured-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.featured-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(26, 58, 47, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 58, 47, 0.15);
}

.featured-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-card__image img {
    transform: scale(1.05);
}

.featured-card__tag {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    background: rgba(26, 58, 47, 0.9);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.featured-card__body {
    padding: 1.25rem;
}

.featured-card__body h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
    color: var(--forest);
}

.featured-card__body p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.5;
}

.cities-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.city-tile {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
}

.city-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-tile:hover img {
    transform: scale(1.05);
}

.city-tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(26, 58, 47, 0.95) 0%, rgba(26, 58, 47, 0.35) 55%, transparent 100%);
}

.city-tile__region {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.city-tile h3 {
    margin: 0.25rem 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.35rem;
    color: var(--cream);
}

.city-tile__excerpt {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-tile:hover .city-tile__excerpt {
    opacity: 1;
}

.why-kosovo {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .why-kosovo {
        grid-template-columns: 1fr 1fr;
    }
}

.why-kosovo__list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.why-kosovo__list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--forest);
}

.why-kosovo__list li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.55rem;
    border-radius: 50%;
    background: var(--gold);
}

.why-kosovo__image {
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 58, 47, 0.2);
}

.why-kosovo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .inspiration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inspiration-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(26, 58, 47, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inspiration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 58, 47, 0.15);
}

.inspiration-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.inspiration-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspiration-card:hover .inspiration-card__image img {
    transform: scale(1.05);
}

.inspiration-card__body {
    padding: 1.25rem;
}

.inspiration-card__body h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
}

.inspiration-card__body p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--stone);
}

.newsletter-block {
    background: var(--forest);
    color: var(--cream);
    padding: 5rem 0;
}

.newsletter-block__inner {
    text-align: center;
    max-width: 36rem;
}

.newsletter-block h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
    color: var(--cream);
}

.newsletter-block > .home-container > p {
    margin: 1rem 0 0;
    color: rgba(245, 240, 232, 0.7);
}

.newsletter-block__form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 540px) {
    .newsletter-block__form {
        flex-direction: row;
        justify-content: center;
    }
}

.newsletter-block__form input {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    background: rgba(245, 240, 232, 0.08);
    color: var(--cream);
    font: inherit;
}

.newsletter-block__form input::placeholder {
    color: rgba(245, 240, 232, 0.45);
}

.newsletter-block__success {
    margin-top: 1.5rem;
    color: var(--gold-light);
    font-weight: 600;
}

.newsletter-block__error {
    margin-top: 0.75rem;
    color: #f8d7da;
    font-size: 0.9rem;
}

.page-home .site-footer {
    margin-top: 0;
    border-top: 1px solid var(--mist);
    background: var(--cream);
    color: var(--forest);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-dark);
}

.admin-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--forest-light);
    font-size: 0.95rem;
}

.admin-nav a.active {
    color: var(--gold);
}

.admin-nav__site {
    margin-left: auto;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-published {
    background: #d4edda;
    color: #155724;
}

.badge-draft {
    background: #fff3cd;
    color: #856404;
}

.note-list__cover {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: block;
}

.admin-images-section {
    margin-top: 2.5rem;
}

.admin-images-section h2 {
    color: var(--forest);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.admin-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.admin-image-card {
    border: 1px solid var(--mist);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.admin-image-card__preview {
    aspect-ratio: 16 / 10;
    background: var(--cream-dark);
}

.admin-image-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-image-card__body {
    padding: 1rem;
}

.admin-image-card__body h3 {
    font-size: 0.95rem;
    color: var(--forest);
    margin: 0 0 0.35rem;
}

.admin-image-card__meta {
    font-size: 0.8rem;
    color: var(--stone);
    margin: 0 0 0.75rem;
}

.admin-image-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.admin-image-form__file input {
    max-width: 100%;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--forest-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--gold);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-card {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--mist);
    border-radius: 12px;
    background: var(--cream);
}

.contact-card__label {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--stone);
}

.contact-card__value {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
}

.contact-card__link {
    text-decoration: none;
}

.contact-card__link:hover {
    color: var(--gold);
}
