/* King Rottweilers Theme Main Stylesheet */

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-branding {
    flex-shrink: 0;
}

.custom-logo {
    max-height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-white);
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_parent > a,
.nav-links li.current-menu-ancestor > a,
.nav-links li.active > a {
    color: #C92A2A;
}

/* Dropdown Parent Indicator */
.nav-links .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-bottom: 2px;
}

.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children:focus-within > a::after {
    transform: rotate(-135deg);
}

/* Dropdown Sub-Menu */
.nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    min-width: 220px;
    background-color: #141414;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 2px solid var(--color-gold);
    border-radius: 4px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.06);
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

/* Invisible hover bridge between parent item and dropdown */
.nav-links .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    inset-inline-start: 0;
    width: 100%;
    height: 10px;
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-links .sub-menu a {
    display: block;
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.75px;
    color: #D1D1D1;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links .sub-menu li:last-child > a {
    border-bottom: none;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu li.current-menu-item > a,
.nav-links .sub-menu li.current-menu-ancestor > a {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--color-gold);
    padding-inline-start: 1.5rem;
}

/* Nested Multi-level Dropdown (3rd level) */
.nav-links .sub-menu .menu-item-has-children > a::after {
    transform: rotate(-45deg);
    margin-inline-start: auto;
}

.nav-links .sub-menu .menu-item-has-children:hover > a::after {
    transform: rotate(135deg);
}

.nav-links .sub-menu .sub-menu {
    top: -0.5rem;
    inset-inline-start: 100%;
    transform: translateX(8px);
}

.nav-links .sub-menu li:hover > .sub-menu,
.nav-links .sub-menu li:focus-within > .sub-menu {
    transform: translateX(0);
}

.dropdown-toggle {
    display: none;
}

.header-cta-wrapper {
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    text-align: center;
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.8rem;
}

.btn-burgundy {
    background-color: var(--color-burgundy);
    color: #FFFFFF;
    border-color: var(--color-gold);
}

.btn-burgundy:hover {
    background-color: var(--color-burgundy-hover);
    border-color: var(--color-gold);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(122, 12, 12, 0.4);
}

.btn-outline-gold {
    background-color: rgba(13, 13, 13, 0.6);
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 5rem 0 0 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.94) 0%,
        rgba(10, 10, 10, 0.85) 45%,
        rgba(10, 10, 10, 0.4) 75%,
        rgba(10, 10, 10, 0.2) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.hero-headline .headline-row {
    display: block;
}

.hero-headline .headline-burgundy {
    color: #9E1515;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 320px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider-emblem {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-description {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #D1D5DB;
    margin-bottom: 2.25rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.btn-hero {
    padding: 0.95rem 2rem;
}

/* Hero Right: Features Pillar */
.hero-features-pillar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-end;
    padding-inline-end: 1rem;
}

.feature-pillar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 0.65rem 1.15rem;
    min-width: 170px;
    transition: var(--transition);
}

.feature-pillar-item:hover {
    border-color: var(--color-gold);
    background: rgba(24, 24, 24, 0.85);
    transform: translateX(-4px);
}

.pillar-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg,
.pillar-card-icon svg,
.badge-icon svg,
.divider-emblem svg,
.stat-icon svg {
    overflow: visible;
}

.pillar-text {
    display: flex;
    flex-direction: column;
    text-align: start;
    line-height: 1.25;
}

.pillar-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
}

.pillar-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Hero Bottom Curved Arc Divider */
.hero-curved-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
    margin-bottom: -1px;
}

.hero-divider-curve {
    width: 100%;
    height: 60px;
    display: block;
    fill: #FAF6F0; /* Must match the About section background */
}

.hero-curved-divider path {
    fill: #FAF6F0;
}

/* ==========================================================================
   Features Bar (Floating Overlap Card)
   ========================================================================== */
.hero-features-container {
    position: relative;
    z-index: 20;
    width: 100%;
}

.hero-features-bar,
.badges-card {
    max-width: 1140px;
    margin: 40px auto -60px auto; /* Pulls half of it down into the light section */
    position: relative;
    z-index: 20;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.badge-item {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
    border-inline-end: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.badge-item:last-child {
    border-inline-end: none;
}

.badge-item:hover {
    background-color: #181818;
}

.badge-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.badge-item:nth-child(2) .badge-icon,
.badge-item:nth-child(3) .badge-icon {
    color: #9E1515;
}

.badge-item:hover .badge-icon {
    transform: scale(1.1);
}

.badge-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0;
}

.badge-subtitle {
    font-size: 0.78rem;
    color: #9E9E9E;
    letter-spacing: 0.5px;
    margin-top: -0.4rem;
    display: block;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    position: relative;
    background-color: #FAF6F0;
    color: var(--color-text-dark);
    padding-top: 140px;
    padding-bottom: 6.5rem;
    overflow: hidden;
}

.about-sketch-watermark {
    position: absolute;
    top: 50%;
    inset-inline-end: -50px;
    transform: translateY(-50%);
    width: 480px;
    height: 580px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 360px;
    width: 100%;
    margin: 10px auto 0 auto;
}

.about-akc-watermark,
.about-seal-watermark {
    position: absolute;
    top: -55px;
    left: -85px;
    inset-inline-start: -85px;
    width: 210px;
    height: 210px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.38;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(100%) contrast(110%);
}

.about-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
}

.about-dog-img,
.about-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image-frame:hover .about-dog-img {
    transform: scale(1.02);
}

.about-content {
    max-width: 580px;
}

.about-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 0.75rem;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 1.25rem;
}

.about-headline .headline-row {
    display: block;
}

.about-quote-subhead {
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-burgundy);
    margin: 1rem 0 1.25rem;
    line-height: 1.4;
}

.about-bar-divider {
    width: 55px;
    height: 3px;
    background-color: var(--color-burgundy);
    margin-bottom: 1.75rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2.25rem;
}

/* ==========================================================================
   Newsletter / AKC Strip Section
   ========================================================================== */
.newsletter-bar-section {
    background-color: var(--color-burgundy);
    color: #FFFFFF;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-content-group {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
}

