.pd-shortcode-section,
.pd-shortcode-header,
.pd-shortcode-footer,
.pd-stats,
.pd-cta,
.pd-hero,
.pd-whatsapp {
    --pd-black: #080808;
    --pd-dark: #111111;
    --pd-surface: #181818;
    --pd-surface-2: #222222;
    --pd-border: #2E2E2E;
    --pd-yellow: #C89520;
    --pd-yellow-h: #DBA82A;
    --pd-yellow-d: #A07215;
    --pd-yellow-soft: #F0C040;
    --pd-yellow-bg: rgba(200, 149, 32, 0.08);
    --pd-white: #F0EDE6;
    --pd-muted: #7A7A7A;
    --pd-muted-l: #AAAAAA;
    --pd-success: #2E7D32;
    --pd-error: #B71C1C;
    --pd-warning: #E65100;
    --pd-shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
    --pd-shadow-md: 0 8px 32px rgba(0,0,0,0.6);
    --pd-shadow-lg: 0 24px 64px rgba(0,0,0,0.7);
    --pd-shadow-yellow: 0 0 24px rgba(200,149,32,0.25);
    --pd-font-display: 'Raleway', sans-serif;
    --pd-font-heading: 'Raleway', sans-serif;
    --pd-font-body: 'Poppins', sans-serif;
    --pd-font-mono: 'Bebas Neue', sans-serif;
    --pd-font-hand: 'Caveat', cursive;
    --pd-radius: 4px;
    --pd-radius-sm: 2px;
    --pd-radius-lg: 8px;
    --pd-transition: 0.2s ease;
    --pd-transition-slow: 0.4s ease;
}

html[data-pd-theme="light"] .pd-shortcode-section,
html[data-pd-theme="light"] .pd-shortcode-header,
html[data-pd-theme="light"] .pd-shortcode-footer,
html[data-pd-theme="light"] .pd-stats,
html[data-pd-theme="light"] .pd-cta,
html[data-pd-theme="light"] .pd-hero,
html[data-pd-theme="light"] .pd-whatsapp {
    --pd-black: #F3F4F6;
    --pd-dark: #E5E7EB;
    --pd-surface: #FFFFFF;
    --pd-surface-2: #F9FAFB;
    --pd-border: #D1D5DB;
    --pd-white: #161616;
    --pd-muted: #5E5E5E;
    --pd-muted-l: #3D3D3D;
    --pd-yellow-bg: rgba(200, 149, 32, 0.14);
    --pd-shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
    --pd-shadow-md: 0 8px 32px rgba(0,0,0,0.14);
    --pd-shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
}

.pd-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.pd-shortcode-header {
    position: relative;
    z-index: 90;
    border-bottom: 1px solid var(--pd-border);
    background: var(--pd-black);
    color: var(--pd-white);
    font-family: var(--pd-font-body);
}

.pd-shortcode-header--sticky {
    position: sticky;
    top: 0;
}

.pd-shortcode-header__topbar {
    border-bottom: 1px solid var(--pd-border);
    background: var(--pd-black);
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pd-shortcode-header__topbar .pd-container {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pd-shortcode-header__topbar a {
    color: var(--pd-yellow-soft);
    text-decoration: none;
}

.pd-shortcode-header__main {
    background: var(--pd-dark);
}

.pd-shortcode-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.pd-shortcode-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--pd-white);
    text-decoration: none;
}

.pd-logo-circle {
    display: inline-flex;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--pd-yellow);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: var(--pd-shadow-sm);
}

.pd-logo-circle img {
    display: block;
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.pd-shortcode-logo-circle--footer {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
}

.pd-shortcode-header__brand strong,
.pd-shortcode-header__brand small {
    display: block;
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-shortcode-header__brand strong {
    color: var(--pd-white);
    font-size: 22px;
    line-height: 1;
}

.pd-shortcode-header__brand small {
    margin-top: 3px;
    color: var(--pd-muted-l);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.pd-shortcode-header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-shortcode-header__menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-shortcode-header__menu a {
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.pd-shortcode-header__menu a:hover {
    color: var(--pd-yellow-soft);
}

.pd-shortcode-header__toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface);
    cursor: pointer;
}

.pd-shortcode-header__toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--pd-white);
}

.pd-shortcode-header__close {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface);
    color: var(--pd-white);
    cursor: pointer;
}

.pd-shortcode-header__close span:not(.screen-reader-text) {
    grid-area: 1 / 1;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pd-white);
}

.pd-shortcode-header__close span:first-child {
    transform: rotate(45deg);
}

.pd-shortcode-header__close span:nth-child(2) {
    transform: rotate(-45deg);
}

.pd-shortcode-footer {
    border-top: 1px solid var(--pd-border);
    background: var(--pd-black);
    color: var(--pd-white);
    font-family: var(--pd-font-body);
}

.pd-shortcode-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 30px;
    padding: clamp(44px, 7vw, 76px) 0;
}

.pd-shortcode-footer h3 {
    margin: 0 0 14px;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 18px;
    text-transform: uppercase;
}

.pd-shortcode-footer p,
.pd-shortcode-footer a {
    color: var(--pd-muted-l);
}

.pd-shortcode-footer a {
    text-decoration: none;
}

.pd-shortcode-footer a:hover {
    color: var(--pd-yellow-soft);
}

.pd-shortcode-footer__brand a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 24px;
    text-transform: uppercase;
}

.pd-shortcode-footer__brand p {
    margin-bottom: 0;
}

.pd-shortcode-footer__menu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-shortcode-footer__menu a,
.pd-shortcode-footer__socials a {
    font-family: var(--pd-font-heading);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pd-shortcode-footer__bottom {
    border-top: 1px solid var(--pd-border);
}

.pd-shortcode-footer__bottom .pd-container {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pd-shortcode-footer__bottom p {
    margin: 0;
}

.pd-shortcode-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pd-theme-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface);
    color: var(--pd-white);
    cursor: pointer;
    font-family: var(--pd-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pd-theme-icon {
    font-size: 15px;
    color: var(--pd-yellow-soft);
}

.pd-theme-icon--light { display: none; }
.pd-theme-icon--dark  { display: inline; }

html[data-pd-theme="light"] .pd-theme-icon--light { display: inline; }
html[data-pd-theme="light"] .pd-theme-icon--dark  { display: none; }

.pd-shortcode-section,
.pd-stats,
.pd-cta {
    padding: clamp(40px, 8vw, 104px) 0;
    background: var(--pd-dark);
    color: var(--pd-white);
}

.pd-grid {
    display: grid;
    gap: 24px;
}

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

.pd-section-title {
    margin-bottom: 36px;
}

.pd-section-title--center {
    text-align: center;
}

.pd-section-title--right {
    text-align: right;
}

.pd-overline,
.pd-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pd-section-title h2,
.pd-hero h1,
.pd-cta h2 {
    margin: 8px 0 0;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.94;
    text-transform: uppercase;
}

.pd-section-title h2,
.pd-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
}

.pd-section-title p,
.pd-hero p,
.pd-cta p {
    max-width: 68ch;
    color: var(--pd-muted-l);
}

.pd-section-title--center p,
.pd-hero p {
    margin-inline: auto;
}

.pd-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--pd-border);
    border-left: 4px solid var(--pd-border);
    border-radius: var(--pd-radius);
    background: var(--pd-surface);
    color: var(--pd-white);
    box-shadow: var(--pd-shadow-sm);
}

