:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #d4b95e;
    --gold-dark: #b08f3a;
    --cream: #fff7e5;
    --biscuit: #e6b777;
    --caramel: #b46f35;
    --sage: #8cad7f;
    --rose: #e6a18c;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #444444;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Oswald', 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

html,
body,
a,
button,
input,
select,
textarea {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='%23c9a84c' stroke='%230a0a0a' stroke-width='1.5'%3E%3Cellipse cx='9' cy='12' rx='4' ry='5' transform='rotate(-25 9 12)'/%3E%3Cellipse cx='16' cy='8' rx='4' ry='5'/%3E%3Cellipse cx='23' cy='12' rx='4' ry='5' transform='rotate(25 23 12)'/%3E%3Cellipse cx='16' cy='21' rx='8' ry='6'/%3E%3C/g%3E%3C/svg%3E") 12 10, auto;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 14% 8%, rgba(140, 173, 127, 0.1), transparent 32%), var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--biscuit));
    color: var(--black);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--cream));
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
}

.logo { text-decoration: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(36, 30, 22, 0.9) 48%, rgba(10, 10, 10, 0.96) 100%),
        repeating-linear-gradient(-14deg, rgba(255, 247, 229, 0.035) 0 2px, transparent 2px 18px);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 88px 0 auto;
    height: 120px;
    background:
        radial-gradient(ellipse at 12% 42%, rgba(201, 168, 76, 0.11) 0 12px, transparent 13px),
        radial-gradient(ellipse at 30% 68%, rgba(230, 183, 119, 0.1) 0 10px, transparent 11px),
        radial-gradient(ellipse at 74% 30%, rgba(140, 173, 127, 0.1) 0 13px, transparent 14px),
        radial-gradient(ellipse at 88% 72%, rgba(201, 168, 76, 0.09) 0 9px, transparent 10px);
    opacity: 0.7;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95), transparent);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 90px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    gap: 56px;
}

.hero-copy {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 247, 229, 0.08);
    border: 1px solid rgba(230, 183, 119, 0.28);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-light);
    max-width: 620px;
    margin: 0 0 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-mini-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-mini-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.84rem;
}

.mini-paw,
.service-paw,
.badge-paw {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 14px;
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: rotate(-8deg);
}

.mini-paw::before,
.mini-paw::after,
.service-paw::before,
.service-paw::after,
.badge-paw::before,
.badge-paw::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 50%;
}

.mini-paw::before,
.service-paw::before,
.badge-paw::before {
    width: 7px;
    height: 7px;
    left: 1px;
    top: -6px;
    box-shadow: 8px -2px 0 currentColor, 15px 1px 0 currentColor;
}

.mini-paw::after,
.service-paw::after,
.badge-paw::after {
    width: 6px;
    height: 6px;
    left: 12px;
    top: -4px;
}

.hero-dog-scene {
    position: relative;
    min-height: 420px;
    border: 1px solid rgba(255, 247, 229, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 247, 229, 0.09), rgba(255, 247, 229, 0.02)),
        linear-gradient(135deg, rgba(180, 111, 53, 0.18), rgba(140, 173, 127, 0.1));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.hero-dog-scene::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 70px;
    height: 16px;
    background: rgba(10, 10, 10, 0.35);
    border-radius: 50%;
    filter: blur(10px);
}

.paw-cloud {
    position: absolute;
    color: rgba(255, 247, 229, 0.22);
    animation: floatPaws 6s ease-in-out infinite;
}

.paw-cloud-one { top: 44px; left: 44px; }
.paw-cloud-two { right: 46px; bottom: 100px; animation-delay: -2.5s; }

.paw-cloud span {
    position: absolute;
    width: 20px;
    height: 18px;
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
}

.paw-cloud span::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 1px;
    top: -8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 10px -3px 0 currentColor, 20px 2px 0 currentColor;
}

.paw-cloud span:nth-child(2) {
    transform: translate(58px, 28px) rotate(18deg) scale(0.78);
}

.paw-cloud span:nth-child(3) {
    transform: translate(108px, -4px) rotate(-18deg) scale(0.62);
}

.training-card {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 3;
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    color: var(--black);
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
    animation: cardBob 4s ease-in-out infinite;
}

.training-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--caramel);
    font-weight: 700;
}

.training-card strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.training-card small { color: var(--gray-dark); }

.dog-illustration {
    --dog-scale: 1;
    position: absolute;
    left: 50%;
    bottom: 88px;
    width: 260px;
    height: 220px;
    transform: translateX(-50%) scale(var(--dog-scale));
    animation: dogBounce 4s ease-in-out infinite;
}

