
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #12554d;
    --secondary-color: #0a3a34;
    --accent-color: #a85a30;
    --text-dark: #23302c;
    --text-meta: #5b6660;
    --text-light: #8a938d;
    --bg-light: #f7f3ec;
    --bg-white: #ffffff;
    --border-color: #e4dccf;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.site-header {
    position: relative;
}

.masthead {

    background:
        radial-gradient(ellipse 58% 95% at 50% 50%,
                        rgba(255, 255, 255, 0.72) 0%,
                        rgba(255, 255, 255, 0.55) 45%,
                        rgba(255, 255, 255, 0) 78%),
        url('../images/masthead.webp') center center / cover no-repeat,
        #f6efe6;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.75rem 1rem;
}

.masthead-brand {
    display: block;
}

.masthead-name {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);

    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.masthead-tagline {
    display: block;
    margin-top: 0.35rem;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95);
}

.masthead-brand:hover .masthead-name {
    color: var(--secondary-color);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.4rem 0;
    border-top: 3px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin-left: auto;
}

.nav-menu li {
    position: relative;
}

.nav-menu a,
.nav-parent {
    color: var(--text-dark);
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: background-color 0.25s ease, color 0.25s ease;
    display: block;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-menu a:hover,
.nav-parent:hover {
    color: var(--primary-color);
    background-color: rgba(18, 85, 77, 0.08);
}

.nav-menu a.active,
.nav-parent.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px rgba(18, 85, 77, 0.3);
}

.nav-parent {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.25s ease;
}