.pd-card--featured {
    border-left-color: var(--pd-yellow);
    box-shadow: var(--pd-shadow-yellow);
}

.pd-service-card {
    gap: 14px;
    overflow: hidden;
    border-left-width: 1px;
    border-top: 4px solid color-mix(in srgb, var(--pd-yellow) 70%, var(--pd-border));
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--pd-surface) 92%, var(--pd-yellow) 8%), var(--pd-surface) 44%),
        var(--pd-surface);
}

.pd-service-card.pd-card--featured {
    border-top-color: var(--pd-yellow);
    border-left-color: var(--pd-border);
}

.pd-card h3 {
    margin: 0;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.pd-card h3 a {
    color: inherit;
    text-decoration: none;
}

.pd-card p {
    margin: 0;
    color: var(--pd-muted-l);
}

.pd-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--pd-radius-sm);
    filter: saturate(0.8) contrast(1.08);
}

.pd-service-card .pd-card__image {
    aspect-ratio: 16 / 10;
}

.pd-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: auto;
    color: var(--pd-muted-l);
}

.pd-card__meta strong {
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-mono);
    font-size: 34px;
}

.pd-service-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.pd-service-card__benefits {
    position: relative;
    overflow: hidden;
    transition: max-height var(--pd-transition);
}

.pd-service-card__toggle {
    display: none;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pd-yellow-soft);
    cursor: pointer;
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pd-service-note-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 6px 9px;
    border: 1px solid color-mix(in srgb, var(--pd-yellow) 32%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--pd-yellow) 10%, var(--pd-surface));
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pd-service-note-badge--vet {
    border-color: color-mix(in srgb, #39d98a 38%, transparent);
    background: color-mix(in srgb, #39d98a 12%, var(--pd-surface));
}

.pd-service-note-badge--diagnostic {
    color: var(--pd-yellow-soft);
}

.pd-service-note-badge--duration {
    border-color: color-mix(in srgb, var(--pd-muted) 34%, transparent);
    background: color-mix(in srgb, var(--pd-muted) 12%, var(--pd-surface));
    color: var(--pd-white);
}

.pd-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-list li {
    position: relative;
    padding-left: 18px;
    color: var(--pd-muted-l);
}

.pd-list li::before {
    position: absolute;
    left: 0;
    color: var(--pd-yellow);
    content: "/";
}

.pd-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--pd-yellow);
    border-radius: var(--pd-radius-sm);
    font-family: var(--pd-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--pd-transition), color var(--pd-transition), border-color var(--pd-transition);
}

.pd-btn--small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
}

.pd-btn--yellow {
    background: var(--pd-yellow);
    color: var(--pd-black);
}

.pd-btn--ghost {
    background: transparent;
    color: var(--pd-yellow-soft);
}

.pd-btn:hover {
    border-color: var(--pd-yellow-h);
    background: var(--pd-yellow-h);
    color: var(--pd-black);
}

.pd-link {
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-hero {
    position: relative;
    isolation: isolate;
    min-height: min(860px, 97vh);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--pd-black);
    color: var(--pd-white);
}

.pd-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/pattern-military.svg");
    background-size: 420px;
    opacity: 0.14;
    content: "";
}

.pd-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
}

/* ── Hero inner layout ── */
.pd-hero__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: clamp(80px, 11vh, 130px) 0 clamp(64px, 9vh, 110px);
}

.pd-hero__body {
    max-width: 640px;
}

/* ── Badge ── */
.pd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 28px;
    background: var(--pd-yellow-bg);
    border: 1px solid rgba(200, 149, 32, 0.35);
    border-radius: var(--pd-radius);
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pd-hero__badge i {
    font-size: 13px;
    opacity: 0.85;
}

/* ── Title ── */
.pd-hero__title {
    font-family: 'Raleway', sans-serif !important;
    font-size: clamp(52px, 10vw, 112px);
    font-weight: 900 !important;
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
    margin: 0 0 28px;
}

/* ── Gold rule ── */
.pd-hero__rule {
    width: 52px;
    height: 3px;
    background: var(--pd-yellow);
    margin: 0 0 28px;
    border-radius: 2px;
}

/* ── Subtitle ── */
.pd-hero__sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
    margin: 0;
    max-width: 44ch;
    line-height: 1.6;
}

/* ── Actions ── */
.pd-hero__actions,
.pd-cta__actions,
.pd-booking-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.pd-hero .pd-hero__actions {
    gap: 14px;
    margin-top: 40px;
}

.pd-btn--hero {
    min-height: 62px;
    padding: 18px 40px;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    letter-spacing: 0.02em;
    gap: 10px;
}

@property --pd-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes pd-btn-border-spin {
    to { --pd-glow-angle: 360deg; }
}

.pd-btn--hero-cta {
    position: relative;
    z-index: 0;
    box-shadow:
        0 0 18px rgba(200, 149, 32, 0.45),
        0 0 40px rgba(200, 149, 32, 0.18);
}

.pd-btn--hero-cta::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    padding: 3px;
    background: conic-gradient(
        from var(--pd-glow-angle),
        transparent 0%,
        transparent 52%,
        rgba(200, 149, 32, 0.35) 68%,
        var(--pd-yellow) 80%,
        #ffffff 86%,
        var(--pd-yellow) 92%,
        transparent 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: pd-btn-border-spin 2.8s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.pd-stats {
    background: var(--pd-surface);
}

.pd-stat {
    padding: 24px;
    border-top: 3px solid var(--pd-yellow);
    background: var(--pd-dark);
}

.pd-stat__number,
.pd-stat__suffix {
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-mono);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.9;
}