.dog-body {
    position: absolute;
    left: 50px;
    bottom: 42px;
    width: 150px;
    height: 86px;
    background: var(--biscuit);
    border: 4px solid var(--black);
    border-radius: 70px 78px 50px 50px;
    box-shadow: inset -20px -18px 0 rgba(180, 111, 53, 0.28);
}

.dog-head {
    position: absolute;
    right: 16px;
    bottom: 86px;
    width: 94px;
    height: 86px;
    background: var(--biscuit);
    border: 4px solid var(--black);
    border-radius: 46% 54% 48% 52%;
    box-shadow: inset -12px -10px 0 rgba(180, 111, 53, 0.26);
}

.dog-ear {
    position: absolute;
    top: -24px;
    width: 36px;
    height: 58px;
    background: var(--caramel);
    border: 4px solid var(--black);
    border-radius: 44% 44% 60% 60%;
}

.dog-ear-left {
    left: 4px;
    transform: rotate(-24deg);
}

.dog-ear-right {
    right: 2px;
    transform: rotate(24deg);
}

.dog-eye {
    position: absolute;
    right: 27px;
    top: 30px;
    width: 9px;
    height: 9px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: -34px -2px 0 var(--black);
}

.dog-nose {
    position: absolute;
    right: 10px;
    top: 47px;
    width: 18px;
    height: 13px;
    background: var(--black);
    border-radius: 50% 50% 62% 62%;
}

.dog-mouth {
    position: absolute;
    right: 24px;
    top: 60px;
    width: 24px;
    height: 14px;
    border-bottom: 3px solid var(--black);
    border-radius: 0 0 50% 50%;
}

.dog-collar {
    position: absolute;
    right: 95px;
    bottom: 91px;
    width: 18px;
    height: 56px;
    background: var(--sage);
    border: 3px solid var(--black);
    border-radius: 999px;
    transform: rotate(-12deg);
}

.dog-tail {
    position: absolute;
    left: 28px;
    bottom: 106px;
    width: 74px;
    height: 32px;
    border: 10px solid var(--biscuit);
    border-right: 0;
    border-bottom: 0;
    border-radius: 60px 0 0 0;
    transform-origin: right bottom;
    animation: wagTail 0.8s ease-in-out infinite;
}

.dog-leg {
    position: absolute;
    bottom: 8px;
    width: 28px;
    height: 58px;
    background: var(--biscuit);
    border: 4px solid var(--black);
    border-radius: 14px;
}

.dog-leg-front { right: 72px; }
.dog-leg-back { left: 84px; }

.dog-leash {
    position: absolute;
    right: 84px;
    bottom: 140px;
    width: 150px;
    height: 3px;
    background: var(--rose);
    border-radius: 999px;
    transform: rotate(-32deg);
    transform-origin: right center;
}

.treat {
    position: absolute;
    width: 24px;
    height: 15px;
    background: var(--caramel);
    border: 3px solid var(--black);
    border-radius: 8px;
    animation: treatSpin 4s ease-in-out infinite;
}

.treat-one { left: 52px; bottom: 72px; }
.treat-two { right: 80px; top: 132px; animation-delay: -1.4s; }

@keyframes dogBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(var(--dog-scale)); }
    50% { transform: translateX(-50%) translateY(-8px) scale(var(--dog-scale)); }
}

@keyframes wagTail {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(16deg); }
}

@keyframes floatPaws {
    0%, 100% { transform: translateY(0); opacity: 0.65; }
    50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes cardBob {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes treatSpin {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(-8px); }
}

/* SERVICES */
.services {
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(255, 247, 229, 0.035), transparent),
        var(--black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -28px;
    width: 108px;
    height: 96px;
    color: rgba(201, 168, 76, 0.055);
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: rotate(-18deg);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 16px;
}

.service-paw {
    width: 24px;
    height: 22px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 100px 0;
    background: var(--black);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 0 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1);
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 18px;
    color: var(--gold);
    opacity: 0.4;
}

.step-connector svg {
    width: 40px;
    height: 40px;
}

/* ENQUIRY FORM */
.enquiry-section {
    padding: 100px 0;
    background: var(--black-light);
}

