:root {
    --color-bg: #0f1716;
    --color-surface: #17211f;
    --color-surface-soft: #13201d;
    --color-text: #f4faf7;
    --color-muted: #a8bdb6;
    --color-primary: #2dd4bf;
    --color-primary-dark: #8df4e8;
    --color-primary-soft: rgba(45, 212, 191, 0.14);
    --color-accent: #ff8a65;
    --color-accent-soft: rgba(255, 138, 101, 0.16);
    --color-border: #2a3b37;
    --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 22px 58px rgba(0, 0, 0, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --space-1: 0.35rem;
    --space-2: 0.65rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2.25rem;
    --space-6: 3.25rem;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at 12px 17px, rgba(255, 255, 255, 0.055) 0 2px, transparent 2.6px),
        radial-gradient(circle at 20px 11px, rgba(255, 255, 255, 0.055) 0 2px, transparent 2.6px),
        radial-gradient(circle at 28px 17px, rgba(255, 255, 255, 0.055) 0 2px, transparent 2.6px),
        radial-gradient(ellipse at 20px 28px, rgba(255, 255, 255, 0.05) 0 4px, transparent 4.8px),
        linear-gradient(135deg, rgba(45, 212, 191, 0.08), transparent 28rem),
        linear-gradient(315deg, rgba(255, 138, 101, 0.07), transparent 26rem);
    background-size:
        86px 86px,
        86px 86px,
        86px 86px,
        86px 86px,
        100% 100%,
        100% 100%;
    background-attachment: fixed;
    line-height: 1.6;
}

body.drawer-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
select,
textarea {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #101918;
    color: var(--color-text);
    padding: 0.75rem 0.9rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
    outline: none;
}

label {
    display: block;
    margin: 0.85rem 0 0.35rem;
    font-weight: 700;
    color: var(--color-text);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

p {
    color: var(--color-muted);
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.skip-link {
    position: fixed;
    top: -4rem;
    left: 1rem;
    z-index: 200;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(15, 23, 22, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(78, 107, 100, 0.55);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 900;
    letter-spacing: 0;
}

.brand img {
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.desktop-nav a,
.drawer-nav a {
    color: var(--color-muted);
    font-weight: 750;
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.drawer-nav a:hover,
.drawer-nav a.is-active {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    display: inline-grid;
    place-items: center;
}

.menu-button span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
    display: block;
    background: var(--color-text);
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    background: rgba(23, 33, 31, 0);
    transition: background 180ms ease;
}

.mobile-drawer.is-open {
    pointer-events: auto;
    background: rgba(23, 33, 31, 0.32);
}

.drawer-panel {
    width: min(88vw, 380px);
    height: 100%;
    margin-left: auto;
    background: var(--color-surface);
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 220ms ease;
    box-shadow: var(--shadow-md);
}

.mobile-drawer.is-open .drawer-panel {
    transform: translateX(0);
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.drawer-nav {
    display: grid;
    gap: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 850;
    line-height: 1;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
    color: #06201c;
    background: var(--color-primary);
    box-shadow: 0 12px 22px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-soft {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
}

.btn-ghost {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-border);
}

.compact {
    min-height: 40px;
    padding-inline: 0.85rem;
}

.full {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 7rem) 0 3rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 101, 0.13), transparent 30rem),
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.16), transparent 28rem);
    pointer-events: none;
}

.hero-grid,
.auth-grid,
.detail-hero-grid,
.detail-layout,
.directory-layout,
.donation-inner {
    position: relative;
    display: grid;
    gap: var(--space-4);
}

.hero-intro {
    position: relative;
}

.hero-visual {
    display: none;
}

.hero-action-icon,
.hero-link-arrow {
    display: none;
}

.hero-copy p,
.page-hero p,
.auth-copy p,
.lead {
    font-size: 1.1rem;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.82rem;
}

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

.hero-actions.center {
    justify-content: center;
}

.search-card {
    display: grid;
    gap: 0.9rem;
}

.search-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.search-card-heading h2 {
    margin-bottom: 0.15rem;
}