.pd-stat p {
    margin: 10px 0 0;
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-cta {
    background: var(--pd-black);
}

.pd-cta--yellow {
    background: var(--pd-yellow);
    color: var(--pd-black);
}

.pd-cta--yellow h2,
.pd-cta--yellow p,
.pd-cta--yellow .pd-overline {
    color: var(--pd-black);
}

.pd-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.pd-service-areas {
    --pd-black: #151713;
    --pd-dark: #F4F5F1;
    --pd-surface: #FFFFFF;
    --pd-surface-2: #ECEFE8;
    --pd-border: #D8DCD2;
    --pd-white: #151713;
    --pd-muted: #667063;
    --pd-muted-l: #4D554B;
    --pd-yellow-bg: rgba(200, 149, 32, 0.12);
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 92px) 0;
    background: var(--pd-dark);
    color: var(--pd-white);
}

html[data-pd-theme="light"] .pd-service-areas {
    --pd-black: #151713;
    --pd-dark: #F4F5F1;
    --pd-surface: #FFFFFF;
    --pd-surface-2: #ECEFE8;
    --pd-border: #D8DCD2;
    --pd-white: #151713;
    --pd-muted: #667063;
    --pd-muted-l: #4D554B;
    --pd-yellow-bg: rgba(200, 149, 32, 0.12);
    color: var(--pd-white);
}

.pd-service-areas__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    width: min(1180px, calc(100% - 32px));
    min-height: 0;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    margin: 0 auto;
    background: transparent;
}

.pd-service-areas__media {
    position: relative;
    order: 2;
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius);
    background: var(--pd-surface);
}

.pd-service-areas__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.pd-service-areas__caption {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--pd-border);
    padding: 14px 16px;
    background: var(--pd-surface);
}

.pd-service-areas__caption span,
.pd-service-mode span,
.pd-service-areas__coverage strong {
    display: block;
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pd-service-areas__caption strong {
    color: var(--pd-yellow);
    font-family: var(--pd-font-hand);
    font-size: clamp(42px, 5.8vw, 72px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.82;
    text-transform: none;
    transform: rotate(-1.5deg);
}

.pd-service-areas__content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    padding: 0;
}

.pd-service-areas__content h2 {
    max-width: 760px;
    margin: 2px 0 0;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 0.94;
    text-transform: uppercase;
}

.pd-service-areas__intro {
    max-width: 66ch;
    margin: 0;
    color: var(--pd-muted-l);
    font-size: 16px;
}

.pd-service-areas__modes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
}

.pd-service-mode {
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface);
    padding: 18px 20px;
}

.pd-service-mode h3 {
    margin: 10px 0 10px;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: clamp(21px, 2.6vw, 28px);
    text-transform: uppercase;
}

.pd-service-mode p {
    margin: 0;
    color: var(--pd-muted-l);
    line-height: 1.55;
}

.pd-service-areas__coverage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    border-top: 1px solid var(--pd-border);
    border-bottom: 1px solid var(--pd-border);
    padding: 18px 0;
}

.pd-service-areas__group {
    display: grid;
    grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.pd-service-areas__coverage ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.pd-service-areas__coverage li {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid var(--pd-border);
    border-radius: 999px;
    background: var(--pd-surface-2);
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pd-service-areas__group--primary li {
    border-color: color-mix(in srgb, var(--pd-yellow) 32%, var(--pd-border));
    background: color-mix(in srgb, var(--pd-yellow) 12%, var(--pd-surface));
    color: var(--pd-black);
}

.pd-service-areas__group--nearby li {
    min-height: 28px;
    padding: 5px 9px;
    background: transparent;
    color: var(--pd-muted-l);
    font-size: 12px;
}

.pd-service-areas__coverage li::before {
    content: none;
}

.pd-service-areas__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--pd-border);
    padding-top: 18px;
}

.pd-service-areas__cta p {
    max-width: 72ch;
    margin: 0;
    color: var(--pd-muted-l);
}

img-comparison-slider.pd-before-after {
    --divider-color: var(--pd-yellow);
    --divider-shadow: var(--pd-shadow-md);
    --divider-width: 4px;
    --default-handle-opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--pd-surface-2);
}

.pd-before-after img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.pd-before-after__handle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid var(--pd-yellow);
    border-radius: 50%;
    background: var(--pd-black);
    box-shadow: var(--pd-shadow-md);
    cursor: ew-resize;
}

.pd-before-after__handle span {
    position: relative;
    display: block;
    width: 28px;
    height: 18px;
}

.pd-before-after__handle span::before,
.pd-before-after__handle span::after {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--pd-yellow-soft);
    border-left: 2px solid var(--pd-yellow-soft);
    content: "";
}

.pd-before-after__handle span::before {
    left: 2px;
    transform: translateY(-50%) rotate(-45deg);
}

.pd-before-after__handle span::after {
    right: 2px;
    transform: translateY(-50%) rotate(135deg);
}

.pd-results-showcase {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(200, 149, 32, 0.08), transparent 34%),
        linear-gradient(180deg, var(--pd-black), var(--pd-dark));
}

.pd-results-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
    margin-bottom: clamp(28px, 5vw, 56px);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--pd-border);
}

.pd-results-head h2 {
    margin: 8px 0 0;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(46px, 8vw, 92px);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
}

.pd-results-head__copy {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.pd-results-head__copy p {
    max-width: 56ch;
    margin: 0;
    color: var(--pd-muted-l);
    font-size: 17px;
}

.pd-results-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-results-kpis span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--pd-border);
    background: var(--pd-surface);
    color: var(--pd-yellow-soft);
    padding: 7px 11px;
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pd-result-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    background: var(--pd-surface);
    color: var(--pd-white);
    box-shadow: var(--pd-shadow-sm);
}

.pd-result-card::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, var(--pd-yellow-bg), transparent 42%);
    content: "";
}

.pd-result-card--featured {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    margin-bottom: 22px;
    border-color: color-mix(in srgb, var(--pd-yellow) 60%, var(--pd-border));
    background: var(--pd-black);
    box-shadow: var(--pd-shadow-lg);
}

.pd-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pd-result-media {
    position: relative;
    min-height: 100%;
    background: var(--pd-surface-2);
}

.pd-result-card--featured .pd-result-media {
    min-height: 480px;
}

.pd-result-card:not(.pd-result-card--featured) .pd-result-media {
    aspect-ratio: 16 / 10;
}

.pd-result-media .pd-before-after {
    width: 100%;
    height: 100%;
    min-height: inherit;
    aspect-ratio: auto;
}

