/* ============================================
   EXECUTIVE PROTECTION DOGS IRELAND
   Stylesheet - Dark Luxury Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --color-gold: #c9a84c;
    --color-gold-light: #d4b96a;
    --color-gold-dark: #a8872e;
    --color-bg-dark: #0a0a0a;
    --color-bg-section: #111111;
    --color-bg-card: #1a1a1a;
    --color-bg-card-border: #2a2a2a;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #cccccc;
    --color-text-muted: #999999;
    --color-overlay: rgba(0, 0, 0, 0.65);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;
    --container-padding: 0 1.5rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-med: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
}

.btn--primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn--full {
    width: 100%;
}

/* ---------- Section Titles ---------- */
.section__subtitle {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.section__line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.nav__logo img {
    height: 75px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg-dark) !important;
    padding: 10px 24px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: transparent;
    color: var(--color-gold) !important;
    outline: 2px solid var(--color-gold);
}

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   VIDEO HERO SECTION
   ============================================ */
.video-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    max-width: 100%;
    top: 0;
    left: 0;
}

.video-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-hero__video--mobile {
    display: none;
}

.video-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('1.png') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.88) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 90px 6vw 0 0;
    display: flex;
    justify-content: flex-end;
}

.hero__text {
    max-width: 500px;
    text-align: right;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

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

.hero__description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero__description:last-of-type {
    margin-bottom: 2.5rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--color-bg-section);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about__text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.about__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-med);
}

.about__image:hover img {
    transform: scale(1.03);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
    position: relative;
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.philosophy__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

.philosophy__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--transition-med);
}

.philosophy__image:hover img {
    transform: scale(1.03);
}

.philosophy__text p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.philosophy__list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.philosophy__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.philosophy__list li i {
    color: var(--color-gold);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
}

/* ============================================
   BREEDS SECTION
   ============================================ */
.breeds {
    padding: var(--section-padding);
    background: var(--color-bg-section);
    position: relative;
}

.breeds::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.breeds__intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
}

.breeds__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.breed-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-card-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.breed-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.breed-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.breed-card:hover::before {
    opacity: 1;
}