.search-card-heading p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.search-card-icon,
.hero-field-icon {
    flex: 0 0 auto;
    color: var(--color-primary);
}

.search-card-icon {
    width: 28px;
    height: 28px;
}

.search-card-icon svg,
.hero-action-icon svg,
.hero-field-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.hero-field {
    position: relative;
}

.hero-field-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    z-index: 1;
    width: 20px;
    height: 20px;
    color: var(--color-muted);
    transform: translateY(-50%);
}

.hero-field input,
.hero-field select {
    padding-left: 2.55rem;
}

.hero-select-field select {
    padding-top: 1.25rem;
    padding-bottom: 0.45rem;
}

.hero-select-label {
    position: absolute;
    left: 2.55rem;
    top: 0.45rem;
    z-index: 1;
    color: var(--color-muted);
    font-size: 0.72rem;
    line-height: 1;
    pointer-events: none;
}

.card,
.floating-card,
.form-card {
    background: var(--color-surface);
    border: 1px solid rgba(78, 107, 100, 0.75);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.floating-card {
    padding: clamp(1rem, 3vw, 1.35rem);
    align-self: center;
}

.section {
    padding: var(--space-6) 0;
}

.section-heading {
    margin-bottom: var(--space-4);
}

.quick-section {
    position: relative;
    overflow: hidden;
}

.quick-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(45, 212, 191, 0.14), transparent 14rem),
        radial-gradient(circle at 86% 30%, rgba(255, 138, 101, 0.14), transparent 16rem);
    pointer-events: none;
}

.quick-section .container {
    position: relative;
}

.quick-section .section-heading {
    text-align: center;
}

.quick-section .section-heading .eyebrow {
    margin-inline: auto;
}

.quick-section .section-heading h2 {
    max-width: 760px;
    margin-inline: auto;
    text-wrap: balance;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.section-heading.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.text-link {
    color: var(--color-primary);
    font-weight: 900;
}

.quick-grid,
.cards-grid,
.gallery-grid {
    display: grid;
    gap: 1rem;
}

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

.quick-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.1rem;
    color: #fff;
    background:
        radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.16), transparent 7rem),
        linear-gradient(135deg, #1fcfba, #0f7f74);
    border: 1px solid rgba(125, 255, 239, 0.34);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
    pointer-events: none;
}

.quick-card-orange {
    background:
        radial-gradient(circle at 25% 17%, rgba(255, 255, 255, 0.2), transparent 7rem),
        linear-gradient(135deg, #ff7656, #ed4d2e);
    border-color: rgba(255, 201, 181, 0.42);
}

.quick-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: var(--shadow-md), 0 0 28px rgba(45, 212, 191, 0.12);
}

.quick-icon,
.quick-arrow,
.quick-copy {
    position: relative;
    z-index: 1;
}

.quick-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(32, 229, 210, 0.92), rgba(13, 170, 155, 0.9));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.quick-card-orange .quick-icon {
    background: linear-gradient(145deg, rgba(255, 145, 102, 0.96), rgba(239, 86, 49, 0.94));
}

.quick-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.quick-copy {
    display: grid;
    gap: 0.18rem;
    padding-right: 3.1rem;
}

.quick-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0;
}

.quick-card small {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.92rem, 2vw, 1.1rem);
    line-height: 1.25;
}

.quick-arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1.35rem;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 18px rgba(0, 0, 0, 0.16);
}

.quick-arrow::before {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    transform: rotate(45deg);
    margin-right: 0.2rem;
}

.quick-card-wide {
    grid-column: 1 / -1;
    min-height: 150px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 1.4rem;
    padding: 1.3rem;
}

.quick-card-wide .quick-copy {
    padding-right: 0;
}

.quick-card-wide .quick-arrow {
    position: relative;
    right: auto;
    bottom: auto;
}

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

.place-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.place-media {
    position: relative;
    min-height: 205px;
    background: var(--color-primary-soft);
}

.place-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.pet-media img {
    height: 250px;
}

.pill {
    position: absolute;
    left: 0.85rem;
    top: 0.85rem;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(15, 23, 22, 0.86);
    font-weight: 900;
    font-size: 0.8rem;
}