.pd-result-media--empty {
    display: grid;
    min-height: 260px;
    place-items: center;
    border-bottom: 1px solid var(--pd-border);
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pd-before-after__labels {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.pd-before-after__labels span {
    background: rgba(8, 8, 8, 0.78);
    color: var(--pd-white);
    padding: 7px 10px;
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pd-result-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 4vw, 36px);
}

.pd-result-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-result-card__meta span {
    border: 1px solid var(--pd-border);
    background: var(--pd-yellow-bg);
    color: var(--pd-yellow-soft);
    padding: 6px 9px;
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.pd-result-card h3 {
    margin: 0;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
}

.pd-result-card:not(.pd-result-card--featured) h3 {
    font-size: clamp(26px, 3vw, 36px);
}

.pd-result-card h3 a {
    color: inherit;
    text-decoration: none;
}

.pd-result-card__breed {
    margin: -6px 0 0;
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-result-card__steps {
    display: grid;
    gap: 10px;
}

.pd-result-card--featured .pd-result-card__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pd-result-card__steps div {
    border-left: 3px solid var(--pd-yellow);
    background: var(--pd-surface-2);
    padding: 14px;
}

.pd-result-card__steps strong {
    display: block;
    margin-bottom: 6px;
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-heading);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pd-result-card__steps p {
    margin: 0;
    color: var(--pd-muted-l);
}

.pd-result-card__link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    color: var(--pd-yellow-soft);
    font-family: var(--pd-font-heading);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.pd-result-card__link:hover {
    color: var(--pd-white);
}

.pd-results-empty {
    border: 1px solid var(--pd-border);
    background: var(--pd-surface);
    padding: 32px;
}

.pd-results-empty h3 {
    margin: 0 0 8px;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-results-empty p {
    margin: 0;
    color: var(--pd-muted-l);
}

.pd-video {
    aspect-ratio: 16 / 9;
    background: var(--pd-black);
}

.pd-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.pd-faq__item {
    border-bottom: 1px solid var(--pd-border);
    padding: 18px 0;
}

.pd-faq__item summary {
    cursor: pointer;
    color: var(--pd-white);
    font-family: var(--pd-font-heading);
    font-size: 20px;
    text-transform: uppercase;
}

.pd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pd-booking-form label {
    display: grid;
    gap: 8px;
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    text-transform: uppercase;
}

.pd-booking-form input,
.pd-booking-form select,
.pd-booking-form textarea,
.pd-breeds__search {
    width: 100%;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface-2);
    color: var(--pd-white);
    padding: 13px 14px;
    font: inherit;
}

.pd-form-status {
    min-height: 24px;
    color: var(--pd-yellow-soft);
}

.pd-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--pd-yellow);
    border-radius: var(--pd-radius);
    background: var(--pd-yellow);
    color: var(--pd-black);
    font-family: var(--pd-font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(120%);
    transition: transform var(--pd-transition-slow);
}

.pd-whatsapp.is-visible {
    transform: translateY(0);
}

.pd-whatsapp--pulse {
    animation: pdPulse 2.4s infinite;
}

@keyframes pdPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--pd-yellow-bg); }
    50% { box-shadow: 0 0 0 12px transparent; }
}

@media (max-width: 900px) {
    .pd-shortcode-header__topbar .pd-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .pd-shortcode-header__toggle {
        display: block;
    }

    .pd-shortcode-header__nav {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 26px;
        padding: 32px;
        background: var(--pd-black);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--pd-transition), transform var(--pd-transition);
    }

    .pd-shortcode-header__close {
        position: absolute;
        top: 22px;
        right: 22px;
        display: grid;
    }

    .pd-shortcode-header__nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .pd-shortcode-header__menu {
        flex-direction: column;
        gap: 18px;
    }

    .pd-shortcode-header__menu a {
        font-size: 28px;
    }

    .pd-shortcode-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-shortcode-footer__bottom .pd-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .pd-grid--3,
    .pd-grid--4,
    .pd-cta__inner,
    .pd-service-areas__panel,
    .pd-service-areas__modes,
    .pd-service-areas__coverage,
    .pd-results-head,
    .pd-result-card--featured,
    .pd-results-grid {
        grid-template-columns: 1fr;
    }

    .pd-services .pd-grid--3,
    .pd-services .pd-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-service-card {
        padding: 16px;
        gap: 10px;
    }

    .pd-service-card .pd-card__image {
        aspect-ratio: 1 / 0.76;
    }

    .pd-service-card h3 {
        font-size: 19px;
        line-height: 1;
    }

    .pd-service-card p {
        font-size: 13px;
        line-height: 1.45;
    }

    .pd-service-card__benefits {
        max-height: 76px;
    }

    .pd-service-card__benefits::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 28px;
        background: linear-gradient(180deg, transparent, var(--pd-surface));
        content: "";
        pointer-events: none;
    }

    .pd-service-card.is-expanded .pd-service-card__benefits {
        max-height: 520px;
    }

    .pd-service-card.is-expanded .pd-service-card__benefits::after {
        display: none;
    }

    .pd-service-card__toggle {
        display: inline-flex;
    }

    .pd-service-card__badges {
        gap: 6px;
    }

    .pd-service-note-badge {
        min-height: 24px;
        padding: 5px 7px;
        font-size: 9px;
    }

    .pd-service-card .pd-btn {
        width: 100%;
        min-height: 38px;
        padding: 9px 10px;
        font-size: 12px;
    }

    .pd-service-areas__panel {
        min-height: 0;
        background: transparent;
    }

    .pd-service-areas__media {
        min-height: 0;
        background: var(--pd-surface);
    }

    .pd-service-areas__media::after {
        content: none;
    }

    .pd-service-areas__media img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        filter: saturate(0.92) contrast(1.02);
    }

    .pd-result-card--featured .pd-result-media {
        min-height: 360px;
    }

    .pd-result-card--featured .pd-result-card__steps {
        grid-template-columns: 1fr;
    }
}

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

    .pd-grid--2,
    .pd-form-grid {
        grid-template-columns: 1fr;
    }

    .pd-stats .pd-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pd-stat {
        padding: 18px 14px;
    }

    .pd-stat__number,
    .pd-stat__suffix {
        font-size: clamp(32px, 9vw, 48px);
    }

    .pd-stat p {
        font-size: 12px;
        margin-top: 6px;
    }

    .pd-card {
        padding: 20px;
    }

    .pd-services .pd-grid {
        gap: 14px;
    }

    .pd-service-areas__content {
        gap: 20px;
        padding: 0;
    }

    .pd-service-areas__content h2 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .pd-service-areas__intro {
        font-size: 15px;
    }

    .pd-service-areas__media {
        min-height: 0;
    }

    .pd-service-areas__caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .pd-service-mode {
        padding: 18px;
    }

    .pd-service-areas__coverage {
        gap: 20px;
    }

    .pd-service-areas__group {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pd-service-areas__coverage ul {
        display: flex;
        gap: 7px;
    }

    .pd-service-areas__cta {
        align-items: stretch;
    }

    .pd-service-areas__cta .pd-btn {
        width: 100%;
    }

    .pd-results-head {
        gap: 18px;
        margin-bottom: 24px;
    }

    .pd-results-head h2 {
        font-size: clamp(42px, 16vw, 64px);
    }

    .pd-results-head__copy p {
        font-size: 15px;
    }

    .pd-results-kpis span {
        flex: 1 1 auto;
        justify-content: center;
    }

    .pd-result-card--featured .pd-result-media,
    .pd-result-media--empty {
        min-height: 300px;
    }

    .pd-result-card__body {
        padding: 22px;
    }

    .pd-before-after__handle span {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 420px) {
    .pd-services .pd-grid--3,
    .pd-services .pd-grid--4 {
        grid-template-columns: 1fr;
    }

    .pd-service-card {
        padding: 18px;
    }

    .pd-service-card h3 {
        font-size: 22px;
    }

    .pd-service-card p {
        font-size: 14px;
    }
}

/* =====================================================
   Font Awesome icon helpers
   ===================================================== */

/* Hamburger toggle — show bars by default, xmark when open */
.pd-shortcode-header__toggle .pd-menu-icon--close { display: none; }
.pd-shortcode-header__toggle .pd-menu-icon--open  { display: block; }
.pd-shortcode-header__toggle[aria-expanded="true"] .pd-menu-icon--close { display: block; }
.pd-shortcode-header__toggle[aria-expanded="true"] .pd-menu-icon--open  { display: none; }

/* Topbar icon spacing */
.pd-shortcode-header__topbar i {
    width: 14px;
    text-align: center;
    opacity: 0.75;
}

/* WhatsApp floating button icon */
.pd-whatsapp__icon {
    font-size: 20px;
    margin-right: 6px;
}

/* Footer social icon buttons */
.pd-shortcode-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-sm);
    background: var(--pd-surface);
    color: var(--pd-muted-l);
    font-size: 16px;
    text-decoration: none;
    transition: color var(--pd-transition), border-color var(--pd-transition), background var(--pd-transition);
}

