/* =========================================================
   BodArtDogs International
   Core Design System
   ========================================================= */

:root {
    --bad-bg: #151515;
    --bad-bg-alt: #1c1c1c;
    --bad-card: #222222;

    --bad-gold: #d59a24;
    --bad-gold-hover: #e1ab3a;

    --bad-text: #f4f4f4;
    --bad-text-muted: #b9b9b9;

    --bad-border: rgba(213, 154, 36, 0.28);

    --bad-container: 1200px;
}


/* ---------- General container ---------- */

.bad-container {
    width: min(calc(100% - 40px), var(--bad-container));
    margin-inline: auto;
}


/* =========================================================
   HOME HERO
   ========================================================= */

.bad-hero {
    width: 100%;
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 96px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: 64px;
}

.bad-eyebrow {
    margin: 0 0 18px;
    color: var(--bad-gold);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
}

.bad-hero h1 {
    max-width: 780px;
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.bad-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.bad-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------- Buttons ---------- */

.bad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.bad-btn-primary {
    background: var(--bad-gold);
    color: #151515;
}

.bad-btn-primary:hover,
.bad-btn-primary:focus {
    background: var(--bad-gold-hover);
    color: #151515;
    transform: translateY(-1px);
}

.bad-btn-secondary {
    border-color: var(--bad-gold);
    background: transparent;
    color: var(--bad-text);
}

.bad-btn-secondary:hover,
.bad-btn-secondary:focus {
    background: var(--bad-gold);
    color: #151515;
    transform: translateY(-1px);
}


/* ---------- Hero image ---------- */

.bad-hero-visual {
    position: relative;
}

.bad-hero-visual::before {
    content: "";
    position: absolute;
    inset: -10px 10px 10px -10px;
    border: 1px solid var(--bad-border);
    pointer-events: none;
}

.bad-hero-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}


/* ---------- Tablet / mobile ---------- */

@media (max-width: 900px) {

    .bad-hero {
        padding: 72px 0;
    }

    .bad-hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .bad-hero-content {
        max-width: 760px;
    }

    .bad-hero-visual {
        max-width: 760px;
    }
}

@media (max-width: 600px) {

    .bad-container {
        width: min(calc(100% - 32px), var(--bad-container));
    }

    .bad-hero {
        padding: 56px 0;
    }

    .bad-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .bad-hero-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .bad-hero-actions {
        flex-direction: column;
    }

    .bad-btn {
        width: 100%;
    }
}

/* =========================================================
   HOME – SERVICES
   ========================================================= */

.bad-services {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 100px 0;
}

.bad-section-heading {
    max-width: 780px;
    margin-bottom: 52px;
}

.bad-section-heading h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-section-intro {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.bad-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bad-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 365px;
    padding: 34px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease;
}

.bad-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--bad-gold);
}

.bad-service-card-featured {
    border-color: rgba(213, 154, 36, 0.65);
}