.place-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.place-title-row,
.result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.rating {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-radius: 999px;
    padding: 0.25rem 0.5rem;
    font-weight: 900;
    font-size: 0.8rem;
}

.muted {
    color: var(--color-muted);
}

.small {
    font-size: 0.9rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.25rem 0 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.25rem 0.55rem;
    color: #ffc2ad;
    background: var(--color-accent-soft);
    border-radius: 999px;
    font-weight: 850;
    font-size: 0.78rem;
}

.pet-badges {
    margin-top: 0.2rem;
}

.pet-contact {
    margin-bottom: 1rem;
}

.pet-contact strong {
    color: var(--color-text);
}

.card-actions,
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
}

.page-hero {
    background: var(--color-surface-soft);
    border-bottom: 1px solid var(--color-border);
}

.compact-hero {
    padding: 3.2rem 0;
}

.directory-layout {
    align-items: start;
}

.filter-panel,
.toolbar {
    padding: 1rem;
}

.toolbar {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.result-bar {
    margin-bottom: 1rem;
}

.empty-state {
    padding: clamp(1.4rem, 4vw, 2.2rem);
    text-align: center;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
}

.featured-empty {
    border-style: solid;
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
}

.is-hidden {
    display: none !important;
}

.tabs {
    display: grid;
    gap: 1.2rem;
}

.tab-list {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.tab-button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: var(--color-muted);
    background: transparent;
    font-weight: 900;
}

.tab-button.is-active {
    color: #fff;
    background: var(--color-primary);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.auth-section {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.auth-copy {
    align-self: center;
}

.benefit-list,
.service-list {
    display: grid;
    gap: 0.65rem;
}

.benefit-list span,
.service-list span {
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

.form-card {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.form-message {
    min-height: 1.4rem;
    margin-top: 0.75rem;
    font-weight: 800;
}

.form-message.is-error {
    color: #a43322;
}

.form-message.is-success {
    color: var(--color-primary-dark);
}

.check-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.check-row input {
    width: 18px;
    min-height: 18px;
}

.form-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--color-primary);
}

.admin-entry-link {
    margin-top: 1rem;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 850;
}

.alert-error {
    color: #ffc2ad;
    background: rgba(255, 138, 101, 0.16);
}

.alert-success {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
}

.admin-body {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(19, 32, 29, 0.86), rgba(15, 23, 22, 0.98) 38rem),
        var(--color-bg);
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.admin-login-card {
    width: min(100%, 460px);
    border-color: rgba(45, 212, 191, 0.28);
}

.admin-login-card h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.admin-login-card img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.google-login-wrap {
    display: grid;
    justify-items: center;
    margin-top: 1.25rem;
    max-width: 100%;
    overflow: hidden;
}

.admin-login-note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(15, 23, 22, 0.92);
    border-bottom: 1px solid rgba(78, 107, 100, 0.58);
    backdrop-filter: blur(18px);
}

.admin-header-inner,
.admin-header-actions,
.admin-form-actions,
.admin-list-top,
.admin-hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-shell {
    padding: clamp(1.25rem, 4vw, 2.4rem) 0 4rem;
}

.admin-hero {
    display: grid;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: clamp(1.1rem, 4vw, 1.8rem);
    background:
        linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(255, 138, 101, 0.08)),
        rgba(23, 33, 31, 0.72);
    border: 1px solid rgba(78, 107, 100, 0.68);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.admin-hero h1 {
    max-width: 760px;
    font-size: clamp(2rem, 5vw, 3.45rem);
}

.admin-hero-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.admin-quick-nav {
    position: sticky;
    top: 75px;
    z-index: 60;
    display: flex;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.45rem;
    overflow-x: auto;
    background: rgba(15, 23, 22, 0.82);
    border: 1px solid rgba(78, 107, 100, 0.55);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.admin-quick-nav::-webkit-scrollbar {
    display: none;
}

.admin-quick-nav a {
    flex: 0 0 auto;
    padding: 0.55rem 0.8rem;
    color: var(--color-muted);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-quick-nav a:hover,
.admin-quick-nav a:focus-visible {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
}

.admin-section-heading {
    margin: clamp(1.5rem, 5vw, 2.4rem) 0 1rem;
    padding-top: 0.25rem;
}

.admin-section-heading p {
    max-width: 760px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 0.85rem;
    margin: 1rem 0 1.2rem;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    min-height: 118px;
    border-color: rgba(78, 107, 100, 0.62);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--color-border);
}

.stat-card.stat-primary::before {
    background: var(--color-primary);
}

.stat-card.stat-accent::before {
    background: var(--color-accent);
}

.stat-card span {
    display: block;
    color: var(--color-muted);
    font-weight: 800;
}

.stat-card strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--color-text);
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    line-height: 1;
}

.admin-grid {
    display: grid;
    gap: 1rem;
    scroll-margin-top: 150px;
}

.admin-grid > * {
    min-width: 0;
}

.admin-form,
.admin-list {
    padding: clamp(1rem, 3vw, 1.35rem);
    border-color: rgba(78, 107, 100, 0.68);
}

.admin-form {
    align-self: start;
}

.admin-form-head {
    margin-bottom: 0.6rem;
}

.admin-form-head h2,
.admin-list-top h2 {
    margin-bottom: 0.35rem;
}

.admin-form-head p,
.admin-list-top p {
    margin-bottom: 0;
}

.form-two {
    display: grid;
    gap: 0.85rem;
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 48px;
    margin-top: 0;
    align-self: end;
}

.admin-check input {
    width: 18px;
    min-height: 18px;
}

.admin-check-stack {
    display: grid;
    gap: 0.45rem;
    align-self: end;
}

.admin-check-stack .admin-check {
    margin-top: 0;
}

.admin-form-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.place-photo-preview,
.pet-photo-preview {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.place-photo-preview img,
.pet-photo-preview img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 240px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.place-gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.place-gallery-preview figure {
    margin: 0;
}

.place-gallery-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.place-gallery-preview figcaption {
    margin-top: 0.35rem;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-table-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    border: 1px solid rgba(78, 107, 100, 0.56);
    border-radius: var(--radius-sm);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.admin-table tbody tr {
    transition: background 160ms ease;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.admin-table th {
    color: var(--color-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-table td span {
    display: block;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.table-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.35rem 0.55rem;
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}

.table-actions .danger-link {
    color: #ffc2ad;
    background: var(--color-accent-soft);
}

.status-pill {
    display: inline-flex !important;
    width: fit-content;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem !important;
}

.status-approved {
    color: var(--color-primary-dark) !important;
    background: var(--color-primary-soft);
}

.status-pending {
    color: #ffe0a1 !important;
    background: rgba(255, 193, 7, 0.16);
}

.status-hidden {
    color: #d7dfdc !important;
    background: rgba(168, 189, 182, 0.14);
}

.status-available {
    color: var(--color-primary-dark) !important;
    background: var(--color-primary-soft);
}

.status-adopted {
    color: #ffc2ad !important;
    background: var(--color-accent-soft);
}

.success-list {
    margin-top: 1rem;
}

.admin-empty-row {
    color: var(--color-muted);
    text-align: center;
}

.login-card h1 {
    font-size: 2.4rem;
}

.detail-hero {
    padding: 2rem 0;
    background: var(--color-surface-soft);
}

.detail-image {
    width: 100%;
    min-height: 280px;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.detail-summary {
    align-self: center;
}

.detail-summary h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.location-line {
    font-weight: 900;
    color: var(--color-text);
}

.detail-layout {
    align-items: start;
}

.detail-card,
.contact-card {
    padding: 1.2rem;
}

.detail-main {
    display: grid;
    gap: 1rem;
}

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

.image-zoom-button {
    width: 100%;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    overflow: hidden;
}

.detail-image-trigger {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.detail-image-trigger .detail-image {
    box-shadow: none;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 180ms ease, filter 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    filter: brightness(1.08);
    transform: scale(1.02);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2rem);
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
}

.image-lightbox.is-open {
    pointer-events: auto;
    opacity: 1;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    background: rgba(5, 10, 9, 0.82);
    border: 0;
    backdrop-filter: blur(10px);
}

.image-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
}

.image-lightbox-dialog img {
    width: 100%;
    max-height: min(82vh, 760px);
    object-fit: contain;
    border: 1px solid rgba(168, 189, 182, 0.36);
    border-radius: var(--radius-md);
    background: #07100e;
    box-shadow: var(--shadow-md);
}

.image-lightbox-close {
    position: absolute;
    top: -0.85rem;
    right: -0.85rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.donation-band {
    padding-top: 0;
}

.donation-inner {
    align-items: center;
    padding: clamp(1.2rem, 4vw, 2rem);
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(255, 138, 101, 0.12));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.donation-inner p,
.donation-inner .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.donation-inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.legal-updated {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.legal-layout {
    display: grid;
    gap: var(--space-4);
    align-items: start;
}

.legal-index,
.legal-content {
    padding: clamp(1rem, 3vw, 1.35rem);
}

.legal-index {
    position: sticky;
    top: 92px;
}

.legal-index h2 {
    font-size: 1rem;
}

.legal-index a {
    display: block;
    margin-top: 0.45rem;
    color: var(--color-muted);
    font-weight: 800;
}

.legal-index a:hover,
.legal-index a:focus-visible {
    color: var(--color-primary-dark);
}

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

.legal-content section {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 3rem 0 calc(6rem + env(safe-area-inset-bottom));
    color: #d9eee8;
    background: #0a1110;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.footer-grid p,
.footer-bottom {
    color: #b8d0c9;
}

.footer-grid h2 {
    font-size: 1rem;
    color: #fff;
}

.footer-grid a:not(.brand) {
    display: block;
    margin: 0.4rem 0;
    color: #d9eee8;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottom-nav {
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.2rem;
    width: min(100% - 1.5rem, 560px);
    margin-inline: auto;
    padding: 0.45rem;
    background: rgba(15, 23, 22, 0.9);
    border: 1px solid rgba(78, 107, 100, 0.72);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(20px);
}

.bottom-nav a {
    min-width: 0;
    min-height: 58px;
    display: grid;
    grid-template-rows: 28px auto;
    gap: 0.18rem;
    place-items: center;
    color: var(--color-muted);
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bottom-nav a:hover,
.bottom-nav a:focus-visible {
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.045);
}

.bottom-nav a.is-active {
    color: #06201c;
    background: var(--color-primary);
    transform: translateY(-2px);
}

.bottom-nav-icon-wrap {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
}

.bottom-nav-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bottom-nav-label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 620px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbar {
        grid-template-columns: 1fr 260px;
    }

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

    .form-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 860px) {
    .hero-grid,
    .auth-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

    .detail-hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .detail-layout,
    .directory-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .legal-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .donation-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .admin-hero {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .admin-grid {
        grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
        align-items: start;
    }
}

@media (min-width: 1080px) {
    .desktop-nav {
        display: flex;
    }

    .menu-button {
        display: none;
    }

    .bottom-nav {
        display: none;
    }

    .site-footer {
        padding-bottom: 3rem;
    }

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

    .admin-stats {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .admin-quick-nav {
        top: 69px;
        margin-inline: -0.15rem;
        border-radius: var(--radius-md);
    }

    .admin-list-top {
        align-items: start;
        flex-direction: column;
    }

    .admin-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .admin-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 0.75rem;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tbody tr {
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(78, 107, 100, 0.56);
        border-radius: var(--radius-sm);
    }

    .admin-table th,
    .admin-table td {
        border-bottom: 0;
    }

    .admin-table td {
        padding: 0.45rem 0;
    }

    .admin-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.18rem;
        color: var(--color-muted);
        font-size: 0.74rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .admin-table td[colspan]::before,
    .admin-table td.admin-empty-row::before {
        display: none;
    }

    .admin-table td.table-actions {
        display: flex;
        flex-wrap: wrap;
        padding-top: 0.75rem;
    }

    .admin-table td.table-actions::before {
        flex: 0 0 100%;
    }

    .table-actions a {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 1.15rem, var(--container));
    }

    .header-inner {
        min-height: 66px;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding: 1rem 0 1.4rem;
    }

    .hero::before {
        background:
            radial-gradient(circle at 78% 18%, rgba(45, 212, 191, 0.22), transparent 10rem),
            radial-gradient(circle at 20% 32%, rgba(45, 212, 191, 0.12), transparent 11rem);
    }

    .hero-grid {
        gap: 0.85rem;
    }

    .hero-intro {
        min-height: 230px;
        padding-top: 0.1rem;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
        width: 60%;
    }

    .hero-copy .eyebrow {
        margin-bottom: 0.65rem;
        padding: 0.3rem 0.48rem;
        font-size: 0.58rem;
        line-height: 1.1;
        color: var(--color-primary);
        background: rgba(45, 212, 191, 0.12);
        border: 1px solid rgba(45, 212, 191, 0.16);
        white-space: nowrap;
    }

    .hero-copy h1 {
        margin-bottom: 0.55rem;
        font-size: clamp(1.45rem, 6vw, 1.7rem);
        line-height: 1.06;
        text-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
    }

    .hero-copy h1 span {
        color: var(--color-primary);
    }

    .hero-copy p {
        max-width: 13.3rem;
        margin-bottom: 0;
        font-size: 0.72rem;
        line-height: 1.42;
        color: rgba(244, 250, 247, 0.78);
    }

    .hero-visual {
        position: absolute;
        right: -0.9rem;
        top: -0.35rem;
        z-index: 1;
        display: block;
        width: 52%;
        max-width: 230px;
        height: 178px;
        overflow: hidden;
        border-radius: 7rem 0 2.4rem 7rem;
        pointer-events: none;
    }

    .hero-visual::before {
        content: "";
        position: absolute;
        right: 0.6rem;
        top: 0.75rem;
        width: 10.6rem;
        height: 10.6rem;
        border-radius: 50%;
        background: rgba(45, 212, 191, 0.18);
    }

    .hero-visual img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 45% 58%;
        mix-blend-mode: normal;
        filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.26));
    }

    .hero-actions {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 0.65rem;
        margin-top: 0.9rem;
    }

    .hero-actions .btn {
        min-height: 48px;
        justify-content: space-between;
        gap: 0.45rem;
        padding: 0.8rem 0.72rem;
        border-radius: 8px;
        font-size: 0.78rem;
        line-height: 1;
        white-space: nowrap;
    }

    .hero-action-primary {
        color: #06201c;
        background: linear-gradient(135deg, #2de3cf, #17bfae);
        box-shadow: 0 12px 24px rgba(18, 191, 174, 0.2);
    }

    .hero-action-secondary {
        color: var(--color-primary);
        background: rgba(10, 29, 28, 0.7);
        border-color: rgba(45, 212, 191, 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .hero-action-icon {
        display: grid;
        width: 19px;
        height: 19px;
        place-items: center;
    }

    .hero-link-arrow {
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        transform: rotate(45deg);
    }

    .search-card {
        gap: 0.58rem;
        padding: 0.78rem;
        background: rgba(9, 25, 24, 0.82);
        border-color: rgba(45, 212, 191, 0.15);
        border-radius: 12px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .search-card-heading {
        gap: 0.55rem;
    }

    .search-card-icon {
        width: 25px;
        height: 25px;
    }

    .search-card-heading h2 {
        margin-bottom: 0.05rem;
        font-size: 1.08rem;
        line-height: 1;
    }

    .search-card-heading p {
        color: rgba(244, 250, 247, 0.68);
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .hero-field input,
    .hero-field select {
        min-height: 39px;
        border-color: rgba(78, 107, 100, 0.5);
        background: rgba(6, 17, 16, 0.66);
        color: var(--color-text);
        font-size: 0.78rem;
    }

    .hero-field input::placeholder {
        color: rgba(168, 189, 182, 0.72);
    }

    .hero-field-icon {
        left: 0.7rem;
        width: 18px;
        height: 18px;
    }

    .hero-field input,
    .hero-field select {
        padding-left: 2.25rem;
    }

    .hero-select-label {
        left: 2.25rem;
        top: 0.42rem;
        font-size: 0.66rem;
    }

    .hero-select-field select {
        padding-top: 1.1rem;
        padding-bottom: 0.35rem;
    }

    .search-card .btn {
        min-height: 40px;
        gap: 0.45rem;
        border-radius: 8px;
        font-size: 0.82rem;
        background: linear-gradient(135deg, #31d7c4, #159e91);
        box-shadow: none;
    }

    .search-card .btn::before {
        content: "";
        width: 14px;
        height: 14px;
        border: 2px solid currentColor;
        border-radius: 50%;
        box-shadow: 5px 5px 0 -3px currentColor;
        transform: rotate(45deg);
    }

    .quick-section {
        padding-top: 2.2rem;
    }

    .quick-section .section-heading {
        margin-bottom: 1.25rem;
    }

    .quick-section .section-heading .eyebrow {
        display: none;
    }

    .quick-section .section-heading h2 {
        max-width: 11em;
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.08;
    }

    .quick-section .section-heading h2::before,
    .quick-section .section-heading h2::after {
        content: "";
        display: inline-block;
        width: 1.6rem;
        height: 1.6rem;
        margin-inline: 0.25rem;
        vertical-align: top;
        background:
            linear-gradient(var(--color-primary-dark), var(--color-primary-dark)) 50% 0 / 0.23rem 0.82rem no-repeat,
            linear-gradient(var(--color-primary-dark), var(--color-primary-dark)) 0 72% / 0.8rem 0.23rem no-repeat,
            linear-gradient(var(--color-primary-dark), var(--color-primary-dark)) 100% 72% / 0.8rem 0.23rem no-repeat;
        border-radius: 999px;
    }

    .quick-section .section-heading h2::before {
        transform: rotate(-34deg);
    }

    .quick-section .section-heading h2::after {
        transform: rotate(34deg);
    }

    .quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .quick-card {
        min-height: 150px;
        padding: 0.85rem;
        border-radius: 18px;
    }

    .quick-icon {
        width: 58px;
        height: 58px;
    }

    .quick-icon svg {
        width: 34px;
        height: 34px;
        stroke-width: 3.2;
    }

    .quick-copy {
        padding-right: 2.35rem;
    }

    .quick-title {
        font-size: clamp(1.05rem, 6vw, 1.36rem);
    }

    .quick-card small {
        font-size: clamp(0.78rem, 3.7vw, 0.92rem);
    }

    .quick-arrow {
        right: 0.7rem;
        bottom: 0.9rem;
        width: 36px;
        height: 36px;
    }

    .quick-arrow::before {
        width: 11px;
        height: 11px;
        border-width: 3px;
    }

    .quick-card-wide {
        min-height: 110px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.85rem;
        padding: 0.9rem;
    }

    .quick-card-wide .quick-copy {
        padding-right: 0;
    }

    .section-heading.split,
    .form-links {
        align-items: start;
        flex-direction: column;
    }

    .tab-list {
        width: 100%;
    }

    .tab-button {
        flex: 1;
    }

    .card-actions .btn,
    .quick-actions .btn {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .admin-header-inner,
    .admin-header-actions {
        align-items: stretch;
    }

    .admin-header-inner {
        padding-block: 0.75rem;
        flex-direction: column;
    }

    .admin-header-actions .btn {
        flex: 1;
    }

    .admin-shell {
        padding-top: 1rem;
    }

    .admin-hero {
        border-radius: var(--radius-md);
    }

    .admin-hero-actions .btn {
        width: 100%;
    }

    .admin-quick-nav {
        position: static;
    }

    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .quick-grid {
        gap: 0.65rem;
    }

    .quick-card {
        min-height: 138px;
        padding: 0.72rem;
    }

    .quick-icon {
        width: 52px;
        height: 52px;
    }

    .quick-icon svg {
        width: 30px;
        height: 30px;
    }

    .quick-card-wide {
        min-height: 104px;
    }

    .quick-arrow {
        width: 32px;
        height: 32px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}