.pd-shortcode-footer__socials a:hover {
    border-color: var(--pd-yellow);
    background: var(--pd-yellow-bg);
    color: var(--pd-yellow-soft);
}

/* Footer contact icon spacing */
.pd-shortcode-footer__grid section p i {
    width: 16px;
    color: var(--pd-yellow-soft);
    text-align: center;
}

/* Photo strip zoom overlay (FA icon) */
.pd-photo-strip__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, 0);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: background 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.pd-photo-strip__item:hover .pd-photo-strip__overlay {
    background: rgba(8, 8, 8, 0.35);
    opacity: 1;
}

/* =====================================================
   Lightbox photo gallery
   ===================================================== */

.pd-lightbox-gallery {
    background: var(--pd-black);
}

.pd-lightbox-gallery__head {
    max-width: 640px;
    margin-bottom: clamp(32px, 4vw, 56px);
}

.pd-lightbox-gallery__head h2 {
    margin: 8px 0 10px;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.pd-lightbox-gallery__head p {
    margin: 0;
    color: var(--pd-muted-l);
    font-size: 15px;
}

.pd-lightbox-grid {
    columns: 3;
    column-gap: 6px;
}

.pd-lightbox-item {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: 6px;
    break-inside: avoid;
    vertical-align: top;
}

.pd-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.8) contrast(1.08);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.pd-lightbox-item:hover .pd-lightbox-img {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.06);
}

.pd-lightbox-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, 0);
    color: var(--pd-white);
    opacity: 0;
    transition: background 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.pd-lightbox-item__overlay svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.pd-lightbox-item:hover .pd-lightbox-item__overlay {
    background: rgba(8, 8, 8, 0.32);
    opacity: 1;
}

/* GLightbox overrides — match ProDresseur theme */
.glightbox-container .gslide-description .gdesc-inner {
    background: rgba(8, 8, 8, 0.92);
    color: var(--pd-white, #F0EDE6);
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #C89520;
}

.glightbox-container .gslide-title {
    color: #F0EDE6;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.glightbox-container .gslide-desc {
    color: #7A7A7A;
    font-size: 13px;
}

.glightbox-container .gnext,
.glightbox-container .gprev {
    background: rgba(200, 149, 32, 0.85);
}

.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
    background: #C89520;
}

@media (max-width: 900px) {
    .pd-lightbox-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .pd-lightbox-grid {
        columns: 2;
        column-gap: 4px;
    }

    .pd-lightbox-item {
        margin-bottom: 4px;
    }
}

/* =====================================================
   Hero background image
   ===================================================== */

/* Hero text always white — bg is always dark (image + gradient) */
.pd-hero__title,
html[data-pd-theme="light"] .pd-hero__title {
    color: #ffffff !important;
}

.pd-hero__sub,
html[data-pd-theme="light"] .pd-hero__sub {
    color: rgba(255, 255, 255, 0.72);
}

.pd-hero__badge,
html[data-pd-theme="light"] .pd-hero__badge {
    color: var(--pd-yellow-soft, #F0C040);
    background: rgba(200, 149, 32, 0.12);
    border-color: rgba(200, 149, 32, 0.35);
}

/* =====================================================
   Hero background image
   ===================================================== */

.pd-hero__bg-picture {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
}

.pd-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    filter: saturate(0.78) contrast(1.08) brightness(0.88);
}

.pd-hero--has-image::after {
    background:
        linear-gradient(to right, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.82) 38%, rgba(8,8,8,0.4) 62%, rgba(8,8,8,0.0) 100%),
        linear-gradient(to top,   rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.3)  35%, transparent       70%);
}

@media (max-width: 640px) {
    .pd-hero__inner {
        padding-top: clamp(72px, 14vw, 100px);
        padding-bottom: clamp(52px, 12vw, 72px);
    }

    .pd-hero__body {
        max-width: 100%;
    }

    .pd-hero__title {
        font-size: clamp(44px, 13vw, 72px);
    }

    .pd-btn--hero {
        flex: 1 1 100%;
        justify-content: center;
        min-height: 56px;
        padding: 16px 24px;
    }

    .pd-hero .pd-hero__actions {
        flex-direction: column;
    }
}

/* =====================================================
   CTA background image
   ===================================================== */

.pd-cta--has-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.pd-cta__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
    filter: saturate(0.5) contrast(1.2);
}

/* =====================================================
   Breed card images
   ===================================================== */