.enquiry-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.enquiry-form::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 40px;
    color: rgba(201, 168, 76, 0.09);
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: rotate(14deg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group.full-width { margin-bottom: 24px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group input[type="file"] {
    padding: 10px;
    font-size: 0.85rem;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.success-icon svg { width: 100%; height: 100%; }

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

/* NEVER MISS */
.never-miss {
    padding: 100px 0;
    background: var(--black);
}

.never-miss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.never-miss-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.never-miss-content > p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 28px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-light);
}

.benefit-list svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.never-miss-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    padding-left: 16px;
    border-left: 2px solid var(--gold);
}

.phone-mockup {
    background: var(--black-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 20px;
    max-width: 360px;
    margin: 0 auto;
    animation: cardBob 5s ease-in-out infinite;
}

.phone-screen {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-notification {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.75rem;
}

.notif-icon { font-size: 0.9rem; }

.notif-app {
    font-weight: 600;
    color: var(--gold);
}

.notif-time {
    margin-left: auto;
    color: var(--gray-dark);
}

.notif-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* REVIEWS */
.reviews {
    padding: 100px 0;
    background: var(--black-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 20px;
    font-style: italic;
}

.review-name {
    font-size: 0.85rem;
    color: var(--gray);
}

.placeholder-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    background:
        repeating-linear-gradient(-20deg, rgba(255, 247, 229, 0.04) 0 2px, transparent 2px 18px),
        var(--black-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--gray);
}

.about-dog-badge {
    width: 176px;
    height: 176px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--black);
    background: linear-gradient(135deg, var(--cream), var(--biscuit));
    border: 4px solid var(--black);
    border-radius: 50%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    animation: cardBob 4.8s ease-in-out infinite;
}

.about-dog-badge .badge-paw {
    color: var(--caramel);
    width: 34px;
    height: 30px;
    margin-bottom: 8px;
}

.about-dog-badge strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    line-height: 1;
}