.bad-service-number {
    margin-bottom: 48px;
    color: var(--bad-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.bad-service-card h3 {
    margin: 0 0 18px;
    color: var(--bad-text);
    font-size: 1.45rem;
    line-height: 1.25;
}

.bad-service-card p {
    margin: 0 0 28px;
    color: var(--bad-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.bad-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--bad-gold);
    font-weight: 600;
    text-decoration: none;
}

.bad-text-link span {
    transition: transform 0.2s ease;
}

.bad-text-link:hover,
.bad-text-link:focus {
    color: var(--bad-gold-hover);
}

.bad-text-link:hover span,
.bad-text-link:focus span {
    transform: translateX(4px);
}


/* ---------- Responsive ---------- */

@media (max-width: 950px) {

    .bad-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bad-service-card:first-child {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 650px) {

    .bad-services {
        padding: 72px 0;
    }

    .bad-section-heading {
        margin-bottom: 36px;
    }

    .bad-services-grid {
        grid-template-columns: 1fr;
    }

    .bad-service-card:first-child {
        grid-column: auto;
    }

    .bad-service-card {
        min-height: auto;
        padding: 28px;
    }

    .bad-service-number {
        margin-bottom: 32px;
    }
}

/* =========================================================
   HOME – WHY BODARTDOGS
   ========================================================= */

.bad-advantage {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-advantage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}

.bad-advantage-intro {
    max-width: 560px;
}

.bad-advantage-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-advantage-intro > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.bad-advantage-intro .bad-text-link {
    margin-top: 16px;
}

.bad-advantage-points {
    border-top: 1px solid var(--bad-border);
}

.bad-advantage-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-advantage-number {
    color: var(--bad-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-advantage-item h3 {
    margin: 0 0 10px;
    color: var(--bad-text);
    font-size: 1.35rem;
    line-height: 1.3;
}

.bad-advantage-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}

@media (max-width: 850px) {

    .bad-advantage-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bad-advantage-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-advantage {
        padding: 72px 0;
    }

    .bad-advantage-item {
        grid-template-columns: 42px 1fr;
        gap: 16px;
    }
}

/* =========================================================
   HOME – SELECTED WORK
   ========================================================= */

.bad-selected-work {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-work-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: end;
    margin-bottom: 50px;
}

.bad-work-header > div {
    max-width: 760px;
}

.bad-work-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-work-header-link {
    margin-bottom: 5px;
    white-space: nowrap;
}


/* ---------- Top two portfolio items ---------- */

.bad-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
}

.bad-work-item {
    display: block;
    color: inherit;
    text-decoration: none;
}

.bad-work-image {
    position: relative;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--bad-border);
    transition: border-color 0.25s ease;
}

.bad-work-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.bad-work-item:hover .bad-work-image,
.bad-work-featured:hover .bad-work-image {
    border-color: var(--bad-gold);
}

.bad-work-item:hover .bad-work-image img,
.bad-work-featured:hover .bad-work-image img {
    transform: scale(1.015);
    opacity: 0.95;
}


/* ---------- Captions ---------- */

.bad-work-meta {
    padding: 18px 2px 4px;
}

.bad-work-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bad-work-meta h3 {
    margin: 0;
    color: var(--bad-text);
    font-size: 1.2rem;
    line-height: 1.35;
}


/* ---------- Featured third project ---------- */

.bad-work-featured {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 0;

    margin-top: 22px;

    background: var(--bad-card);
    border: 1px solid var(--bad-border);

    color: inherit;
    text-decoration: none;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.bad-work-featured:hover {
    border-color: var(--bad-gold);
    transform: translateY(-2px);
}

.bad-work-featured .bad-work-image {
    border: 0;
    border-right: 1px solid var(--bad-border);
}

.bad-work-featured .bad-work-image img {
    height: 100%;
    min-height: 380px;
    aspect-ratio: auto;
    object-fit: contain;
}

.bad-work-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 52px;
}

.bad-work-featured-content h3 {
    margin: 0 0 20px;
    color: var(--bad-text);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.18;
}

.bad-work-featured-content > p:not(.bad-eyebrow) {
    margin: 0 0 28px;
    color: var(--bad-text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.bad-work-featured-content .bad-text-link {
    margin-top: auto;
}


/* ---------- Tablet ---------- */

@media (max-width: 850px) {

    .bad-work-header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bad-work-featured {
        grid-template-columns: 1fr;
    }

    .bad-work-featured .bad-work-image {
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
    }

    .bad-work-featured .bad-work-image img {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .bad-work-featured-content {
        padding: 38px;
    }
}


/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .bad-selected-work {
        padding: 72px 0 80px;
    }

    .bad-work-header {
        margin-bottom: 34px;
    }

    .bad-work-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bad-work-featured {
        grid-column: auto;
        margin-top: 4px;
    }

    .bad-work-featured-content {
        padding: 28px;
    }
}

/* =========================================================
   HOME – PROCESS
   ========================================================= */

.bad-process {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0;
}

.bad-process-header {
    max-width: 760px;
    margin-bottom: 52px;
}

.bad-process-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-process-step {
    padding: 34px 28px 38px;
    border-right: 1px solid var(--bad-border);
}

.bad-process-step:last-child {
    border-right: 0;
}

.bad-process-number {
    display: block;
    margin-bottom: 42px;
    color: var(--bad-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-process-step h3 {
    margin: 0 0 14px;
    color: var(--bad-text);
    font-size: 1.2rem;
    line-height: 1.35;
}

.bad-process-step p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.bad-process-cta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
}

.bad-process-cta p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.6;
}

.bad-process-cta p a {
    color: var(--bad-gold);
    text-decoration: none;
}

.bad-process-cta p a:hover,
.bad-process-cta p a:focus {
    color: var(--bad-gold-hover);
}


/* ---------- Tablet ---------- */

@media (max-width: 950px) {

    .bad-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-process-step:nth-child(2) {
        border-right: 0;
    }

    .bad-process-step:nth-child(-n+2) {
        border-bottom: 1px solid var(--bad-border);
    }
}


/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .bad-process {
        padding: 72px 0;
    }

    .bad-process-grid {
        grid-template-columns: 1fr;
    }

    .bad-process-step {
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 28px 0;
    }

    .bad-process-step:last-child {
        border-bottom: 0;
    }

    .bad-process-number {
        margin-bottom: 22px;
    }

    .bad-process-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

/* =========================================================
   HOME – ABOUT PREVIEW
   ========================================================= */

.bad-about-preview {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-about-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 90px;
    align-items: center;
}

.bad-about-preview-content {
    max-width: 680px;
}

.bad-about-preview-content h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-about-preview-content > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.bad-about-preview-content .bad-text-link {
    margin-top: 16px;
}


/* ---------- Proof panel ---------- */

.bad-about-preview-proof {
    border-top: 1px solid var(--bad-border);
}

.bad-about-proof-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-proof-label {
    display: block;
    margin-bottom: 9px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-proof-item strong {
    display: block;
    color: var(--bad-text);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 850px) {

    .bad-about-preview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bad-about-preview-content {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-about-preview {
        padding: 72px 0;
    }
}

/* =========================================================
   HOME – FINAL CTA
   ========================================================= */

.bad-final-cta {
    position: relative;
    overflow: hidden;
    background: #111;
    color: var(--bad-text);
    padding: 105px 0;
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-final-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(213, 154, 36, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.bad-final-cta-inner {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: end;
}

.bad-final-cta-content {
    max-width: 780px;
}

.bad-final-cta-content h2 {
    margin: 0 0 24px;
    color: var(--bad-text);
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.bad-final-cta-content > p:not(.bad-eyebrow) {
    margin: 0;
    max-width: 680px;
    color: var(--bad-text-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.bad-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 190px;
}

@media (max-width: 850px) {

    .bad-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 38px;
        align-items: start;
    }

    .bad-final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .bad-final-cta {
        padding: 72px 0;
    }

    .bad-final-cta-actions {
        flex-direction: column;
    }
}

/* =========================================================
   HOME – Hide WordPress featured image
   ========================================================= */

body.home .page-header-image,
body.home .page-header-image-single,
body.home .featured-image {
    display: none !important;
}

/* =========================================================
   SERVICE – HERO
   ========================================================= */

.bad-service-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 100px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 90px;
    align-items: end;
}

.bad-service-hero-content {
    max-width: 780px;
}

.bad-service-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-service-hero-lead {
    max-width: 700px;
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.bad-service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------- Specialist note ---------- */

.bad-service-hero-note {
    padding: 30px;
    border-top: 1px solid var(--bad-gold);
    border-bottom: 1px solid var(--bad-border);
}

.bad-service-note-label {
    display: block;
    margin-bottom: 14px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-service-hero-note p {
    margin: 0;
    color: var(--bad-text);
    font-size: 1.12rem;
    line-height: 1.65;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-service-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bad-service-hero-note {
        max-width: 700px;
    }
}

@media (max-width: 600px) {

    .bad-service-hero {
        padding: 65px 0;
    }

    .bad-service-hero-actions {
        flex-direction: column;
    }
}

/* =========================================================
   SERVICE – GRAPHIC TYPES
   ========================================================= */

.bad-service-types {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bad-service-type {
    display: flex;
    flex-direction: column;
    padding: 38px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
    transition:
        border-color 0.22s ease,
        transform 0.22s ease;
}

.bad-service-type:hover {
    border-color: var(--bad-gold);
    transform: translateY(-3px);
}

.bad-service-type-featured {
    border-color: rgba(213, 154, 36, 0.65);
}

.bad-service-type-label {
    display: block;
    margin-bottom: 22px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-service-type h3 {
    margin: 0 0 18px;
    color: var(--bad-text);
    font-size: 1.55rem;
    line-height: 1.25;
}

.bad-service-type > p {
    margin: 0 0 24px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}

.bad-service-type ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.bad-service-type li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    color: var(--bad-text-muted);
    line-height: 1.55;
}

.bad-service-type li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--bad-gold);
}

.bad-service-type .bad-text-link {
    margin-top: auto;
}


/* ---------- Tablet / mobile ---------- */

@media (max-width: 750px) {

    .bad-service-types-grid {
        grid-template-columns: 1fr;
    }

    .bad-service-type {
        padding: 32px;
    }
}

@media (max-width: 600px) {

    .bad-service-types {
        padding: 72px 0 80px;
    }

    .bad-service-type {
        padding: 27px;
    }
}

/* =========================================================
   SERVICE – WHAT CAN BE INCLUDED
   ========================================================= */

.bad-included {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-included-intro {
    max-width: 570px;
}

.bad-included-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-included-intro > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Important note ---------- */

.bad-included-note {
    margin-top: 36px;
    padding: 24px 0 0;
    border-top: 1px solid var(--bad-gold);
}

.bad-included-note > span {
    display: block;
    margin-bottom: 9px;
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-included-note p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ---------- Information list ---------- */

.bad-included-list {
    border-top: 1px solid var(--bad-border);
}

.bad-included-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 27px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-included-index {
    color: var(--bad-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-included-item h3 {
    margin: 0 0 9px;
    color: var(--bad-text);
    font-size: 1.3rem;
    line-height: 1.3;
}

.bad-included-item p {
    margin: 0;
    max-width: 620px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-included-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bad-included-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-included {
        padding: 72px 0;
    }

    .bad-included-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 15px;
    }
}

/* =========================================================
   SERVICE – WHY SPECIALIST DESIGN MATTERS
   ========================================================= */

.bad-specialist {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-specialist-header {
    max-width: 800px;
    margin-bottom: 58px;
}

.bad-specialist-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-specialist-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
}

.bad-specialist-divider {
    background: var(--bad-border);
}

.bad-specialist-label {
    display: block;
    margin-bottom: 26px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-specialist-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bad-specialist-list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--bad-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.bad-specialist-list li:last-child {
    margin-bottom: 0;
}

.bad-specialist-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bad-gold);
    font-weight: 700;
}

.bad-specialist-list-problem li::before {
    content: "–";
}

.bad-specialist-list-solution li::before {
    content: "✓";
}


/* ---------- Responsive ---------- */

@media (max-width: 760px) {

    .bad-specialist-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bad-specialist-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 600px) {

    .bad-specialist {
        padding: 72px 0 80px;
    }

    .bad-specialist-header {
        margin-bottom: 42px;
    }
}

/* =========================================================
   SERVICE – SELECTED BREEDER GRAPHICS
   ========================================================= */

.bad-service-work {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-service-work-header {
    max-width: 820px;
    margin-bottom: 54px;
}

.bad-service-work-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}


/* ---------- Work grid ---------- */

.bad-service-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bad-service-work-item {
    overflow: hidden;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.bad-service-work-item:hover {
    border-color: var(--bad-gold);
    transform: translateY(-3px);
}

.bad-service-work-image {
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid var(--bad-border);
}

.bad-service-work-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.bad-service-work-item:hover .bad-service-work-image img {
    transform: scale(1.015);
}


/* ---------- Work text ---------- */

.bad-service-work-content {
    padding: 28px;
}

.bad-service-work-content > span {
    display: block;
    margin-bottom: 11px;
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.bad-service-work-content h3 {
    margin: 0 0 15px;
    color: var(--bad-text);
    font-size: 1.35rem;
    line-height: 1.3;
}

.bad-service-work-content p {
    margin: 0 0 24px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Footer ---------- */

.bad-service-work-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    margin-top: 42px;
    padding-top: 34px;

    border-top: 1px solid var(--bad-border);
}

.bad-service-work-footer p {
    margin: 0;
    max-width: 680px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-service-work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bad-service-work-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {

    .bad-service-work {
        padding: 72px 0;
    }

    .bad-service-work-grid {
        grid-template-columns: 1fr;
    }

    .bad-service-work-item:last-child {
        grid-column: auto;
    }

    .bad-service-work-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
}

/* =========================================================
   SERVICE – HOW IT WORKS
   ========================================================= */

.bad-service-process {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-service-process-header {
    max-width: 800px;
    margin-bottom: 56px;
}

.bad-service-process-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}


/* ---------- Steps ---------- */

.bad-service-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-service-process-step {
    padding: 32px 24px 36px;
    border-right: 1px solid var(--bad-border);
}

.bad-service-process-step:last-child {
    border-right: 0;
}

.bad-service-process-step .bad-process-number {
    display: block;
    margin-bottom: 34px;
}

.bad-service-process-step h3 {
    margin: 0 0 14px;
    color: var(--bad-text);
    font-size: 1.16rem;
    line-height: 1.35;
}

.bad-service-process-step p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* ---------- Accuracy note ---------- */

.bad-service-process-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;

    margin-top: 40px;
    padding-top: 34px;
}

.bad-service-process-note > div {
    max-width: 760px;
}

.bad-service-process-note p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .bad-service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-service-process-step {
        border-bottom: 1px solid var(--bad-border);
    }

    .bad-service-process-step:nth-child(even) {
        border-right: 0;
    }

    .bad-service-process-step:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
        border-right: 0;
    }
}

@media (max-width: 700px) {

    .bad-service-process-grid {
        grid-template-columns: 1fr;
    }

    .bad-service-process-step,
    .bad-service-process-step:nth-child(even),
    .bad-service-process-step:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 28px 0;
    }

    .bad-service-process-step:last-child {
        border-bottom: 0;
    }

    .bad-service-process-note {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {

    .bad-service-process {
        padding: 72px 0;
    }
}

/* =========================================================
   SERVICE – FAQ
   ========================================================= */

.bad-faq {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}


/* ---------- FAQ intro ---------- */

.bad-faq-intro {
    max-width: 480px;
    position: sticky;
    top: 40px;
}

.bad-faq-intro h2 {
    margin: 0 0 24px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-faq-intro > p:not(.bad-eyebrow) {
    margin: 0 0 22px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- FAQ items ---------- */

.bad-faq-list {
    border-top: 1px solid var(--bad-border);
}

.bad-faq-item {
    border-bottom: 1px solid var(--bad-border);
}

.bad-faq-item summary {
    position: relative;
    padding: 25px 48px 25px 0;
    color: var(--bad-text);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.bad-faq-item summary::-webkit-details-marker {
    display: none;
}

.bad-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bad-gold);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.bad-faq-item[open] summary::after {
    content: "–";
}

.bad-faq-item[open] summary {
    color: var(--bad-gold);
}

.bad-faq-answer {
    max-width: 720px;
    padding: 0 48px 25px 0;
}

.bad-faq-answer p {
    margin: 0 0 12px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}

.bad-faq-answer p:last-child {
    margin-bottom: 0;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bad-faq-intro {
        position: static;
        max-width: 700px;
    }
}

@media (max-width: 600px) {

    .bad-faq {
        padding: 72px 0;
    }

    .bad-faq-item summary {
        padding-right: 38px;
    }

    .bad-faq-answer {
        padding-right: 0;
    }
}

/* =========================================================
   SERVICE – VISUAL BREAK
   ========================================================= */

.bad-visual-break {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 20px 0 90px;
}

.bad-visual-break-figure {
    margin: 0;
}

.bad-visual-break-figure img {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: contain;
    background: #111;
    border: 1px solid var(--bad-border);
}

.bad-visual-break-figure figcaption {
    margin-top: 14px;
    color: var(--bad-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 600px) {

    .bad-visual-break {
        padding: 10px 0 60px;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – HERO
   ========================================================= */

.bad-litter-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 95px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-litter-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.bad-litter-hero-content {
    max-width: 760px;
}

.bad-litter-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-litter-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.bad-litter-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------- Hero image ---------- */

.bad-litter-hero-visual {
    position: relative;
}

.bad-litter-hero-visual::before {
    content: "";
    position: absolute;
    inset: -10px 10px 10px -10px;
    border: 1px solid var(--bad-border);
    pointer-events: none;
}

.bad-litter-hero-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-litter-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bad-litter-hero-visual {
        max-width: 760px;
    }
}

@media (max-width: 600px) {

    .bad-litter-hero {
        padding: 62px 0;
    }

    .bad-litter-hero-actions {
        flex-direction: column;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – STAGES
   ========================================================= */

.bad-litter-stages {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-litter-stages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bad-litter-stage {
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease;
}

.bad-litter-stage:hover {
    transform: translateY(-3px);
    border-color: var(--bad-gold);
}

.bad-litter-stage-featured {
    border-color: rgba(213, 154, 36, 0.65);
}

.bad-litter-stage-number {
    display: block;
    margin-bottom: 34px;
    color: var(--bad-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-litter-stage h3 {
    margin: 0 0 16px;
    color: var(--bad-text);
    font-size: 1.45rem;
    line-height: 1.3;
}

.bad-litter-stage > p {
    margin: 0 0 24px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}

.bad-litter-stage ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.bad-litter-stage li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 19px;
    color: var(--bad-text-muted);
    line-height: 1.55;
}

.bad-litter-stage li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--bad-gold);
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-litter-stages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bad-litter-stages {
        padding: 72px 0 80px;
    }

    .bad-litter-stage {
        padding: 28px;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – WHAT CAN BE INCLUDED
   ========================================================= */

.bad-litter-included {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-litter-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 90px;
    align-items: start;
}

.bad-litter-included-intro {
    max-width: 560px;
}

.bad-litter-included-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-litter-included-intro > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Information rows ---------- */

.bad-litter-included-list {
    border-top: 1px solid var(--bad-border);
}

.bad-litter-included-item {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-litter-included-item > span {
    color: var(--bad-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-litter-included-item h3 {
    margin: 0 0 8px;
    color: var(--bad-text);
    font-size: 1.28rem;
    line-height: 1.3;
}

.bad-litter-included-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-litter-included-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .bad-litter-included-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-litter-included {
        padding: 72px 0;
    }

    .bad-litter-included-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – SHOWCASE IMAGE
   ========================================================= */

.bad-litter-showcase {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 5px 0 95px;
}

.bad-litter-showcase-figure {
    margin: 0;
}

.bad-litter-showcase-figure img {
    display: block;
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    background: #111;
    border: 1px solid var(--bad-border);
}

.bad-litter-showcase-figure figcaption {
    margin-top: 14px;
    color: var(--bad-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 600px) {

    .bad-litter-showcase {
        padding-bottom: 65px;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – WHY CUSTOM DESIGN
   ========================================================= */

.bad-litter-why {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-litter-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-litter-why-intro {
    max-width: 590px;
}

.bad-litter-why-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.bad-litter-why-intro > p:not(.bad-eyebrow) {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Points ---------- */

.bad-litter-why-points {
    border-top: 1px solid var(--bad-border);
}

.bad-litter-why-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-litter-why-number {
    color: var(--bad-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-litter-why-item h3 {
    margin: 0 0 10px;
    color: var(--bad-text);
    font-size: 1.35rem;
    line-height: 1.3;
}

.bad-litter-why-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-litter-why-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .bad-litter-why-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-litter-why {
        padding: 72px 0;
    }

    .bad-litter-why-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – PROCESS
   ========================================================= */

.bad-litter-process {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-litter-process-header {
    max-width: 820px;
    margin-bottom: 56px;
}

.bad-litter-process-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}


/* ---------- Process grid ---------- */

.bad-litter-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-litter-process-step {
    padding: 32px 24px 36px;
    border-right: 1px solid var(--bad-border);
}

.bad-litter-process-step:last-child {
    border-right: 0;
}

.bad-litter-process-number {
    display: block;
    margin-bottom: 32px;
    color: var(--bad-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-litter-process-step h3 {
    margin: 0 0 14px;
    color: var(--bad-text);
    font-size: 1.17rem;
    line-height: 1.35;
}

.bad-litter-process-step p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* ---------- Bottom note ---------- */

.bad-litter-process-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;

    margin-top: 40px;
    padding-top: 34px;
}

.bad-litter-process-bottom > div {
    max-width: 760px;
}

.bad-litter-process-bottom p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .bad-litter-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-litter-process-step {
        border-bottom: 1px solid var(--bad-border);
    }

    .bad-litter-process-step:nth-child(even) {
        border-right: 0;
    }

    .bad-litter-process-step:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }
}

@media (max-width: 700px) {

    .bad-litter-process-grid {
        grid-template-columns: 1fr;
    }

    .bad-litter-process-step,
    .bad-litter-process-step:nth-child(even),
    .bad-litter-process-step:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 28px 0;
    }

    .bad-litter-process-step:last-child {
        border-bottom: 0;
    }

    .bad-litter-process-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {

    .bad-litter-process {
        padding: 72px 0;
    }
}

/* =========================================================
   LITTER ANNOUNCEMENT – FAQ
   ========================================================= */

.bad-litter-faq {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-litter-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-litter-faq-intro {
    position: sticky;
    top: 40px;
    max-width: 480px;
}

.bad-litter-faq-intro h2 {
    margin: 0 0 24px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-litter-faq-intro > p:not(.bad-eyebrow) {
    margin: 0 0 22px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Questions ---------- */

.bad-litter-faq-list {
    border-top: 1px solid var(--bad-border);
}

.bad-litter-faq-item {
    border-bottom: 1px solid var(--bad-border);
}

.bad-litter-faq-item summary {
    position: relative;
    padding: 25px 48px 25px 0;
    color: var(--bad-text);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.bad-litter-faq-item summary::-webkit-details-marker {
    display: none;
}

.bad-litter-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bad-gold);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.bad-litter-faq-item[open] summary::after {
    content: "–";
}

.bad-litter-faq-item[open] summary {
    color: var(--bad-gold);
}

.bad-litter-faq-answer {
    max-width: 720px;
    padding: 0 48px 25px 0;
}

.bad-litter-faq-answer p {
    margin: 0 0 12px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}

.bad-litter-faq-answer p:last-child {
    margin-bottom: 0;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-litter-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bad-litter-faq-intro {
        position: static;
        max-width: 700px;
    }
}

@media (max-width: 600px) {

    .bad-litter-faq {
        padding: 72px 0;
    }

    .bad-litter-faq-item summary {
        padding-right: 38px;
    }

    .bad-litter-faq-answer {
        padding-right: 0;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – HERO
   ========================================================= */

.bad-stud-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 95px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-stud-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.bad-stud-hero-content {
    max-width: 760px;
}

.bad-stud-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-stud-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.bad-stud-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------- Hero image ---------- */

.bad-stud-hero-visual {
    position: relative;
}

.bad-stud-hero-visual::before {
    content: "";
    position: absolute;
    inset: -10px 10px 10px -10px;
    border: 1px solid var(--bad-border);
    pointer-events: none;
}

.bad-stud-hero-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-stud-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bad-stud-hero-visual {
        max-width: 760px;
    }
}

@media (max-width: 600px) {

    .bad-stud-hero {
        padding: 62px 0;
    }

    .bad-stud-hero-actions {
        flex-direction: column;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – TYPES
   ========================================================= */

.bad-stud-types {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-stud-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}


/* ---------- Cards ---------- */

.bad-stud-type {
    padding: 42px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
}

.bad-stud-type-featured {
    border-color: rgba(213, 154, 36, 0.65);
}

.bad-stud-type-label {
    display: block;
    margin-bottom: 24px;
    color: var(--bad-gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-stud-type h3 {
    margin: 0 0 18px;
    color: var(--bad-text);
    font-size: clamp(1.7rem, 2.5vw, 2.25rem);
    line-height: 1.2;
}

.bad-stud-type > p {
    margin: 0 0 24px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Lists ---------- */

.bad-stud-type ul {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.bad-stud-type li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: var(--bad-text-muted);
    line-height: 1.6;
}

.bad-stud-type li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--bad-gold);
}


/* ---------- Bottom note ---------- */

.bad-stud-type .bad-stud-type-note {
    margin: 28px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--bad-border);
    color: var(--bad-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .bad-stud-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bad-stud-types {
        padding: 72px 0;
    }

    .bad-stud-type {
        padding: 28px;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – WHAT CAN BE INCLUDED
   ========================================================= */

.bad-stud-included {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-stud-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-stud-included-intro {
    max-width: 560px;
}

.bad-stud-included-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-stud-included-intro > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Information list ---------- */

.bad-stud-included-list {
    border-top: 1px solid var(--bad-border);
}

.bad-stud-included-item {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-stud-included-item > span {
    color: var(--bad-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-stud-included-item h3 {
    margin: 0 0 8px;
    color: var(--bad-text);
    font-size: 1.28rem;
    line-height: 1.3;
}

.bad-stud-included-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-stud-included-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .bad-stud-included-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-stud-included {
        padding: 72px 0;
    }

    .bad-stud-included-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – SHOWCASE IMAGE
   ========================================================= */

.bad-stud-showcase {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 5px 0 95px;
}

.bad-stud-showcase-figure {
    margin: 0;
}

.bad-stud-showcase-figure img {
    display: block;
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    background: #111;
    border: 1px solid var(--bad-border);
}

.bad-stud-showcase-figure figcaption {
    margin-top: 14px;
    color: var(--bad-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 600px) {

    .bad-stud-showcase {
        padding-bottom: 65px;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – WHY CUSTOM PRESENTATION
   ========================================================= */

.bad-stud-why {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-stud-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-stud-why-intro {
    max-width: 590px;
}

.bad-stud-why-intro h2 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.bad-stud-why-intro > p:not(.bad-eyebrow) {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Points ---------- */

.bad-stud-why-points {
    border-top: 1px solid var(--bad-border);
}

.bad-stud-why-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-stud-why-number {
    color: var(--bad-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-stud-why-item h3 {
    margin: 0 0 10px;
    color: var(--bad-text);
    font-size: 1.34rem;
    line-height: 1.3;
}

.bad-stud-why-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-stud-why-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .bad-stud-why-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-stud-why {
        padding: 72px 0;
    }

    .bad-stud-why-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – PROCESS
   ========================================================= */

.bad-stud-process {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-stud-process-header {
    max-width: 820px;
    margin-bottom: 56px;
}

.bad-stud-process-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}


/* ---------- Process grid ---------- */

.bad-stud-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-stud-process-step {
    padding: 32px 24px 36px;
    border-right: 1px solid var(--bad-border);
}

.bad-stud-process-step:last-child {
    border-right: 0;
}

.bad-stud-process-number {
    display: block;
    margin-bottom: 32px;
    color: var(--bad-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-stud-process-step h3 {
    margin: 0 0 14px;
    color: var(--bad-text);
    font-size: 1.17rem;
    line-height: 1.35;
}

.bad-stud-process-step p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* ---------- Bottom note ---------- */

.bad-stud-process-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;

    margin-top: 40px;
    padding-top: 34px;
}

.bad-stud-process-bottom > div {
    max-width: 760px;
}

.bad-stud-process-bottom p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .bad-stud-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-stud-process-step {
        border-bottom: 1px solid var(--bad-border);
    }

    .bad-stud-process-step:nth-child(even) {
        border-right: 0;
    }

    .bad-stud-process-step:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }
}

@media (max-width: 700px) {

    .bad-stud-process-grid {
        grid-template-columns: 1fr;
    }

    .bad-stud-process-step,
    .bad-stud-process-step:nth-child(even),
    .bad-stud-process-step:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 28px 0;
    }

    .bad-stud-process-step:last-child {
        border-bottom: 0;
    }

    .bad-stud-process-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {

    .bad-stud-process {
        padding: 72px 0;
    }
}

/* =========================================================
   STUD DOG & PRESENTATION – FAQ
   ========================================================= */

.bad-stud-faq {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-stud-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Intro ---------- */

.bad-stud-faq-intro {
    position: sticky;
    top: 40px;
    max-width: 480px;
}

.bad-stud-faq-intro h2 {
    margin: 0 0 24px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bad-stud-faq-intro > p:not(.bad-eyebrow) {
    margin: 0 0 22px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Questions ---------- */

.bad-stud-faq-list {
    border-top: 1px solid var(--bad-border);
}

.bad-stud-faq-item {
    border-bottom: 1px solid var(--bad-border);
}

.bad-stud-faq-item summary {
    position: relative;
    padding: 25px 48px 25px 0;
    color: var(--bad-text);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.bad-stud-faq-item summary::-webkit-details-marker {
    display: none;
}

.bad-stud-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bad-gold);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.bad-stud-faq-item[open] summary::after {
    content: "–";
}

.bad-stud-faq-item[open] summary {
    color: var(--bad-gold);
}

.bad-stud-faq-answer {
    max-width: 720px;
    padding: 0 48px 25px 0;
}

.bad-stud-faq-answer p {
    margin: 0 0 12px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}

.bad-stud-faq-answer p:last-child {
    margin-bottom: 0;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-stud-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bad-stud-faq-intro {
        position: static;
        max-width: 700px;
    }
}

@media (max-width: 600px) {

    .bad-stud-faq {
        padding: 72px 0;
    }

    .bad-stud-faq-item summary {
        padding-right: 38px;
    }

    .bad-stud-faq-answer {
        padding-right: 0;
    }
}

/* =========================================================
   PORTFOLIO – HERO
   ========================================================= */

.bad-portfolio-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0 95px;
    border-bottom: 1px solid var(--bad-border);
}

.bad-portfolio-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 90px;
    align-items: end;
}

.bad-portfolio-hero-content {
    max-width: 760px;
}

.bad-portfolio-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-portfolio-hero-lead {
    margin: 0;
    max-width: 700px;
    color: var(--bad-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.bad-portfolio-hero-note {
    margin: 26px 0 0;
    max-width: 680px;
    padding-left: 18px;
    border-left: 2px solid var(--bad-gold);
    color: var(--bad-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* ---------- Portfolio categories ---------- */

.bad-portfolio-hero-stats {
    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-hero-stats > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-portfolio-hero-stats span {
    display: block;
    margin-bottom: 6px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-portfolio-hero-stats strong {
    color: var(--bad-text);
    font-size: 1.22rem;
    font-weight: 500;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-portfolio-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {

    .bad-portfolio-hero {
        padding: 70px 0;
    }
}

/* =========================================================
   PORTFOLIO – LITTER ANNOUNCEMENTS
   ========================================================= */

.bad-portfolio-litters {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}


/* ---------- Section heading ---------- */

.bad-portfolio-section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.bad-portfolio-section-header h2 {
    margin: 0;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.bad-portfolio-section-copy {
    max-width: 660px;
}

.bad-portfolio-section-copy p {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Gallery ---------- */

.bad-portfolio-litter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bad-portfolio-project {
    overflow: hidden;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
}

.bad-portfolio-project-large {
    grid-column: 1 / -1;
}


/* ---------- Images ---------- */

.bad-portfolio-project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #101010;
}

.bad-portfolio-project-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.bad-portfolio-project:hover .bad-portfolio-project-image img {
    transform: scale(1.012);
}

.bad-portfolio-project:not(.bad-portfolio-project-large)
.bad-portfolio-project-image img {
    max-height: 520px;
}


/* ---------- Project meta ---------- */

.bad-portfolio-project-meta {
    padding: 22px 25px 25px;
    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-project-meta span {
    display: block;
    margin-bottom: 7px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-portfolio-project-meta h3 {
    margin: 0;
    color: var(--bad-text);
    font-size: 1.18rem;
    line-height: 1.35;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .bad-portfolio-section-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bad-portfolio-litter-grid {
        grid-template-columns: 1fr;
    }

    .bad-portfolio-project-large {
        grid-column: auto;
    }
}

@media (max-width: 600px) {

    .bad-portfolio-litters {
        padding: 72px 0 80px;
    }

    .bad-portfolio-project-meta {
        padding: 20px;
    }
}

/* =========================================================
   PORTFOLIO – STUD DOG & DOG PRESENTATIONS
   ========================================================= */

.bad-portfolio-dogs {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0 115px;
}


/* ---------- Main layout ---------- */

.bad-portfolio-dog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}


/* ---------- Featured project ---------- */

.bad-portfolio-dog-featured,
.bad-portfolio-dog-small {
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
    overflow: hidden;
}

.bad-portfolio-dog-featured {
    display: flex;
    flex-direction: column;
}

.bad-portfolio-dog-featured .bad-portfolio-dog-image {
    flex: 1;
    min-height: 460px;
}


/* ---------- Right column ---------- */

.bad-portfolio-dog-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bad-portfolio-dog-small {
    display: flex;
    flex-direction: column;
}


/* ---------- Images ---------- */

.bad-portfolio-dog-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #101010;
}

.bad-portfolio-dog-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.bad-portfolio-dog-featured:hover img,
.bad-portfolio-dog-small:hover img {
    transform: scale(1.012);
}

.bad-portfolio-dog-small .bad-portfolio-dog-image {
    min-height: 230px;
}


/* ---------- Text ---------- */

.bad-portfolio-dog-content {
    padding: 24px 26px 27px;
    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-dog-content > span {
    display: block;
    margin-bottom: 8px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-portfolio-dog-content h3 {
    margin: 0;
    color: var(--bad-text);
    font-size: 1.25rem;
    line-height: 1.35;
}

.bad-portfolio-dog-featured .bad-portfolio-dog-content h3 {
    font-size: 1.55rem;
}

.bad-portfolio-dog-content p {
    margin: 12px 0 0;
    max-width: 680px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-portfolio-dog-layout {
        grid-template-columns: 1fr;
    }

    .bad-portfolio-dog-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}

@media (max-width: 650px) {

    .bad-portfolio-dogs {
        padding: 72px 0 80px;
    }

    .bad-portfolio-dog-stack {
        grid-template-columns: 1fr;
    }

    .bad-portfolio-dog-featured .bad-portfolio-dog-image,
    .bad-portfolio-dog-small .bad-portfolio-dog-image {
        min-height: auto;
    }

    .bad-portfolio-dog-content {
        padding: 20px;
    }
}

/* =========================================================
   PORTFOLIO – OTHER BREEDER GRAPHICS
   ========================================================= */

.bad-portfolio-custom {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-portfolio-custom-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.bad-portfolio-custom-header h2 {
    margin: 0;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.bad-portfolio-custom-header > div:last-child {
    max-width: 660px;
}

.bad-portfolio-custom-header p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Grid ---------- */

.bad-portfolio-custom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bad-portfolio-custom-item {
    overflow: hidden;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
}


/* ---------- Image ---------- */

.bad-portfolio-custom-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #101010;
}

.bad-portfolio-custom-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.bad-portfolio-custom-item:hover img {
    transform: scale(1.012);
}


/* ---------- Text ---------- */

.bad-portfolio-custom-content {
    padding: 24px 25px 28px;
    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-custom-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-portfolio-custom-content h3 {
    margin: 0 0 12px;
    color: var(--bad-text);
    font-size: 1.25rem;
    line-height: 1.35;
}

.bad-portfolio-custom-content p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Bottom ---------- */

.bad-portfolio-custom-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    margin-top: 42px;
    padding-top: 34px;

    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-custom-bottom p {
    margin: 0;
    max-width: 720px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-portfolio-custom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bad-portfolio-custom-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {

    .bad-portfolio-custom-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 650px) {

    .bad-portfolio-custom {
        padding: 72px 0 80px;
    }

    .bad-portfolio-custom-grid {
        grid-template-columns: 1fr;
    }

    .bad-portfolio-custom-item:last-child {
        grid-column: auto;
    }

    .bad-portfolio-custom-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
}

/* =========================================================
   PORTFOLIO – CUSTOM, NOT TEMPLATE-BASED
   ========================================================= */

.bad-portfolio-custom-made {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-portfolio-custom-made-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}


/* ---------- Heading ---------- */

.bad-portfolio-custom-made-title {
    max-width: 600px;
}

.bad-portfolio-custom-made-title h2 {
    margin: 0;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}


/* ---------- Content ---------- */

.bad-portfolio-custom-made-content {
    max-width: 700px;
}

.bad-portfolio-custom-made-content p {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}

.bad-portfolio-custom-made-content
.bad-portfolio-custom-made-lead {
    color: var(--bad-text);
    font-size: 1.18rem;
    line-height: 1.6;
}


/* ---------- Principles ---------- */

.bad-portfolio-custom-made-points {
    margin-top: 38px;
    border-top: 1px solid var(--bad-border);
}

.bad-portfolio-custom-made-points > div {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 20px;
    align-items: center;

    padding: 19px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-portfolio-custom-made-points span {
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-portfolio-custom-made-points strong {
    color: var(--bad-text);
    font-size: 1rem;
    font-weight: 500;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-portfolio-custom-made-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bad-portfolio-custom-made-content {
        max-width: 760px;
    }
}

@media (max-width: 600px) {

    .bad-portfolio-custom-made {
        padding: 72px 0;
    }

    .bad-portfolio-custom-made-points > div {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   ABOUT – HERO
   ========================================================= */

.bad-about-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 90px;
    align-items: end;
}


/* ---------- Content ---------- */

.bad-about-hero-content {
    max-width: 780px;
}

.bad-about-hero h1 {
    margin: 0 0 28px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-about-hero-lead {
    margin: 0 0 20px;
    max-width: 700px;
    color: var(--bad-text);
    font-size: 1.22rem;
    line-height: 1.65;
}

.bad-about-hero-text {
    margin: 0;
    max-width: 720px;
    color: var(--bad-text-muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.bad-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------- Proof ---------- */

.bad-about-hero-proof {
    border-top: 1px solid var(--bad-border);
}

.bad-about-proof-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-proof-item span {
    display: block;
    margin-bottom: 7px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-proof-item strong {
    color: var(--bad-text);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.35;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-about-hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

@media (max-width: 600px) {

    .bad-about-hero {
        padding: 70px 0;
    }

    .bad-about-hero-actions {
        flex-direction: column;
    }
}

/* =========================================================
   ABOUT – BREEDING EXPERIENCE & ANIMAL SCIENCE
   ========================================================= */

.bad-about-background {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}


/* ---------- Header ---------- */

.bad-about-background-header {
    max-width: 820px;
    margin-bottom: 54px;
}

.bad-about-background-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* ---------- Columns ---------- */

.bad-about-background-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bad-about-background-column {
    padding: 40px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
}

.bad-about-background-featured {
    border-color: rgba(213, 154, 36, 0.65);
}

.bad-about-background-label {
    display: block;
    margin-bottom: 24px;
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-background-column h3 {
    margin: 0 0 20px;
    color: var(--bad-text);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.25;
}

.bad-about-background-column p {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}

.bad-about-background-column p:last-child {
    margin-bottom: 0;
}


/* ---------- Practical result ---------- */

.bad-about-background-result {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 45px;

    margin-top: 38px;
    padding: 32px 0 0;

    border-top: 1px solid var(--bad-border);
}

.bad-about-background-result span {
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.6;
}

.bad-about-background-result p {
    margin: 0;
    max-width: 800px;
    color: var(--bad-text);
    font-size: 1.08rem;
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .bad-about-background-grid {
        grid-template-columns: 1fr;
    }

    .bad-about-background-result {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {

    .bad-about-background {
        padding: 72px 0;
    }

    .bad-about-background-column {
        padding: 28px;
    }
}

/* =========================================================
   ABOUT – WHY THIS MATTERS
   ========================================================= */

.bad-about-value {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-about-value-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
    gap: 85px;
    align-items: start;
}


/* ---------- Visual ---------- */

.bad-about-value-visual {
    position: relative;
}

.bad-about-value-visual img {
    display: block;
    width: 100%;
    min-height: 560px;
    max-height: 720px;
    object-fit: cover;
    border: 1px solid var(--bad-border);
}

.bad-about-value-caption {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bad-border);
}

.bad-about-value-caption span {
    display: block;
    margin-bottom: 7px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-value-caption p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ---------- Content ---------- */

.bad-about-value-content h2 {
    margin: 0 0 24px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.bad-about-value-intro {
    margin: 0 0 38px;
    max-width: 720px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* ---------- Value points ---------- */

.bad-about-value-points {
    border-top: 1px solid var(--bad-border);
}

.bad-about-value-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-value-item > span {
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-value-item h3 {
    margin: 0 0 9px;
    color: var(--bad-text);
    font-size: 1.28rem;
    line-height: 1.3;
}

.bad-about-value-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-about-value-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bad-about-value-visual {
        max-width: 720px;
    }

    .bad-about-value-visual img {
        min-height: auto;
    }
}

@media (max-width: 600px) {

    .bad-about-value {
        padding: 72px 0;
    }

    .bad-about-value-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }
}

/* =========================================================
   ABOUT – BREEDER INFORMATION
   ========================================================= */

.bad-about-knowledge {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-about-knowledge-header {
    max-width: 820px;
    margin-bottom: 52px;
}

.bad-about-knowledge-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* ---------- Grid ---------- */

.bad-about-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-left: 1px solid var(--bad-border);
}

.bad-about-knowledge-item {
    padding: 30px;
    border-right: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-knowledge-item > span {
    display: block;
    margin-bottom: 24px;
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-knowledge-item h3 {
    margin: 0 0 12px;
    color: var(--bad-text);
    font-size: 1.22rem;
    line-height: 1.35;
}

.bad-about-knowledge-item p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* ---------- Note ---------- */

.bad-about-knowledge-note {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 45px;

    margin-top: 36px;
    padding-top: 30px;

    border-top: 1px solid var(--bad-border);
}

.bad-about-knowledge-note span {
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.6;
}

.bad-about-knowledge-note p {
    margin: 0;
    max-width: 790px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-about-knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {

    .bad-about-knowledge {
        padding: 72px 0;
    }

    .bad-about-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .bad-about-knowledge-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bad-about-knowledge-item {
        padding: 26px;
    }
}

/* =========================================================
   ABOUT – DESIGN APPROACH
   ========================================================= */

.bad-about-approach {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-about-approach-header {
    max-width: 860px;
    margin-bottom: 54px;
}

.bad-about-approach-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* ---------- Grid ---------- */

.bad-about-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-left: 1px solid var(--bad-border);
}

.bad-about-approach-item {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 22px;

    padding: 34px;

    border-right: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-about-approach-number {
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-approach-item h3 {
    margin: 0 0 12px;
    color: var(--bad-text);
    font-size: 1.32rem;
    line-height: 1.3;
}

.bad-about-approach-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .bad-about-approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bad-about-approach {
        padding: 72px 0;
    }

    .bad-about-approach-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 27px;
    }
}

/* =========================================================
   ABOUT – THE STORY BEHIND BODARTDOGS
   ========================================================= */

.bad-about-story {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 90px;
    align-items: center;
}


/* ---------- Story ---------- */

.bad-about-story-content {
    max-width: 720px;
}

.bad-about-story-content h2 {
    margin: 0 0 28px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.bad-about-story-content p {
    margin: 0 0 18px;
    color: var(--bad-text-muted);
    line-height: 1.78;
}

.bad-about-story-content .bad-about-story-lead {
    margin-bottom: 22px;
    color: var(--bad-text);
    font-size: 1.18rem;
    line-height: 1.65;
}


/* ---------- Image ---------- */

.bad-about-story-visual {
    position: relative;
}

.bad-about-story-visual img {
    display: block;
    width: 100%;
    min-height: 520px;
    max-height: 680px;
    object-fit: cover;
    border: 1px solid var(--bad-border);
}


/* ---------- Quote card ---------- */

.bad-about-story-quote {
    position: relative;
    z-index: 2;

    width: calc(100% - 50px);
    margin: -55px 25px 0;
    padding: 25px 28px;

    background: rgba(21, 21, 21, 0.96);
    border: 1px solid var(--bad-border);
}

.bad-about-story-quote span {
    display: block;
    margin-bottom: 8px;

    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-about-story-quote p {
    margin: 0;
    color: var(--bad-text);
    font-size: 1.06rem;
    line-height: 1.6;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-about-story-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bad-about-story-visual {
        max-width: 720px;
    }
}

@media (max-width: 600px) {

    .bad-about-story {
        padding: 72px 0;
    }

    .bad-about-story-visual img {
        min-height: auto;
    }

    .bad-about-story-quote {
        width: calc(100% - 28px);
        margin: -36px 14px 0;
        padding: 21px;
    }
}

/* =========================================================
   CONTACT – HERO
   ========================================================= */

.bad-contact-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0 95px;
    border-bottom: 1px solid var(--bad-border);
}

.bad-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 90px;
    align-items: end;
}

.bad-contact-hero-content {
    max-width: 760px;
}

.bad-contact-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-contact-hero-lead {
    margin: 0 0 20px;
    max-width: 700px;
    color: var(--bad-text);
    font-size: 1.18rem;
    line-height: 1.65;
}

.bad-contact-hero-text {
    margin: 0;
    max-width: 700px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Info ---------- */

.bad-contact-hero-info {
    border-top: 1px solid var(--bad-border);
}

.bad-contact-hero-info > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--bad-border);
}

.bad-contact-hero-info span {
    display: block;
    margin-bottom: 7px;
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-contact-hero-info strong {
    color: var(--bad-text);
    font-size: 1.17rem;
    font-weight: 500;
    line-height: 1.4;
}


/* ---------- Responsive ---------- */

@media (max-width: 850px) {

    .bad-contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {

    .bad-contact-hero {
        padding: 70px 0;
    }
}

/* =========================================================
   CONTACT – WHAT TO INCLUDE
   ========================================================= */

.bad-contact-brief {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 110px 0;
}

.bad-contact-brief-header {
    max-width: 820px;
    margin-bottom: 54px;
}

.bad-contact-brief-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* ---------- Grid ---------- */

.bad-contact-brief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-left: 1px solid var(--bad-border);
}

.bad-contact-brief-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;

    padding: 32px;

    border-right: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-contact-brief-number {
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-contact-brief-item h3 {
    margin: 0 0 10px;
    color: var(--bad-text);
    font-size: 1.28rem;
    line-height: 1.3;
}

.bad-contact-brief-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.72;
}


/* ---------- Note ---------- */

.bad-contact-brief-note {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 45px;

    margin-top: 36px;
    padding-top: 30px;

    border-top: 1px solid var(--bad-border);
}

.bad-contact-brief-note span {
    color: var(--bad-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.6;
}

.bad-contact-brief-note p {
    margin: 0;
    max-width: 780px;
    color: var(--bad-text-muted);
    line-height: 1.7;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .bad-contact-brief-grid {
        grid-template-columns: 1fr;
    }

    .bad-contact-brief-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {

    .bad-contact-brief {
        padding: 72px 0;
    }

    .bad-contact-brief-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 26px;
    }
}

/* =========================================================
   CONTACT – PROJECT ENQUIRY
   ========================================================= */

.bad-contact-enquiry {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0 40px;
}

.bad-contact-enquiry-header {
    max-width: 760px;
}

.bad-contact-enquiry-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.bad-contact-enquiry-header > p:not(.bad-eyebrow) {
    margin: 0;
    max-width: 680px;
    color: var(--bad-text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

@media (max-width: 600px) {

    .bad-contact-enquiry {
        padding: 72px 0 32px;
    }
}

/* =========================================================
   CONTACT – FORM WIDTH
   ========================================================= */

.bad-contact-form-wrap {
    width: min(calc(100% - 40px), 920px);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .bad-contact-form-wrap {
        width: calc(100% - 30px);
    }
}

/* =========================================================
   CONTACT – FLUENT FORMS DESIGN
   ========================================================= */

.bad-contact-form-wrap {
    width: min(calc(100% - 40px), 920px);
    margin-left: auto;
    margin-right: auto;

    padding: 38px 42px;

    background: #181818;
    border: 1px solid rgba(213, 154, 36, 0.55);
    border-radius: 4px;

    box-sizing: border-box;
}


/* ---------- Form spacing ---------- */

.bad-contact-form-wrap .ff-el-group {
    margin-bottom: 22px;
}


/* ---------- Labels ---------- */

.bad-contact-form-wrap .ff-el-input--label label {
    color: var(--bad-text);
    font-size: 0.96rem;
    font-weight: 500;
}

.bad-contact-form-wrap .ff-el-input--label label::after {
    color: var(--bad-gold);
}


/* ---------- Inputs & textarea ---------- */

.bad-contact-form-wrap .ff-el-form-control {
    width: 100%;
    padding: 13px 15px;

    background: #1d1d1d;
    color: var(--bad-text);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.bad-contact-form-wrap textarea.ff-el-form-control {
    min-height: 120px;
    resize: vertical;
}


/* ---------- Placeholder ---------- */

.bad-contact-form-wrap .ff-el-form-control::placeholder {
    color: #808080;
    opacity: 1;
}


/* ---------- Focus ---------- */

.bad-contact-form-wrap .ff-el-form-control:focus {
    background: #202020;
    color: var(--bad-text);

    border-color: var(--bad-gold);
    outline: none;
    box-shadow: 0 0 0 1px rgba(213, 154, 36, 0.18);
}


/* ---------- Privacy checkbox ---------- */

.bad-contact-form-wrap input[type="checkbox"] {
    accent-color: var(--bad-gold);
}

.bad-contact-form-wrap .ff-el-form-check-label {
    color: var(--bad-text-muted);
    line-height: 1.6;
}

.bad-contact-form-wrap .ff-el-form-check-label a {
    color: var(--bad-gold);
    text-decoration: none;
}

.bad-contact-form-wrap .ff-el-form-check-label a:hover {
    text-decoration: underline;
}


/* ---------- Submit button ---------- */

.bad-contact-form-wrap .ff-btn-submit,
.bad-contact-form-wrap button[type="submit"] {
    padding: 13px 24px !important;

    background: var(--bad-gold) !important;
    color: #151515 !important;

    border: 1px solid var(--bad-gold) !important;
    border-radius: 4px !important;

    font-weight: 700 !important;

    box-shadow: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.bad-contact-form-wrap .ff-btn-submit:hover,
.bad-contact-form-wrap button[type="submit"]:hover {
    background: var(--bad-gold-hover) !important;
    border-color: var(--bad-gold-hover) !important;
    transform: translateY(-1px);
}


/* ---------- Validation ---------- */

.bad-contact-form-wrap .text-danger,
.bad-contact-form-wrap .error {
    color: #e58a7b;
}


/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .bad-contact-form-wrap {
        width: calc(100% - 30px);
        padding: 26px 20px;
    }
}

/* =========================================================
   CONTACT – WHAT HAPPENS NEXT
   ========================================================= */

.bad-contact-next {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 105px 0 115px;
}

.bad-contact-next-header {
    max-width: 820px;
    margin-bottom: 52px;
}

.bad-contact-next-header h2 {
    margin: 0 0 22px;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* ---------- Steps ---------- */

.bad-contact-next-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-contact-next-item {
    padding: 32px 26px 36px;
    border-right: 1px solid var(--bad-border);
}

.bad-contact-next-item:last-child {
    border-right: 0;
}

.bad-contact-next-number {
    display: block;
    margin-bottom: 30px;
    color: var(--bad-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-contact-next-item h3 {
    margin: 0 0 13px;
    color: var(--bad-text);
    font-size: 1.2rem;
    line-height: 1.35;
}

.bad-contact-next-item p {
    margin: 0;
    color: var(--bad-text-muted);
    font-size: 0.95rem;
    line-height: 1.72;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .bad-contact-next-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-contact-next-item:nth-child(2) {
        border-right: 0;
    }

    .bad-contact-next-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--bad-border);
    }
}

@media (max-width: 600px) {

    .bad-contact-next {
        padding: 72px 0 80px;
    }

    .bad-contact-next-grid {
        grid-template-columns: 1fr;
    }

    .bad-contact-next-item,
    .bad-contact-next-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 27px 0;
    }

    .bad-contact-next-item:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   CONTACT – TRUST
   ========================================================= */

.bad-contact-trust {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 100px 0 110px;
}

.bad-contact-trust-header {
    max-width: 760px;
    margin-bottom: 46px;
}

.bad-contact-trust-header h2 {
    margin: 0;
    color: var(--bad-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.bad-contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bad-contact-trust-item {
    padding: 30px;
    background: var(--bad-card);
    border: 1px solid var(--bad-border);
}

.bad-contact-trust-item > span {
    display: block;
    margin-bottom: 24px;
    color: var(--bad-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-contact-trust-item h3 {
    margin: 0 0 12px;
    color: var(--bad-text);
    font-size: 1.25rem;
    line-height: 1.35;
}

.bad-contact-trust-item p {
    margin: 0;
    color: var(--bad-text-muted);
    line-height: 1.7;
}

@media (max-width: 800px) {

    .bad-contact-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bad-contact-trust {
        padding: 72px 0 80px;
    }

    .bad-contact-trust-item {
        padding: 26px;
    }
}

/* =========================================================
   CONTACT – FINAL NOTE
   ========================================================= */

.bad-contact-note {
    background: var(--bad-bg-alt);
    color: var(--bad-text);
    padding: 38px 0 44px;
    border-top: 1px solid var(--bad-border);
}

.bad-contact-note-inner {
    max-width: 820px;
}

.bad-contact-note-inner p {
    margin: 8px 0 0;
    color: var(--bad-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =========================================================
   BLOG – HERO
   ========================================================= */

.bad-en-blog-hero {
    background: var(--bad-bg);
    color: var(--bad-text);
    padding: 105px 0 70px;
    border-bottom: 1px solid var(--bad-border);
}


/* ---------- Main hero ---------- */

.bad-en-blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 70px;
    align-items: center;
}


/* ---------- Content ---------- */

.bad-en-blog-hero-content {
    max-width: 720px;
}

.bad-en-blog-hero h1 {
    margin: 0 0 26px;
    color: var(--bad-text);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.bad-en-blog-hero-lead {
    margin: 0 0 20px;
    max-width: 680px;
    color: var(--bad-text);
    font-size: 1.18rem;
    line-height: 1.68;
}

.bad-en-blog-hero-text {
    margin: 0;
    max-width: 680px;
    color: var(--bad-text-muted);
    line-height: 1.75;
}


/* ---------- Hero image ---------- */

.bad-en-blog-hero-visual {
    position: relative;
}

.bad-en-blog-hero-visual::before {
    content: "";
    position: absolute;
    inset: -10px 10px 10px -10px;
    border: 1px solid var(--bad-border);
    pointer-events: none;
}

.bad-en-blog-hero-visual img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    height: auto;

    border: 1px solid rgba(213, 154, 36, 0.18);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.32);
}


/* ---------- Topic navigation ---------- */

.bad-en-blog-hero-topics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    margin-top: 65px;

    border-top: 1px solid var(--bad-border);
    border-bottom: 1px solid var(--bad-border);
}

.bad-en-blog-hero-topics > div {
    padding: 22px 20px;
    border-right: 1px solid var(--bad-border);
}

.bad-en-blog-hero-topics > div:last-child {
    border-right: 0;
}

.bad-en-blog-hero-topics span {
    display: block;

    margin-bottom: 8px;

    color: var(--bad-gold);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-en-blog-hero-topics strong {
    display: block;

    color: var(--bad-text);

    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.4;
}


/* ---------- Tablet ---------- */

@media (max-width: 1000px) {

    .bad-en-blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bad-en-blog-hero-content {
        max-width: 780px;
    }

    .bad-en-blog-hero-visual {
        max-width: 800px;
    }

    .bad-en-blog-hero-topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-en-blog-hero-topics > div {
        border-bottom: 1px solid var(--bad-border);
    }

    .bad-en-blog-hero-topics > div:nth-child(even) {
        border-right: 0;
    }

    .bad-en-blog-hero-topics > div:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }
}


/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .bad-en-blog-hero {
        padding: 70px 0 55px;
    }

    .bad-en-blog-hero-grid {
        gap: 38px;
    }

    .bad-en-blog-hero-visual::before {
        inset: -6px 6px 6px -6px;
    }

    .bad-en-blog-hero-topics {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .bad-en-blog-hero-topics > div,
    .bad-en-blog-hero-topics > div:nth-child(even),
    .bad-en-blog-hero-topics > div:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--bad-border);
        padding: 17px 0;
    }

    .bad-en-blog-hero-topics > div:last-child {
        border-bottom: 0;
    }
}
/* =========================================================
   BLOG – BROWSE BY TOPIC
   ========================================================= */

.bad-blog-explore {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(213, 154, 36, 0.07),
            transparent 30%
        ),
        var(--bad-bg-alt);

    color: var(--bad-text);

    padding: 110px 0 120px;
}


/* ---------- Header ---------- */

.bad-blog-explore-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: end;

    margin-bottom: 52px;
}

.bad-blog-explore-header h2 {
    margin: 0;

    color: var(--bad-text);

    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.bad-blog-explore-intro {
    max-width: 650px;
}

.bad-blog-explore-intro p {
    margin: 0;

    color: var(--bad-text-muted);

    font-size: 1.03rem;
    line-height: 1.75;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.bad-blog-explore-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr)
        minmax(0, 0.85fr);

    gap: 22px;
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.bad-blog-topic-featured {
    position: relative;

    grid-row: span 2;

    min-height: 690px;

    overflow: hidden;

    border: 1px solid var(--bad-border);

    color: inherit;
    text-decoration: none;

    background: #111;
}

.bad-blog-topic-image {
    position: absolute;
    inset: 0;
}

.bad-blog-topic-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.bad-blog-topic-featured:hover
.bad-blog-topic-image img {
    transform: scale(1.035);
}


/* ---------- Featured overlay ---------- */

.bad-blog-topic-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.03) 15%,
            rgba(10, 10, 10, 0.35) 48%,
            rgba(10, 10, 10, 0.94) 100%
        );
}


/* ---------- Featured content ---------- */

.bad-blog-topic-featured-content {
    position: absolute;
    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 20px;

    padding: 38px;
}

.bad-blog-topic-index {
    color: var(--bad-gold);

    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bad-blog-topic-kicker {
    margin: 0 0 8px !important;

    color: var(--bad-gold) !important;

    font-size: 0.69rem !important;
    font-weight: 700;
    line-height: 1.4 !important;
    letter-spacing: 0.16em;
}

.bad-blog-topic-featured h3 {
    margin: 0 0 13px;

    color: #fff;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
}

.bad-blog-topic-description {
    margin: 0 0 20px;

    max-width: 520px;

    color: rgba(255,255,255,0.76);

    font-size: 0.97rem;
    line-height: 1.7;
}


/* =========================================================
   SMALL TOPIC CARDS
   ========================================================= */

.bad-blog-topic-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--bad-card);
    border: 1px solid var(--bad-border);

    color: inherit;
    text-decoration: none;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.bad-blog-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(213, 154, 36, 0.75);
}


/* ---------- Images ---------- */

.bad-blog-topic-card-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: #111;
}

.bad-blog-topic-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.bad-blog-topic-card:hover
.bad-blog-topic-card-image img {
    transform: scale(1.04);
}

.bad-blog-topic-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(10,10,10,0.65) 100%
        );
}

.bad-blog-topic-card-number {
    position: absolute;

    top: 18px;
    left: 19px;

    padding: 7px 9px;

    background: rgba(15,15,15,0.78);
    border: 1px solid rgba(213,154,36,0.4);

    color: var(--bad-gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}


/* ---------- Card content ---------- */

.bad-blog-topic-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 24px 25px 26px;
}

.bad-blog-topic-card-content h3 {
    margin: 0 0 11px;

    color: var(--bad-text);

    font-size: 1.3rem;
    line-height: 1.3;
}

.bad-blog-topic-card-content > p:not(.bad-blog-topic-kicker) {
    margin: 0 0 20px;

    color: var(--bad-text-muted);

    font-size: 0.92rem;
    line-height: 1.65;
}


/* ---------- Explore link ---------- */

.bad-blog-topic-read {
    display: inline-block;

    margin-top: auto;

    color: var(--bad-gold);

    font-size: 0.86rem;
    font-weight: 600;

    transition: transform 0.2s ease;
}

.bad-blog-topic-card:hover
.bad-blog-topic-read,
.bad-blog-topic-featured:hover
.bad-blog-topic-read {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .bad-blog-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bad-blog-topic-featured {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: 560px;
    }
}


@media (max-width: 800px) {

    .bad-blog-explore-header {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}


@media (max-width: 650px) {

    .bad-blog-explore {
        padding: 72px 0 80px;
    }

    .bad-blog-explore-grid {
        grid-template-columns: 1fr;
    }

    .bad-blog-topic-featured {
        grid-column: auto;
        min-height: 520px;
    }

    .bad-blog-topic-featured-content {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;

        padding: 27px 22px;
    }

    .bad-blog-topic-card-image {
        height: 210px;
    }
}