.pd-breed-card__image {
    display: block;
    width: calc(100% + 40px);
    margin: -20px -20px 16px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 40%;
    filter: saturate(0.82) contrast(1.08);
    border-radius: var(--pd-radius-sm) var(--pd-radius-sm) 0 0;
    transition: filter var(--pd-transition);
}

.pd-breed-card:hover .pd-breed-card__image {
    filter: saturate(1) contrast(1.08);
}

/* =====================================================
   Photo strip section
   ===================================================== */

.pd-photo-strip {
    padding: 0;
    background: var(--pd-black);
}

.pd-photo-strip .pd-container {
    padding-top: clamp(48px, 6vw, 88px);
    padding-bottom: clamp(32px, 4vw, 56px);
}

.pd-photo-strip__head {
    max-width: 680px;
}

.pd-photo-strip__head h2 {
    margin: 8px 0 12px;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.pd-photo-strip__head p {
    margin: 0;
    color: var(--pd-muted-l);
    font-size: 16px;
}

.pd-photo-strip__grid {
    columns: 4;
    column-gap: 3px;
    margin-top: 40px;
}

.pd-photo-strip__item {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3px;
    break-inside: avoid;
    vertical-align: top;
    cursor: zoom-in;
    text-decoration: none;
}

.pd-photo-strip__img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.8) contrast(1.1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.pd-photo-strip__item:hover .pd-photo-strip__img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.08);
}

@media (max-width: 900px) {
    .pd-photo-strip__grid {
        columns: 3;
    }
}

@media (max-width: 640px) {
    .pd-photo-strip__grid {
        columns: 2;
        column-gap: 3px;
    }

    .pd-breed-card__image {
        width: calc(100% + 32px);
        margin: -16px -16px 14px;
    }

    .pd-hero--has-image::after {
        background: linear-gradient(180deg, rgba(8,8,8,0.28) 0%, rgba(8,8,8,0.78) 52%, rgba(8,8,8,0.97) 100%);
    }

    .pd-cta__actions .pd-btn {
        flex: 1 1 100%;
    }

    .pd-faq__item summary {
        font-size: 16px;
    }
}

/* =====================================================
   Video Showcase — portrait reel format
   ===================================================== */

.pd-video-showcase {
    background: var(--pd-black);
    overflow: hidden;
}

.pd-video-showcase__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    max-width: 1000px;
    margin-inline: auto;
}

/* ── Reel wrapper ── */
.pd-video-showcase__media {
    position: relative;
    width: 100%;
}

.pd-video-reel {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--pd-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--pd-yellow) 35%, transparent),
                var(--pd-shadow-lg);
}

.pd-video-reel__iframe,
.pd-video-reel__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    display: block;
}

.pd-video-reel__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    animation: pdPosterFade 0.6s 1.2s forwards;
    opacity: 1;
}

@keyframes pdPosterFade {
    to { opacity: 0; pointer-events: none; }
}

/* ── Mute button ── */
.pd-reel-mute {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-family: var(--pd-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--pd-transition), border-color var(--pd-transition), color var(--pd-transition);
    outline: none;
}

.pd-reel-mute:hover {
    background: rgba(200, 149, 32, 0.88);
    border-color: var(--pd-yellow);
    color: #080808;
}

.pd-reel-mute:focus-visible {
    border-color: var(--pd-yellow);
    box-shadow: 0 0 0 2px var(--pd-yellow);
}

/* when unmuted: gold tint */
.pd-reel-mute[data-muted="0"] {
    background: rgba(200, 149, 32, 0.22);
    border-color: rgba(200, 149, 32, 0.55);
    color: #fff;
}

/* icon sizing */
.pd-reel-mute i { font-size: 13px; }

/* icon states: show off-icon when muted, on-icon when unmuted */
.pd-reel-mute[data-muted="1"] .pd-reel-mute__icon--on  { display: none; }
.pd-reel-mute[data-muted="0"] .pd-reel-mute__icon--off { display: none; }

.pd-reel-mute__label {
    line-height: 1;
}

/* ── Expand hint ── */
.pd-video-reel {
    cursor: pointer;
}

.pd-reel-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity var(--pd-transition), transform var(--pd-transition);
    pointer-events: none;
}

.pd-video-reel:hover .pd-reel-expand {
    opacity: 1;
    transform: scale(1);
}

/* ── Instagram link ── */
.pd-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--pd-muted-l);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--pd-transition);
}

.pd-ig-link i {
    font-size: 20px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pd-ig-link:hover { color: var(--pd-white); }

/* ── Instagram screenshot card ── */
.pd-ig-screenshot {
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    background: var(--pd-surface);
    overflow: hidden;
    max-width: 260px;
}


.pd-ig-screenshot__img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: top center;
}

.pd-ig-screenshot__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 14px;
    border-top: 1px solid var(--pd-border);
    color: var(--pd-muted-l);
    font-family: var(--pd-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--pd-transition), background var(--pd-transition);
}

.pd-ig-screenshot__cta:hover {
    color: #dc2743;
    background: color-mix(in srgb, #dc2743 6%, transparent);
}

.pd-ig-screenshot__cta i { font-size: 14px; }

/* ── Content side ── */
.pd-video-showcase__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
}

.pd-video-showcase__content h2 {
    margin: 0;
    color: var(--pd-white);
    font-family: var(--pd-font-display);
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pd-video-showcase__desc {
    margin: 0;
    color: var(--pd-muted-l);
    font-size: 14px;
    line-height: 1.6;
}

.pd-video-showcase__quote {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--pd-yellow);
    background: color-mix(in srgb, var(--pd-yellow) 6%, transparent);
    border-radius: 0 8px 8px 0;
}

.pd-video-showcase__quote p {
    margin: 0;
    color: var(--pd-white);
    font-size: 14px;
    font-style: italic;
    line-height: 1.65;
}

.pd-video-showcase__quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--pd-yellow);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pd-video-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pd-video-showcase__inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .pd-video-showcase__media {
        max-width: 260px;
    }

    .pd-video-showcase__content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .pd-video-showcase__content h2 {
        font-size: clamp(26px, 8vw, 40px);
    }

    .pd-video-showcase__desc { margin-inline: auto; }

    .pd-video-showcase__quote { text-align: left; }

    .pd-ig-screenshot { max-width: 240px; }
}

@media (max-width: 640px) {
    .pd-video-showcase__media { max-width: 220px; }

    .pd-video-showcase__actions .pd-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .pd-hero {
        min-height: auto;
        padding: 60px 0;
    }
}

/* =====================================================
   Single service page
   ===================================================== */

/* Shared button modifiers */
.pd-btn--full { width: 100%; justify-content: center; }

.pd-btn--lg { padding: 14px 28px; font-size: 15px; }