.breed-card__icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.breed-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.breed-card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.commitment__bg {
    position: absolute;
    inset: 0;
    background: url('1.png') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.commitment__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment__content .section__subtitle {
    margin-bottom: 0.5rem;
}

.commitment__intro {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.commitment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.commitment__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: all var(--transition-fast);
}

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

.commitment__item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.commitment__item span {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.commitment__closing {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: 2rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-card-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.service-card__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.service-card__stars i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.service-card__description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   TRAINING & CONTACT SECTION
   ============================================ */
.training-contact {
    padding: var(--section-padding);
    background: var(--color-bg-section);
    position: relative;
    overflow: hidden;
}

.training-contact__bg {
    position: absolute;
    inset: 0;
    background: url('4.png') center bottom/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.training-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}

.training-list h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.training-list__items {
    margin-bottom: 2.5rem;
}

.training-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.training-list__item i {
    color: var(--color-gold);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.training-list__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.training-list__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--color-bg-card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.contact-form__title {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.contact-form__title--bold {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.form-status--success {
    color: #4ade80;
}

.form-status--error {
    color: #f87171;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.0);
    transition: background var(--transition-fast);
}

.gallery__item:hover::after {
    background: rgba(201, 168, 76, 0.1);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-med);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050505;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    height: 70px;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer__links ul li,
.footer__services ul li,
.footer__contact ul li {
    padding: 0.35rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer__links ul li a:hover {
    color: var(--color-gold);
}

.footer__contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__contact ul li i {
    color: var(--color-gold);
    width: 16px;
    text-align: center;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.contact-form__phone {
    margin: -0.75rem 0 1.5rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.contact-form__phone a,
.footer__contact a {
    color: var(--color-gold);
    font-weight: 500;
}

.contact-form__phone a:hover,
.footer__contact a:hover {
    color: var(--color-gold-light);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 5.75rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.55rem;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.whatsapp-float:hover {
    background: #1fbd59;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.42);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - Large */
@media screen and (max-width: 1024px) {
    .hero__title {
        font-size: 2.6rem;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Tablet */
@media screen and (max-width: 868px) {
    :root {
        --section-padding: 4.5rem 0;
    }

    .header {
        border-bottom: none;
    }

    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5rem 2.5rem 3rem;
        transition: right var(--transition-fast);
        z-index: 1001;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
        overflow-y: auto;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: relative;
        z-index: 1010;
        margin-top: 2rem;
    }

    .nav__item {
        width: 100%;
        position: relative;
        z-index: 1010;
    }

    .nav__link {
        display: block;
        padding: 1.2rem 0.5rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1010;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
        touch-action: manipulation;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin-top: 1.5rem;
        text-align: center;
        padding: 14px 24px;
    }

    .nav__toggle {
        display: block;
        z-index: 1002;
    }

    .nav__close {
        display: none;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 1.8rem;
        z-index: 1020;
        padding: 0.5rem;
        -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
        touch-action: manipulation;
    }

    .nav__menu.show-menu .nav__close {
        display: block;
    }

    /* Video Hero */
    .video-hero {
        height: 100vh;
        width: 100vw;
        background: #000;
    }

    .video-hero__video--desktop {
        display: none;
    }

    .video-hero__video--mobile {
        display: block;
        object-fit: cover;
        object-position: center center;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

    .hero__content {
        justify-content: center;
        padding: 90px 1.5rem 0 1.5rem;
    }

    .hero__text {
        text-align: center;
        max-width: 500px;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__text {
        text-align: center;
    }

    .about__image img {
        height: 350px;
    }

    /* Philosophy */
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .philosophy__image {
        order: -1;
    }

    .philosophy__text {
        text-align: center;
    }

    .philosophy__list {
        display: inline-block;
        text-align: left;
    }

    .philosophy__image img {
        height: 350px;
    }

    /* Breeds */
    .breeds__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    /* Commitment */
    .commitment__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Training & Contact */
    .training-contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .training-list__items {
        display: inline-block;
        text-align: left;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    :root {
        --section-padding: 3.5rem 0;
    }

    /* Video Hero */
    .video-hero {
        height: 100vh;
        width: 100vw;
    }

    .hero {
        min-height: 85vh;
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .hero__description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.78rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .section__subtitle {
        font-size: 1.2rem;
    }

    /* Breeds */
    .breeds__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .breed-card {
        padding: 2rem 1.5rem;
    }

    /* Commitment */
    .commitment__grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card__icon {
        font-size: 2.5rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form__title {
        font-size: 1.5rem;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact ul li {
        justify-content: center;
    }

    .footer__logo {
        margin: 0 auto 1rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 380px) {
    .hero__title {
        font-size: 1.6rem;
    }

    .nav__menu {
        width: 100%;
        max-width: 100%;
    }

    .section__header {
        gap: 1rem;
    }

    .section__line {
        width: 40px;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 5.25rem;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav__menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.nav__menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   PAGE HERO (Bloodlines & inner pages)
   ============================================ */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.page-hero__title--highlight {
    color: var(--color-gold);
}

.page-hero__subtitle {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   HERITAGE INTRO
   ============================================ */
.heritage-intro {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
}

.heritage-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.heritage-intro__text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.heritage-intro__text .section__title {
    margin-bottom: 1.5rem;
}

.heritage-intro__credentials {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.credential-item i {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.credential-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.credential-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DOG PROFILE
   ============================================ */
.dog-profile {
    padding: var(--section-padding);
    background: var(--color-bg-section);
}

.dog-profile--alt {
    background: var(--color-bg-dark);
}

.dog-profile__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.dog-profile__header-text {
    text-align: center;
    flex: 1;
}

.dog-profile__header .section__title {
    margin-bottom: 0.5rem;
}

.dog-profile__tagline {
    font-family: var(--font-subheading);
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Gallery */
.dog-profile__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dog-profile__gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.dog-profile__gallery-secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dog-profile__gallery-secondary img {
    width: 100%;
    height: 254px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Badges */
.dog-profile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
}

.badge i {
    font-size: 0.75rem;
    color: var(--color-gold);
}

/* Profile body */
.dog-profile__body {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.dog-profile__bio h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem 0 0.8rem;
}

.dog-profile__bio h3:first-child {
    margin-top: 0;
}

.dog-profile__bio p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

/* Lineage list */
.dog-profile__lineage {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.dog-profile__lineage h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.lineage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lineage-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lineage-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lineage-list__label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
}

.lineage-list__value {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.4;
}

/* ============================================
   AVAILABLE CTA
   ============================================ */
.available-cta {
    position: relative;
    padding: var(--section-padding);
    text-align: center;
    overflow: hidden;
}

.available-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    z-index: 0;
}

.available-cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
}

.available-cta .container {
    position: relative;
    z-index: 1;
}

.available-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.available-cta__text {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 1.5rem auto 2.5rem;
    max-width: 580px;
}

.available-cta__actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BLOODLINES PAGE — RESPONSIVE
   ============================================ */
@media screen and (max-width: 868px) {
    .page-hero__title {
        font-size: 2.6rem;
    }

    .page-hero__subtitle {
        font-size: 1.05rem;
    }

    .heritage-intro__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dog-profile__gallery {
        grid-template-columns: 1fr;
    }

    .dog-profile__gallery-main img {
        height: 360px;
    }

    .dog-profile__gallery-secondary {
        flex-direction: row;
    }

    .dog-profile__gallery-secondary img {
        height: 180px;
        flex: 1;
    }

    .dog-profile__body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .dog-profile__lineage {
        position: static;
    }

    .dog-profile__header {
        flex-direction: column;
        gap: 1rem;
    }

    .available-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .page-hero__title {
        font-size: 2rem;
    }

    .dog-profile__gallery-secondary {
        flex-direction: column;
    }

    .dog-profile__gallery-secondary img {
        height: 220px;
    }
}