.about-dog-badge small {
    color: var(--gray-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-placeholder span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content .btn { margin-top: 12px; }

/* CONTACT */
.contact {
    padding: 100px 0;
    background: var(--black-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    display: block;
}

.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.contact-card:hover .contact-icon,
.service-card:hover .service-icon {
    animation: pawTap 0.55s ease;
}

@keyframes pawTap {
    0%, 100% { transform: rotate(0deg) scale(1); }
    35% { transform: rotate(-8deg) scale(1.08); }
    70% { transform: rotate(6deg) scale(0.98); }
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 16px;
}

.contact-icon svg { width: 100%; height: 100%; }

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-action {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-area {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-area strong { color: var(--gold); }

/* FOOTER */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

.startup-sling {
    color: var(--gold);
    font-weight: 700;
}

/* STICKY CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 900;
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
}

.sticky-cta:hover { background: var(--gold-light); }

/* CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 950;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--biscuit));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
    color: var(--black);
}

.chat-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 16px;
    color: rgba(10, 10, 10, 0.26);
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: translate(12px, 12px) rotate(-18deg);
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
}

.chat-window {
    display: none;
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    max-height: 520px;
    background: var(--black-light);
    border: 1px solid rgba(230, 183, 119, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    overflow: hidden;
}

.chat-window.open {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}

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

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(140, 173, 127, 0.08)),
        var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-title {
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

.chat-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
}

.chat-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
}

.chat-close svg { width: 20px; height: 20px; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 340px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    animation: msgFade 0.3s ease;
}

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

.chat-msg.bot {
    background: rgba(255, 247, 229, 0.08);
    color: var(--gray-light);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: linear-gradient(135deg, var(--gold), var(--biscuit));
    color: var(--black);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.paw-trail {
    position: fixed;
    z-index: 2000;
    width: 18px;
    height: 16px;
    color: rgba(201, 168, 76, 0.66);
    background: currentColor;
    border-radius: 50% 50% 45% 45%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-14deg);
    animation: pawTrailFade 700ms ease-out forwards;
}

.paw-trail::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    left: 1px;
    top: -7px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 9px -3px 0 currentColor, 18px 1px 0 currentColor;
}

@keyframes pawTrailFade {
    from { opacity: 0.85; transform: translate(-50%, -50%) rotate(-14deg) scale(1); }
    to { opacity: 0; transform: translate(-50%, -74%) rotate(8deg) scale(0.55); }
}

.chat-input-area {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--black);
}

.chat-input-area input {
    flex: 1;
    padding: 10px 14px;
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
}

.chat-input-area input:focus { border-color: var(--gold); }

.chat-input-area button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition);
}

.chat-input-area button:hover { background: var(--gold-light); }

.chat-input-area button svg { width: 18px; height: 18px; }

.chat-options {
    padding: 0 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--black);
}

.chat-option-btn {
    padding: 8px 14px;
    background: var(--black-lighter);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.8rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-toggle { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
        padding-top: 110px;
    }

    .hero-copy { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas,
    .hero-mini-trust { justify-content: center; }

    .hero-dog-scene {
        min-height: 330px;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .dog-illustration {
        --dog-scale: 0.78;
        transform-origin: bottom center;
    }

    .steps-grid { flex-direction: column; align-items: center; gap: 32px; }
    .step-connector { display: none; }

    .never-miss-grid { grid-template-columns: 1fr; gap: 40px; }
    .never-miss-visual { order: -1; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image { order: -1; }

    .form-grid { grid-template-columns: 1fr; }
    .enquiry-form { padding: 24px; }

    .sticky-cta { display: block; }

    .chat-window {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 68px;
        max-height: 70vh;
    }

    .footer-content { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 92px;
        gap: 22px;
    }

    .hero-badge {
        padding: 7px 14px;
        font-size: 0.72rem;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .hero-sub { font-size: 0.95rem; }
    .hero-ctas {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .hero-ctas .btn {
        flex: 1 1 142px;
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .hero-mini-trust {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-mini-trust span {
        padding: 7px 10px;
        font-size: 0.78rem;
    }

    .hero-dog-scene {
        min-height: 238px;
        border-radius: 14px;
    }

    .training-card { right: 14px; top: 14px; }
    .dog-illustration {
        --dog-scale: 0.58;
        bottom: 42px;
    }

    .paw-cloud-one { top: 28px; left: 26px; }
    .paw-cloud-two { right: 26px; bottom: 78px; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

/* Bespoke FJB K9 direction */
body:not(.dashboard-body) {
    --black: #172018;
    --black-light: #f1ead8;
    --black-lighter: #fff9ec;
    --gold: #d8842f;
    --gold-light: #f1b35e;
    --gold-dark: #9d5726;
    --white: #fff9ec;
    --white-off: #f7f0df;
    --gray: #6e6659;
    --gray-light: #e8dfce;
    --gray-dark: #332d24;
    --forest: #223529;
    --moss: #7d9a62;
    --leash-blue: #3e7884;
    --clay: #c46d43;
    background: #f7f0df;
    color: #1f241d;
}

body:not(.dashboard-body)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 8% 18%, rgba(216, 132, 47, 0.18), transparent 24%),
        radial-gradient(circle at 94% 10%, rgba(62, 120, 132, 0.16), transparent 28%),
        linear-gradient(90deg, rgba(34, 53, 41, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(34, 53, 41, 0.03) 1px, transparent 1px),
        #f7f0df;
    background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

body:not(.dashboard-body) .navbar {
    top: 14px;
    left: 16px;
    right: 16px;
    border: 1px solid rgba(255, 249, 236, 0.16);
    border-radius: 999px;
    background: rgba(23, 32, 24, 0.86);
    box-shadow: 0 20px 70px rgba(23, 32, 24, 0.16);
}

body:not(.dashboard-body) .nav-container {
    height: 62px;
}

body:not(.dashboard-body) .logo-text {
    color: #fff9ec;
}

body:not(.dashboard-body) .nav-links a {
    color: rgba(255, 249, 236, 0.78);
}

body:not(.dashboard-body) .nav-links a:hover {
    color: #f1b35e;
}

body:not(.dashboard-body) .nav-cta,
body:not(.dashboard-body) .btn-gold {
    background: #d8842f !important;
    color: #1a1712 !important;
    box-shadow: 0 12px 28px rgba(216, 132, 47, 0.28);
}

body:not(.dashboard-body) .btn {
    border-radius: 999px;
}

body:not(.dashboard-body) .btn-outline {
    color: #fff9ec;
    border-color: rgba(255, 249, 236, 0.42);
    background: rgba(255, 249, 236, 0.06);
}

body:not(.dashboard-body) .section-tag {
    color: #3e7884;
    letter-spacing: 1.4px;
}

body:not(.dashboard-body) .section-header h2,
body:not(.dashboard-body) .service-card h3,
body:not(.dashboard-body) .step h3,
body:not(.dashboard-body) .contact-card h3,
body:not(.dashboard-body) .about-content h2,
body:not(.dashboard-body) .never-miss-content h2 {
    color: #172018;
    letter-spacing: 0;
}

body:not(.dashboard-body) .section-header p,
body:not(.dashboard-body) .service-card p,
body:not(.dashboard-body) .step p,
body:not(.dashboard-body) .about-content p,
body:not(.dashboard-body) .never-miss-content > p,
body:not(.dashboard-body) .contact-card p,
body:not(.dashboard-body) .review-name,
body:not(.dashboard-body) .service-area {
    color: #6e6659;
}

body:not(.dashboard-body) .hero {
    min-height: 100vh;
    background:
        linear-gradient(115deg, rgba(23, 32, 24, 0.96) 0%, rgba(34, 53, 41, 0.9) 48%, rgba(80, 64, 42, 0.74) 100%),
        url("https://images.unsplash.com/photo-1587300003388-59208cc962cb?auto=format&fit=crop&w=1800&q=85") center/cover;
}

body:not(.dashboard-body) .hero-overlay {
    background:
        linear-gradient(90deg, rgba(23, 32, 24, 0.94), rgba(23, 32, 24, 0.52) 54%, rgba(23, 32, 24, 0.28)),
        repeating-linear-gradient(-18deg, rgba(255, 249, 236, 0.035) 0 2px, transparent 2px 22px);
}

body:not(.dashboard-body) .hero::before {
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(0deg, #f7f0df 0%, rgba(247, 240, 223, 0) 100%);
    opacity: 1;
}

body:not(.dashboard-body) .hero-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
    gap: 68px;
    padding-top: 150px;
}

body:not(.dashboard-body) .hero-badge {
    background: rgba(255, 249, 236, 0.13);
    border-color: rgba(255, 249, 236, 0.2);
    color: #f8d58f;
}

body:not(.dashboard-body) .hero h1 {
    max-width: 820px;
    color: #fff9ec;
    font-size: clamp(3.1rem, 7.4vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
}

body:not(.dashboard-body) .hero h1 .gold {
    color: #f1b35e;
    display: inline-block;
    transform: rotate(-2deg);
    text-shadow: 0 14px 38px rgba(216, 132, 47, 0.2);
}

body:not(.dashboard-body) .hero-sub {
    max-width: 650px;
    color: rgba(255, 249, 236, 0.82);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

body:not(.dashboard-body) .hero-mini-trust span {
    color: #fff9ec;
    border-color: rgba(255, 249, 236, 0.16);
    background: rgba(255, 249, 236, 0.1);
    backdrop-filter: blur(10px);
}

body:not(.dashboard-body) .hero-photo-board {
    position: relative;
    min-height: 560px;
}

body:not(.dashboard-body) .hero-photo {
    position: absolute;
    overflow: hidden;
    background-color: #223529;
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

body:not(.dashboard-body) .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(23, 32, 24, 0.28));
}

body:not(.dashboard-body) .hero-photo-main {
    inset: 18px 0 46px 58px;
    border-radius: 40px 40px 12px 40px;
    background-image: url("https://images.unsplash.com/photo-1552053831-71594a27632d?auto=format&fit=crop&w=1100&q=85");
    transform: rotate(2.5deg);
}

body:not(.dashboard-body) .hero-photo-small {
    left: 0;
    bottom: 12px;
    width: 42%;
    height: 42%;
    border: 10px solid #f7f0df;
    border-radius: 28px 8px 28px 28px;
    background-image: url("https://images.unsplash.com/photo-1601758177266-bc599de87707?auto=format&fit=crop&w=800&q=85");
    transform: rotate(-6deg);
}

body:not(.dashboard-body) .field-note-card,
body:not(.dashboard-body) .recall-meter {
    position: absolute;
    z-index: 3;
    color: #172018;
    background: #fff9ec;
    border: 1px solid rgba(23, 32, 24, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

body:not(.dashboard-body) .field-note-card {
    top: 0;
    left: 10px;
    width: 230px;
    padding: 18px 20px;
    border-radius: 24px 24px 24px 6px;
    transform: rotate(-5deg);
    animation: cardBob 5s ease-in-out infinite;
}

body:not(.dashboard-body) .field-note-card span,
body:not(.dashboard-body) .recall-meter span {
    display: block;
    margin-bottom: 5px;
    color: #3e7884;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body:not(.dashboard-body) .field-note-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1;
    text-transform: uppercase;
}

body:not(.dashboard-body) .field-note-card small {
    color: #6e6659;
}

body:not(.dashboard-body) .recall-meter {
    right: 10px;
    bottom: 0;
    width: 190px;
    padding: 16px;
    border-radius: 20px;
    transform: rotate(4deg);
}

body:not(.dashboard-body) .recall-meter strong {
    display: block;
    margin-bottom: 9px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1;
}

body:not(.dashboard-body) .recall-meter div {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #eadfc9;
}

body:not(.dashboard-body) .recall-meter i {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7d9a62, #3e7884);
}

body:not(.dashboard-body) .training-strip {
    position: relative;
    z-index: 4;
    margin-top: -42px;
    padding: 0 0 70px;
}

body:not(.dashboard-body) .training-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 24, 0.09);
    border-radius: 24px;
    background: #fff9ec;
    box-shadow: 0 24px 80px rgba(31, 36, 29, 0.12);
}

body:not(.dashboard-body) .training-strip-grid > div {
    padding: 24px;
    border-right: 1px solid rgba(23, 32, 24, 0.08);
}

body:not(.dashboard-body) .training-strip-grid > div:last-child {
    border-right: 0;
}

body:not(.dashboard-body) .training-strip span {
    display: block;
    margin-bottom: 18px;
    color: #d8842f;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

body:not(.dashboard-body) .training-strip strong {
    display: block;
    margin-bottom: 5px;
    color: #172018;
    font-weight: 800;
}

body:not(.dashboard-body) .training-strip p {
    color: #6e6659;
    font-size: 0.9rem;
}

body:not(.dashboard-body) .method-section {
    padding: 40px 0 110px;
    background: #f7f0df;
}

body:not(.dashboard-body) .method-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: stretch;
}

body:not(.dashboard-body) .method-copy {
    position: relative;
    padding: 44px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 34px;
    color: #fff9ec;
    background:
        linear-gradient(180deg, rgba(23, 32, 24, 0.08), rgba(23, 32, 24, 0.86)),
        url("https://images.unsplash.com/photo-1591160690555-5debfba289f0?auto=format&fit=crop&w=1000&q=85") center/cover;
    box-shadow: 0 24px 80px rgba(31, 36, 29, 0.12);
}

body:not(.dashboard-body) .method-copy::before {
    content: 'sit stay heel';
    position: absolute;
    top: 24px;
    left: 28px;
    padding: 9px 14px;
    color: #172018;
    background: #f1b35e;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body:not(.dashboard-body) .method-copy .section-tag,
body:not(.dashboard-body) .method-copy h2,
body:not(.dashboard-body) .method-copy p {
    position: relative;
    z-index: 1;
}

body:not(.dashboard-body) .method-copy .section-tag {
    color: #f1b35e;
}

body:not(.dashboard-body) .method-copy h2 {
    max-width: 390px;
    margin-bottom: 16px;
    color: #fff9ec;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.95;
    text-transform: uppercase;
}

body:not(.dashboard-body) .method-copy p {
    max-width: 430px;
    margin-bottom: 24px;
    color: rgba(255, 249, 236, 0.82);
    font-size: 1.05rem;
}

body:not(.dashboard-body) .method-copy .btn {
    align-self: flex-start;
}

body:not(.dashboard-body) .method-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

body:not(.dashboard-body) .method-board article {
    position: relative;
    min-height: 138px;
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 22px;
    align-items: center;
    padding: 26px 30px;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 24, 0.1);
    border-radius: 28px;
    background: #fff9ec;
    box-shadow: 0 18px 50px rgba(31, 36, 29, 0.08);
}

body:not(.dashboard-body) .method-board article::after {
    content: '';
    position: absolute;
    right: -28px;
    bottom: -30px;
    width: 130px;
    height: 110px;
    background:
        radial-gradient(circle at 18px 12px, rgba(216, 132, 47, 0.14) 0 9px, transparent 10px),
        radial-gradient(circle at 50px 2px, rgba(216, 132, 47, 0.14) 0 10px, transparent 11px),
        radial-gradient(circle at 84px 13px, rgba(216, 132, 47, 0.14) 0 9px, transparent 10px),
        radial-gradient(ellipse at 55px 62px, rgba(216, 132, 47, 0.14) 0 36px, transparent 37px);
    transform: rotate(-12deg);
}

body:not(.dashboard-body) .method-board span {
    grid-row: span 2;
    color: #d8842f;
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1;
}

body:not(.dashboard-body) .method-board h3 {
    color: #172018;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

body:not(.dashboard-body) .method-board p {
    max-width: 500px;
    color: #6e6659;
}

body:not(.dashboard-body) .services,
body:not(.dashboard-body) .reviews,
body:not(.dashboard-body) .contact {
    background: #f7f0df;
}

body:not(.dashboard-body) .how-it-works,
body:not(.dashboard-body) .never-miss,
body:not(.dashboard-body) .about,
body:not(.dashboard-body) .footer {
    background: #fff9ec;
}

body:not(.dashboard-body) .service-card,
body:not(.dashboard-body) .review-card,
body:not(.dashboard-body) .contact-card,
body:not(.dashboard-body) .enquiry-form,
body:not(.dashboard-body) .phone-mockup {
    background: rgba(255, 249, 236, 0.9);
    border: 1px solid rgba(23, 32, 24, 0.1);
    color: #172018;
    box-shadow: 0 18px 50px rgba(31, 36, 29, 0.08);
}

body:not(.dashboard-body) .service-card {
    border-radius: 24px;
}

body:not(.dashboard-body) .service-card:nth-child(2n) {
    transform: translateY(28px);
}

body:not(.dashboard-body) .service-card:hover {
    border-color: rgba(216, 132, 47, 0.45);
    box-shadow: 0 30px 70px rgba(31, 36, 29, 0.14);
}

body:not(.dashboard-body) .service-icon {
    color: #d8842f;
    background: #f7e3c5;
    border-color: transparent;
}

body:not(.dashboard-body) .step-number {
    background: #223529;
    color: #fff9ec;
    box-shadow: 0 0 0 10px rgba(125, 154, 98, 0.18);
}

body:not(.dashboard-body) .step-connector {
    color: #d8842f;
    opacity: 0.8;
}

body:not(.dashboard-body) .enquiry-section {
    background:
        linear-gradient(135deg, rgba(34, 53, 41, 0.94), rgba(62, 120, 132, 0.72)),
        url("https://images.unsplash.com/photo-1537151608828-ea2b11777ee8?auto=format&fit=crop&w=1800&q=85") center/cover;
    position: relative;
    overflow: hidden;
}

body:not(.dashboard-body) .enquiry-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 28%, rgba(241, 179, 94, 0.2), transparent 22%),
        repeating-linear-gradient(18deg, rgba(255, 249, 236, 0.04) 0 2px, transparent 2px 24px);
    pointer-events: none;
}

body:not(.dashboard-body) .enquiry-section .container {
    position: relative;
    z-index: 1;
}

body:not(.dashboard-body) .enquiry-section .section-header h2,
body:not(.dashboard-body) .enquiry-section .section-header p {
    color: #fff9ec;
}

body:not(.dashboard-body) .enquiry-intro-card {
    max-width: 720px;
    margin: -22px auto 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    color: #172018;
    background: #f1b35e;
    border-radius: 22px 22px 8px 22px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

body:not(.dashboard-body) .enquiry-intro-card .mini-paw {
    flex: 0 0 auto;
    width: 28px;
    height: 25px;
    color: #172018;
}

body:not(.dashboard-body) .enquiry-intro-card strong {
    display: block;
    min-width: max-content;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
}

body:not(.dashboard-body) .enquiry-intro-card p {
    color: rgba(23, 32, 24, 0.78);
    font-size: 0.94rem;
}

body:not(.dashboard-body) .form-group label {
    color: #332d24;
    font-weight: 700;
}

body:not(.dashboard-body) .form-group input,
body:not(.dashboard-body) .form-group select,
body:not(.dashboard-body) .form-group textarea {
    background: #fff9ec;
    border-color: rgba(23, 32, 24, 0.14);
    color: #172018;
}

body:not(.dashboard-body) .phone-notification,
body:not(.dashboard-body) .chat-msg.bot,
body:not(.dashboard-body) .chat-input-area input,
body:not(.dashboard-body) .chat-option-btn {
    background: #f7f0df;
    color: #332d24;
}

body:not(.dashboard-body) .notif-app,
body:not(.dashboard-body) .contact-action,
body:not(.dashboard-body) .service-area strong,
body:not(.dashboard-body) .review-stars svg,
body:not(.dashboard-body) .gold {
    color: #d8842f;
}

body:not(.dashboard-body) .about-image-placeholder {
    position: relative;
    background:
        linear-gradient(180deg, rgba(23, 32, 24, 0.08), rgba(23, 32, 24, 0.02)),
        url("https://images.unsplash.com/photo-1596492784531-6e6eb5ea9993?auto=format&fit=crop&w=1000&q=85") center/cover;
    min-height: 520px;
    display: flex;
    align-items: end;
    justify-content: center;
    border: 0;
    overflow: hidden;
}

body:not(.dashboard-body) .about-image-placeholder > span {
    width: 100%;
    padding: 18px;
    color: #fff9ec;
    background: rgba(23, 32, 24, 0.72);
    backdrop-filter: blur(10px);
}

body:not(.dashboard-body) .about-dog-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 150px;
    height: 150px;
    background: #fff9ec;
}

body:not(.dashboard-body) .footer {
    color: #172018;
}

body:not(.dashboard-body) .footer .logo-text {
    color: #172018;
}

body:not(.dashboard-body) .footer-links a,
body:not(.dashboard-body) .footer-brand p,
body:not(.dashboard-body) .footer-bottom p {
    color: #6e6659;
}

body:not(.dashboard-body) .chat-window {
    background: #fff9ec;
    border-color: rgba(23, 32, 24, 0.14);
}

body:not(.dashboard-body) .chat-header,
body:not(.dashboard-body) .chat-input-area,
body:not(.dashboard-body) .chat-options {
    background: #172018;
}

body:not(.dashboard-body) .chat-title {
    color: #fff9ec;
}

body:not(.dashboard-body) .chat-subtitle {
    color: rgba(255, 249, 236, 0.62);
}

@media (max-width: 900px) {
    body:not(.dashboard-body) .navbar {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    body:not(.dashboard-body) .nav-links.open {
        background: rgba(23, 32, 24, 0.98);
    }

    body:not(.dashboard-body) .hero-content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 116px;
    }

    body:not(.dashboard-body) .hero-copy {
        text-align: left;
    }

    body:not(.dashboard-body) .hero-ctas,
    body:not(.dashboard-body) .hero-mini-trust {
        justify-content: flex-start;
    }

    body:not(.dashboard-body) .hero-photo-board {
        min-height: 430px;
    }

    body:not(.dashboard-body) .training-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body:not(.dashboard-body) .training-strip-grid > div:nth-child(2) {
        border-right: 0;
    }

    body:not(.dashboard-body) .training-strip-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(23, 32, 24, 0.08);
    }

    body:not(.dashboard-body) .method-grid {
        grid-template-columns: 1fr;
    }

    body:not(.dashboard-body) .method-copy {
        min-height: 380px;
    }

    body:not(.dashboard-body) .service-card:nth-child(2n) {
        transform: none;
    }

    body:not(.dashboard-body) .chat-widget {
        bottom: 92px;
    }
}

@media (max-width: 480px) {
    body:not(.dashboard-body) .hero h1 {
        font-size: 3rem;
    }

    body:not(.dashboard-body) .hero-sub {
        margin-left: 0;
        margin-right: 0;
    }

    body:not(.dashboard-body) .hero-photo-board {
        min-height: 330px;
    }

    body:not(.dashboard-body) .hero-photo-main {
        inset: 14px 0 42px 28px;
        border-radius: 28px 28px 10px 28px;
    }

    body:not(.dashboard-body) .hero-photo-small {
        width: 46%;
        height: 38%;
        border-width: 7px;
    }

    body:not(.dashboard-body) .field-note-card {
        width: 184px;
        padding: 14px;
    }

    body:not(.dashboard-body) .field-note-card strong {
        font-size: 1.08rem;
    }

    body:not(.dashboard-body) .recall-meter {
        width: 150px;
        right: 0;
    }

    body:not(.dashboard-body) .training-strip-grid {
        grid-template-columns: 1fr;
    }

    body:not(.dashboard-body) .training-strip-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 32, 24, 0.08);
    }

    body:not(.dashboard-body) .training-strip-grid > div:last-child {
        border-bottom: 0;
    }

    body:not(.dashboard-body) .method-section {
        padding-bottom: 78px;
    }

    body:not(.dashboard-body) .method-copy {
        min-height: 340px;
        padding: 30px;
        border-radius: 26px;
    }

    body:not(.dashboard-body) .method-copy h2 {
        font-size: 2.8rem;
    }

    body:not(.dashboard-body) .method-board article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px;
    }

    body:not(.dashboard-body) .method-board span {
        grid-row: auto;
        font-size: 3.4rem;
    }

    body:not(.dashboard-body) .method-board h3 {
        font-size: 1.55rem;
    }

    body:not(.dashboard-body) .enquiry-intro-card {
        align-items: flex-start;
        flex-direction: column;
        margin-top: -10px;
    }

    body:not(.dashboard-body) .enquiry-intro-card strong {
        min-width: 0;
    }
}

@media (min-width: 901px) {
    .sticky-cta { display: none !important; }
}