.has-submenu.open .caret {
    transform: rotate(180deg);
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    list-style: none;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    padding: 0.75rem 0.4rem 0.4rem;
    margin-top: 0;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.has-submenu.open .nav-submenu {
    display: block;
}

.nav-submenu:hover {
    display: block;
}

.nav-submenu a {
    font-size: 0.88rem;
    padding: 0.5rem 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.35rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Nunito Sans', system-ui, sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.hero {
    background: linear-gradient(135deg, rgba(18, 85, 77, 0.9), rgba(10, 58, 52, 0.9)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 2rem;
}

.hero-content h1, .hero-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-section,
.directory-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.breed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.breed-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
}

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

.breed-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.breed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.breed-card:hover .breed-image img {
    transform: scale(1.1);
}

.breed-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.breed-info {
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.breed-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.breed-type {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.breed-meaning {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.breed-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.breed-info .btn {
    width: 100%;
    margin-top: auto;
}

.info-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-grid-pairs {
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
}

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.info-card h4 a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-card h4 a:hover {
    text-decoration: underline;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.prose > h2 {
    margin-bottom: 1.25rem;
}

.prose > * + h2 {
    margin-top: 3rem;
}

.prose > h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.prose > * + h3 {
    margin-top: 2rem;
}

.prose > p,
.prose > ul,
.prose > ol {
    margin-bottom: 1.25rem;
    max-width: 46rem;
}

.prose > ul,
.prose > ol {
    padding-left: 1.5rem;
}

.prose > li,
.prose > ul li,
.prose > ol li {
    margin-bottom: 0.5rem;
}

.prose > p:last-child,
.prose > ul:last-child,
.prose > ol:last-child {
    margin-bottom: 0;
}

.prose > .info-grid,
.prose > .breed-grid {
    margin-top: 2.5rem;
}

.prose > p a,
.prose > ul a,
.prose > ol a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.prose > p a:hover,
.prose > ul a:hover,
.prose > ol a:hover {
    color: var(--accent-color);
}

.price-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.prose > .price-wrap {
    margin-top: 2rem;
    margin-bottom: 1.75rem;
}

.price-table {
    width: 100%;
    min-width: 34rem;
    border-collapse: collapse;
    font-size: 0.97rem;
}

.price-table caption {
    caption-side: bottom;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-meta);
    padding-top: 0.85rem;
    line-height: 1.5;
}

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

.price-table thead th {
    background: var(--primary-color);
    color: #ffffff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.price-table tbody th {
    font-weight: 700;
    white-space: nowrap;
}

.price-table .price-figure {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table td a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.price-table td a:hover {
    color: var(--accent-color);
}

.price-table tbody td {
    line-height: 1.7;
}

.page-header,
.breed-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.page-header h1,
.breed-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p,
.breed-hero p {
    font-size: 1.1rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.filter-section {
    background-color: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.search-box input {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    width: 300px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background-color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', system-ui, sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breed-details {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.detail-main {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.breed-main-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--bg-light);
}

.breed-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.meaning-list,
.occasions-list,
.facts-list {
    list-style: none;
    margin: 1rem 0;
}

.meaning-list li,
.occasions-list li,
.facts-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.meaning-list li:before,
.occasions-list li:before,
.facts-list li:before {
    content: "🌸";
    position: absolute;
    left: 0;
}

.color-meanings {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.color-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
}

.color-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.color-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.type-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.type-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.type-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.care-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.care-step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.care-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.care-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-facts,
.related-breeds {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quick-facts h3,
.related-breeds h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.fact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.fact-item p {
    color: var(--text-dark);
    font-size: 1rem;
}

.fact-item p a {
    color: var(--primary-color);
    font-weight: 500;
}

.fact-item p a:hover {
    color: var(--secondary-color);
}

.related-breeds ul {
    list-style: none;
}

.related-breeds li {
    margin-bottom: 0.75rem;
}

.related-breeds a {
    color: var(--text-dark);
    display: block;
    padding: 0.75rem;
    border-radius: 5px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.related-breeds a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(18, 85, 77, 0.1), rgba(10, 58, 52, 0.1));
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h4 a {
    color: inherit;
    text-decoration: none;
}

.footer-section h4 a:hover {
    text-decoration: underline;
}

.footer-h4-second {
    margin-top: 1.75rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

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

.paybar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paybar__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.paybar__cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.paybar__card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 5px;
    padding: 3px 5px;
    height: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.paybar__card img {
    height: 20px;
    width: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.pay-operator {
    margin-top: 0.6rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border-color);
}

.pay-operator strong {
    color: var(--text-dark);
}

.footer-operator {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-operator strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

@media (max-width: 968px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: var(--shadow);

        max-height: 80vh;
        overflow-y: auto;
    }

    .breadcrumb a,
    .footer-section li a,
    .info-card a,
    .groomer-group a {
        display: inline-block;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-parent {
        width: 100%;
        text-align: left;
        cursor: default;
    }

    .nav-parent:hover {
        background: none;
        color: var(--text-dark);
    }

    .nav-parent.active:hover {
        color: white;
    }

    .caret {
        display: none;
    }

    .nav-submenu,
    .has-submenu:hover .nav-submenu {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        margin-top: 0;
        min-width: 0;
        border-left: 2px solid rgba(18, 85, 77, 0.18);
        margin-left: 1rem;
    }

    .masthead {
        min-height: 150px;
        padding: 1.25rem 1rem;
    }

    .masthead-name {
        font-size: 2.1rem;
    }

    .masthead-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .hero-content h1, .hero-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .breed-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input {
        width: 100%;
    }

    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .breed-grid {
        grid-template-columns: 1fr;
    }

    .masthead {
        min-height: 118px;
        padding: 1rem 0.75rem;
    }

    .masthead-name {
        font-size: 1.6rem;
    }

    .masthead-tagline {

        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .nav-brand {
        font-size: 1rem;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-content h1, .hero-content h2 {
        font-size: 1.75rem;
    }

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

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

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.state-tile {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.state-tile:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.state-tile-name { font-weight: 600; color: var(--text-dark); }
.state-tile-count { color: var(--primary-color); font-weight: 600; font-size: 0.9rem; }

.place-list { margin-top: 1.5rem; }

.place-list-columns {
    column-count: 3;
    column-gap: 1.25rem;
}

@media (max-width: 900px) { .place-list-columns { column-count: 2; } }
@media (max-width: 600px) { .place-list-columns { column-count: 1; } }

.place-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.7rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;

    break-inside: avoid;
}

.place-row:hover { border-color: var(--primary-color); }
.place-name  { font-weight: 600; color: var(--text-dark); }
.place-count { color: var(--text-light); font-size: 0.85rem; white-space: nowrap; }

.groomer-list { margin-top: 1.5rem; }

.groomer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.6rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.groomer-row:hover { border-color: var(--primary-color); }
.groomer-row-main { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }

.groomer-row-name {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
}

.groomer-row-name:hover { color: var(--primary-color); }
.groomer-row-addr  { color: var(--text-light); font-size: 0.9rem; }

.groomer-row-phone {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.groomer-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.groomer-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.groomer-card > *:last-child {
    margin-bottom: 0;
}

.groomer-card > .btn {
    margin-top: auto;
    align-self: flex-start;
}

.groomer-card h2 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-dark); }
.groomer-card p  { color: var(--text-dark); line-height: 1.7; margin-bottom: 1rem; }

.groomer-facts { margin-bottom: 1.5rem; }
.groomer-facts dt {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 1rem;
}
.groomer-facts dt:first-child { margin-top: 0; }
.groomer-facts dd { margin: 0.25rem 0 0; color: var(--text-dark); line-height: 1.6; }
.groomer-facts a  { color: var(--primary-color); }

.muted { color: var(--text-meta); font-size: 0.88rem; max-width: 46rem; }

.groomer-group {
    font-size: 1.05rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.75rem 0 0.6rem;
}

.groomer-group:first-child { margin-top: 0; }
.groomer-group a { color: var(--primary-color); text-decoration: none; }
.groomer-group a:hover { text-decoration: underline; }

.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pager-status { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 600px) {
    .groomer-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

.home-prose {
    max-width: 760px;
    margin: 0 auto;
}

.home-prose h2 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.home-prose h2:first-child {
    margin-top: 0;
}

.home-prose h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.home-prose p {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.home-prose ul,
.home-prose ol {
    margin: 0 0 1.4rem 1.3rem;
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 1.05rem;
}

.home-prose li + li {
    margin-top: 0.6rem;
}

.home-prose a:not(.btn) {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-prose a:not(.btn):hover {
    color: var(--secondary-color);
}

.groomers-prose {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.groomers-prose h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2.25rem;
}

.groomers-prose h2:first-child {
    margin-top: 0;
}

.groomers-prose .breed-faqs {
    margin-top: 2rem;
}

.interval-list {
    max-width: 620px;
    margin: 0 auto;
}

.interval-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.35rem 1rem;
    padding: 0.9rem 1.25rem;
    margin-bottom: 0.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.interval-row:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.interval-name {
    font-weight: 600;
    color: var(--text-dark);
}

.interval-weeks {
    color: var(--primary-color);
    font-weight: 600;
}

.breed-faqs {
    margin: 1.5rem 0 2rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: var(--bg-white);
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem 3rem 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.article-header .breadcrumb {
    margin-bottom: 1.25rem;
}

.article-title,
.article-header h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: white;
    max-width: 20ch;
    margin: 0 auto 0.75rem;
}

.article-standfirst {
    max-width: 60ch;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.article-meta-bar,
.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.article-meta-bar span,
.article-meta span {
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.article-hero-image {
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
}

.article-hero-image img {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.article-body,
.article-content {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.article-body > p:first-of-type,
.article-content > p:first-of-type {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.article-body p,
.article-content p {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    font-size: 1.06rem;
}

.article-body h2,
.article-content h2 {
    color: var(--text-dark);
    font-size: 1.85rem;
    line-height: 1.25;
    margin: 3rem 0 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-color);
}

.article-body h3,
.article-content h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin: 2.25rem 0 0.75rem;
}

.article-body ul, .article-body ol,
.article-content ul, .article-content ol {
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0 0 1.5rem;
    padding-left: 1.35rem;
}

.article-body li,
.article-content li {
    margin-bottom: 0.6rem;
}

.article-body strong,
.article-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.article-body a,
.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body a:hover,
.article-content a:hover {
    color: var(--secondary-color);
}

.article-body img,
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.tip-box,
.pro-tip {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.tip-box h4,
.pro-tip h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tip-box p:last-child,
.pro-tip p:last-child {
    margin-bottom: 0;
}

.back-to-articles {
    text-align: center;
    margin: 3rem 0;
}

.back-to-articles a,
.article-body a.back-link,
.article-content a.back-link,
a.back-link {
    display: inline-block;
    padding: 0.9rem 1.9rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.back-to-articles a:hover,
.article-body a.back-link:hover,
.article-content a.back-link:hover,
a.back-link:hover {
    background: var(--secondary-color);
    color: white;
}

.article-body a.related-link,
.article-content a.related-link,
a.related-link {
    color: var(--text-dark);
    text-decoration: none;
}

.article-body a.related-link:hover,
.article-content a.related-link:hover,
a.related-link:hover {
    color: var(--primary-color);
}

.related-articles {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.related-articles h3 {
    margin-bottom: 1rem;
}

.related-link {
    display: block;
    padding: 0.85rem 1rem;
    margin-bottom: 0.6rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.related-link:hover {
    background: var(--border-color);
}

@media (max-width: 768px) {
    .article-header {
        padding: 2.5rem 0 2.25rem;
    }
    .article-title,
    .article-header h1 {
        font-size: 1.9rem;
        max-width: none;
    }
    .article-standfirst {
        font-size: 1.05rem;
    }
    .article-hero-image {
        margin-top: -1.5rem;
        margin-bottom: 2rem;
    }
    .article-hero-image img {
        border-radius: 10px;
    }
    .article-body,
    .article-content {
        padding: 0 1.25rem;
    }
    .article-body h2,
    .article-content h2 {
        font-size: 1.55rem;
        margin-top: 2.25rem;
    }
}

.featured-section > .container > .care-instructions {
    grid-template-columns: repeat(3, 1fr);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .featured-section > .container > .care-instructions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-section > .container > .care-instructions {
        grid-template-columns: 1fr;
    }
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

.contact-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-intro p {
    margin-bottom: 1rem;
    line-height: 1.7;
    max-width: 46rem;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.contact-intro ul,
.contact-intro ol {
    margin: 0 0 1rem 1.5rem;
    max-width: 46rem;
}

.contact-intro li {
    margin-bottom: 0.4rem;
}

.contact-intro a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-selfserve {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-selfserve li {
    padding: 0.9rem 1.1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    line-height: 1.6;
}

.contact-selfserve strong {
    display: block;
    color: var(--text-dark);
}

.contact-note {
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-note h2 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.contact-note p + p {
    margin-top: 0.75rem;
}

.contact-ok {
    background-color: rgba(39, 174, 96, 0.08);
    border-left: 4px solid var(--success-color);
}

.contact-error {
    background-color: rgba(18, 85, 77, 0.07);
    border-left: 4px solid var(--primary-color);
}

.contact-error ul {
    margin: 0.5rem 0 0 1.25rem;
}

.contact-row {
    margin-bottom: 1.25rem;
}

.contact-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.contact-row .req {
    color: var(--primary-color);
}

.contact-row input[type="text"],
.contact-row input[type="email"],
.contact-row textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.25s ease;
}

.contact-row input:focus,
.contact-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-row textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-row small {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .btn {
    cursor: pointer;
}

@media (max-width: 640px) {
    .contact-row input[type="text"],
    .contact-row input[type="email"],
    .contact-row textarea {

        font-size: 16px;
    }

    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: 0 0;
    }
}

.owner-maintained {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.5rem;
    padding: 0.7rem 1.1rem;
    background-color: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.28);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.owner-maintained span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--success-color);
    color: #fff;
    font-size: 0.72rem;
}

.owner-maintained strong {
    color: var(--text-dark);
}

.open-badge {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.open-badge.is-open {
    background-color: rgba(39, 174, 96, 0.12);
    color: var(--success-color);
}

.open-badge.is-shut {
    background-color: var(--bg-light);
    color: var(--text-light);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.75rem;
}

.hours-table th,
.hours-table td {
    text-align: left;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 400;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.95rem;
}

.hours-table th {
    color: var(--text-dark);
    font-weight: 500;
    width: 55%;
}

.hours-table td {
    color: var(--text-light);
}

.hours-table tr.shut td {
    font-style: italic;
}

.cutoff {
    background-color: rgba(18, 85, 77, 0.06);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.holiday-notes {
    list-style: none;
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-light);
}

.holiday-notes li + li {
    margin-top: 0.35rem;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.4rem 0 1rem;
}

.tag-list li {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.groomer-owner h3 {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.groomer-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.groomer-gallery figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

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

.claimed-flag {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

@media (max-width: 640px) {

    .groomer-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .groomer-gallery img { height: 130px; }

    .hours-table th { width: 50%; }
}

.preview-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    text-align: center;
}

.preview-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 0.4rem;
}

.claim-wrap {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.claim-lead p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.claim-lead strong {
    color: var(--text-dark);
}

.claim-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.claim-price {
    background-color: var(--bg-light);
    border-radius: 14px;
    padding: 1.75rem;
    border: 2px solid var(--border-color);
}

.claim-price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.claim-price-tag .amount {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.claim-price-tag .per {
    color: var(--text-light);
    font-size: 0.95rem;
}

.claim-price p {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.claim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.claim-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.claim-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.claim-item p {
    font-size: 0.92rem;
    color: var(--text-light);
}

.claim-steps {
    max-width: 780px;
    margin: 0 auto;
    padding-left: 1.25rem;
}

.claim-steps li {
    margin-bottom: 0.85rem;
    color: var(--text-light);
}

.claim-steps strong {
    color: var(--text-dark);
}

.claim-note {
    max-width: 780px;
    margin: 2.5rem auto 0;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}

.claim-note h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.claim-note ul {
    margin: 0 0 1rem 1.15rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.claim-note li {
    margin-bottom: 0.4rem;
}

.claim-note a {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 968px) {
    .claim-wrap {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.claim-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    background-color: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 14px;
}

.claim-band-text {
    flex: 1 1 320px;
}

.claim-band-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.claim-band-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.claim-band-text p + p {
    margin-top: 0.75rem;
}

.claim-band-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    flex: 0 0 auto;
}

.claim-band-more {
    color: var(--primary-color);
    font-size: 0.88rem;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .claim-band {
        padding: 1.35rem 1.25rem;
    }
    .claim-band-action {
        width: 100%;
    }
    .claim-band-action .btn {
        width: 100%;
    }
}

.contact-wrap a:not(.btn),
.contact-note a:not(.btn),
.claim-note a:not(.btn),
.claimed-flag a:not(.btn),
p.muted a:not(.btn) {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.contact-wrap a:not(.btn):hover,
.contact-note a:not(.btn):hover,
.claim-note a:not(.btn):hover,
.claimed-flag a:not(.btn):hover,
p.muted a:not(.btn):hover {
    color: var(--secondary-color);
}

.hours-edit { width:100%; border-collapse:collapse; margin-bottom:1.5rem; }
.hours-edit th { text-align:left; font-weight:500; padding:.4rem .5rem .4rem 0; width:26%; }
.hours-edit td { padding:.3rem .4rem; }
.hours-edit input[type=time] { padding:.45rem .5rem; border:2px solid var(--border-color);
    border-radius:6px; font-family:'Nunito Sans', system-ui, sans-serif; font-size:.95rem; }
label.inline { display:inline-flex; align-items:center; gap:.45rem; font-weight:400;
    margin-right:1.25rem; margin-bottom:.4rem; cursor:pointer; }
.field-row { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:1rem; margin-bottom:1.25rem; }
.field-row input { width:100%; padding:.7rem .8rem; border:2px solid var(--border-color);
    border-radius:8px; font-family:'Nunito Sans', system-ui, sans-serif; font-size:1rem; }
.check-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:.2rem; margin-bottom:1.5rem; }
.contact-form h2 { font-size:1.3rem; margin:2rem 0 .75rem; padding-top:1.25rem;
    border-top:1px solid var(--border-color); }
.contact-form h2:first-of-type { border-top:0; padding-top:0; margin-top:0; }
.groomer-gallery figcaption { display:flex; align-items:center; justify-content:space-between;
    padding:.5rem .7rem; font-size:.8rem; }
.link-btn { background:none; border:0; color:var(--primary-color); cursor:pointer;
    text-decoration:underline; font:inherit; font-size:.8rem; padding:0; }
.pill-approved { color:var(--success-color); font-weight:600; }
.pill-pending  { color:#e67e22; font-weight:600; }
.pill-rejected { color:#c0392b; font-weight:600; }
@media (max-width:640px){ .hours-edit th{width:34%} .hours-edit input[type=time]{width:100%} }

.field-row > div {
    display: flex;
    flex-direction: column;
}

.field-row > div > input {
    margin-top: 0;
}

.field-row > div {
    align-content: start;
}

.field-row label {
    margin-top: 0;
}

.contact-row input[type="time"],
.contact-row input[type="number"],
.contact-row input[type="file"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.25s ease;
}

.contact-row input[type="time"]:focus,
.contact-row input[type="number"]:focus,
.contact-row input[type="file"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-row input[type="file"] {
    padding: 0.55rem 0.6rem;
    cursor: pointer;
}

.contact-row input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    margin-right: 1rem;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.contact-row input[type="file"]::file-selector-button:hover {
    opacity: 0.88;
}

.contact-row small,
.field-row small {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .contact-row input[type="file"]::file-selector-button {
        padding: 0.5rem 1rem;
        margin-right: 0.6rem;
        font-size: 0.9rem;
    }
}

.field-help {
    margin: -0.5rem 0 1.25rem;
    font-size: 0.85rem;
}

.contact-row small em,
.field-row small em {
    font-style: normal;
    color: var(--text-dark);
    opacity: 0.75;
}

.contact-row input[type="time"],
.hours-edit input[type="time"] {
    width: 11rem;
    max-width: 100%;
    padding: 0.6rem 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.contact-row input[type="time"]:focus,
.hours-edit input[type="time"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.field-row input[type="number"],
.contact-row input[type="number"] {
    width: 100%;
}

@media (max-width: 640px) {
    .contact-row input[type="time"],
    .hours-edit input[type="time"] {
        width: 100%;
    }
}

.contact-form .groomer-gallery {
    margin-bottom: 2rem;
}

.contact-form .groomer-gallery + .contact-row {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.nav-search {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    flex: 0 1 260px;
}

.nav-search input {
    width: 100%;
    padding: 0.45rem 0.8rem;
    border: 2px solid var(--border-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    min-width: 0;
}

.nav-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.nav-search button {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0 50px 50px 0;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.search-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.search-filters label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.search-filters .opt {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.78rem;
}

.search-filters input,
.search-filters select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.search-filters input:focus,
.search-filters select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.narrow-box {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.narrow-box h2 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.narrow-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.narrow-chips a {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.narrow-chips a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.narrow-chips a span {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    font-size: 0.92rem;
    color: var(--text-light);
}

.pagination a {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 1100px) {
    .nav-search { flex-basis: 190px; margin-left: 1rem; }
}

@media (max-width: 968px) {

    .nav-wrapper { flex-wrap: wrap; }
    .nav-search {
        order: 3;
        flex: 1 0 100%;
        margin: 0.6rem 0 0.35rem;
    }
    .search-filters { grid-template-columns: 1fr; }
    .search-filters .sf-go .btn { width: 100%; }
}

.contact-row input[type="tel"],
.contact-row input[type="url"],
.contact-row input[type="search"],
.contact-row input[type="password"],
.field-row input[type="tel"],
.field-row input[type="url"],
.field-row input[type="text"],
.field-row input[type="email"],
.field-row select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.25s ease;
}

.contact-row input[type="tel"]:focus,
.contact-row input[type="url"]:focus,
.contact-row input[type="search"]:focus,
.field-row input:focus,
.field-row select:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 640px) {

    .contact-row input[type="tel"],
    .contact-row input[type="url"],
    .contact-row input[type="search"],
    .field-row input,
    .field-row select {
        font-size: 16px;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-actions .btn-secondary {
    color: white;
    border-color: white;
}

.hero-actions .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.home-groomer-search {
    display: flex;
    gap: 0.75rem;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.home-groomer-search input {
    flex: 1;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    min-width: 0;
}

.home-groomer-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.home-search-hint {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.home-states-label {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.narrow-chips.home-states {
    justify-content: center;
}

@media (max-width: 640px) {
    .home-groomer-search { flex-direction: column; }
    .home-groomer-search input { font-size: 16px; }
    .hero-actions .btn { width: 100%; }
}

.claim-next {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin: 1.75rem 0;
}

.claim-next h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.claim-next ul {
    margin: 0.75rem 0 0.9rem 1.15rem;
    color: var(--text-light);
    font-size: 0.93rem;
}

.claim-next li {
    margin-bottom: 0.35rem;
}

.uspg-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background-color: var(--text-dark);
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.uspg-consent-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.uspg-consent-t {
    margin: 0;
    flex: 1 1 380px;
    font-size: 0.88rem;
    line-height: 1.55;
}

.uspg-consent-t a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.uspg-consent-t a:hover {
    color: #f3d9c6;
}

.uspg-consent-btns {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}

.uspg-consent-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.uspg-consent-btn:hover {
    box-shadow: var(--shadow-hover);
}

.uspg-consent-btn.ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.uspg-consent-btn.ghost:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.cookie-list {
    margin: 0.75rem 0 1.75rem 1.15rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-list li {
    margin-bottom: 0.6rem;
}

.cookie-list strong {
    color: var(--text-dark);
}

.cookie-list code {
    font-size: 0.85em;
    background-color: var(--bg-light);
    padding: 1px 5px;
    border-radius: 4px;
}

.cookie-choice {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0 0.9rem;
}

.cookie-choice .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
}

.cookie-page h2 {
    font-size: 1.4rem;
    margin: 2rem 0 0.6rem;
}

.cookie-page > p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cookie-page .claim-next h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

@media (max-width: 560px) {
    .uspg-consent-btns {
        width: 100%;
    }
    .uspg-consent-btn {
        flex: 1;
    }
}

.seasonal-prose {
    max-width: 820px;
    margin: 0 auto;
}

.seasonal-prose h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 0.75rem;
}

.seasonal-prose h2:first-child {
    margin-top: 0;
}

.seasonal-prose h3 {
    font-size: 1.15rem;
    margin: 1.6rem 0 0.4rem;
    color: var(--primary-color);
}

.seasonal-prose p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.seasonal-prose > p:first-of-type {
    font-size: 1.03rem;
}

.seasonal-now {
    background: linear-gradient(135deg, rgba(18, 85, 77, 0.07), rgba(10, 58, 52, 0.07));
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 2.5rem;
}

.seasonal-now h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.seasonal-now p {
    margin-bottom: 0.5rem;
}

.seasonal-now p:last-child {
    margin-bottom: 0;
}

.seasonal-now-note {
    font-weight: 500;
    color: var(--primary-color);
}

.seasonal-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 1.25rem;
    margin: 1.75rem 0 0.5rem;
    counter-reset: seasonal-point;
}

.seasonal-point {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.3rem 1.35rem;
}

.seasonal-point::before {
    counter-increment: seasonal-point;
    content: counter(seasonal-point);
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.8rem;
    text-align: center;
}

.seasonal-point h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.seasonal-point p {
    margin: 0;
    font-size: 0.92rem;
}

.seasonal-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 1.75rem;
    padding: 0;
    color: var(--text-light);
}

.seasonal-list li {
    margin: 0;
    padding: 0.85rem 1.1rem;
    line-height: 1.65;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
}

.seasonal-list strong {
    color: var(--text-dark);
}

.featured-section .info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.owner-warn {
    background-color: #fff8e6;
    border: 1px solid #f0d48a;
    border-left: 4px solid #e0a800;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin: 0 0 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.city-elsewhere {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.9rem 1.15rem;
    background-color: #fff8e6;
    border: 1px solid #f0d48a;
    border-left: 4px solid #e0a800;
    border-radius: 10px;
    line-height: 1.6;
}

.near-towns {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.85rem;
}

.near-town {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1.1rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.near-town:hover {
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.near-town-name {
    font-weight: 600;
    color: var(--text-dark);
}

.near-town-meta {
    font-size: 0.88rem;
    color: var(--primary-color);
}

.occasion-see-also {
    margin-top: 0.75rem;
}

.occasion-see-also a {
    color: var(--primary-color);
    font-weight: 500;
}

.occasion-see-also span {
    display: block;
    color: var(--text-light);
    font-size: 0.94rem;
    margin-top: 0.15rem;
}

.guides-lead {
    max-width: 760px;
    margin: -1.5rem auto 3rem;
    color: var(--text-light);
}

.guides-lead p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.guides-lead p:last-child {
    margin-bottom: 0;
}

.guide-picks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.1rem;
    margin: 1.5rem 0 2.25rem;
}

.guide-pick {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
}

.article-body .guide-pick h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.article-body .guide-pick h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-body .guide-pick h3 a:hover {
    text-decoration: underline;
}

.article-body .guide-pick p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
}

.seasonal-prose .breed-faqs {
    margin-top: 1rem;
}

.seasonal-prose a:not(.btn) {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.seasonal-prose a:not(.btn):hover {
    color: var(--secondary-color);
}

.occasion-card {
    display: block;
    color: inherit;
}

.occasion-detail {
    padding: 3rem 0;
    scroll-margin-top: 70px;
    border-top: 1px solid var(--border-color);
}

.occasion-detail:nth-of-type(even) {
    background-color: var(--bg-light);
}

.occasion-prose {
    max-width: 820px;
    margin: 0 auto;
}

.occasion-prose h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 0.75rem;
}

.occasion-prose h2:first-child {
    margin-top: 0;
}

.occasion-prose h3 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
}

.occasion-prose p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.occasion-prose a:not(.btn) {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.occasion-prose a:not(.btn):hover {
    color: var(--secondary-color);
}

.occasion-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 1.25rem;
    margin: 1.75rem 0 0.5rem;
}

.occasion-point {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 1.2rem 1.3rem;
    box-shadow: var(--shadow);
}

.occasion-point p {
    margin: 0;
    font-size: 0.92rem;
}

.occasion-list {
    margin: 0.75rem 0 1.5rem 1.2rem;
    color: var(--text-light);
}

.occasion-list li {
    margin-bottom: 0.7rem;
    line-height: 1.65;
}

.occasion-list strong {
    color: var(--text-dark);
}

.occasion-more {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.occasion-prose .breed-faqs {
    margin-top: 1rem;
}

body .occasion-selector,
body .seasonal-hero,
body .articles-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.claim-terms {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 1rem 1.15rem;
    margin: 1.5rem 0 1.25rem;
}

.claim-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-light);
}

.claim-terms input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.claim-terms strong {
    color: var(--text-dark);
}

.claim-terms a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

#pay-locked[hidden] {
    display: none;
}

.ad-slot {
    background-color: var(--bg-light);
    padding: 1.5rem 0 1.75rem;
}

.ad-slot-city {
    background-color: transparent;
    padding: 2.5rem 0 0;
}

.ad-slot-city + section {

    padding-top: 1.25rem;
}

.ad-slot-inner.is-static {
    cursor: default;
}

.ad-slot-inner.is-static:hover {
    box-shadow: var(--shadow);
    transform: none;
}

.ad-slot-house .ad-slot-head {
    color: var(--primary-color);
}

.ad-slot-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 96px;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    color: var(--text-dark);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ad-slot-media {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.ad-slot-copy,
.ad-slot-cta,
.ad-slot-label {
    position: relative;
    z-index: 1;
}

.ad-slot-inner:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.ad-slot-label {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.82);
    padding: 1px 7px;
    border-radius: 20px;
}

.ad-slot-copy {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 58%;
}

.ad-slot-city .ad-slot-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 1.5rem;
}

.ad-slot-city .ad-slot-words {
    flex: 1 1 250px;
    min-width: 0;
}

.ad-slot-head {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
}

.ad-slot-text {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: #4a5a52;
}

.ad-slot-cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2d6a4f, #1b4332);
    box-shadow: 0 2px 10px rgba(27, 67, 50, 0.32);
}

.ad-slot-inner:hover .ad-slot-cta {
    background: linear-gradient(135deg, #35805e, #23553f);
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.4);
}

.ad-slot-city .ad-slot-cta {
    flex: 0 0 auto;
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
    background: linear-gradient(135deg, #12554d, #0a3a34);
    box-shadow: 0 2px 10px rgba(18, 85, 77, 0.32);
}

.ad-slot-city .ad-slot-inner:hover .ad-slot-cta {
    background: linear-gradient(135deg, #2f7a70, #12554d);
    box-shadow: 0 4px 14px rgba(18, 85, 77, 0.42);
}

@media (max-width: 700px) {
    .ad-slot {
        padding: 0.85rem 0 1.1rem;
    }
    .ad-slot-inner {
        display: block;
        min-height: 0;
        padding: 0;
    }
    .ad-slot-inner.has-media {
        padding-top: 0;
    }

    .ad-slot-media {
        position: static;
        display: block;
        height: 84px;
        background-image: var(--bg-m, var(--bg));
        background-position: center;
    }
    .ad-slot-copy {
        display: block;
        padding: 0.75rem 1rem 0;

        max-width: 100%;
    }
    .ad-slot-head {
        font-size: 1.15rem;
    }

    .ad-slot-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 0.25rem;
        font-size: 0.86rem;
        line-height: 1.4;
    }
    .ad-slot-city .ad-slot-copy {
        display: block;
    }
    .ad-slot-city .ad-slot-cta {
        margin: 0.7rem 0 0.9rem;
        padding: 0.7rem 1rem;
        font-size: 0.88rem;
    }
    .ad-slot-cta {
        display: block;
        margin: 0.7rem 1rem 0.9rem;

        padding: 0.7rem 1rem;
        font-size: 0.88rem;
        text-align: center;
    }
    .ad-slot-label {
        top: 8px;
        right: 8px;
    }
}

.advertise-prose {
    max-width: 820px;
    margin: 0 auto;
}

.advertise-prose h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 0.75rem;
}

.advertise-prose h2:first-child {
    margin-top: 0;
}

.advertise-prose p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advertise-prose strong {
    color: var(--text-dark);
}

.advertise-prose a:not(.btn) {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.advertise-prose a:not(.btn):hover {
    color: var(--secondary-color);
}

.advertise-list {
    margin: 0.75rem 0 1.5rem 1.2rem;
    color: var(--text-light);
}

.advertise-list li {
    margin-bottom: 0.7rem;
    line-height: 1.65;
}

.advertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0 0.5rem;
}

.advertise-stat {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.advertise-stat strong {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.advertise-stat span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text-light);
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 2.5rem 0 0.5rem;
}

.pager-nums {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.pager-num,
.pager-step {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.pager-step {
    padding: 0.5rem 1.1rem;
}

a.pager-num:hover,
a.pager-step:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pager-num.is-current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

.pager-step.is-off {
    opacity: 0.38;
    background-color: transparent;
}

.pager-gap {
    padding: 0 0.15rem;
    color: var(--text-light);
}

@media (max-width: 560px) {
    .pager-num,
    .pager-step {
        padding: 0.45rem 0.7rem;
        font-size: 0.85rem;
    }
    .pager-step {
        padding: 0.45rem 0.85rem;
    }
}

.paid-banner {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.12), rgba(39, 174, 96, 0.05));
    border-bottom: 3px solid var(--success-color);
    padding: 1.1rem 0;
    margin-bottom: 1.5rem;
}

.paid-banner strong {
    display: block;
    font-size: 1.15rem;
    color: #1e6b41;
    margin-bottom: 0.2rem;
}

.paid-banner span {
    font-size: 0.92rem;
    color: var(--text-light);
}

.hours-edit td.hours-copy {
    white-space: nowrap;
    padding-left: 0.5rem;
}

.hours-same,
#hours-copy-all {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hours-same:hover,
#hours-copy-all:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hours-same.done {
    border-color: var(--success-color);
    color: var(--success-color);
}

.hours-all {
    margin: 0.5rem 0 1.5rem;
}

.save-note {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 0.9rem;
    font-size: 0.88rem;
    color: var(--text-light);
}

.save-note[hidden] {
    display: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: uspgspin 0.7s linear infinite;
}

@keyframes uspgspin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .save-note {
        display: flex;
        margin: 0.75rem 0 0;
    }
    .hours-edit td.hours-copy {
        padding-left: 0;
    }
}

.groomer-card h2 {
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
}

.groomer-card .tag-list {
    gap: 0.4rem;
}

.groomer-card h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin: 1.1rem 0 0.5rem;
}

.groomer-card h3:first-of-type {
    margin-top: 0;
}

.groomer-facts dt:first-child {
    margin-top: 0;
}

.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    resize: vertical;
    transition: border-color 0.25s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ad-town-search {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.ad-town-search label {
    flex: 1 0 100%;
    font-weight: 500;
    color: var(--text-dark);
}

.ad-town-search input {
    flex: 1 1 320px;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-town-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ad-town-list {
    max-width: 900px;
    margin: 0 auto;
}

.ad-town-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.ad-town-main {
    flex: 1 1 220px;
    min-width: 0;
}

.ad-town-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

a.ad-town-name:hover {
    color: var(--primary-color);
}

.ad-town-meta {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.ad-town-price {
    flex: 0 0 auto;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ad-town-price .muted {
    font-size: 0.8rem;
    font-weight: 400;
}

.ad-town-pick {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin: -0.5rem 0 -0.5rem -0.5rem;
    cursor: pointer;
}

.ad-town-pick input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.ad-drop-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 1.25rem auto 0;
    text-align: center;
}

.ad-drop-actions .btn {
    cursor: pointer;
}

.ad-drop-actions .muted {
    flex: 1 1 300px;
    font-size: 0.85rem;
    text-align: left;
}

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

.ad-town-taken {
    flex: 1 1 100%;
    margin: 0;
    padding: 0.75rem 0.9rem;
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    background-color: var(--bg-light);
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.ad-town-act {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ad-town-act input[type="email"] {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.9rem;
}

.ad-town-act .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.ad-town-total {
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.ad-copy-form {
    max-width: 680px;
    margin: 0 auto;
}

.ad-field {
    margin-bottom: 1.35rem;
}

.ad-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.ad-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.25s ease;
}

.ad-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ad-count {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
}

.ad-count.is-near {
    color: var(--primary-color);
    font-weight: 500;
}

.ad-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.ad-err {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
}

.ad-copy-rules {
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    background-color: var(--bg-light);
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.ad-copy-rules p + p {
    margin-top: 0.75rem;
}

.ad-summary {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.ad-summary a {
    color: var(--primary-color);
    font-weight: 500;
}

.ad-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.ad-actions .btn {
    cursor: pointer;
}

.ad-slot-preview {
    padding-top: 0;
}

@media (max-width: 640px) {
    .ad-town-row {
        align-items: stretch;
    }
    .ad-town-act,
    .ad-town-act .btn,
    .ad-town-act input[type="email"] {
        width: 100%;
    }
    .ad-town-act .btn,
    .ad-town-act input[type="email"] {
        min-height: 44px;
    }
    .ad-actions .btn {
        width: 100%;
    }
}

.ad-terms {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-white);
}

.ad-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.ad-terms input[type="checkbox"] {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.ad-terms a {
    color: var(--primary-color);
    font-weight: 500;
}

.ad-compare {
    max-width: 960px;
    margin: 2rem auto 0;
    overflow-x: auto;
}

.ad-compare table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ad-compare th,
.ad-compare td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.ad-compare thead th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.ad-compare tbody tr:last-child td {
    border-bottom: 0;
}

.ad-product {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.25rem 2.25rem;
    border-radius: 14px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.ad-product-premium {
    border-top: 5px solid var(--primary-color);
}

.ad-product-town {
    border-top: 5px solid #2d6a4f;
}

.ad-product-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.ad-product-head h2,
.ad-product-head h3 {
    margin: 0;
}

.ad-product-tag {
    flex: 0 0 auto;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.ad-tag-instant {
    background: linear-gradient(135deg, #2d6a4f, #1b4332);
}

.ad-tag-once {
    background: linear-gradient(135deg, #495057, #212529);
}

.ad-product h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.ad-product p + p {
    margin-top: 0.75rem;
}

.ad-product-cta {
    margin-top: 1.75rem;
    text-align: center;
}

.ad-product-cta .btn {
    cursor: pointer;
}

.ad-product-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 2rem;
    align-items: stretch;
}

.ad-product-pair .ad-product {
    max-width: none;
    margin: 0;
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.ad-product-pair .ad-product-cta {
    margin-top: auto;
    padding-top: 1.25rem;
}

@media (max-width: 640px) {
    .ad-product {
        padding: 1.5rem 1.25rem 1.75rem;
    }
    .ad-product-head {
        align-items: flex-start;
    }
    .ad-product-cta .btn {
        width: 100%;
    }
}

.share-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 900px;
    margin: 2rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.share-row-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 0.25rem;
}

.share-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, transform 0.25s ease;
}

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

.share-btn-x:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.share-btn-fb:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.share-btn-email:hover,
.share-btn-copy:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.share-btn-note {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    padding: 3px 9px;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-btn-copy.is-copied {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
}

.share-btn-copy.is-copied .share-btn-note {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.ad-first-come {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
}

.order-card {
    scroll-margin-top: 80px;
}

.order-families {
    color: var(--text-light);
    font-size: 0.95rem;
}

.order-families a {
    color: var(--primary-color);
    font-weight: 500;
}

.order-families a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.rank-list .tip-box {
    background: var(--bg-white);
    margin: 0;
}

.rank-row {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.rank-media {
    position: relative;
    background: var(--bg-light);
    min-height: 260px;
}

.rank-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    box-shadow: var(--shadow);
}

.rank-body {
    padding: 1.75rem 1.75rem 1.75rem 0;
}

.rank-body h2 {
    font-size: 1.6rem;
    margin: 0 0 0.6rem;
    color: var(--text-dark);
}

.rank-tagline {
    display: block;
    margin-top: 0.2rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.rank-why {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.rank-points {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.rank-points li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.rank-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.rank-points strong {
    color: var(--text-dark);
}

.rank-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.rank-specs dt {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-meta);
    margin-bottom: 0.2rem;
}

.rank-specs dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.color-swatch {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}

.color-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-meta);
    margin-bottom: 0.35rem;
}

.color-picks {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.color-picks li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.color-picks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.color-picks a {
    color: var(--primary-color);
    font-weight: 500;
}

.color-picks a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.month-peak {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.month-peak strong {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-meta);
    margin-bottom: 0.15rem;
}

.month-peak a {
    color: var(--primary-color);
    font-weight: 500;
}

.month-peak a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.month-notes {
    margin: auto 0 0;
    padding: 0.9rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.month-notes > div + div {
    margin-top: 0.6rem;
}

.month-notes dt {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-meta);
    margin-bottom: 0.15rem;
}

.month-notes dd {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.section-header h2 .muted {
    font-size: 1.4rem;
    font-weight: 400;
}

.pf-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.pf-factors + .article-content,
.pf-factors + .tip-box,
.color-picks + .tip-box,
.color-picks + .article-content,
.state-grid + .article-content,
.breed-grid + .article-content,
.step-list + .article-content,
.step-list + .tip-box {
    margin-top: 2rem;
}

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

@media (max-width: 700px) {
    .breed-grid.grid-four {
        grid-template-columns: 1fr;
    }
}

.breed-grid.state-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .breed-grid.state-grid {
        grid-template-columns: 1fr;
    }
}

.concept-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.concept-grid > * {
    flex: 0 1 calc(25% - 0.94rem);
}

.concept-grid.cols-five > * {
    flex: 0 1 calc(20% - 1rem);
}

.concept-card .breed-image {
    height: 150px;
}

.concept-card .breed-info {
    padding: 0.9rem 1.1rem 1.1rem;
}

.concept-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.concept-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.concept-card h3 a:hover {
    color: var(--primary-color);
}

.concept-card .breed-description {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .concept-grid > *,
    .concept-grid.cols-five > * {
        flex-basis: calc(50% - 0.63rem);
    }
}

@media (max-width: 620px) {
    .concept-grid > *,
    .concept-grid.cols-five > * {
        flex-basis: 100%;
    }
}

.state-grid .breed-image {
    height: 180px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: start;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.75rem 1.5rem 1.25rem;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-body h3 {
    font-size: 1.3rem;
    margin: 0 0 0.4rem;
    color: var(--text-dark);
}

.step-lead {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-body .rank-points:last-child {
    margin-bottom: 0;
}

.info-card .rank-points {
    text-align: left;
    margin-bottom: 0;
}

@media (max-width: 560px) {
    .step-item {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .step-num {
        margin-bottom: 0.75rem;
    }
}

.state-card .breed-info {
    padding: 1rem 1.25rem 1.25rem;
}

.state-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
}

.state-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.state-card h3 a:hover {
    color: var(--primary-color);
}

.state-card .breed-description {
    margin-bottom: 0;
}

.pf-factor {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.15rem;
}

.pf-factor strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.pf-factor strong a {
    color: var(--primary-color);
    text-decoration: none;
}

.pf-factor strong a:hover {
    text-decoration: underline;
}

.pf-factor span {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .rank-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rank-media {
        min-height: 0;
        height: 230px;
    }

    .rank-body {
        padding: 1.5rem;
    }

    .rank-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.btn-row .btn-primary {
    border: 2px solid transparent;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.rank-grid .breed-image {
    height: 190px;
}

.tax-tree {
    columns: 2;
    column-gap: 3rem;
}

.tax-order {
    break-inside: avoid;
    margin-bottom: 1.6rem;
}

.tax-order > h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.tax-order > h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.tax-order > h3 a:hover {
    color: var(--primary-color);
}

.tax-fam {
    margin: 0.5rem 0 0.5rem 1rem;
}

.tax-fam h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.tax-fam h4 a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.tax-fam h4 a:hover {
    text-decoration: underline;
}

.tax-breeds {
    list-style: none;
    margin: 0 0 0 1rem;
    padding: 0;
}

.tax-breeds li {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.tax-breeds > li > a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
}

.tax-breeds > li > a:hover {
    color: var(--primary-color);
}

.tax-breeds em {
    color: var(--text-meta);
}

.tax-breeds em a {
    color: var(--primary-color);
    font-weight: 400;
    text-decoration: none;
}

.tax-breeds em a:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .rank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .tax-tree {
        columns: 1;
    }
}

@media (max-width: 560px) {
    .rank-grid {
        grid-template-columns: 1fr;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
.groomer-facts dd a,
.claim-band-more {
    display: inline-block;
    padding: 0.15rem 0;
    min-height: 24px;
}
.share-btn-note {
    font-size: 0.75rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
.groomer-facts dd a,
.claim-band-more {
    display: inline-block;
    padding: 0.15rem 0;
    min-height: 24px;
}
.share-btn-note {
    font-size: 0.75rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
.groomer-facts dd a,
.claim-band-more {
    display: inline-block;
    padding: 0.15rem 0;
    min-height: 24px;
}
.share-btn-note {
    font-size: 0.75rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
.groomer-facts dd a,
.claim-band-more {
    display: inline-block;
    padding: 0.15rem 0;
    min-height: 24px;
}
.share-btn-note {
    font-size: 0.75rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.masthead {
    min-height: 240px;
}
.hero {
    background: linear-gradient(135deg, #12554d 0%, #0a3a34 100%);
    min-height: 340px;
    padding: 3.5rem 2rem;
}
.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}
.footer-section h4 a {
    display: inline-block;
    padding: 0.3rem 0;
    min-height: 24px;
}
.groomer-facts dd a,
.claim-band-more {
    display: inline-block;
    padding: 0.15rem 0;
    min-height: 24px;
}
.share-btn-note {
    font-size: 0.75rem;
}
.ad-slot-city {
    padding: 2.5rem 0 2.75rem;
}
.ad-slot-city + section {
    padding-top: 2.25rem;
}
@media (max-width: 620px) {
    .masthead {
        min-height: 168px;
    }
    .hero {
        min-height: 260px;
        padding: 2.5rem 1.25rem;
    }
}

.hero .btn-primary {
    background: #fdfaf4;
    border-color: #fdfaf4;
    color: #0a3a34;
    font-weight: 600;
}
.hero .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0a3a34;
}
.hero .btn-secondary {
    border-color: rgba(253, 250, 244, 0.85);
    color: #fdfaf4;
}
.hero .btn-secondary:hover {
    background: rgba(253, 250, 244, 0.14);
    border-color: #fdfaf4;
}

.groomer-gallery a.gallery-zoom {
    display: block;
    cursor: zoom-in;
}

.groomer-gallery a.gallery-zoom img {
    display: block;
    transition: transform 0.3s ease;
}

.groomer-gallery figure:hover a.gallery-zoom img {
    transform: scale(1.05);
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem 3rem;
    background-color: rgba(18, 22, 20, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.lightbox-stage {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 9rem);
    border-radius: 10px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}

.lightbox-count {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.14);
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
    background-color: rgba(255, 255, 255, 0.32);
}

.lightbox-close {
    top: 1rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.9rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    font-size: 2.4rem;
    padding-bottom: 0.3rem;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-nav[hidden] {
    display: none;
}

@media (max-width: 640px) {

    .lightbox {
        padding: 3.5rem 0.75rem 5rem;
    }

    .lightbox-img {
        max-height: calc(100vh - 10.5rem);
    }

    .lightbox-nav {
        top: auto;
        bottom: 1rem;
        transform: none;
        width: 2.9rem;
        height: 2.9rem;
        font-size: 2.1rem;
    }

    .lightbox-prev {
        left: 28%;
    }

    .lightbox-next {
        right: 28%;
    }
}