.pd-btn--dark {
    background: var(--pd-black);
    color: var(--pd-white);
    border-color: var(--pd-black);
}
.pd-btn--dark:hover {
    background: #1e1e1e;
    border-color: #1e1e1e;
    color: var(--pd-white);
}

.pd-btn--ghost-dark {
    border-color: rgba(8, 8, 8, 0.35);
    color: var(--pd-black);
}
.pd-btn--ghost-dark:hover {
    background: rgba(8, 8, 8, 0.08);
    border-color: var(--pd-black);
    color: var(--pd-black);
}

/* ── Hero ────────────────────────────────────────── */
.pd-sv-hero {
    background: var(--pd-black);
    padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
    border-bottom: 1px solid var(--pd-border);
}

.pd-sv-hero__inner {
    max-width: 780px;
}

.pd-sv-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pd-sv-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--pd-border);
    font-size: 11px;
    font-weight: 700;
    color: var(--pd-muted-l);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pd-sv-pill--gold {
    border-color: color-mix(in srgb, var(--pd-yellow) 40%, transparent);
    color: var(--pd-yellow);
    background: color-mix(in srgb, var(--pd-yellow) 7%, transparent);
}

.pd-sv-hero__title {
    margin: 0 0 16px;
    font-family: 'Raleway', sans-serif !important;
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: .95;
}

.pd-sv-hero__sub {
    margin: 0 0 32px;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--pd-muted-l);
    line-height: 1.6;
    max-width: 600px;
}

.pd-sv-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pd-sv-hero__trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-sv-hero__trust li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--pd-muted-l);
}

.pd-sv-hero__trust li::before {
    content: '✓';
    color: var(--pd-yellow);
    font-weight: 900;
    font-size: 13px;
}

/* ── Shared section ──────────────────────────────── */
.pd-sv-section {
    padding: clamp(48px, 7vw, 80px) 0;
    border-top: 1px solid var(--pd-border);
}

.pd-sv-label {
    margin: 0 0 28px;
    font-family: var(--pd-font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--pd-yellow);
    text-transform: uppercase;
    letter-spacing: .14em;
}

/* ── Benefits list ───────────────────────────────── */
.pd-sv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.pd-sv-list__item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--pd-border);
}

.pd-sv-list__item:first-child { border-top: 1px solid var(--pd-border); }

.pd-sv-list__num {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: var(--pd-yellow);
    line-height: 1;
    min-width: 60px;
    text-align: right;
    opacity: 0.28;
    flex-shrink: 0;
}

.pd-sv-list__text {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--pd-white);
    line-height: 1.4;
    font-weight: 500;
}

/* ── Process steps ───────────────────────────────── */
.pd-sv-steps {
    display: flex;
    flex-direction: column;
}

.pd-sv-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--pd-border);
}

.pd-sv-step:first-child { border-top: 1px solid var(--pd-border); }

.pd-sv-step__num {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: var(--pd-yellow);
    line-height: 1;
    min-width: 60px;
    text-align: right;
    opacity: 0.28;
    flex-shrink: 0;
}

.pd-sv-step__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px;
}

.pd-sv-step__body strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.pd-sv-step__body span {
    font-size: 14px;
    color: var(--pd-muted-l);
    line-height: 1.6;
    max-width: 560px;
}

/* ── Mid CTA ─────────────────────────────────────── */
.pd-sv-mid-cta {
    background: var(--pd-surface);
    border-top: 1px solid var(--pd-border);
    border-bottom: 1px solid var(--pd-border);
    padding: 24px 0;
}

.pd-sv-mid-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pd-sv-mid-cta p {
    margin: 0;
    font-size: 15px;
    color: var(--pd-muted-l);
}

.pd-sv-mid-cta strong { color: var(--pd-white); }

/* ── Features (includes) ─────────────────────────── */
.pd-sv-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.pd-sv-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--pd-surface);
    border: 1px solid var(--pd-border);
    border-radius: 12px;
}

.pd-sv-feature i {
    color: var(--pd-yellow);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pd-sv-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--pd-white);
    margin-bottom: 3px;
}

.pd-sv-feature span {
    font-size: 13px;
    color: var(--pd-muted-l);
    line-height: 1.5;
}

/* ── Suitable tags ───────────────────────────────── */
.pd-sv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-sv-tags li {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--pd-border);
    font-size: 13px;
    color: var(--pd-muted-l);
    background: var(--pd-surface);
}

/* ── Prose (editor content) ──────────────────────── */
.pd-sv-prose {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--pd-muted-l);
}

.pd-sv-prose h2, .pd-sv-prose h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 1.8em 0 .5em;
}

.pd-sv-prose h2 { font-size: clamp(20px, 2.5vw, 28px); }
.pd-sv-prose h3 { font-size: clamp(16px, 2vw, 20px); }
.pd-sv-prose p  { margin: 0 0 1em; }
.pd-sv-prose ul, .pd-sv-prose ol { padding-left: 1.4em; margin: 0 0 1em; }
.pd-sv-prose li { margin-bottom: .4em; }

/* ── Final CTA ───────────────────────────────────── */
.pd-sv-final-cta {
    background: var(--pd-yellow);
    padding: clamp(56px, 8vw, 96px) 0;
    text-align: center;
    border-top: none;
}

.pd-sv-final-cta h2 {
    margin: 0 0 10px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(30px, 6vw, 64px);
    font-weight: 900;
    color: var(--pd-black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pd-sv-final-cta p {
    margin: 0 0 32px;
    font-size: 15px;
    color: rgba(8, 8, 8, 0.6);
}

.pd-sv-final-cta__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Form wrap ───────────────────────────────────── */
.pd-sv-form-wrap {
    background: var(--pd-black);
    border-top: 1px solid var(--pd-border);
}

/* ── Booking preset badge ────────────────────────── */
.pd-form-service-preset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-top: 6px;
    background: color-mix(in srgb, var(--pd-yellow) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--pd-yellow) 30%, transparent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pd-white);
    width: 100%;
}

.pd-form-service-preset i { color: var(--pd-yellow); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
    .pd-sv-hero__actions .pd-btn,
    .pd-sv-final-cta__btns .pd-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .pd-sv-mid-cta__inner { flex-direction: column; text-align: center; }
    .pd-sv-mid-cta .pd-btn { width: 100%; justify-content: center; }

    .pd-sv-list__num,
    .pd-sv-step__num { font-size: 36px; min-width: 44px; }
}

/* Layout: sidebar left, content right */
.pd-service-single__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

/* Info card */
.pd-service-info-card {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(20px, 3vw, 32px);
    background: var(--pd-surface);
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    box-shadow: var(--pd-shadow-lg);
}