.newsletter-akc-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.newsletter-akc-seal {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.newsletter-akc-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.newsletter-divider-vertical {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.newsletter-text-block {
    flex: 1;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 0.25rem 0;
}

.newsletter-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.newsletter-form-block {
    flex: 0 0 380px;
    max-width: 100%;
}

/* Gravity Forms inside Newsletter */
.newsletter-bar-section .gform_wrapper,
.newsletter-bar-section div[id^="gform_wrapper_"],
.newsletter-bar-section .gform_wrapper.gravity-theme,
.newsletter-bar-section .gform_wrapper.gform-theme--framework {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.newsletter-bar-section .gform_heading,
.newsletter-bar-section .gfield_label,
.newsletter-bar-section .gfield_description,
.newsletter-bar-section .gform_description,
.newsletter-bar-section .gform_validation_container,
.newsletter-bar-section .screen-reader-text {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    inset-inline-start: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

.newsletter-bar-section form,
.newsletter-bar-section form[id^="gform_"] {
    display: flex !important;
    flex-flow: row wrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    min-height: 48px !important;
}

.newsletter-bar-section .gform_body,
.newsletter-bar-section .gform-body {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
}

.newsletter-bar-section .gform_fields,
.newsletter-bar-section ul.gform_fields,
.newsletter-bar-section div.gform_fields,
.newsletter-bar-section .gform-theme__fields {
    display: flex !important;
    flex-flow: row wrap !important;
    align-items: stretch !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.newsletter-bar-section .gfield:not(.gfield--type-captcha),
.newsletter-bar-section div.gfield:not(.gfield--type-captcha),
.newsletter-bar-section li.gfield:not(.gfield--type-captcha) {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: stretch !important;
}

/* reCAPTCHA Styling inside Newsletter */
.newsletter-bar-section .gfield--type-captcha,
.newsletter-bar-section .gfield_captcha,
.newsletter-bar-section div[class*="gfield--type-captcha"],
.newsletter-bar-section div[class*="gfield--input-type-captcha"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-top: 10px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.newsletter-bar-section .gfield_visibility_hidden,
.newsletter-bar-section .gfield_hidden {
    display: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
}

.newsletter-bar-section .ginput_container,
.newsletter-bar-section div[class*="ginput_container"] {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex: 1 1 100% !important;
    align-items: stretch !important;
}

.newsletter-bar-section .ginput_recaptcha {
    margin: 0 !important;
    display: block !important;
    transform-origin: 0 0 !important;
}

.newsletter-bar-section input[type="text"],
.newsletter-bar-section input[type="email"],
.newsletter-bar-section input.small,
.newsletter-bar-section input.medium,
.newsletter-bar-section input.large,
.newsletter-bar-section .ginput_container input {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    border: none !important;
    background: #FFFFFF !important;
    padding: 0 1.25rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    color: #111111 !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    border-radius: 4px 0 0 4px !important;
    margin: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

.newsletter-bar-section input::placeholder {
    color: #777777 !important;
    opacity: 1 !important;
}

.newsletter-bar-section .gform_footer,
.newsletter-bar-section .gform-theme__footer {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    flex: 0 0 auto !important;
}

.newsletter-bar-section input[type="submit"],
.newsletter-bar-section button[type="submit"],
.newsletter-bar-section .gform_button {
    background-color: #B38E2A !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 0 1.5rem !important;
    height: 48px !important;
    min-height: 48px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 4px 4px 0 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    white-space: nowrap !important;
}

.newsletter-bar-section input[type="submit"]:hover,
.newsletter-bar-section button[type="submit"]:hover,
.newsletter-bar-section .gform_button:hover {
    background-color: #9A771E !important;
}

.newsletter-bar-section .gform_confirmation_message {
    color: #FFFFFF !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 0.75rem 0 !important;
    background: transparent !important;
    border: none !important;
}

.newsletter-bar-section .gform_validation_errors,
.newsletter-bar-section .validation_error {
    flex: 0 0 100% !important;
    width: 100% !important;
    font-size: 0.85rem !important;
    color: #FFAAAA !important;
    padding: 6px 0 !important;
    margin: 4px 0 !important;
    background: transparent !important;
}

.newsletter-bar-section .gfield_validation_message,
.newsletter-bar-section .validation_message {
    font-size: 0.8rem !important;
    color: #FFAAAA !important;
    padding: 2px 0 !important;
    margin-top: 2px !important;
    background: transparent !important;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: #0A0A0A;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-area {
    position: relative;
    padding: 5rem 0 3.5rem;
}

.footer-crest-watermark {
    position: absolute;
    top: 50%;
    inset-inline-end: -40px;
    transform: translateY(-50%);
    width: 440px;
    height: 440px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.20;
    pointer-events: none;
    z-index: 1;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
}

.footer-logo img {
    max-height: 52px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9E9E9E;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 0.85rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    font-size: 0.9rem;
    color: #9E9E9E;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #9E9E9E;
}

.footer-contact-list .contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: #9E9E9E;
}

.footer-contact-list a:hover {
    color: var(--color-gold);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #777777;
}

.footer-bottom-container a {
    color: #777777;
}

.footer-bottom-container a:hover {
    color: var(--color-gold);
}

.site-credits p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links .sep {
    color: #444444;
}

/* ==========================================================================
   Inner Pages & CPT Templates Styling
   ========================================================================== */
.inner-page-container,
.inner-single-container,
.default-page-container,
.default-archive-container,
.not-found-container {
    padding: 4rem 1.5rem 6rem;
    min-height: 50vh;
}

/* Premium Default Page Container Styling */
.inner-page-container .entry-page {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.inner-page-container .entry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inner-page-container .entry-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.inner-page-container .banner-gold-divider {
    margin-top: 0.5rem;
}


/* Archive Header Banner */
.archive-header-banner {
    background: linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
    padding: 4.5rem 0 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
    position: relative;
}

.archive-banner-container {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archive-header-banner .banner-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.archive-header-banner .page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.15;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.banner-gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.25rem auto 0;
    width: 100%;
    max-width: 260px;
}

.banner-gold-divider .gold-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.banner-gold-divider .gold-diamond {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

.archive-description {
    max-width: 780px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    text-align: center;
    font-weight: 400;
}

.archive-description p {
    margin: 0 0 1rem;
    color: #d1d5db;
    line-height: 1.75;
}

.archive-description p:last-child {
    margin-bottom: 0;
}

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

/* Single Dog Profile & Pedigree Tree */
.dog-hero-banner,
.litter-hero-banner {
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.dog-subtitle,
.litter-subtitle,
.banner-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.dog-title,
.litter-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.dog-quick-badges,
.litter-quick-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    color: #D1D5DB;
}

.quick-badge strong {
    color: var(--color-gold);
}

.badge-expected {
    background: rgba(122, 12, 12, 0.6);
    border-color: var(--color-burgundy);
    color: #FFFFFF;
    font-weight: 700;
}

.dog-body-container,
.litter-body-container {
    padding: 3.5rem 1.5rem 5rem;
}

.dog-top-grid,
.litter-top-grid,
.product-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.dog-featured-photo-wrap,
.litter-featured-photo-wrap,
.product-featured-photo-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
}

.dog-main-photo-frame,
.litter-main-photo-frame,
.product-main-photo-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #141414;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.dog-main-img,
.litter-main-img,
.product-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.dog-thumb-strip,
.litter-thumb-strip,
.product-thumb-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding-bottom: 0.75rem;
    padding-top: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.05);
    -webkit-overflow-scrolling: touch;
}

.dog-thumb-strip::-webkit-scrollbar,
.litter-thumb-strip::-webkit-scrollbar,
.product-thumb-strip::-webkit-scrollbar {
    height: 6px;
}

.dog-thumb-strip::-webkit-scrollbar-track,
.litter-thumb-strip::-webkit-scrollbar-track,
.product-thumb-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.dog-thumb-strip::-webkit-scrollbar-thumb,
.litter-thumb-strip::-webkit-scrollbar-thumb,
.product-thumb-strip::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.dog-thumb-btn,
.litter-thumb-btn,
.product-thumb-btn {
    flex: 0 0 80px;
    height: 70px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background: #141414;
    cursor: pointer;
    transition: var(--transition);
}

.dog-thumb-btn img,
.litter-thumb-btn img,
.product-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dog-thumb-btn:hover,
.litter-thumb-btn:hover,
.product-thumb-btn:hover {
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.dog-thumb-btn.is-active,
.litter-thumb-btn.is-active,
.product-thumb-btn.is-active {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.product-specs-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-price-badge {
    background: rgba(122, 12, 12, 0.2);
    border: 1px solid rgba(122, 12, 12, 0.6);
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.1rem;
}

.product-price-badge strong {
    color: var(--color-gold);
    font-size: 1.35rem;
}

.product-excerpt {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.product-cta-block {
    margin-top: 1.5rem;
}

.dog-specs-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2rem;
}

.specs-title,
.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    padding: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.specs-list li span {
    color: #9E9E9E;
}

.specs-list li strong {
    color: #FFFFFF;
}

.dog-achievements-block {
    background: rgba(122, 12, 12, 0.15);
    border-inline-start: 3px solid var(--color-burgundy);
    padding: 1rem 1.25rem;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.dog-achievements-block h3 {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.dog-achievements-block p {
    font-size: 0.9rem;
    color: #D1D5DB;
    margin: 0;
}

.dog-cta-block {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Health Clearances Badges */
.dog-health-clearances-section {
    margin-bottom: 4rem;
}

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

.health-badge {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: var(--transition);
}

.health-badge.status-clear {
    border-inline-start: 4px solid #2E7D32;
}

.health-badge.status-carrier {
    border-inline-start: 4px solid var(--color-gold);
}

.health-badge .badge-label {
    font-size: 0.8rem;
    color: #9E9E9E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-badge .badge-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Pedigree Table */
.pedigree-tree-wrapper {
    margin-top: 4rem;
}

.pedigree-generations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .pedigree-generations-grid {
        grid-template-columns: 1fr;
    }
}

.pedigree-gen-col {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.5rem;
}

.pedigree-gen-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pedigree-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pedigree-item-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 1rem;
    transition: border-color 0.2s;
}

.pedigree-item-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.pedigree-item-card.sire-card {
    border-inline-start: 3px solid var(--color-burgundy);
}

.pedigree-item-card.dam-card {
    border-inline-start: 3px solid var(--color-gold);
}

.ancestor-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pedigree-item-content {
    color: #E5E7EB;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pedigree-item-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ==========================================================================
   Litters Section & Single Litter Profile
   ========================================================================== */
.litter-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.litter-featured-photo-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
}

.litter-main-photo-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #141414;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.litter-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.badge-expected-floating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(122, 12, 12, 0.9);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.litter-thumb-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding-bottom: 0.75rem;
    padding-top: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.05);
    -webkit-overflow-scrolling: touch;
}

.litter-thumb-strip::-webkit-scrollbar {
    height: 6px;
}

.litter-thumb-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.litter-thumb-strip::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.litter-thumb-btn {
    flex: 0 0 80px;
    height: 70px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background: #141414;
    cursor: pointer;
    transition: var(--transition);
}

.litter-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.litter-thumb-btn:hover {
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.litter-thumb-btn.is-active {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.litter-specs-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gold-link {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gold-link:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

.status-text-expected {
    color: var(--color-gold);
}

.status-text-available {
    color: #10B981;
}

.litter-specs-cta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

/* Compact Parents Lineage Strip */
.litter-parents-strip {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 1.75rem 2rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.parents-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.parent-strip-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    transition: var(--transition);
}

.parent-strip-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.parent-strip-avatar {
    flex-shrink: 0;
}

.parent-strip-avatar img,
.parent-strip-avatar .pairing-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.parent-strip-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.parent-role-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-gold);
}

.parent-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.25;
}

.parent-link {
    font-size: 0.82rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.parent-link:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

.parent-strip-divider {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
    padding: 0 0.5rem;
    user-select: none;
}

/* Litter Description */
.litter-desc-section {
    margin-bottom: 3.5rem;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 2.25rem;
}

/* Reservation & Availability Table */
.litter-reservation-section {
    margin-bottom: 4.5rem;
}

.reservation-main-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.reservation-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-burgundy);
}

[dir="rtl"] .reservation-main-title::after {
    left: auto;
    right: 0;
}

.litter-reservation-table-wrap {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.litter-reservation-table {
    width: 100%;
    border-collapse: collapse;
    text-align: start;
    margin: 0;
}

.litter-reservation-table thead tr {
    background: #4A0E17;
    border-bottom: 2px solid #580808;
}

.litter-reservation-table thead th {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.15rem 1.75rem;
    width: 50%;
    border: none;
}

.litter-reservation-table thead th.th-male {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .litter-reservation-table thead th.th-male {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.litter-reservation-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease;
}

.litter-reservation-table tbody tr:last-child {
    border-bottom: none;
}

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

.litter-reservation-table tbody td {
    padding: 1.15rem 1.75rem;
    vertical-align: middle;
    font-size: 0.95rem;
    border: none;
}

.litter-reservation-table tbody td.cell-male {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

[dir="rtl"] .litter-reservation-table tbody td.cell-male {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.cell-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ind-available {
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.ind-reserved {
    background: #EF4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.cell-male.is-available .item-text,
.cell-female.is-available .item-text {
    color: #FFFFFF;
    font-weight: 600;
}

.cell-male.is-reserved .item-text,
.cell-female.is-reserved .item-text {
    color: #9CA3AF;
    font-weight: 400;
}

.reservation-cta-bar {
    background: linear-gradient(135deg, rgba(122, 12, 12, 0.25) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(122, 12, 12, 0.6);
    border-radius: 6px;
    padding: 2.25rem 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.reservation-cta-bar p {
    font-size: 1.1rem;
    color: #E5E7EB;
    margin-bottom: 1.35rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .litter-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .parents-strip-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .parent-strip-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .litter-reservation-table thead th,
    .litter-reservation-table tbody td {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }
    .litter-main-img {
        height: 280px;
    }
}

/* Category Filter Nav */
.category-filter-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #FFFFFF;
}

/* ==========================================================================
   Luxury About Us Page Styles
   ========================================================================== */

/* 1. About Hero Banner Header */
.about-hero-banner {
    position: relative;
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 1.5rem;
    overflow: hidden;
}

/* 2. Heritage & Origin Story Section */
.about-heritage-section {
    position: relative;
    background-color: #FAF6F0;
    color: var(--color-text-dark);
    padding: 5.5rem 0 6.5rem;
    overflow: hidden;
}

.about-watermark-bg {
    position: absolute;
    top: 45%;
    inset-inline-end: -60px;
    transform: translateY(-50%);
    width: 480px;
    height: 580px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.09;
    pointer-events: none;
    z-index: 1;
}

.about-heritage-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-heritage-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 380px;
    margin: 0 auto;
}

.about-heritage-seal {
    position: absolute;
    top: -55px;
    left: -85px;
    inset-inline-start: -85px;
    width: 210px;
    height: 210px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.38;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(100%) contrast(110%);
}

.about-heritage-frame {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.about-heritage-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-heritage-frame:hover .about-heritage-img {
    transform: scale(1.02);
}

.about-heritage-badge {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    z-index: 3;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.85rem 1.35rem;
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.badge-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
}

.about-heritage-content {
    max-width: 620px;
}

.section-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 0.65rem;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: #111111;
    margin: 0.5rem 0 1.25rem;
}

.section-headline .headline-gold {
    color: var(--color-burgundy);
}

.section-quote-callout {
    border-inline-start: 3px solid var(--color-burgundy);
    padding-inline-start: 1.25rem;
    margin: 1.25rem 0 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-burgundy);
    line-height: 1.5;
}

.about-text-block p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text-block .lead-paragraph {
    font-size: 1.08rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.8;
}

.text-link-gold {
    color: var(--color-burgundy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.text-link-gold:hover {
    color: var(--color-burgundy-hover);
}

.heritage-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 0.55rem 1.15rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 3. 14+ Years Journey Timeline Section */
.about-timeline-section {
    background-color: #0E0E0E;
    color: #FFFFFF;
    padding: 6.5rem 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.section-headline-dark {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.section-subhead {
    color: #D1D5DB;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.timeline-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.25rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.timeline-card:hover,
.timeline-card-active {
    border-color: var(--color-gold);
    background: #191919;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-gold);
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.85rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: #D1D5DB;
    line-height: 1.7;
    margin: 0;
}

/* 4. "Back to Basics" Philosophy Section */
.about-basics-section {
    background-color: #FAF6F0;
    padding: 6.5rem 0;
}

/* 4. "Back to Basics" Editorial Section */
.about-basics-section {
    background-color: #FAF6F0;
    padding: 6rem 0 7rem;
    position: relative;
}

.basics-editorial-wrapper {
    position: relative;
    background: #111111;
    color: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    padding: 4.5rem 4rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.basics-crest-watermark {
    position: absolute;
    top: 50%;
    inset-inline-end: -60px;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.basics-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: center;
}

.basics-story-col {
    max-width: 620px;
}

.basics-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}

.basics-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0.4rem 0 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.basics-quote-lead {
    border-inline-start: 3px solid var(--color-gold);
    padding-inline-start: 1.25rem;
    margin-bottom: 1.5rem;
}

.basics-quote-lead p {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-style: italic;
    color: #F3F4F6;
    line-height: 1.6;
    margin: 0;
}

.basics-text {
    font-size: 1rem;
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Key Commitment Card */
.basics-commitment-card {
    background: linear-gradient(135deg, rgba(122, 12, 12, 0.45) 0%, rgba(20, 20, 20, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    position: relative;
}

.commitment-badge {
    margin-bottom: 0.65rem;
}

.badge-accent {
    display: inline-block;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
}

.commitment-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.commitment-desc {
    font-size: 0.92rem;
    color: #E5E7EB;
    line-height: 1.75;
    margin: 0;
}

/* Metrics & Stats Column */
.basics-metrics-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.metric-card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.metric-card-gold {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, #1A1814 0%, #141414 100%);
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.65rem;
}

.metric-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.metric-meta span {
    display: block;
    font-size: 0.78rem;
    color: #9CA3AF;
    line-height: 1.4;
}

/* 5. Four Pillars Section */
.about-pillars-section {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 6.5rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.pillar-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.pillar-card-icon {
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-card-icon {
    transform: scale(1.1);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.85rem;
}

.pillar-card p {
    font-size: 0.92rem;
    color: #D1D5DB;
    line-height: 1.65;
    margin: 0;
}

/* 6. Call to Action Banner */
.about-cta-section {
    position: relative;
    background: linear-gradient(135deg, #7A0C0C 0%, #300404 100%);
    color: #FFFFFF;
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.about-cta-container {
    max-width: 820px;
    margin: 0 auto;
}

.cta-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0.75rem 0 1.25rem;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.08rem;
    color: #F3F4F6;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-inline: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* Contact Page Layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
}

.contact-details-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.75rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details-card li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.contact-details-card strong {
    color: var(--color-gold);
}

.contact-details-card a {
    color: #FFFFFF;
}

.puppy-notice-box {
    background: rgba(122, 12, 12, 0.15);
    border: 1px solid var(--color-burgundy);
    border-radius: 4px;
    padding: 1.5rem;
}

.puppy-notice-box h3 {
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.puppy-notice-box p {
    font-size: 0.9rem;
    color: #D1D5DB;
    margin-bottom: 1rem;
}

.contact-form-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Gravity Forms Styling Integration */
.gform_wrapper {
    margin: 0;
}
.gform_wrapper form {
    margin-bottom: 0;
}
.gform_wrapper .gform_heading .gform_title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 1.75rem;
}
.gform_wrapper .gform_description {
    color: #D1D5DB;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield_description,
.gform_wrapper .gsection_description,
.gform_wrapper .instruction {
    color: #D1D5DB !important;
    font-size: 0.9rem !important;
}
.gform_wrapper label.gfield_sublabel {
    color: #9CA3AF !important;
    font-size: 0.8rem !important;
}
.gform_wrapper .gchoice_label,
.gform_wrapper .gfield_choice_markup label,
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
    color: #FFFFFF !important;
    font-size: 0.9rem !important;
}
.gform_wrapper .gfield_label, 
.gform_wrapper label.gfield_label,
.gform_wrapper legend.gfield_label {
    display: block !important;
    margin-bottom: 0.4rem !important;
    font-size: 0.88rem !important;
    font-weight: bold !important;
    color: #D1D5DB !important;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
    width: 100% !important;
    background: #1E1E1E !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 3px !important;
    padding: 0.75rem 1rem !important;
    color: #FFFFFF !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    outline: none !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
}
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 1px var(--color-gold) !important;
}
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
    display: block !important;
    width: 100% !important;
    padding: 0.85rem 2rem !important;
    font-size: 0.9rem !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
    background-color: var(--color-burgundy) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--color-gold) !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    text-align: center !important;
}
.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
    background-color: var(--color-burgundy-hover) !important;
    border-color: var(--color-gold) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(122, 12, 12, 0.4) !important;
}
.gform_wrapper .gfield_required {
    color: var(--color-gold) !important;
    margin-left: 4px;
}
/* Grid alignment for Gravity Forms fields */
.gform_wrapper .gfield {
    margin-bottom: 1.25rem !important;
}
.gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 1.25rem !important;
}
.gform_wrapper .gfield {
    grid-column: span 12 !important;
}
.gform_wrapper .gfield.gfield--width-half {
    grid-column: span 6 !important;
}
.gform_wrapper .gfield.gfield--width-third {
    grid-column: span 4 !important;
}
.gform_wrapper .gfield.gfield--width-quarter {
    grid-column: span 3 !important;
}
@media (max-width: 768px) {
    .gform_wrapper .gfield.gfield--width-half,
    .gform_wrapper .gfield.gfield--width-third,
    .gform_wrapper .gfield.gfield--width-quarter {
        grid-column: span 12 !important;
    }
}

/* 404 Styling */
.not-found-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-404 .error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: 1rem;
}

.not-found-search {
    max-width: 400px;
    margin: 2rem auto;
}

/* Mobile Navigation Hamburger */
.mobile-menu-toggle-wrapper {
    display: none;
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 42px;
    height: 42px;
    z-index: 1005;
    outline: none;
}

.hamburger-bar {
    width: 26px;
    height: 2.5px;
    background-color: var(--color-text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-burgundy);
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-burgundy);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-features-bar,
    .badges-card {
        grid-template-columns: repeat(2, 1fr);
        margin: 35px auto -50px auto;
    }
    .badge-item:nth-child(2) {
        border-inline-end: none;
    }
    .badge-item:nth-child(1),
    .badge-item:nth-child(2) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .about-heritage-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .basics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .basics-story-col {
        max-width: 100%;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle-wrapper {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        inset-inline-end: 0;
        width: 290px;
        height: 100vh;
        background-color: #0F0F0F;
        border-inline-start: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        padding: 90px 30px 40px 30px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .main-navigation.mobile-menu-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-navigation .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        overflow-y: auto;
    }

    .main-navigation .nav-links li {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .main-navigation .menu-item-has-children > a::after {
        display: none;
    }

    .main-navigation .nav-links a {
        font-size: 1rem;
        flex: 1;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 4px;
        color: var(--color-gold);
        cursor: pointer;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, border-color 0.2s ease;
        padding: 0;
        margin-inline-start: 8px;
        flex-shrink: 0;
    }

    .dropdown-toggle:hover,
    .dropdown-toggle:active {
        background: rgba(212, 175, 55, 0.18);
    }

    .main-navigation .menu-item-has-children.is-submenu-open > .dropdown-toggle {
        transform: rotate(180deg);
        background: var(--color-burgundy);
        border-color: var(--color-gold);
        color: #FFFFFF;
    }

    .main-navigation .sub-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.03);
        border: none;
        border-inline-start: 2px solid var(--color-gold);
        margin: 0 0 10px 10px;
        padding: 4px 0 4px 12px;
        min-width: calc(100% - 10px);
        width: calc(100% - 10px);
        border-radius: 0;
    }

    .main-navigation .menu-item-has-children.is-submenu-open > .sub-menu {
        display: block;
        animation: mobileSubmenuSlide 0.25s ease-out;
    }

    @keyframes mobileSubmenuSlide {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-navigation .sub-menu::before {
        display: none;
    }

    .main-navigation .sub-menu li {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .main-navigation .sub-menu a {
        font-size: 0.88rem;
        padding: 8px 0;
        color: #B3B3B3;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        letter-spacing: 0.5px;
    }

    .main-navigation .sub-menu li:last-child > a {
        border-bottom: none;
    }

    .main-navigation .sub-menu a:hover,
    .main-navigation .sub-menu li.current-menu-item > a {
        background-color: transparent;
        color: var(--color-gold);
        padding-inline-start: 0.35rem;
    }

    .header-cta-wrapper {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-features-pillar {
        display: none;
    }

    .hero-section {
        padding: 4rem 0 0 0;
        background-position: 60% center;
    }

    .about-section {
        padding-top: 110px;
        padding-bottom: 4.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-bar-section {
        padding: 1.75rem 0 1.5rem 0;
    }

    .newsletter-container {
        flex-direction: column;
        align-items: center;
        text-align: start;
        gap: 1.25rem;
    }

    .newsletter-content-group {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        text-align: start;
        width: 100%;
        max-width: 580px;
    }

    .newsletter-akc-block {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        flex-shrink: 0;
    }

    .newsletter-divider-vertical {
        display: block;
        height: 38px;
    }

    .newsletter-form-block {
        flex: 0 0 auto;
        flex-basis: auto;
        width: 100%;
        max-width: 440px;
    }
}

@media (max-width: 860px) {
    .dog-top-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-akc-watermark,
    .about-seal-watermark,
    .about-heritage-seal,
    .basics-crest-watermark {
        display: none;
    }

    .basics-editorial-wrapper {
        padding: 3rem 1.75rem;
    }

    .basics-metrics-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2.4rem;
    }

    .hero-features-bar,
    .badges-card {
        grid-template-columns: repeat(2, 1fr);
        margin: 25px auto -40px auto;
    }

    .badge-item {
        padding: 1.25rem 0.65rem;
        gap: 0.6rem;
        border-inline-end: 1px solid rgba(212, 175, 55, 0.2);
    }

    .badge-item:nth-child(2),
    .badge-item:nth-child(4) {
        border-inline-end: none;
    }

    .badge-item:nth-child(1),
    .badge-item:nth-child(2) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .badge-item:nth-child(3),
    .badge-item:nth-child(4) {
        border-bottom: none;
    }

    .badge-title {
        font-size: 0.78rem;
        letter-spacing: 0.8px;
    }

    .badge-subtitle {
        font-size: 0.72rem;
    }

    .newsletter-bar-section {
        padding: 1.5rem 0 1.25rem 0;
    }

    .newsletter-container {
        gap: 1rem;
    }

    .newsletter-content-group {
        gap: 0.85rem;
    }

    .newsletter-akc-seal {
        width: 44px;
        height: 44px;
    }

    .newsletter-akc-text {
        font-size: 0.8rem;
    }

    .newsletter-divider-vertical {
        display: block;
        height: 34px;
    }

    .newsletter-title {
        font-size: 1.05rem;
        margin-bottom: 0.15rem;
    }

    .newsletter-desc {
        font-size: 0.78rem;
    }

    .newsletter-bar-section form,
    .newsletter-bar-section form[id^="gform_"] {
        flex-direction: column !important;
        gap: 0.65rem !important;
    }

    .newsletter-bar-section input[type="text"],
    .newsletter-bar-section input[type="email"],
    .newsletter-bar-section input.small,
    .newsletter-bar-section input.medium,
    .newsletter-bar-section input.large,
    .newsletter-bar-section .ginput_container input {
        border-radius: 4px !important;
        text-align: center !important;
    }

    .newsletter-bar-section .gform_footer,
    .newsletter-bar-section .gform-theme__footer {
        width: 100% !important;
    }

    .newsletter-bar-section input[type="submit"],
    .newsletter-bar-section button[type="submit"],
    .newsletter-bar-section .gform_button {
        width: 100% !important;
        border-radius: 4px !important;
        height: 46px !important;
    }

    .hero-divider-curve {
        height: 45px;
    }

    .about-section {
        padding-top: 90px;
        padding-bottom: 3.5rem;
    }

    .about-heritage-badge {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }

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

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

    .about-hero-banner {
        height: 440px;
        min-height: 440px;
        max-height: 440px;
        padding: 0 1rem;
    }

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

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

/* ==========================================================================
   Breed Info Page Styles
   ========================================================================== */
.breed-page-main {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.breed-section {
    padding: 5rem 0;
    position: relative;
}

.breed-history-section {
    background-color: #FAF6F0;
}

.breed-personality-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    border-top: 1px solid var(--color-border-gold);
    border-bottom: 1px solid var(--color-border-gold);
}

.breed-health-section {
    background-color: #F5F0EB;
}

.breed-grooming-section {
    background-color: #FAF6F0;
}

.breed-conditions-section {
    background-color: #111111;
    color: var(--color-text-white);
    padding: 6rem 0;
}

/* Grid Layouts */
.breed-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}

.breed-grid-2col {
    grid-template-columns: 1fr 1fr;
}

/* Image Frames */
.breed-image-card {
    position: relative;
}

.breed-image-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-color: var(--color-bg-card);
}

.breed-image-frame.frame-gold-border {
    border: 2px solid var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.breed-featured-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.breed-image-frame:hover .breed-featured-img {
    transform: scale(1.03);
}

.breed-image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
}

[dir="rtl"] .breed-image-badge {
    left: auto;
    right: 1rem;
}

/* Content Blocks */
.breed-content-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.breed-content-block.text-light-theme {
    color: var(--color-text-white);
}

.breed-content-block.text-light-theme .section-headline,
.breed-conditions-section .section-headline,
.section-headline.headline-white {
    color: #FFFFFF;
}

.breed-content-block.text-light-theme .section-headline .headline-gold,
.breed-conditions-section .section-headline .headline-gold {
    color: var(--color-gold);
}

.tagline-gold {
    color: var(--color-gold);
}

.breed-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.8;
}

.breed-text p {
    font-size: 1.05rem;
    color: #4A4A4A;
}

.breed-content-block.text-light-theme .breed-text p {
    color: #D1D1D1;
}

.lead-paragraph-light {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: #F0F0F0 !important;
    line-height: 1.75;
}

.breed-subheading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-burgundy);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.health-prone-list {
    background: rgba(122, 12, 12, 0.06);
    border-inline-start: 3px solid var(--color-burgundy);
    padding: 0.85rem 1.25rem;
    border-radius: 0 4px 4px 0;
    color: var(--color-burgundy-dark) !important;
}

[dir="rtl"] .health-prone-list {
    border-radius: 4px 0 0 4px;
}

.breed-alert-box {
    background: #1a1814;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-inline-start: 4px solid var(--color-gold);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.breed-alert-box .alert-text {
    font-size: 0.95rem !important;
    font-style: italic;
    color: #f1dfa8 !important;
    margin: 0;
}

.care-block {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Stats Grid for Longevity/Height/Weight */
.breed-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.stat-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 0.2rem;
}

.stat-subvalue {
    font-size: 0.85rem;
    color: #A3A3A3 !important;
    margin: 0;
}

/* Detailed Conditions Section */
.section-header-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-intro-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

.condition-card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--color-burgundy);
    padding: 1.75rem 1.5rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-top-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.condition-card-header {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
}

.condition-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.8;
}

.condition-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.condition-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #B5B5B5;
    margin: 0;
}

/* CTA Box */
.breed-cta-box {
    background: linear-gradient(135deg, rgba(122, 12, 12, 0.3) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid var(--color-border-gold);
    border-radius: 8px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.breed-cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.breed-cta-desc {
    color: #C5C5C5;
    font-size: 1rem;
    margin: 0;
}

.breed-cta-action {
    flex-shrink: 0;
}

/* Responsive adjustments for Breed Info */
@media (max-width: 992px) {
    .breed-grid-2col {
        grid-template-columns: 1fr;
    }

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

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

    .breed-reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .breed-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

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

    .breed-featured-img {
        height: 320px;
    }
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-page-main {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 3.5rem 0 6rem;
}

.faq-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-controls-bar {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-search-box {
    position: relative;
    width: 100%;
}

.faq-search-icon {
    position: absolute;
    left: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.faq-search-box input {
    width: 100%;
    padding: 1.1rem 3.2rem 1.1rem 3.6rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 50px;
    font-size: 1.05rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.faq-search-box input:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.faq-clear-btn {
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    display: none;
    line-height: 1;
    padding: 0.2rem;
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-pill .pill-count {
    background: #262626;
    color: #aaaaaa;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.faq-pill:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: #222222;
}

.faq-pill.active {
    background: var(--color-burgundy);
    color: #ffffff;
    border-color: var(--color-burgundy);
    box-shadow: 0 4px 12px rgba(122, 12, 12, 0.4);
}

.faq-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.faq-category-group {
    margin-bottom: 3.5rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #333333;
}

.faq-cat-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual FAQ Card */
.faq-item {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-item:focus-within {
    border-color: var(--color-gold);
}

.faq-question-btn {
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: #1a1a1a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    text-align: left;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-question-btn:hover {
    background-color: #222222;
}

.faq-question-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: #262626;
    color: var(--color-gold);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.faq-question-text {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.faq-question-btn[aria-expanded="true"] {
    background-color: #222222;
    border-bottom: 1px solid #333333;
}

.faq-question-btn[aria-expanded="true"] .faq-number {
    background: var(--color-burgundy);
    color: #ffffff;
}

.faq-question-btn[aria-expanded="true"] .faq-question-text {
    color: var(--color-gold);
}

.faq-icon-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #262626;
    color: #aaaaaa;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-question-btn[aria-expanded="true"] .faq-icon-indicator {
    transform: rotate(180deg);
    background: var(--color-burgundy);
    color: #ffffff;
}

/* FAQ Answer Panel */
.faq-answer-panel {
    background: #1a1a1a;
}

.faq-answer-content.entry-content {
    padding: 1.6rem 1.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #dddddd;
}

.faq-answer-content p {
    margin-bottom: 1.1rem;
}

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

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
    padding-left: 0.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer-content strong {
    color: #ffffff;
    font-weight: 700;
}

.faq-answer-content a {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.faq-answer-content a:hover {
    color: #ffffff;
}

.faq-no-results {
    text-align: center;
    padding: 4.5rem 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 2px dashed #444444;
}

.faq-no-results-icon {
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.faq-no-results h3 {
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-no-results p {
    color: #aaaaaa;
    font-size: 1rem;
}

.faq-cta-banner {
    margin-top: 4.5rem;
    background: linear-gradient(135deg, #111827 0%, #3B0707 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-cta-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.faq-cta-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.75rem;
    color: #FFFFFF;
    margin: 0 0 0.6rem;
}

.faq-cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
    justify-content: center;
}

@media (max-width: 768px) {
    .faq-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.25rem 1.5rem;
    }

    .faq-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .faq-question-btn {
        padding: 1.1rem 1.25rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 1.25rem 1.4rem;
        font-size: 0.98rem;
    }
}





/* ==========================================================================
   Hero Luxury Components
   ========================================================================== */
.hero-luxury-banner {
  position: relative;
  height: 520px;
  min-height: 520px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0 1.5rem;
  overflow: hidden
}
.hero-luxury-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(10,10,10,.6) 0,rgba(10,10,10,.68) 50%,rgba(10,10,10,.82) 100%);
  z-index: 1
}
.hero-luxury-container {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 3px 14px rgba(0,0,0,.8)
}
.hero-luxury-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.9)
}
.hero-luxury-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin: .5rem 0 1.25rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.9)
}
.hero-luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto;
  max-width: 320px
}
.hero-luxury-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0,0,0,.9)
}
.hero-luxury-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
  margin-bottom: -1px;
}
.hero-luxury-curve svg {
  width: 100%;
  height: 50px;
  display: block;
}
@media (min-width:768px) {
  .hero-luxury-curve svg {
    height: 60px
  }
}
.faq-hero-banner .hero-luxury-curve svg path {
  fill: var(--color-bg-dark, #0d0d0d);
}

/* ==========================================================================
   Blog Archive, Dog & Litter Cards
   ========================================================================== */

.post-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

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

@media (min-width: 1024px) {
    .post-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.post-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #111111;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-date {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.post-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: var(--color-gold);
}

.post-card-excerpt {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.75px;
    align-self: flex-start;
    margin-top: auto;
    transition: color 0.2s ease, transform 0.2s ease;
}

.post-card-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

[dir="rtl"] .post-card-link:hover {
    transform: translateX(-4px);
}

/* Dog & Litter Card Specifics */
.card-dog-specs,
.card-pairing-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.card-dog-specs li,
.card-pairing-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-dog-specs li span,
.card-pairing-info li span {
    color: var(--color-gold);
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.88rem;
    color: #aaaaaa;
    margin-bottom: 0.85rem;
    font-style: italic;
}

.card-badge-expected {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.card-price-badge {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Pagination */
.pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #ffffff;
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.inner-single-container {
    max-width: 1200px;
    margin: 50px auto;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .single-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.entry-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.entry-meta {
    font-size: 1rem;
    color: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.entry-meta a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-meta a:hover {
    color: var(--color-burgundy);
}

.entry-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    border-left: 5px solid var(--color-burgundy);
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #1a1a1a;
    font-style: italic;
    font-size: 1.2rem;
    color: #ccc;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: inline-block;
}

.entry-content iframe,
.video-embed-wrap iframe {
    max-width: 100%;
    border-radius: 12px;
}

.entry-content a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.entry-content a:hover {
    color: #fff;
}

.entry-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.tags-links a {
    background-color: #222;
    color: #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tags-links a:hover {
    background-color: var(--color-burgundy);
    color: #fff;
}

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */

.sidebar-area {
    padding: 20px;
    background-color: #111;
    border-radius: 8px;
    border: 1px solid #222;
}

.sidebar-area .widget {
    margin-bottom: 40px;
}

.sidebar-area .widget-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-burgundy);
}

.sidebar-area .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-area .widget ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.sidebar-area .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-area .widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-area .widget ul li a:hover {
    color: var(--color-burgundy);
}

/* ==========================================================================
   Comments Area
   ========================================================================== */

.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment-list li.comment {
    margin-bottom: 30px;
}

.comment-body {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.comment-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.comment-meta .comment-author {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.comment-content {
    line-height: 1.6;
    color: #ddd;
}

.reply a {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-burgundy);
    text-decoration: none;
}

.reply a:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-respond {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
}

.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.comment-form-comment textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.2s;
}

.comment-form-comment textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    border-color: var(--color-burgundy);
    outline: none;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form .submit {
    background-color: var(--color-burgundy);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-form .submit:hover {
    background-color: var(--color-burgundy-dark, #5a1420);
}

/* ==========================================================================
   Simple No Results Message
   ========================================================================== */
.no-results-simple {
    text-align: center;
    padding: 3.5rem 1.5rem 5rem;
    margin: 0 auto;
    max-width: 600px;
}

.no-results-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.no-results-text {
    color: #999999;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Smooth Micro-Interactions & Hardware-Accelerated Reveal Animations
   Zero-dependency, 60fps GPU performance, strictly privacy-safe
   ========================================================================== */
@keyframes krFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes krFadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Instant Stagger (Above-the-fold / Non-blocking) */
.hero-tagline {
    animation: krFadeInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.02s both;
}
/* Row 1 paints immediately at T+0 without opacity/delay to ensure perfect LCP metric */
.hero-headline .headline-row:nth-child(1) {
    opacity: 1;
    transform: none;
}
.hero-headline .headline-row:nth-child(2) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.hero-headline .headline-row:nth-child(3) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.20s both;
}
.hero-divider {
    animation: krFadeInUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both;
}
.hero-description {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
.hero-actions {
    animation: krFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.hero-features-pillar .feature-pillar-item:nth-child(1) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.hero-features-pillar .feature-pillar-item:nth-child(2) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both;
}
.hero-features-pillar .feature-pillar-item:nth-child(3) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}
.hero-features-pillar .feature-pillar-item:nth-child(4) {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

/* Page Headers & Luxury Banners */
.hero-luxury-title,
.hero-simple-title,
.archive-header-title {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.hero-luxury-desc,
.hero-simple-desc,
.archive-header-desc {
    animation: krFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

/* Scroll-triggered Reveal Animations */
.kr-reveal-init .kr-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* GPU acceleration only while element is waiting to be revealed; releases memory once revealed */
.kr-reveal-init .kr-reveal:not(.is-revealed) {
    will-change: opacity, transform;
}

.kr-reveal-init .kr-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Above-The-Fold instant reveal: bypasses transition/delay so LCP is recorded instantly */
.kr-reveal-init .kr-reveal.is-revealed-instant {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* Stagger wave for grid cards */
.kr-reveal-init .post-cards-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .rottweiler-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .litters-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .products-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .badges-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .timeline-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .metrics-grid > .kr-reveal:nth-child(2),
.kr-reveal-init .faq-accordion-list > .kr-reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.kr-reveal-init .post-cards-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .rottweiler-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .litters-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .products-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .badges-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .timeline-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .metrics-grid > .kr-reveal:nth-child(3),
.kr-reveal-init .faq-accordion-list > .kr-reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.kr-reveal-init .post-cards-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .rottweiler-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .litters-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .products-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .badges-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .timeline-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .metrics-grid > .kr-reveal:nth-child(4),
.kr-reveal-init .faq-accordion-list > .kr-reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.kr-reveal-init .post-cards-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .rottweiler-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .litters-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .products-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .badges-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .timeline-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .metrics-grid > .kr-reveal:nth-child(5),
.kr-reveal-init .faq-accordion-list > .kr-reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.kr-reveal-init .post-cards-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .rottweiler-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .litters-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .products-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .badges-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .timeline-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .metrics-grid > .kr-reveal:nth-child(6),
.kr-reveal-init .faq-accordion-list > .kr-reveal:nth-child(6) {
    transition-delay: 0.40s;
}

/* Accessibility: Respect Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .kr-reveal-init .kr-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