.pd-service-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--pd-yellow) 12%, transparent);
    color: var(--pd-yellow);
    font-size: 26px;
}

.pd-service-info-card__title {
    margin: 0;
    font-family: var(--pd-font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.pd-service-info-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 14px 0;
    border-top: 1px solid var(--pd-border);
    border-bottom: 1px solid var(--pd-border);
}

.pd-service-info-card__meta div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.pd-service-info-card__meta dt {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pd-muted-l);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pd-service-info-card__meta dt i { color: var(--pd-yellow); font-size: 12px; }

.pd-service-info-card__meta dd {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--pd-white);
    text-align: right;
}

.pd-service-info-card__badge {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--pd-yellow) 6%, transparent);
    border: 1px solid color-mix(in srgb, var(--pd-yellow) 20%, transparent);
    font-size: 12px;
    color: var(--pd-muted-l);
    line-height: 1.4;
}

.pd-service-info-card__badge i {
    color: var(--pd-yellow);
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

.pd-service-info-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Main content column */
.pd-service-single__body {
    font-family: var(--pd-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--pd-muted-l);
}

.pd-service-single__body h2,
.pd-service-single__body h3 {
    font-family: var(--pd-font-display);
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 1.6em 0 .6em;
}

.pd-service-single__body h2 { font-size: clamp(20px, 2.5vw, 28px); }
.pd-service-single__body h3 { font-size: clamp(16px, 2vw, 20px); }

.pd-service-single__body p { margin: 0 0 1em; }

.pd-service-single__body ul,
.pd-service-single__body ol {
    padding-left: 1.4em;
    margin: 0 0 1em;
}

.pd-service-single__body li { margin-bottom: .4em; }

/* Benefits / suitable lists */
.pd-service-single__list-block {
    margin-top: 32px;
    padding: 24px;
    background: var(--pd-surface);
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
}

.pd-service-single__list-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-family: var(--pd-font-display);
    font-size: 16px;
    font-weight: 900;
    color: var(--pd-white);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pd-service-single__list-block h3 i { color: var(--pd-yellow); }

.pd-service-single__list-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-service-single__list-block li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--pd-muted-l);
    line-height: 1.5;
    padding-left: 0;
}

.pd-service-single__list-block li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pd-yellow);
    margin-top: 7px;
    flex-shrink: 0;
}

/* CTA strip */
.pd-service-cta-strip {
    background: var(--pd-yellow);
    padding: clamp(40px, 6vw, 72px) 0;
}

.pd-service-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.pd-service-cta-strip__overline {
    display: block;
    font-family: var(--pd-font-body);
    font-size: 11px;
    font-weight: 700;
    color: rgba(8, 8, 8, 0.55);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
}

.pd-service-cta-strip__text h2 {
    margin: 0 0 6px;
    font-family: var(--pd-font-display);
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--pd-black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pd-service-cta-strip__text p {
    margin: 0;
    font-size: 14px;
    color: rgba(8, 8, 8, 0.65);
}

.pd-service-cta-strip__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Booking form: preselected service badge */
.pd-form-service-preset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-top: 6px;
    background: color-mix(in srgb, var(--pd-yellow) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--pd-yellow) 30%, transparent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pd-white);
    width: 100%;
}

.pd-form-service-preset i { color: var(--pd-yellow); }

/* Responsive */
@media (max-width: 900px) {
    .pd-service-single__layout {
        grid-template-columns: 1fr;
    }

    .pd-service-info-card {
        position: static;
    }

    .pd-service-cta-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .pd-service-cta-strip__actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .pd-service-cta-strip__actions .pd-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* =====================================================
   Article blog — .pd-article
   ===================================================== */

.pd-article {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 72px) 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #1a1a1a;
}

html[data-pd-theme="dark"] .pd-article { color: #e5e5e5; }

.pd-article h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: #111;
}

html[data-pd-theme="dark"] .pd-article h1 { color: #f0ede6; }

.pd-article h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 48px 0 14px;
    color: #111;
    border-left: 4px solid #C89520;
    padding-left: 14px;
}

html[data-pd-theme="dark"] .pd-article h2 { color: #f0ede6; }

.pd-article h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 28px 0 10px;
    color: #C89520;
}

.pd-article p { margin: 0 0 18px; }

.pd-article__intro {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

html[data-pd-theme="dark"] .pd-article__intro { color: #aaa; border-color: #333; }

.pd-article ul, .pd-article ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.pd-article ul li, .pd-article ol li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #444;
}

html[data-pd-theme="dark"] .pd-article ul li,
html[data-pd-theme="dark"] .pd-article ol li { color: #bbb; }

.pd-article ul li::before {
    content: '/';
    position: absolute;
    left: 0;
    color: #C89520;
    font-weight: 700;
}

.pd-article ol { counter-reset: pd-ol; }
.pd-article ol li { counter-increment: pd-ol; }
.pd-article ol li::before {
    content: counter(pd-ol) '.';
    position: absolute;
    left: 0;
    color: #C89520;
    font-weight: 700;
    font-size: 13px;
}

.pd-article dl { margin: 0 0 20px; }
.pd-article dt {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #111;
    margin-top: 18px;
}

html[data-pd-theme="dark"] .pd-article dt { color: #f0ede6; }

.pd-article dd {
    margin: 6px 0 0 0;
    padding-left: 16px;
    border-left: 2px solid #C89520;
    color: #555;
}

html[data-pd-theme="dark"] .pd-article dd { color: #aaa; }

.pd-article strong { color: #111; font-weight: 700; }
html[data-pd-theme="dark"] .pd-article strong { color: #f0ede6; }

.pd-article a { color: #C89520; text-decoration: underline; }
.pd-article a:hover { color: #a07215; }

/* CTA block */
.pd-article__cta {
    background: #111;
    border-left: 5px solid #C89520;
    padding: 28px 28px 24px;
    margin: 40px 0;
    border-radius: 4px;
}

.pd-article__cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #f0ede6 !important;
    margin: 0 0 8px !important;
    letter-spacing: -.01em;
}

.pd-article__cta-text {
    color: #aaa !important;
    margin: 0 0 20px !important;
    font-size: 15px;
}

.pd-article__cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    background: #C89520;
    color: #080808 !important;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none !important;
    border-radius: 2px;
    transition: background .2s ease;
}

.pd-article__cta-btn:hover {
    background: #dba82a;
    color: #080808 !important;
}

@media (max-width: 640px) {
    .pd-article h2 { margin-top: 36px; }
    .pd-article__cta { padding: 22px 18px 20px; }
    .pd-article__cta-btn { width: 100%; justify-content: center; }
}
